:root {
  --barbg: rgba(230, 0, 213, 0.9);
  --ftrbg: rgba(0, 0, 0, 0.6);
  --crtbg: rgba(0, 0, 0, 0.6);
  --cntbg: rgba(255, 255, 255, 0.7);
  --cnrrad_all: 15px 15px 15px 15px;
  --cnrrad_tltr: 15px 15px 0px 0px;
  --cnrrad_blbr: 0px 0px 15px 15px;
  --optnclr: #cccccc;
  --resvclr: rgba(13, 159, 217);
  --spacing: 10px;
}

.no-text-select {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

div#cart {
  /* width: 600px;
    height: auto;
    z-index: 2000; */
  display: none;
  box-shadow: 0px 0px 3px 1px gray;
  font-family: "Roboto";
  z-index: 5500;
}

div#cart.decor {
  border-radius: var(--cnrrad_all);
}

div#cart > div#bar {
  width: 100%;
  height: 50px;
  display: grid;
  grid-template-columns: auto auto;
}

div#cart > div#bar.decor {
  background-color: var(--barbg);
  border-radius: var(--cnrrad_tltr);
}

div#cart.show > div#bar {
  border-radius: var(--cnrrad_tltr);
}

div#cart.hide > div#bar {
  border-radius: var(--cnrrad_all);
}

div#cart > div#bar > #btn_book {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 5px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

div#cart > div#bar > #status {
  width: 225px;
  display: flex;
  margin-left: 5px;
}

div#cart > div#bar > #status > #status_msg {
  margin-top: auto;
  margin-bottom: auto;
  font-size: small;
  color: #fff;
}

div#cart > div#bar > #status > #rvd {
  display: flex;
  margin-right: 5px;
  margin-top: auto;
  margin-bottom: auto;
}

div#cart > div#bar > #status > #rvd > #rvd_cnt {
  background-color: var(--resvclr);
}

div#cart > div#bar > #status > #opn > #opn_cnt {
  background-color: var(--optnclr);
}

div#cart > div#bar > #status > #opn {
  display: flex;
  margin-right: 5px;
  margin-top: auto;
  margin-bottom: auto;
}

div#cart > div#bar > #status .cart_status_count {
  padding: 0.5rem;
  border-radius: 20px;
  font-size: 1rem;
  text-align: center;
  width: 20px;
  height: 20px;
  border: none;
}

div#cart > div#bar > #status .cart_status_text {
  margin: auto;
  font-size: 0.7rem;
  padding-left: 3px;
}

/* div#cart>div#content {
    width: 100%;
    height: 200px;
    max-height: 400px;
    overflow-x: auto;
    overflow-y: auto;
} */

/* div#cart>div#content.decor {
    background-color: var(--cntbg);
}

div#cart.show>div#content {
    display: block;
} */

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items {
  padding-left: 0px;
  height: 100%;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 10px;
}
div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li {
  padding-right: 10px;
}
div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li
  > ul {
  list-style-type: none;
  padding-left: 0px;
  background-color: var(--white);
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li {
  border-radius: var(--spacing);
  display: flex;
  margin-left: var(--spacing);
  margin-right: var(--spacing);
  margin-bottom: var(--spacing);
}

div#cart > div#content > ul#cart_items > li.cancelled ul,
div#cart > div#content > ul#cart_items > li.cancelled .item-rowtot {
  text-decoration: line-through;
}

div#cart
  > div#content
  > ul#cart_items
  > li.cancelled
  .item-cntrl
  > .item-cntrl-del,
div#cart
  > div#content
  > ul#cart_items
  > li.cancelled
  .item-cntrl
  > .item-cntrl-up,
div#cart
  > div#content
  > ul#cart_items
  > li.cancelled
  .item-cntrl
  > .item-cntrl-dn {
  display: none;
}

div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-rvk {
  display: none;
}

