@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
h1 {
  font-weight: bold;
  margin: 5px 0;
}

h2 {
  font-weight: bold;
}

body {
  margin: 0;
  font-family: "opensans", sans-serif !important;
  overflow: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 960px;
  width: 90%;
  margin: auto;
}

.button {
  border: 1px solid #0F3E64;
  background-color: #0F3E64;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  transition: all 0.5s ease;
}

.button:hover {
  background-color: #ffffff;
  color: #0F3E64;
  cursor: pointer;
}

.messages {
  grid-area: messages;
  margin-bottom: 10px;
  height: 57px;
}

.messages .message {
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #6ca16c;
  padding: 10px 20px;
  border: 1px solid #057205;
  color: #ffffff;
}

.messages .message span {
  font-size: 12px;
  margin-top: 5px;
}

.messages .message.alert {
  background-color: #e3aa5d;
  border: 1px solid #ff7800;
}

.messages .message.error {
  background-color: #e08d8d;
  border: 1px solid #8d0000;
}

header {
  display: flex;
  background-color: #0F3E64;
  align-content: center;
  margin-bottom: 5px;
}

@media only screen and (max-width: 600px) {
  header {
    justify-content: space-between;
  }
}

header .logo {
  display: block;
  padding: 10px 30px;
}

@media only screen and (max-width: 600px) {
  header .logo {
    padding: 5px 30px;
  }
}

header .logo img {
  max-width: 70px;
}

@media only screen and (max-width: 600px) {
  header .logo img {
    max-width: 60px;
  }
}

header .title {
  text-align: right;
  line-height: 66px;
  margin: 0 30px;
  color: #ffffff;
}

@media only screen and (max-width: 600px) {
  header .title {
    line-height: 50px;
    font-size: 14px;
  }
}

header .title h1 {
  margin: 0;
}

.home {
  text-align: center;
}

.login form {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  gap: 10px;
  margin: 20px auto 0 auto;
}

.login form input {
  padding: 10px;
  border: 1px solid #ccc;
}

.pos .content {
  display: grid;
  grid-template-areas: 'messages messages' 'input overview';
  grid-template-columns: 49% 49%;
  grid-column-gap: 2%;
}

@media only screen and (max-width: 600px) {
  .pos .content {
    grid-template-areas: 'messages' 'input' 'overview';
    grid-template-columns: 100%;
    grid-row-gap: 30px;
  }
}

.pos .content .input {
  grid-area: input;
  display: flex;
  flex-wrap: wrap;
  height: 65vh;
  gap: 10px;
  align-content: space-between;
}

.pos .content .input .products {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  width: 100%;
}

.pos .content .input .products a {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: start;
  margin-bottom: 10px;
}

.pos .content .input .products a span {
  font-size: 14px;
}

.pos .content .input .products a:after {
  content: '+';
  position: absolute;
  top: calc(50% - 15px);
  right: 10px;
  background-color: #EAEAEA;
  color: #000000;
  border-radius: 90px;
  font-size: 20px;
  padding: 5px 10px;
}

.pos .content .input .manual-barcode {
  background-color: #EAEAEA;
  padding: 20px;
}

.pos .content .input .manual-barcode .subtitle {
  margin-bottom: 15px;
  text-align: center;
}

.pos .content .input .manual-barcode .scanner-form {
  display: flex;
  justify-content: center;
}

.pos .content .input .manual-barcode .scanner-form input {
  height: 33px;
  width: 100%;
  max-width: 250px;
}

.pos .content .overview {
  margin-bottom: 20px;
  height: 65vh;
}

.pos .content .overview .background {
  height: 100%;
  grid-area: overview;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  background-color: #EAEAEA;
}

.pos .content .overview .background .subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}

.pos .content .overview .background .tickets {
  height: 100%;
  overflow-y: scroll;
  min-height: 100px;
  margin-bottom: 5px;
}

.pos .content .overview .background .tickets .ticket {
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: relative;
  background-color: #ffffff;
  margin: 10px;
  padding: 10px;
}

.pos .content .overview .background .tickets .ticket span {
  font-size: 14px;
}

.pos .content .overview .background .tickets .ticket .remove {
  position: absolute;
  top: calc(50% - 15px);
  right: 10px;
  background-color: #0F3E64;
  color: #ffffff;
  border-radius: 90px;
  font-size: 20px;
  padding: 5px 13px;
}

.pos .content .overview .background .tickets .ticket .remove:hover {
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .pos .content .overview .background .tickets {
    height: auto;
  }
}

.pos .content .overview .background .total {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  background-color: #c9c9c9;
  padding: 10px 20px;
}

.pos .content .overview .background .total .label {
  margin-right: 5px;
}

.pos .content .overview .background .total .sign, .pos .content .overview .background .total .number {
  font-weight: bold;
}

.pos .content .overview .background .button {
  text-align: center;
  padding: 20px 0;
}

.scanner .content {
  text-align: center;
}

.scanner .content .scanner-form {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 0 15px;
  margin: 0 auto 5px auto;
}

@media only screen and (max-width: 600px) {
  .scanner .content .scanner-form .meta-data {
    display: none;
  }
}

.scanner .content .scanner-form .button {
  padding: 10px 10px;
}

.scanner .content .scanner-form input {
  height: 35px;
  width: 150px;
  font-size: 18px;
}

h1 {
  font-weight: bold;
  margin: 5px 0;
}

