﻿.reservation-admin {
/*    max-width: 768px;*/
    line-height: 1.2;
}
.stickytop {
  background-color: #ffffff;
}

@media (max-width: 576px) {
    .admin-subpage h1 {
        font-size: 14px;
        line-height: normal;
    }
}
#orderitemssubpage {
    font-family: 'Open Sans',sans-serif;
    font-size: 14px;
}
#orderitemsselect .item {
    vertical-align: top;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #d7d5d5;
}

#orderitemsselect .item img {
    width: 25%;
    float: left;
}

#orderitemsselect .item .right {
    width: 75%;
    float: right;
    padding-left: 20px;
}

#orderitemsselect .item .right .title {
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 10px;
}

#orderitemsselect .item .right .price {
    font-weight: bold;
    font-size: 17px;
    margin-top: 12.5px;
    margin-bottom: 12.5px;
}
#orderitemsselect .item .right .pricenodiscount {
    font-weight: normal;
    text-decoration: line-through;
    font-size: 17px;
    margin-top: 12.5px;
    margin-bottom: 12.5px;
}
.pricedetailnodiscount {
    text-decoration: line-through;
}

#orderitemsselect .item .right .info {
    margin-bottom: 20px;
}
#orderitemsselect .item .right .item-timeslot-dropdown {
  min-width: 135px;
  display: inline-block;
  vertical-align: top;
}
#orderitemsselect .item .right .item-packet-container {
  display: inline-block;
}
#orderitemsselect .item .right .item-packet-container .item-packet-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

}

.item-timeslot-noavailable {
  color: #dc3545;
  font-weight: bold;
  display: inline-block;
}
.item-count-minusplus {
  display: inline-block;
  vertical-align: top;
}
.booked-timeslots {
    font-size: 13px;
    text-align: center;
    color: #000000;
    line-height: 20px;
}
.booked-timeslots div {
    background-color: #deeadd;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/*@media (max-width: 379px) {
    #orderitemsselect .item .right .item-timeslot-dropdown {
        width: 115px;
    }
}
*/
#orderitemsselect .item .right a {
  padding-left: 20px;
  padding-right: 20px;
}
#orderitemsselect .item .right .btn {
    box-shadow: none;
}
#orderitemsselect .collapse-button.btn {
    font-size: 18px;
    text-align: left;
    border-radius: 0;
    margin-top: 5px;
}
#orderitemsselect .collapse-button.btn-primary {
    box-shadow: none;
}
.updown-arrow {
    display: inline-block;
    float: right;
}
#selectitemgroupdropdown .updown-arrow
{
    width: 0;
    height: 0;
}
#selectitemgroupdropdown_a {
    max-width: 100%;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
}

.collapse-button .updown-arrow .down, .dropdown.show .updown-arrow .down {
    display: none;
}

.collapse-button.collapsed .updown-arrow .down, .dropdown.show .updown-arrow .up {
    display: unset;
}

.collapse-button.collapsed .updown-arrow .up, .dropdown .updown-arrow .up {
    display: none;
}

#orderitemstoppanel {
    width: 100%;
}
@media (min-width: 768px) {
    #orderitemscampaigndiv.col-md-6 {
        padding-left: 5px;
    }
  #orderitemsdeliverydatetop.col-md-6 {
    padding-right: 5px;
  }
}
#orderitemscampaigndiv {
    margin-bottom: 10px;
}
#orderitemscampaignbutton {
    width: 28px;
    height: 33.75px;
    margin-left: -28px;
    border: none;
    background-color: transparent;
}
#orderitemscampaigntext {
    width: 100%;
    padding: .375rem .75rem;
    padding-right: 28px;
    height: 33.75px;
    border-color: #7c7c7c;
    background-color: transparent;
    border-width: 1px;
    border-radius: .25rem !important;
    border-style: solid;
}
#orderitemsdeliverydatetop {
    margin-bottom: 10px;
}
#orderitemsdeliverydatetop button.btn-outline-primary {
    border: none;
    font-weight: 700;
    color: #1d1e1f;
    background-color: #e6e6e6;
    box-shadow: none;
}
#orderitemsdeliverydatetop button.btn {
    font-size: 16px;
    text-align: left;
}
#orderitemsdeliverydatetop button.readonly {
    cursor: default;
}
#orderitemsdeliverydatetop button.readonly .readonly-into, #orderitemscampaignreadonly {
    font-weight: normal;
    font-size: 12px;
}
#orderitemsdeliverydatetop .dropdown-menu .btn {
    text-align: left;
}
#orderitemscampaignreadonly {
    margin-top: 3px;
}
#orderitemstoppanel .row {
    margin-left: 0;
    margin-right: 0;
}

