@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,600;0,700;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;1,100&display=swap");
* {
  font-family: 'Roboto', sans-serif;
}

.products-row .item .title {
  color: #808080;
}

.products-row .item .price-final .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #103392;
}

.products-row .item .price-final .prices .divider {
  margin: 0 10px 0 10px;
}

.products-row .item .price-final .prices .price-final {
  font-weight: bolder;
}

.payments ul {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.payments ul li:first-child {
  margin-left: 0;
}

.payments ul li {
  margin: 10px 5px 10px 5px;
  padding: 10px;
  background: #66bb6a;
  border-radius: 10px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
}

.payments ul li .payment_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.payments ul li .payment_info button {
  margin-left: 5px;
  color: #ffffff;
  border-radius: 100%;
  border: none;
  background: transparent;
}

.model-payments {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.model-payments .overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 4;
}

.model-payments .overlay .content {
  position: fixed;
  top: 15%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.model-payments .overlay .content .content-info {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.model-payments .overlay .content .content-info .counter {
  margin: 30px 0 30px;
  text-align: center;
}

.model-payments .overlay .content .content-info .counter .rest {
  color: #808080;
  margin-bottom: 0;
  margin-top: 10px;
}

.model-payments .overlay .content .content-info .counter .rest span {
  color: #103392 !important;
  font-weight: bolder;
}

.model-payments .overlay .content .content-info .counter input[type='text'] {
  width: 100%;
  text-align: center;
  font-weight: bolder;
  border: none;
  font-size: 60px;
  outline: none;
}

.model-payments .overlay .content .content-info .payments {
  max-width: 100%;
}

.model-payments .overlay .content .content-info .payments .item:first-child {
  margin-left: 0 !important;
}

.model-payments .overlay .content .content-info .payments .item:last-child {
  margin-right: 0 !important;
}

.model-payments .overlay .content .content-info .payments .item {
  display: inline-block;
  vertical-align: middle;
  background: #fafafa;
  padding: 10px;
  margin: 0px 5px 10px 5px;
  border-radius: 5px;
  border: 2px solid #fafafa;
}

.model-payments .overlay .content .content-info .payments .item .elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.model-payments .overlay .content .content-info .payments .item .elements .title {
  font-weight: bolder;
}

.model-payments .overlay .content .content-info .payments .item .elements .img {
  margin-right: 5px;
}

.model-payments .overlay .content .content-info .payments .item .elements .img img {
  width: 25px;
}

.model-payments .overlay .content .content-info .payments .item .elements input[type="radio"] {
  display: none;
}

.model-payments .overlay .content .content-info .payments .item.active {
  border: 2px solid #66bb6a;
}

.model-payments .overlay .content .content-info .actions {
  margin: 20px 0 20px;
  text-align: center;
}

.model-payments .overlay .content .content-info .actions .btn {
  border-radius: 100px;
  font-weight: bolder;
  width: 100%;
}

.model-payments .overlay .content .content-info .actions p {
  margin: 10px 0 10px;
  font-size: 13px;
  color: #808080;
}

.checkbox {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 45px;
  height: 20px;
  border-radius: 20px;
  border: 2px solid #ccc;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkbox::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ccc;
  top: 0px;
  left: 0px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.checkbox:checked::before {
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
  background: #3399ff;
}

.checkbox:checked {
  border-color: #3399ff;
}

.btn-active-orders-success,
.btn-active-orders-danger {
  border: none;
  padding: 10px 15px 10px 15px;
  border-radius: 10px;
  color: #fff;
}

.btn-active-orders-success {
  background: #27AE60;
}

.btn-active-orders-danger {
  background: #2F80ED;
}

.btn-active-orders-success:hover,
.btn-active-orders-danger:hover {
  opacity: .5;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.suggest-tips {
  padding: 10px 0 10px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.suggest-tips p {
  margin-bottom: 0;
}

.suggest-tips .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.extra-tip {
  padding: 10px 0 10px !important;
}

.extra-tip .container-tips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.extra-tip .container-tips .item-tip {
  padding: 10px 30px 10px 30px;
  background: #fafafa;
  margin: 0 10px 0 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #fafafa;
  font-weight: bolder;
}

.extra-tip .container-tips .item-tip.active {
  border: 2px solid #27AE60;
}

.less {
  color: tomato !important;
}

.search {
  width: 100%;
  border: 1px solid #eee !important;
  border-radius: 8px !important;
  padding: 12px 12px 12px 48px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
  background-color: #eee !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNjY2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PGNpcmNsZSBjeD0iMTEiIGN5PSIxMSIgcj0iOCIvPjxwYXRoIGQ9Ik0yMSAyMWwtNC00Ii8+PC9zdmc+) !important;
  background-repeat: no-repeat !important;
  background-position: 12px !important;
}

.item-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item-add .info {
  width: 80%;
  position: relative;
}

.item-add .info .autocomplete-result-list {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 296px;
  overflow-y: auto;
  background: #fff;
  list-style: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  visibility: visible;
  pointer-events: auto;
  top: 100%;
  margin-top: -1px;
  border-top-color: transparent;
  border-radius: 0 0 8px 8px;
  padding-bottom: 8px;
}

.item-add .info .autocomplete-result-list .title-search {
  font-size: 21px;
  font-weight: bolder;
}

.item-add .info .autocomplete-result-list .subtitle-search {
  color: grey;
}

.item-add .info .autocomplete-result-list .autocomplete-result {
  cursor: pointer;
  border-top: 1px solid #eee;
  padding: 16px;
  background: transparent;
}

.item-add .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 20%;
}

.finished-today {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 20px;
  font-size: 20px;
  color: #aaaaaa;
  font-weight: bold;
}

.finished-today .container-bag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.finished-today .container-bag img {
  width: 33px;
  margin: 0 10px 0 10px;
}

.item-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item-product .info h5 {
  margin-bottom: 2px;
  font-size: 20px !important;
  color: #757575;
}

.item-product .info .price {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: bolder;
  color: #6c8a1f;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif !important;
}

.item-product .info .description {
  color: #808080;
  font-size: 13px;
  margin-bottom: 0 !important;
}

.item-product .description-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.item-product .description-price h4 {
  font-size: 20px;
  color: #6c8a1f;
}

.item-product .actions .counter-input {
  width: 50px;
  text-align: center;
  font-weight: bolder;
  font-size: 25px;
  border: none;
}

.item-product .actions .counters {
  background: transparent;
  border: none;
  outline: none;
  font-size: 25px;
}

.new-product {
  width: 100%;
  margin: 40px 0 20px;
  text-align: center;
}

.new-product .actions-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.new-product p {
  margin-top: 15px;
  color: #757575;
}

.black-text {
  font-weight: bold;
}

.main-principal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}

.main {
  -webkit-box-flex: 34;
      -ms-flex-positive: 34;
          flex-grow: 34;
  overflow-x: hidden;
  position: relative;
}

nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer-charge {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 15px;
  border-top: 1px solid #fafafa;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-charge .total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-charge .total .separator {
  margin: 0 20px 0 20px;
  border: .5px solid #757575;
  height: 30px;
}

.footer-charge .total p {
  margin-bottom: 0;
}

.footer-charge .total .price {
  font-size: 23px;
  font-weight: bolder;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer-charge .total .price span {
  font-family: 'Montserrat', sans-serif !important;
}

.footer-charge .total .price .sign {
  color: #757575;
  margin-top: 6px;
  font-size: 13px !important;
  font-weight: 400;
}

.footer-charge .total .product {
  font-size: 10px;
  color: #9e9e9e;
}

.footer-charge .actions .btn {
  border-radius: 10px;
}

.not-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.not-order .containt {
  height: 55%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.not-order .containt .image {
  text-align: center;
}

.not-order .containt .image img {
  margin: 10px 0 10px;
  width: 120px;
}

.not-order .containt .image img.bag {
  width: 80px;
}

.not-order .containt .info {
  margin: 20px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.not-order .containt .info h4 {
  color: #a4a4a4;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 0;
}

.not-order .containt .form {
  width: 350px;
  margin: 10px 0 30px;
}

.not-order .containt .form input[type=text], .not-order .containt .form input[type=number], .not-order .containt .form select {
  outline: none;
  width: 100%;
  margin: 8px 0 8px;
  background: #ffffff;
  border: none;
  padding: 15px 15px 15px 50px;
  color: #808080;
  border-radius: 10px;
  background-image: var(--background);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 15px center;
  border: 2px solid #ffffff;
}

.not-order .containt .form input[type=text].not-valid, .not-order .containt .form input[type=number].not-valid {
  border: 2px solid #ef9a9a;
}

.not-order .containt .form input[type=text].yes-valid, .not-order .containt .form input[type=number].yes-valid {
  border: 2px solid #81c784;
}

.not-order .containt .action {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text-not-valid {
  font-size: 12px;
  margin-bottom: 0;
  text-align: left;
  color: #ef9a9a;
}

.btn-white {
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  outline: none;
  padding: 7px 20px 7px 20px;
  border: none;
  background: #ffffff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  color: #757575;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-white .bi {
  font-size: 25px;
  margin-bottom: 0;
}

.btn-white:focus {
  background: rgba(255, 255, 255, 0.4);
}

.input-general {
  outline: none;
  width: 100%;
  background: #eee;
  border: none;
  padding: 15px 15px 15px 50px;
  border-radius: 10px;
  background-image: var(--background);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 15px center;
}

.app-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.app-page .containt-info .header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 15px 20px 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #ffffff;
  border-top: 1px solid #eee;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.app-page .containt-info .header .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.app-page .containt-info .header .title .name {
  font-size: 20px;
  margin-bottom: 0;
}

.app-page .containt-info .header .title .info-user {
  font-size: 12px;
  color: #808080;
}

.app-page .containt-info .header .btn {
  padding: 5px 20px 5px 20px;
  border-radius: 100px;
  text-decoration: none !important;
}

.app-page .containt-info .item-list {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.app-page .containt-info .item-list .title {
  font-size: 14px;
  color: #808080;
  font-weight: bolder;
}

.app-page .containt-info .item-list .title-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app-page .containt-info .item-list .title-actions .button-more-item-list {
  margin-left: 10px;
  border: 2px solid #66bb6a;
  color: #66bb6a;
  background: transparent;
  border-radius: 100%;
  position: relative;
  height: 25px;
  width: 25px;
  font-weight: bolder;
}

.app-page .containt-info .item-list .title-actions .button-more-item-list i.bi::before {
  -webkit-transform: translate(-23%, -8%);
          transform: translate(-23%, -8%);
}

.app-page .containt-info .tips .tips-text {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app-page .containt-info .tips .tips-text .form-suggest {
  width: 90%;
}

.app-page .containt-info .tips .tips-text .form {
  width: 60%;
}

.app-page .containt-info .tips .tips-text .form input {
  width: 100%;
  border: none;
  background: #f2f2f2;
  padding: 15px 15px 15px 50px;
  border-radius: 10px;
  outline: none;
  background-image: var(--background);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 15px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

.app-page .containt-info .tips .tips-text .form-selector {
  width: 20%;
}

.app-page .containt-info .tips .tips-text .form-selector select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  padding: 15px 40px 15px 15px;
  margin: 0px 5px 0 5px;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 10px;
  background: #f2f2f2;
  background-image: var(--background);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 88% 50%;
}

.app-page .containt-info .tips .tips-text .check {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.app-page .containt-info .tips .tips-text .check .round {
  position: relative;
}

.app-page .containt-info .tips .tips-text .check .round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 28px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28px;
}

.app-page .containt-info .tips .tips-text .check .round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 12px;
}

.app-page .containt-info .tips .tips-text .check .round input[type="checkbox"] {
  visibility: hidden;
}

.app-page .containt-info .tips .tips-text .check .round input[type="checkbox"]:checked + label {
  background-color: #66bb6a;
  border-color: #66bb6a;
}

.app-page .containt-info .tips .tips-text .check .round input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.app-page .payment-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.app-page .payment-info .discount-info, .app-page .payment-info .subtotal-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 15px 6px 25px;
}

.app-page .payment-info .discount-info .info, .app-page .payment-info .subtotal-info .info {
  color: #9e9e9e;
  font-size: 14px;
}

.app-page .payment-info .discount-info .price, .app-page .payment-info .subtotal-info .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: bolder;
  color: #103392;
  font-size: 25px;
}

.app-page .payment-info .discount-info .price span, .app-page .payment-info .subtotal-info .price span {
  font-size: 12px;
  margin-top: 7px;
  font-weight: normal;
}

.app-page .payment-info .discount-info {
  background: #fff !important;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

.app-page .payment-info .subtotal-info .price {
  color: #103392;
  font-size: 20px;
}

.app-page .payment-info .subtotal-info .price span {
  font-size: 10px;
  margin-top: 5px;
  font-weight: normal;
}

.app-page .payment-info .actions {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background: #fafafa;
  text-align: center;
  padding: 10px 15px 20px 15px;
}

.app-page .payment-info .actions button {
  border-radius: 100px;
  font-weight: bolder;
}

.app-page .payment-info .actions p {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-size: 13px;
  color: #808080;
}
/*# sourceMappingURL=products.css.map */