h2 {
  font-weight: bold;
}

body {
  margin: 0;
  font-family: "opensans", sans-serif !important;
  overflow: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 960px;
  width: 90%;
  margin: auto;
}

.button {
  border: 1px solid #0F3E64;
  background-color: #0F3E64;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  transition: all 0.5s ease;
}

.button:hover {
  background-color: #ffffff;
  color: #0F3E64;
  cursor: pointer;
}

.messages {
  grid-area: messages;
  margin-bottom: 10px;
  height: 57px;
}

.messages .message {
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #6ca16c;
  padding: 10px 20px;
  border: 1px solid #057205;
  color: #ffffff;
}

.messages .message span {
  font-size: 12px;
  margin-top: 5px;
}

.messages .message.alert {
  background-color: #e3aa5d;
  border: 1px solid #ff7800;
}

.messages .message.error {
  background-color: #e08d8d;
  border: 1px solid #8d0000;
}

header {
  display: flex;
  background-color: #0F3E64;
  align-content: center;
  margin-bottom: 5px;
}

@media only screen and (max-width: 600px) {
  header {
    justify-content: space-between;
  }
}

header .logo {
  display: block;
  padding: 10px 30px;
}

@media only screen and (max-width: 600px) {
  header .logo {
    padding: 5px 30px;
  }
}

header .logo img {
  max-width: 70px;
}

@media only screen and (max-width: 600px) {
  header .logo img {
    max-width: 60px;
  }
}

header .title {
  text-align: right;
  line-height: 66px;
  margin: 0 30px;
  color: #ffffff;
}

@media only screen and (max-width: 600px) {
  header .title {
    line-height: 50px;
    font-size: 14px;
  }
}

header .title h1 {
  margin: 0;
}

.home {
  text-align: center;
}

.login form {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  gap: 10px;
  margin: 20px auto 0 auto;
}

.login form input {
  padding: 10px;
  border: 1px solid #ccc;
}

.pos .content {
  display: grid;
  grid-template-areas: 'messages messages' 'input overview';
  grid-template-columns: 49% 49%;
  grid-column-gap: 2%;
}

@media only screen and (max-width: 600px) {
  .pos .content {
    grid-template-areas: 'messages' 'input' 'overview';
    grid-template-columns: 100%;
    grid-row-gap: 30px;
  }
}

.pos .content .input {
  grid-area: input;
  display: flex;
  flex-wrap: wrap;
  height: 65vh;
  gap: 10px;
  align-content: space-between;
}

.pos .content .input .products {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  width: 100%;
}

.pos .content .input .products a {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: start;
  margin-bottom: 10px;
}

.pos .content .input .products a span {
  font-size: 14px;
}

.pos .content .input .products a:after {
  content: '+';
  position: absolute;
  top: calc(50% - 15px);
  right: 10px;
  background-color: #EAEAEA;
  color: #000000;
  border-radius: 90px;
  font-size: 20px;
  padding: 5px 10px;
}

.pos .content .input .manual-barcode {
  background-color: #EAEAEA;
  padding: 20px;
}

.pos .content .input .manual-barcode .subtitle {
  margin-bottom: 15px;
  text-align: center;
}

.pos .content .input .manual-barcode .scanner-form {
  display: flex;
  justify-content: center;
}

.pos .content .input .manual-barcode .scanner-form input {
  height: 33px;
  width: 100%;
  max-width: 250px;
}

.pos .content .overview {
  margin-bottom: 20px;
  height: 65vh;
}

.pos .content .overview .background {
  height: 100%;
  grid-area: overview;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  background-color: #EAEAEA;
}

.pos .content .overview .background .subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}

.pos .content .overview .background .tickets {
  height: 100%;
  overflow-y: scroll;
  min-height: 100px;
  margin-bottom: 5px;
}

.pos .content .overview .background .tickets .ticket {
  display: flex;
  gap: 10px;
  flex-direction: column;
  position: relative;
  background-color: #ffffff;
  margin: 10px;
  padding: 10px;
}

.pos .content .overview .background .tickets .ticket span {
  font-size: 14px;
}

.pos .content .overview .background .tickets .ticket .remove {
  position: absolute;
  top: calc(50% - 15px);
  right: 10px;
  background-color: #0F3E64;
  color: #ffffff;
  border-radius: 90px;
  font-size: 20px;
  padding: 5px 13px;
}

.pos .content .overview .background .tickets .ticket .remove:hover {
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .pos .content .overview .background .tickets {
    height: auto;
  }
}

.pos .content .overview .background .total {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  background-color: #c9c9c9;
  padding: 10px 20px;
}

.pos .content .overview .background .total .label {
  margin-right: 5px;
}

.pos .content .overview .background .total .sign, .pos .content .overview .background .total .number {
  font-weight: bold;
}

.pos .content .overview .background .button {
  text-align: center;
  padding: 20px 0;
}

.scanner .content {
  text-align: center;
}

.scanner .content .scanner-form {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 0 15px;
  margin: 0 auto 5px auto;
}

@media only screen and (max-width: 600px) {
  .scanner .content .scanner-form .meta-data {
    display: none;
  }
}

.scanner .content .scanner-form .button {
  padding: 10px 10px;
}

.scanner .content .scanner-form input {
  height: 35px;
  width: 150px;
  font-size: 18px;
}

/*# sourceMappingURL=maps/main.css.map */