#orderitemstoppanel table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}
#orderitemsnavigationpanel, #orderitemsshoppingbasket {
  padding: 0;
  border: none;
  width: calc(50% - 5px);
}
#orderitemsnavigationpanel {
  float: left;
}
#orderitemsshoppingbasket {
  float:right;
}
@media (max-width: 768px) {
  #orderitemsnavigationpanel, #orderitemsshoppingbasket {
    width: 100%;
  }
  #orderitemsnavigationpanel {
    margin-bottom: 4px;
  }
}

@keyframes width_0_to_50 {
    from {
      width: 0;
      overflow: hidden;
    }

    to {
      width: 50%;
      overflow: visible;
    }
  }

  #orderitemssubpage.hidebasket #orderitemsnavigationpanel {
    overflow: visible;
    animation-duration: 0.5s;
    animation-name: width_0_to_50;
  }

  @keyframes width_100_to_50 {
    from {
      width: 100%;
      overflow: hidden;
    }

    to {
      width: 50%;
      overflow: visible;
    }
  }

  #orderitemssubpage.hidebasket #orderitemsshoppingbasket {
    overflow: visible;
    animation-duration: 0.5s;
    animation-name: width_100_to_50;
  }

  @keyframes width_50_to_0 {
    from {
      width: 50%;
      overflow: hidden;
    }

    to {
      width: 0;
      overflow: hidden;
    }
  }

  #orderitemssubpage.showbasket #orderitemsnavigationpanel {
    overflow: hidden;
    width: 0;
    animation-duration: 0.5s;
    animation-name: width_50_to_0;
  }

  @keyframes width_50_to_100 {
    from {
      width: 50%;
      overflow: hidden;
    }

    to {
      width: 100%;
      overflow: visible;
    }
  }

  #orderitemssubpage.showbasket #orderitemsshoppingbasket {
    width: 100%;
    overflow: visible;
    animation-duration: 0.5s;
    animation-name: width_50_to_100;
  }

  #orderitemsnavigationpanel button.btn {
    border: none;
    font-size: 14px;
    line-height: 70px;
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
  }

  #orderitemsnavigationpanel button.btn-outline-primary {
    border: none;
    font-weight: 700;
    color: #1d1e1f;
    background-color: #e6e6e6;
    box-shadow: none;
  }

  #orderitemsshoppingbasket {
    font-size: 14px;
    background-color: #f4f4f4;
    line-height: 70px;
    text-align: left;
    vertical-align: middle;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
  }

    #orderitemsshoppingbasket i {
      font-size: 32px;
      vertical-align: middle;
    }

    #orderitemsshoppingbasket span {
      vertical-align: middle;
    }

    #orderitemsshoppingbasket .orderitemstotalcount {
      min-width: 27px;
      height: 27px;
      line-height: 27px;
      text-align: center;
      vertical-align: middle;
      padding: 0;
      margin-left: -10px;
      margin-top: -10px;
    }

    #orderitemsshoppingbasket .orderitemstotalamount {
      display: inline-block;
      float: right;
    }

    #orderitemsshoppingbasket #orderitemsshoppingbaskettext {
      padding-left: 20px;
    }
  /*Small devices (768px and below)*/
  @media (max-width: 768px) {
    #orderitemsshoppingbasket #orderitemsshoppingbaskettext {
      display: none;
    }
  }

  #orderitemsbasket {
    position: absolute;
    background-color: #fafafa;
    z-index: 999999;
    box-shadow: none;
    border: 0px solid #B9B9B9;
    overflow: hidden;
    max-height: 0;
    width: 500px;
    padding-left: 5px;
    padding-right: 5px;
  }

  #orderitemsbasket_background {
    display: none;
  }

  #orderitemssubpage.showbasket #orderitemsbasket_background {
    display: block;
  }

  .orderitems_modalbackground {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
    z-index: 999998;
    height: 100%;
    width: 100%;
  }

  #orderitemsbasket.addonimages {
    width: 600px;
  }

  @media (max-width: 500px) {
    #orderitemsbasket, #orderitemssubpage.showbasket #orderitemsbasket.tablebookingonly {
      width: 100%;
      border: none;
      left: 0;
    }
  }

  @media (max-width: 600px) {
    #orderitemsbasket.addonimages {
      width: 100%;
    }
  }

  #orderitemsbasket .col {
    padding-left: 0;
    padding-right: 0;
  }

  @keyframes orderitemsbasket_show {
    from {
      max-height: 0;
      box-shadow: none;
      overflow: hidden;
      border-width: 0;
    }

    to {
      /*box-shadow: 5px 5px 15px 5px #B9B9B9;*/
      max-height: 600px;
      overflow: visible;
      border-width: 1px;
    }
  }

  #orderitemsbasket .header {
    font-size: 18px;
    font-weight: bold;
  }

  #orderitemssubpage.showbasket #orderitemsbasket {
    box-shadow: 5px 5px 15px 5px #B9B9B9;
    max-height: 2000px;
    border-width: 1px;
    overflow: visible;
    animation-duration: 0.5s;
    animation-name: orderitemsbasket_show;
  }

    #orderitemssubpage.showbasket #orderitemsbasket.tablebookingonly {
      position: relative;
      background-color: transparent;
      z-index: 0;
      box-shadow: none;
      border: none;
      overflow: unset;
      max-height: unset;
    }

  #orderitemssubpage.showbasket .orderitemstotalamount {
    font-weight: bold;
  }

  @keyframes orderitemsbasket_hide {
    from {
      box-shadow: 5px 5px 15px 5px #B9B9B9;
      max-height: 600px;
      overflow: hidden;
      border-width: 1px;
    }

    to {
      max-height: 0;
      box-shadow: none;
      overflow: hidden;
      border-width: 0px;
    }
  }

  #orderitemssubpage.hidebasket #orderitemsbasket {
    box-shadow: none;
    max-height: 0;
    border-width: 0px;
    overflow: hidden;
    animation-duration: 0.5s;
    animation-name: orderitemsbasket_hide;
  }

  #orderitemsbasketitems {
    overflow: auto;
  }

  #orderitemsbasketitemstable td {
    padding-top: 4px;
    padding-bottom: 4px;
    vertical-align: middle;
  }

  #orderitemsbasketitemstable img {
    width: 30px;
    height: 30px;
  }

  #orderitemsbasket .dropdown-menu {
    overflow: auto;
  }

  #orderitemsbasketscrolldown {
    position: absolute;
    z-index: 1;
    box-shadow: none;
  }

  #orderitemsbasketbottom {
  }

    #orderitemsbasketbottom input[type=text], #orderitemsbasketbottom textarea, #orderitemsbasketbottom select, #orderitemsbaskettickets input[type=text], #orderitemsbaskettickets textarea, #subscriptionslogin input[type=text] {
      color: #007bff;
      border-color: #007bff;
      background-color: transparent;
      border-width: 1px;
      border-radius: .25rem !important;
      border-style: solid;
      padding: .375rem .75rem;
      width: 100%;
    }

  .basketcheckboxcontainer div {
    display: block;
    float: left;
    margin-right: 10px;
    vertical-align: top;
  }

  .basketcheckboxcontainer label {
    display: block;
    float: left;
    width: calc(100% - 25px);
  }

  .orderitemsticket {
    padding-top: 10px;
    padding-bottom: 10px;
  }

    .orderitemsticket h2 {
      font-size: 14px;
      font-weight: 700;
    }

  .orderitemsticket-addontable {
  }

    .orderitemsticket-addontable td {
      vertical-align: top;
      padding-left: 5px;
      padding-right: 5px;
      padding-bottom: 10px;
      font-size: 14px;
    }

  .orderitemsticket-addontable-image {
    max-width: 30%;
  }

    .orderitemsticket-addontable-image img {
      vertical-align: top;
      width: 100%;
      margin: 0;
      padding: 0;
    }

  .orderitemsticket .price {
    font-weight: bold;
    color: unset;
  }

  .orderitemsticket .pricenodiscount {
    font-weight: normal;
    text-decoration: line-through;
    color: unset;
  }

  .orderitemsticket-uploadbutton {
    width: 200px;
  }

  .orderitemsticket-imgcontainer, .orderitemsticket-uploadrange, .orderitemsticket-imagescrollhelp {
    width: 156px;
  }

  .orderitemsticket-imgcontainer, .orderitemsticket-imagescrollhelp {
    height: 200px;
    line-height: 200px;
    vertical-align: middle;
    text-align: center;
  }

  .orderitemsticket-imgcontainer {
    color: #808080;
    background-color: #ffffff;
    border: 1px #B9B9B9 solid;
    overflow: hidden;
  }

  .orderitemsticket-imagezoomhelp {
    font-size: small;
    margin-bottom: 10px;
  }

  .orderitemsticket-imagescrollhelp {
    position: absolute;
    z-index: 1;
    color: #ffffff;
  }

  .orderitemsticket-uploadrange {
    display: block;
  }

  #buttonsendorderitems, .orderitemsbasketbutton {
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  #orderitemsbasketbottom #orderitemsdeliveryinfo {
    font-size: small;
  }

  @keyframes orderitemtobasketimage_animate_left {
    from {
      width: 200px;
      height: 200px;
      margin-top: 200px;
      margin-left: -200px;
    }

    to {
      width: 0px;
      height: 0px;
      margin-top: 0px;
      margin-left: 0px;
    }
  }

  #orderitemtobasketimage {
    position: absolute;
    z-index: 2;
    width: 0px;
    height: 0px;
  }

    #orderitemtobasketimage.animate_left {
      width: 0px;
      height: 0px;
      margin-top: 0px;
      margin-left: 0px;
      animation-duration: 0.7s;
      animation-name: orderitemtobasketimage_animate_left;
    }

  @keyframes orderitemtobasketimage_animate_right {
    from {
      width: 200px;
      height: 200px;
      margin-top: 200px;
      margin-left: 200px;
    }

    to {
      width: 0px;
      height: 0px;
      margin-top: 0px;
      margin-left: 0px;
    }
  }

  #orderitemtobasketimage.animate_right {
    width: 0px;
    height: 0px;
    margin-top: 0px;
    margin-left: 0px;
    animation-duration: 0.7s;
    animation-name: orderitemtobasketimage_animate_right;
  }

  @media (max-width: 359px) {
    #orderitemsshoppingbasket {
      padding-left: 10px;
      padding-right: 10px;
    }
  }

  @media (max-width: 576px) {
    #orderitemsselect .item img {
      width: 100%;
      float: none;
      max-height: 200px;
      margin-bottom: 20px;
    }

    #orderitemsselect .item .right {
      width: 100%;
      float: none;
      padding: 0;
    }

    #orderitemsshoppingbasket i {
      font-size: 20px;
    }

    #orderitemsshoppingbasket .orderitemstotalcount {
      margin-left: -10px;
      margin-top: -20px;
    }

    #orderitemsbasketitemstable img {
      width: 24px;
    }
  }

  #orderitemsgiftcardform {
    position: absolute;
    background-color: #fafafa;
    z-index: 999999;
    box-shadow: none;
    border: 0px solid #B9B9B9;
    overflow: visible;
    width: 300px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
  }

  #orderitemsgiftcardtext {
    font-weight: 600;
  }

  #orderitemsgiftcardamount {
    font-size: smaller;
  }

  #availability_calendar_modal {
    max-width: 100vw;
  }

  @media (min-width: 768px) {
    .reservation-max-witdh-center {
      width: 680px;
      margin: 0 auto;
    }
  }

  .container.fullwidth, .fullwidth .container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .inputarea {
    color: #000;
  }

    .inputarea .form-control {
      border: 1px solid #ced4da;
      border-radius: .25rem;
    }

  #registrationcardsubpage {
    max-width: 600px;
  }

    #registrationcardsubpage .col-form-label {
      font-size: larger;
    }

    #registrationcardsubpage .col-form-label {
      font-size: larger;
    }

    #registrationcardsubpage .registration-card-gdpr-consent .col-form-label {
      font-size: unset;
    }

    #registrationcardsubpage .registration-card-general-terms {
      font-size: smaller;
    }

  .registration-card-form .btn-primary, .registration-card-form .btn-primary:focus,
  .reservation-login-form .btn-primary, .reservation-login-form .btn-primary:focus {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    text-transform: uppercase;
    min-width: 10em;
    box-shadow: none;
    margin-top: 10px;
  }

  @media (max-width: 576px) {
    .registration-card-form .info {
      font-size: 12px;
      line-height: normal;
    }
  }

  .registration-card-form .mandatory-text {
    margin-top: 0.3em;
    font-size: small;
    line-height: normal;
  }

  .registration-card-signature {
    height: 150px;
    width: 100%;
  }

  @media (min-width: 576px) {
    .registration-card-form .inputarea-showlabels .form-control::placeholder {
      color: transparent;
    }
  }

  .popover {
    font-size: 12px;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #dc3545;
    text-align: center;
  }

  .bs-popover-top .arrow::after {
    border-top-color: #dc3545;
  }

  .popover .popover-body {
    color: #fff;
  }

  .popover .popover-header {
    display: none;
  }
