.modal-cart {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal-cart * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal-cart .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  -webkit-transition: all .2ms linear;
  transition: all .2ms linear;
}

.modal-cart .cart-container {
  position: fixed;
  background: #fff;
  z-index: 1002;
  top: 0;
  right: 0;
  height: 100%;
  width: 350px;
  overflow-y: auto;
  padding: 20px;
}

.modal-cart h2 {
  font-size: 32px;
  line-height: 1.5em;
  letter-spacing: 0;
  color: #000;
}

.modal-cart .close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
}

.modal-cart hr {
  margin: 0.5em 0;
  border-top: 1px solid #000;
}

.modal-cart .cart-product {
  margin: 15px 0;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
  opacity: 1;
}

.modal-cart .cart-product + .cart-product {
  border-top: 1px solid #000;
  padding-top: 15px;
}

.modal-cart .cart-product .remove-product {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
}

.modal-cart .cart-product a .fa-minus-circle {
  font-size: 24px;
}

.modal-cart .cart-product h3 {
  display: inline-block;
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 600;
  margin-left: 5px;
  color: #000;
  width: calc(100% - 35px);
}

.modal-cart .cart-product .ticket-type {
  font-weight: 600;
  margin: 12px 0 0px;
}

.modal-cart .cart-product .quantity-control {
  display: inline-block;
}

.modal-cart .cart-product .quantity-control-input {
  text-align: center;
}

.modal-cart .cart-product .product-price {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 8px;
  margin-left: 5px;
  font-weight: 600;
}

.modal-cart .cart-product .product-meta {
  margin: 10px 0;
}

.modal-cart .cart-product.opac-0 {
  opacity: 0;
}

.modal-cart .cart-totals {
  text-align: right;
  font-size: 14px;
  overflow: auto;
}

.modal-cart .cart-totals table {
  width: auto;
  float: right;
}

.modal-cart .cart-totals table tr {
  border: 0;
}

.modal-cart .cart-totals table tr[data-price="$0.00"] {
  display: none;
}

.modal-cart .cart-totals table td {
  padding: 0;
  padding-left: 10px;
}

.modal-cart .cart-totals .total {
  font-weight: bold;
  font-size: 18px;
}

.modal-cart .continue-shopping-container {
  text-align: center;
}

.modal-cart .continue-shopping-container a {
  font-size: 16px;
  text-decoration: underline;
}

.modal-cart .cart-footer {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -20px;
  margin-top: 1em;
  background: #4f9679;
}

.modal-cart .cart-footer.sticky {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.modal-cart .terms-of-service {
  background: #000;
  text-align: center;
  padding: 10px 5px;
}

.modal-cart .terms-of-service label {
  color: #fff;
  font-size: 12px;
}

.modal-cart .terms-of-service label a {
  color: #fff;
  text-decoration: underline;
}

.modal-cart .button-checkout {
  display: block;
  width: 240px;
  height: 40px;
  line-height: 40px;
  margin: 20px auto 0;
  text-align: center;
  background: #fff;
  color: #4f9679;
  font-size: 16px;
  font-weight: bold;
  border-radius: 20px;
}

.modal-cart .button-checkout:hover {
  text-decoration: none;
}

.modal-cart .cart-timer {
  text-align: center;
  padding: 15px;
  position: relative;
}

.modal-cart .cart-timer .timer-counter {
  display: inline-block;
  vertical-align: middle;
  background: #4f9679;
  position: relative;
  z-index: 1;
  padding-left: 25px;
}

.modal-cart .cart-timer #time {
  font-weight: bold;
}

.modal-cart .cart-timer .min-sec {
  font-size: 12px;
}

.modal-cart .cart-timer .timer-tooltip {
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  background: #4f9679;
  padding-left: 5px;
  padding-right: 25px;
  margin-left: -5px;
  position: relative;
}

.modal-cart .cart-timer .timer-line {
  position: absolute;
  left: 10%;
  top: 50%;
  width: 80%;
  border-top: 1px solid black;
}

/* Hidden styles */
.modal-cart {
  overflow: hidden;
}

.modal-cart .overlay {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.modal-cart .cart-container {
  -webkit-transition: right 250ms ease;
  transition: right 250ms ease;
}

.modal-cart.cart-hidden .overlay {
  visibility: hidden;
  opacity: 0;
  margin-top: -10000px;
  -webkit-transition: visibility 0ms 250ms, opacity 250ms ease, margin-top 0s 250ms;
  transition: visibility 0ms 250ms, opacity 250ms ease, margin-top 0s 250ms;
  /*
            margin-top: -10000px;
            transition: margin-top 0s 2s;
            */
}

.modal-cart.cart-hidden .cart-container {
  right: -350px;
}

/* Mobile Cart */
@media only screen and (max-width: 480px) {
  .modal-cart .cart-container {
    width: 100%;
    padding: 15px;
  }
  .modal-cart .cart-footer {
    margin-left: -15px;
    margin-right: -15px;
  }
  .modal-cart.cart-hidden .cart-container {
    right: -100vw;
  }
}

/* in case it's not elsewhere on the site */
.quantity-control {
  font-size: 0;
  min-width: 110px;
}

.quantity-control button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  background: #71976c;
  height: 38px;
  padding: 0 10px;
}

.quantity-control button i {
  color: #fff !important;
  font-size: 10px;
  line-height: 38px;
}

.quantity-control button:hover {
  background: #658961;
}

.quantity-control button.inactive {
  background: #f9f9f9;
}

.quantity-control button.inactive i {
  color: #cacaca !important;
}

.quantity-control .input-group-prepend, .quantity-control .input-group-append, .quantity-control .quantity-control-input {
  display: inline-block;
  vertical-align: top;
}

.quantity-control .quantity-control-input {
  width: 48px;
  height: 38px;
  font-size: 16px;
  line-height: 1.15em;
}

.disabled .quantity-control button {
  background: #c3c3c3;
  border: 1px solid #c1c1c1;
}

.disabled .quantity-control button i {
  color: #4f4f4f !important;
}

/* Hey Nonny Styles */
.modal-cart div {
  line-height: unset;
}

/* LH-ST Styles */
.modal-cart .cart-section-header {
  background: #000;
  color: #fff;
  font-size: 18px;
  padding: 10px 10px;
  margin: 20px 0 15px;
}
/*# sourceMappingURL=modal-cart.css.map */