﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins");
* {
  font-family: "Poppins", sans-serif, sans-serif;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f7f7f7;
  box-shadow: 0 0 15px -4px rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.header-container .header-wrapper {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 540px) {
  .header-container .header-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.header-container .header-wrapper .left-header-section .logo-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.header-container .header-wrapper .left-header-section .logo-wrapper .main-logo-img {
  width: 150px;
  height: auto;
}
.header-container .header-wrapper .right-header-section {
  display: flex;
}
.header-container .header-wrapper .right-header-section .user-data-logout {
  list-style: none;
  margin: 0;
  font-weight: bold;
}
.header-container .header-wrapper .right-header-section .user-data-logout .header-item {
  margin-left: 1rem;
  position: relative;
  border: 2px solid transparent;
}
.header-container .header-wrapper .right-header-section .user-data-logout .header-item:not(.profile) {
  cursor: pointer;
}
.header-container .header-wrapper .right-header-section .burger-button {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.header-container .header-wrapper .right-header-section .burger-button .burger-item {
  height: 4px;
  background-color: #1e2042;
  position: absolute;
  border-radius: 99px;
  transition: width 0.3s ease;
  width: 100%;
}
.header-container .header-wrapper .right-header-section .burger-button .burger-top {
  top: 0;
}
.header-container .header-wrapper .right-header-section .burger-button .burger-mid {
  top: 50%;
}
.header-container .header-wrapper .right-header-section .burger-button .burger-bot {
  top: 100%;
}
.header-container .header-wrapper .right-header-section .burger-button.active .burger-top {
  animation: burguer-top-rotate 0.6s ease;
  animation-fill-mode: forwards;
}
.header-container .header-wrapper .right-header-section .burger-button.active .burger-mid,
.header-container .header-wrapper .right-header-section .burger-button.active .burger-bot {
  animation: burguer-bottom-rotate 0.6s ease;
  animation-fill-mode: forwards;
}

.menu-mobile {
  width: 100%;
  height: calc(100vh - 80px);
  transform: translateX(100%);
  transition: transform 0.3s ease-in;
  padding-top: 4rem;
  position: fixed;
  left: 0;
  background-color: #f7f7f7;
  z-index: 9999;
}
.menu-mobile .mobile-user-data-logout {
  flex-direction: column;
  list-style: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
.menu-mobile .mobile-user-data-logout .menu-mobile-item {
  margin-bottom: 2rem;
}
.menu-mobile.active {
  transform: translateX(0);
}

@keyframes burguer-top-rotate {
  0% {
    top: start;
  }
  20% {
    top: 50%;
  }
  100% {
    top: 50%;
    transform: rotate(315deg);
  }
}
@keyframes burguer-mid-rotate {
  0% {
    top: start;
  }
  20% {
    top: 50%;
  }
}
@keyframes burguer-bottom-rotate {
  0% {
    top: start;
  }
  20% {
    top: 50%;
  }
  100% {
    top: 50%;
    transform: rotate(405deg);
  }
}
.home-section {
  color: #1e2042;
  background-color: #f7f7f7;
  padding-top: 80px;
  overflow-x: hidden;
}

.btn-primary {
  width: 100%;
  align-self: flex-end;
  background-color: #1e2042;
  border-color: #1e2042;
}
@media (min-width: 992px) {
  .btn-primary.limit-width {
    max-width: 280px;
  }
}
@media (min-width: 992px) {
  .btn-primary.limit-width-max {
    max-width: 360px;
  }
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #1e2042 !important;
  border-color: #1e2042 !important;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.7607843137);
}
.btn-primary:disabled, .btn-primary.disabled {
  background-color: #151515;
  border-color: #151515;
  opacity: 0.6;
}

table td.actions a,
table td.actions button {
  border: 0;
  background-color: transparent;
}

.card-img-top {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

a:not(.btn) {
  cursor: pointer;
  color: #1e2042;
  text-decoration: none;
}
a:not(.btn):hover {
  border-bottom: solid 2px #ffce00;
}
a:not(.btn):visited {
  color: #1e2042;
}

.arrow-back {
  font-size: 30px;
  cursor: pointer;
}

.link-back {
  box-shadow: none !important;
  outline: 0 !important;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #1e2042;
  border-color: #1e2042;
}

td i {
  cursor: pointer;
}

tr.group td {
  background-color: darkgray;
  color: white !important;
}

.sage-input-wrapper {
  background-color: transparent;
}
.sage-input-wrapper .sage-input {
  background-color: transparent;
  border: none;
}
.sage-input-wrapper .sage-input:focus, .sage-input-wrapper .sage-input:active {
  box-shadow: none;
  outline: none;
}

.disabled-input {
  background-color: #dddddd;
  opacity: 1;
}

/* Custom styles for checkbox for select in datatable */
table.dataTable > tbody > tr.selected > *,
table.dataTable.table-striped > tbody > tr.odd.selected > * {
  color: white !important;
  background-color: #eeeeee !important;
  box-shadow: inset 0 0 0 9999px #1e2042;
}
table.dataTable > tbody > tr.selected > * a, table.dataTable > tbody > tr.selected > * button,
table.dataTable.table-striped > tbody > tr.odd.selected > * a,
table.dataTable.table-striped > tbody > tr.odd.selected > * button {
  color: white;
}

table.dataTable > thead > tr > td.select-checkbox {
  position: relative;
}
table.dataTable > thead > tr > td.select-checkbox:before {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  content: " ";
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
table.dataTable > thead > tr > td.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
table.dataTable > thead > tr > th.select-checkbox {
  position: relative;
}
table.dataTable > thead > tr > th.select-checkbox:before {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  content: " ";
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
table.dataTable > thead > tr > th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
table.dataTable > thead > tr.selected > td.select-checkbox:after {
  content: "✓";
  font-size: 20px;
  margin-top: -19px;
  margin-left: -6px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}
table.dataTable > thead > tr.selected > th.select-checkbox:after {
  content: "✓";
  font-size: 20px;
  margin-top: -19px;
  margin-left: -6px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}
table.dataTable > tbody > tr > .selected {
  background-color: rgba(13, 110, 253, 0.9);
  color: white;
}
table.dataTable > tbody > tr > td.select-checkbox {
  position: relative;
}
table.dataTable > tbody > tr > td.select-checkbox:before {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  content: " ";
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
table.dataTable > tbody > tr > td.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
table.dataTable > tbody > tr > th.select-checkbox {
  position: relative;
}
table.dataTable > tbody > tr > th.select-checkbox:before {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  content: " ";
  margin-top: -6px;
  margin-left: -6px;
  border: 1px solid black;
  border-radius: 3px;
}
table.dataTable > tbody > tr > th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 50%;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}
table.dataTable > tbody > tr.selected > td.select-checkbox:before {
  border: 1px solid white;
}
table.dataTable > tbody > tr.selected > td.select-checkbox:after {
  content: "✓";
  font-size: 20px;
  margin-top: -19px;
  margin-left: -6px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}
table.dataTable > tbody > tr.selected > th.select-checkbox:before {
  border: 1px solid white;
}
table.dataTable > tbody > tr.selected > th.select-checkbox:after {
  content: "✓";
  font-size: 20px;
  margin-top: -19px;
  margin-left: -6px;
  text-align: center;
  text-shadow: 1px 1px #B0BED9, -1px -1px #B0BED9, 1px -1px #B0BED9, -1px 1px #B0BED9;
}

table.dataTable.compact > tbody > tr > td.select-checkbox:before {
  margin-top: -12px;
}
table.dataTable.compact > tbody > tr > th.select-checkbox:before {
  margin-top: -12px;
}
table.dataTable.compact > tbody > tr.selected > td.select-checkbox:after {
  margin-top: -16px;
}
table.dataTable.compact > tbody > tr.selected > th.select-checkbox:after {
  margin-top: -16px;
}

div.dataTables_wrapper span.select-info {
  margin-left: 0.5em;
}
div.dataTables_wrapper span.select-item {
  margin-left: 0.5em;
}

@media screen and (max-width: 640px) {
  div.dataTables_wrapper span.select-info {
    margin-left: 0;
    display: block;
  }
  div.dataTables_wrapper span.select-item {
    margin-left: 0;
    display: block;
  }
}
.btn-remove-selected.disabled {
  opacity: 0.6;
}

.edit-billing-users-wrapper label.custom-selectors-theme,
.add-billing-users-wrapper label.custom-selectors-theme {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-bottom: 0.375em;
}
.edit-billing-users-wrapper label.custom-selectors-theme.apply-inline,
.add-billing-users-wrapper label.custom-selectors-theme.apply-inline {
  display: inline-flex;
}
.edit-billing-users-wrapper label.custom-selectors-theme input[type=radio],
.edit-billing-users-wrapper label.custom-selectors-theme input[type=checkbox],
.add-billing-users-wrapper label.custom-selectors-theme input[type=radio],
.add-billing-users-wrapper label.custom-selectors-theme input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.edit-billing-users-wrapper label.custom-selectors-theme input[type=radio]:checked + span,
.edit-billing-users-wrapper label.custom-selectors-theme input[type=checkbox]:checked + span,
.add-billing-users-wrapper label.custom-selectors-theme input[type=radio]:checked + span,
.add-billing-users-wrapper label.custom-selectors-theme input[type=checkbox]:checked + span {
  background-color: #dbdbe1;
}
.edit-billing-users-wrapper label.custom-selectors-theme input[type=radio]:checked + span:before,
.edit-billing-users-wrapper label.custom-selectors-theme input[type=checkbox]:checked + span:before,
.add-billing-users-wrapper label.custom-selectors-theme input[type=radio]:checked + span:before,
.add-billing-users-wrapper label.custom-selectors-theme input[type=checkbox]:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em #1e2042;
}
.edit-billing-users-wrapper label.custom-selectors-theme span,
.add-billing-users-wrapper label.custom-selectors-theme span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
}
.edit-billing-users-wrapper label.custom-selectors-theme span i,
.add-billing-users-wrapper label.custom-selectors-theme span i {
  padding-right: 5px;
}
.edit-billing-users-wrapper label.custom-selectors-theme span:hover,
.add-billing-users-wrapper label.custom-selectors-theme span:hover {
  background-color: #dbdbe1;
}
.edit-billing-users-wrapper label.custom-selectors-theme span:before,
.add-billing-users-wrapper label.custom-selectors-theme span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #1e2042;
}
.edit-billing-users-wrapper label.custom-selectors-theme span.square:before,
.add-billing-users-wrapper label.custom-selectors-theme span.square:before {
  border-radius: 0;
}
.edit-billing-users-wrapper label.custom-selectors-theme.checkbox-styles input[type=checkbox]:checked + span:before,
.add-billing-users-wrapper label.custom-selectors-theme.checkbox-styles input[type=checkbox]:checked + span:before {
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  box-shadow: none;
  background-color: #1e2042;
}
.edit-billing-users-wrapper label.custom-selectors-theme.checkbox-styles span::before,
.add-billing-users-wrapper label.custom-selectors-theme.checkbox-styles span::before {
  border-radius: 0;
}

.login-wrapper .content {
  margin-top: 30%;
}
.login-wrapper .content h2 {
  margin-bottom: 10%;
}
.login-wrapper .content .login-form {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.order-wrapper label.custom-selectors-theme,
.order-modify-wrapper label.custom-selectors-theme {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-bottom: 0.375em;
}
.order-wrapper label.custom-selectors-theme.apply-inline,
.order-modify-wrapper label.custom-selectors-theme.apply-inline {
  display: inline-flex;
}
.order-wrapper label.custom-selectors-theme input[type=radio],
.order-wrapper label.custom-selectors-theme input[type=checkbox],
.order-modify-wrapper label.custom-selectors-theme input[type=radio],
.order-modify-wrapper label.custom-selectors-theme input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.order-wrapper label.custom-selectors-theme input[type=radio]:checked + span,
.order-wrapper label.custom-selectors-theme input[type=checkbox]:checked + span,
.order-modify-wrapper label.custom-selectors-theme input[type=radio]:checked + span,
.order-modify-wrapper label.custom-selectors-theme input[type=checkbox]:checked + span {
  background-color: #dbdbe1;
}
.order-wrapper label.custom-selectors-theme input[type=radio]:checked + span:before,
.order-wrapper label.custom-selectors-theme input[type=checkbox]:checked + span:before,
.order-modify-wrapper label.custom-selectors-theme input[type=radio]:checked + span:before,
.order-modify-wrapper label.custom-selectors-theme input[type=checkbox]:checked + span:before {
  box-shadow: inset 0 0 0 0.4375em #1e2042;
}
.order-wrapper label.custom-selectors-theme span,
.order-modify-wrapper label.custom-selectors-theme span {
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.375em;
  border-radius: 99em;
  transition: 0.25s ease;
}
.order-wrapper label.custom-selectors-theme span i,
.order-modify-wrapper label.custom-selectors-theme span i {
  padding-right: 5px;
}
.order-wrapper label.custom-selectors-theme span:hover,
.order-modify-wrapper label.custom-selectors-theme span:hover {
  background-color: #dbdbe1;
}
.order-wrapper label.custom-selectors-theme span:before,
.order-modify-wrapper label.custom-selectors-theme span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin-right: 0.375em;
  transition: 0.25s ease;
  box-shadow: inset 0 0 0 0.125em #1e2042;
}
.order-wrapper label.custom-selectors-theme.checkbox-styles input[type=checkbox]:checked + span:before,
.order-modify-wrapper label.custom-selectors-theme.checkbox-styles input[type=checkbox]:checked + span:before {
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  box-shadow: none;
  background-color: #1e2042;
}
.order-wrapper label.custom-selectors-theme.checkbox-styles span::before,
.order-modify-wrapper label.custom-selectors-theme.checkbox-styles span::before {
  border-radius: 0;
}
.order-wrapper .wrapper-selector-quantities,
.order-modify-wrapper .wrapper-selector-quantities {
  display: block;
  margin-right: 1rem;
}
.order-wrapper .wrapper-selector-quantities label,
.order-modify-wrapper .wrapper-selector-quantities label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.order-wrapper .wrapper-selector-quantities .header,
.order-modify-wrapper .wrapper-selector-quantities .header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.order-wrapper .wrapper-selector-quantities .less,
.order-wrapper .wrapper-selector-quantities .more,
.order-modify-wrapper .wrapper-selector-quantities .less,
.order-modify-wrapper .wrapper-selector-quantities .more {
  border: 1px solid #1e2042;
  padding: 5px;
  display: inline-flex;
  margin: 0;
  color: #1e2042;
}
.order-wrapper .wrapper-selector-quantities input,
.order-modify-wrapper .wrapper-selector-quantities input {
  display: inline-flex;
  margin: 0;
  padding: 5px;
  border: none;
  border-top: 1px solid #1e2042;
  border-bottom: 1px solid #1e2042;
  color: #1e2042;
  width: auto;
  border-radius: 0;
  text-align: center;
  max-width: 40px;
}
.order-wrapper .wrapper-selector-quantities input::-webkit-outer-spin-button, .order-wrapper .wrapper-selector-quantities input::-webkit-inner-spin-button,
.order-modify-wrapper .wrapper-selector-quantities input::-webkit-outer-spin-button,
.order-modify-wrapper .wrapper-selector-quantities input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.order-wrapper .wrapper-selector-quantities input[type=number],
.order-modify-wrapper .wrapper-selector-quantities input[type=number] {
  -moz-appearance: textfield;
}
.order-wrapper .wrapper-selector-quantities input:focus, .order-wrapper .wrapper-selector-quantities input:active,
.order-modify-wrapper .wrapper-selector-quantities input:focus,
.order-modify-wrapper .wrapper-selector-quantities input:active {
  box-shadow: none;
  border: none;
  border-top: 1px solid #1e2042;
  border-bottom: 1px solid #1e2042;
}
.order-wrapper .ticket-container,
.order-modify-wrapper .ticket-container {
  color: #1e2042;
}
@media (min-width: 1400px) {
  .order-wrapper .ticket-container,
  .order-modify-wrapper .ticket-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 100;
  }
}
.order-wrapper .ticket-container.current,
.order-modify-wrapper .ticket-container.current {
  left: 20px;
  right: unset;
}
@media (min-width: 1400px) {
  .order-wrapper .ticket-container.current,
  .order-modify-wrapper .ticket-container.current {
    width: 0px;
  }
}
.order-wrapper .ticket-container .ticket,
.order-modify-wrapper .ticket-container .ticket {
  background-color: #fff;
  box-shadow: 0px 5px 15px 8px rgba(0, 0, 0, 0.21);
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
@media (min-width: 1400px) {
  .order-wrapper .ticket-container .ticket,
  .order-modify-wrapper .ticket-container .ticket {
    width: 330px;
  }
}
.order-wrapper .ticket-container .ticket:before,
.order-modify-wrapper .ticket-container .ticket:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffce00;
  transform: skewY(-2deg);
}
.order-wrapper .ticket-container .ticket:after,
.order-modify-wrapper .ticket-container .ticket:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #1e2042;
  transform: skewY(2deg);
}
.order-wrapper .ticket-container .ticket .logo,
.order-modify-wrapper .ticket-container .ticket .logo {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 95px;
  height: auto;
}
.order-wrapper .ticket-container .ticket .ticket-title,
.order-modify-wrapper .ticket-container .ticket .ticket-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1px;
}
.order-wrapper .ticket-container .ticket .ticket-title.current,
.order-modify-wrapper .ticket-container .ticket .ticket-title.current {
  margin-bottom: 20px;
}
.order-wrapper .ticket-container .ticket .ticket-subtitle,
.order-modify-wrapper .ticket-container .ticket .ticket-subtitle {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  /*text-align: center;*/
  letter-spacing: 1px;
  text-decoration: underline;
}
.order-wrapper .ticket-container .ticket .product-summary,
.order-modify-wrapper .ticket-container .ticket .product-summary {
  margin-bottom: 10px;
}
.order-wrapper .ticket-container .ticket .product-summary .product-name,
.order-modify-wrapper .ticket-container .ticket .product-summary .product-name {
  font-weight: bold;
}
.order-wrapper .ticket-container .ticket .product-summary .custom-discount,
.order-modify-wrapper .ticket-container .ticket .product-summary .custom-discount {
  font-weight: bold;
  font-size: 12px;
}

.detail-order-wrapper .container {
  margin-top: 20px;
}
.detail-order-wrapper .card {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.detail-order-wrapper .card-body {
  padding: 20px;
}
.detail-order-wrapper .card-title {
  margin-bottom: 20px;
}
.detail-order-wrapper .details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.detail-order-wrapper .detail-row {
  display: flex;
  align-items: center;
}
.detail-order-wrapper .detail-label {
  font-weight: 500;
  width: 140px;
}
.detail-order-wrapper .detail-value {
  overflow-wrap: break-word;
}
.detail-order-wrapper .price-info {
  margin-left: 10px;
  font-size: 12px;
  color: #777;
}
.detail-order-wrapper .buttons {
  margin-top: 20px;
}
@media (max-width: 576px) {
  .detail-order-wrapper .details-grid {
    grid-template-columns: 1fr;
  }
  .detail-order-wrapper .detail-label {
    width: 100%;
  }
}

.product-price {
  font-size: 14px;
  color: #888;
  margin-left: 10px;
}

.product-price-end {
  font-weight: bolder;
  color: #1e2042;
  margin-left: 10px;
  font-size: 16px;
}

.product-global-price-end {
  font-weight: bolder;
  color: #1e2042;
  margin-left: 10px;
  font-size: 20px;
}

.today-departure {
  font-weight: bold; /* Cambia el estilo de fuente a tu elección */
}

.departure-wrapper .delete-discount {
  cursor: pointer;
}

.ticket-container {
  color: #1e2042;
}
@media (min-width: 1400px) {
  .ticket-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 100;
  }
}
.ticket-container.current {
  left: 20px;
  right: unset;
}
@media (min-width: 1400px) {
  .ticket-container.current {
    width: 0px;
  }
}
.ticket-container .ticket {
  background-color: #fff;
  box-shadow: 0px 5px 15px 8px rgba(0, 0, 0, 0.21);
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
@media (min-width: 1400px) {
  .ticket-container .ticket {
    width: 330px;
  }
}
.ticket-container .ticket:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ffce00;
  transform: skewY(-2deg);
}
.ticket-container .ticket:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #1e2042;
  transform: skewY(2deg);
}
.ticket-container .ticket .logo {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 95px;
  height: auto;
}
.ticket-container .ticket .ticket-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1px;
}
.ticket-container .ticket .ticket-title.current {
  margin-bottom: 20px;
}
.ticket-container .ticket .ticket-subtitle {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  /*text-align: center;*/
  letter-spacing: 1px;
  text-decoration: underline;
}
.ticket-container .ticket .product-summary {
  margin-bottom: 10px;
}
.ticket-container .ticket .product-summary .product-name {
  font-weight: bold;
}
.ticket-container .ticket .product-summary .custom-discount {
  font-weight: bold;
  font-size: 12px;
}