#orderitemsbasketbottom .popover {
  background-color: #f2a507
}
#orderitemsbasketbottom .bs-popover-top .arrow::after {
  border-top-color: #f2a507;
}
.reservation-tablet #tabletregistrationcard .inputarea {
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  border-radius: 1em;
}

  @media (max-width: 767px) {
    .reservation-tablet #tabletregistrationcard .inputarea {
      padding-left: 0.6em;
      padding-right: 0.6em;
      padding-top: 0.6em;
      padding-bottom: 0.6em;
    }
  }

  .reservation-tablet {
    padding-top: 10px;
  }

    .reservation-tablet #tabletlogin .inputarea {
      padding: 2em;
      border-radius: 1em;
    }

      .reservation-tablet #tabletlogin .inputarea h1 {
        margin-bottom: 1em;
      }

    .reservation-tablet .menutopbar {
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      padding: 10px;
    }

    .reservation-tablet .btn {
      font-size: 1em;
    }

    .reservation-tablet .registration-card-form .btn, .reservation-tablet #tabletlogin .btn {
      width: 200px;
      height: 50px;
      margin: 10px auto;
      display: block;
      font-size: 1em;
    }

  .add-extras_basket table {
    margin-bottom: 20px;
    width: 100%;
  }
  /*Large devices (desktops, 992px and up)*/
  @media (min-width: 992px) {
    .add-extras_basket table {
      width: auto;
      min-width: 50%;
    }
  }

  .add-extras_basket td {
    vertical-align: middle;
  }

  .add-extras_basket .totals-row td {
    font-weight: bold;
    border-top: 1px solid #B9B9B9;
  }

  .add-extras_basket .item-currency {
    text-align: right;
  }

  .add-extras_basket .item-price {
    text-align: right;
    width: 100px;
  }

  .add-extras_basket .item-delete {
    text-align: right;
  }

  #subscriptionslogin {
    max-width: 400px;
  }

  #subscriptionssubpage .label {
    font-weight: bold;
  }

  #subscriptionssubpage .small-label {
    font-weight: bold;
    font-size: small;
  }

  .subscriptions-buttons button {
    clear: both;
    display: block;
    float: right;
  }

  .largetable .subscriptions-buttons button {
    min-width: 100px;
  }

  .smalltable .subscriptions-buttons button {
    min-width: 70px;
  }

  .subscriptions-buttons button:nth-child(n+2) {
    margin-top: 4px;
  }

  .kiosk-selectlanguage {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
  }

    .kiosk-selectlanguage td {
      text-align: center;
      padding-top: 100px;
    }

    .kiosk-selectlanguage img {
      width: 300px;
      height: 180px;
    }

    .kiosk-selectlanguage span {
      display: block;
    }

    .kiosk-selectlanguage a, .kiosk-selectlanguage a:hover, .kiosk-selectlanguage a:visited {
      font-size: 18px;
      color: #000000;
      text-decoration: none;
    }

  .kiosk-language-dropdown img {
    width: 28px;
    height: 18px;
    margin-right: 10px;
  }

  .return-button, .kiosk-language-dropdown {
    height: 32.5px;
  }

  .return-button {
    margin-right: 100px;
  }

  .kiosk-modal-confirmation .reservation-order-confirmation {
    font-size: 0.7em;
    margin-top: 3em;
  }

  .kiosk-modal-subtext {
    font-size: 0.9em;
    margin-bottom: 10px;
  }

  .kiosk-modal-printstatus {
    font-size: 0.8em;
  }

  .kiosk-modal-alert {
    color: #ff0000;
  }
