main {
  padding-top: 137px;
}

.booking-table {
  margin-bottom: 0 !important;
}

.booking-table th {
  font-weight: 400;
  text-transform: uppercase;
}

.booking-table th,
.booking-table td {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.booking-table td {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  vertical-align: middle;
}

.booking-table th {
  border-bottom: 1px solid #CDD3D6 !important;
}

.cart-price {
  font-size: 18px;
  font-weight: 300;
}

.cart-price span {
  font-weight: 500;
  font-size: 28px;
}

.cart-price.discounted-price span {
  font-weight: 400;
}

.booking-table .cart-product {
  display: flex;
  align-items: flex-start;
  max-width: 410px;
}

.booking-table .cart-product-img {
  margin-right: 1.25rem;
  width: 170px;
  height: 130px;
  object-fit: cover;
}

.booking-table .cart-product-description .cart-product-title {
  font-family: 'minerva-modern', sans-serif;
  font-size: 24px;
  line-height: 1;
}

.booking-table .price-col {
  text-align: right;
}

.booking-table .delete-col {
  text-align: center;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  width: 180px;
  visibility: hidden;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: -50px;
  right: 105%;
  height: 127px;
  margin-left: -60px;
  padding-right: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltipinner {
  position: absolute;
  left: 0;
  top: 0;
  right: 10px;
  background-color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 0px 20px -5px rgb(0 0 0 / 30%);
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  left: calc(100% - 10px);
  top: 50%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  transform: rotate(-90deg);
  box-shadow: 0 0px 20px -5px rgb(0 0 0 / 30%);
}

.tooltip .tooltiptext.waiting::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffffa3;
}

.tooltip .tooltiptext.waiting .lds-ripple {
  display: block;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip button {
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  color: #e75657;
  border: none;
  background: none;
  cursor: pointer;
}

.tooltip button:hover {
  font-weight: 500;
}

.booking-disclaimer {
  text-align: right;
  font-size: 16px;
  background-color: #E0F0F9;
  padding: 1.5rem;
}

.booking-table select {
  background: #E6E9EA;
}

.booking-table tr {
  border-bottom: 1px solid #CDD3D6;
}

.total-row {
  border-bottom: 1px solid #CDD3D6;
  margin-bottom: 2rem;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}

.total-price {
  font-size: 30px;
  font-weight: 300;
  flex: 0 0 50%;
  padding-right: 16%;
  text-align: right;
}

.total-price span {
  font-weight: 500;
  font-size: 40px;
}

.total-label {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 400;
  flex: 0 0 50%;
}

.product-name {
  line-height: 1;
}

.cart-promo-box {
  border: 1px solid rgba(5,33,51,0.15);
  padding: 28px 24px;
  text-align: center;
}

.cart-promo-box-discounts {
  background: rgba(45, 158, 214, 0.1) url("/assets/img/waves-texture-light-blue.svg") center center;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
}

@media screen and (max-width: 1087px) {
  main {
    padding-top: 75px;
  }

  .table thead th {
    font-size: 16px;
  }

  .booking-table thead {
    display: none;
  }

  .booking-table thead th:nth-child(1) {
    width: 27% !important;
  }
  .booking-table thead th:nth-child(2) {
    width: 29% !important;
  }
  .booking-table thead th:nth-child(3) {
    width: 11% !important;
  }
  .booking-table thead th:nth-child(4) {
    width: 12% !important;
  }

  .booking-table tbody {
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    overflow: hidden;
    /* overflow-x: scroll;
    width: 650px; */
  }

  .booking-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-top: 25px;
    padding-bottom: 20px;
    border-top: 1px solid #cdd3d6;
  }

  .booking-table tbody td {
    width: 100% !important;
  }

  .booking-table tbody td:nth-child(3) {
    width: 90% !important;
  }
  .booking-table tbody td:nth-child(4) {
    width: 10% !important;
  }

  .booking-table tbody td {
    padding: 6px 0 !important;
  }

  .cart-product {
    flex-flow: row;
    align-items: start !important;
  }

  .booking-table .cart-product-img {
    width: 120px;
    height: 125px;
  }

  .booking-table .cart-product-description .cart-product-title {
    margin-bottom: 0px;
    font-size: 25px;
  }

  .total-col {
    padding-left: 12px !important;
  }

  .booking-table .price-col {
    text-align: right;
  }

  .booking-table .delete-col {
    display: flex;
    flex-flow: column;
    justify-content: end;
    text-align: right;
  }

  .total-price {
    font-size: 20px;
    padding-right: 0;
  }

  .total-price span {
    font-size: 30px;
  }

  .total-label {
    font-size: 20px;
  }

  .booking-disclaimer,
  .has-text-right {
    text-align: center !important;
  }

  #consultation-preference {
    width: 50%;
  }

  .cart-price.discounted-price {
    text-align: right;
    margin-bottom: 0;
    padding-right: 12px;
  }

  .cart-promo-box-discounts {
    flex-direction: column;
  }

}

@media screen and (min-width: 1088px) {

  .cart-promo-box {
    margin: 2rem 2rem 0 0;
  }
}