div#cart
  > div#content
  > ul#cart_items
  > li.cancelled
  .item-cntrl
  > .item-cntrl-rvk {
  display: unset;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li.optioned {
  border: solid thin var(--optnclr);
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li.reserved {
  border: solid thin var(--resvclr);
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li.reserved
  > ul {
  background-color: var(--resvclr);
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li.optioned
  > ul {
  background-color: var(--optnclr);
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li
  > ul {
  border-radius: var(--spacing) 0px 0px var(--spacing);
  padding-left: var(--spacing);
  display: flex;
  width: 60%;
  flex-wrap: wrap;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li
  > ul
  > li {
  margin-top: auto;
  margin-bottom: auto;
  /* max-width: 260px; */
  padding: 8px 0px;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-name {
  font-size: xx-large;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-pckg {
  font-size: 14px;
  font-weight: 600;
  padding-left: 15px;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-rate {
  font-size: x-small;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-qty {
  font-size: x-small;
  padding-left: var(--spacing);
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-rowtot {
  font-size: xx-large;
  text-align: center;
  width: 40%;
  margin-top: auto;
  margin-bottom: auto;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-cntrl {
  display: flex;
}

/*This is done until the feature is complete*/
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-up,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-dn {
  display: none;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-cntrl
  > .item-cntrl-del,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-up,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-dn,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-rvk {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  text-align: center;
  margin-right: var(--spacing);
  margin-top: auto;
  margin-bottom: auto;
  font-size: medium;
  cursor: pointer;
  margin-left: 2px;
  margin-right: 2px;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-cntrl
  > .item-cntrl-del:hover,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-up:hover,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-dn:hover,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-rvk:hover {
  cursor: pointer;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  .item-cntrl
  > .item-cntrl-del
  > div,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-up > div,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-dn > div,
div#cart > div#content > ul#cart_items .item-cntrl > .item-cntrl-rvk > div {
  margin: auto;
  position: relative;
  top: -2px;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > div#cart_msg {
  margin: auto;
  width: 80%;
  background-color: white;
  text-align: center;
  color: #000000;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > div#cart_msg
  > p {
  font-family: "Roboto" !important;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > div#cart_msg.hide {
  display: none;
}

div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > div#cart_msg.show {
  display: block;
}

div#cart.hide > div#content {
  display: none;
}

div#cart > div#footer {
  width: 100%;
  height: 50px;
}

div#cart > div#footer.decor {
  background-color: var(--ftrbg);
  border-radius: var(--cnrrad_blbr);
}

div#cart > div#footer > #decline_reservation {
  width: fit-content;
  color: #dedcdc;
  cursor: pointer;
  margin: auto;
}

div#cart.show > div#footer {
  display: flex;
}

div#cart.hide > div#footer {
  display: none;
}
/* Cart css start  */
.stand-details {
  margin-left: 15px;
}
.stand-details .stand-price,
.stand-details .fees-details {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
.stand-details .stand-price div:first-child,
.stand-details .fees-details div:first-child {
  font-size: 11px;
  width: 100%;
  max-width: 240px;
  height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-wrap: break-word;
  cursor: pointer;
}
.stand-details .stand-price div:last-child,
.stand-details .fees-details div:last-child {
  font-size: 12px;
}
/* add more stand in cart css*/
.add-stand-wrapper {
  border-radius: 10px;
  border: 1px dashed #a6a6a6;
  padding: 13px 0;
  color: #919191;
  font-size: 14px;
  margin: 0 10px;
  cursor: pointer;
}
.modal-footer .cart-footer {
  margin-top: 35px;
}
.cart-footer .stand-selection-info {
  color: #6e7200;
  font-size: 14px;
  font-weight: 400;
  border-radius: 20px;
  background: #f7f4d8;
  padding: 6px 15px 6px 6px;
  gap: 5px;
}
.modal-footer .cart-footer .book-now-btn .btn {
  padding-right: 90px;
  padding-left: 90px;
}
/* add more stand in cart css*/
/* Cart css end  */

@media only screen and (max-width: 992px) {
  div#cart
    > div.modal-dialog
    > div.modal-content
    > div.modal-body
    > ul#cart_items
    .item-pckg {
    padding-left: 0;
    padding-right: 10px;
  }
  div#cart
    > div.modal-dialog
    > div.modal-content
    > div.modal-body
    > ul#cart_items
    > li
    > ul
    > li {
    padding: 0px 0px 8px;
  }
  .stand-details {
    margin-left: 0px;
    margin-right: 10px;
  }
  .stand-details .stand-price div:first-child,
  .stand-details .fees-details div:first-child {
    width: 170px;
  }
}
@media only screen and (max-width: 576px) {
  div#cart
    > div.modal-dialog
    > div.modal-content
    > div.modal-body
    > ul#cart_items
    .item-rowtot {
    font-size: x-large;
  }
  div#cart
    > div.modal-dialog
    > div.modal-content
    > div.modal-body
    > ul#cart_items
    > li
    > ul
    > li {
    padding: 0px 0px 8px;
  }
  div#cart
    > div.modal-dialog
    > div.modal-content
    > div.modal-body
    > ul#cart_items
    .item-pckg {
    font-size: 12px;
  }
  .stand-details .stand-price div:first-child,
  .stand-details .fees-details div:first-child {
    width: 85px;
  }

}
@media only screen and (max-width: 450px) {
    div#cart
    > div.modal-dialog
    > div.modal-content
    > div.modal-body
    > ul#cart_items
    > li {
    padding-right: 3px;
  }
  div#cart
  > div.modal-dialog
  > div.modal-content
  > div.modal-body
  > ul#cart_items
  > li
  .item-rowtot{
  font-size: 14px;
  }
}