/**
 *  Kup karnet
 */
.chall--buypass {
    width: 100%;
    min-height: 100vh;
}
.passLoading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    background-color: var(--navy);
}
.passLoading__wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: inherit;
}
.passLoading__wrap .clearfix {
    height: 100px;
}
.passLoading__wrap .content h1 {
    font-size: 34px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.passLoading__wrap .content p {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 300;
    color: var(--white);
    text-align: center;
    margin: 0;
}
.passLoading__wrap .content .loader {
    width: 35px;
    height: 35px;
    position: relative;
    margin: 34px auto 0;
    transition: ease 0.3s;
}
.passLoading__wrap .content .loader:after {
    content: '';
    display: block;
    background-image: url('/wp-content/themes/cavatinahall/assets/loader.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translate(0, -50%);
    animation: spin 0.8s linear infinite;
    pointer-events: none;
    z-index: 999999999;
    transition: ease 0.3s;
}
@keyframes spin {
    100% {
        -webkit-transform: translate(0, -50%) rotate(360deg);
        transform: translate(0, -50%) rotate(360deg);
   }
}
.passLoading__wrap .logo {
    width: 100%;
    max-width: 200px;
    margin: 32px auto;
}
.passLoading__wrap .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 991px) {
    .passLoading__wrap .content h1 {
        font-size: 26px;
   }
    .passLoading__wrap .content p {
        font-size: 16px;
   }
    .passLoading__wrap .logo {
        max-width: 180px;
   }
}
@media (max-width: 575px) {
    .passLoading__wrap .content h1 {
        font-size: 21px;
   }
    .passLoading__wrap .content p {
        font-size: 14px;
   }
    .passLoading__wrap .content .loader {
        width: 26px;
        height: 26px;
        margin: 25px auto 0;
   }
    .passLoading__wrap .logo {
        max-width: 120px;
        margin: 20px auto;
   }
}


/**
 *  Program page - sidebar dropdown category selector
 */

 .program {
    margin: 35px auto 50px;
    max-width: 1200px;
}
.program__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.program__container .eventsSidebar {
    width: 100%;
    max-width: 350px;
    margin-right: 32px;
    position: sticky;
    top: 100px;
}
.program__container .eventsSidebar .eventsCategories {
    margin: 0 0 20px;
    position: relative;
    user-select: none;
}
.program__container .eventsSidebar .eventsCategories__selected {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--black);
    position: relative;
    cursor: pointer;
}
.program__container .eventsSidebar .eventsCategories__selected.active:after {
    transform: translate(0, -50%) rotate(-90deg);
}
.program__container .eventsSidebar .eventsCategories__selected:after {
    content: '';
    background-image: url('/wp-content/themes/cavatinahall/assets/icons/chevron_right.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    transform: translate(0, -50%) rotate(90deg);
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 10px;
    transition: ease 0.3s;
}
.program__container .eventsSidebar .eventsCategories__selected h3 {
    font-size: 16px;
    line-height: 1;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    padding-right: 20px;
}
.program__container .eventsSidebar .eventsCategories__dropdown {
    display: none;
    width: 100%;
    max-width: 100%;
    max-height: 200px;
    background-color: var(--white);
    overflow-y: scroll;
    border: 2px solid var(--black);
    border-top: 0;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
}
.program__container .eventsSidebar .eventsCategories__dropdown::-webkit-scrollbar {
    width: 8px;
}
.program__container .eventsSidebar .eventsCategories__dropdown::-webkit-scrollbar-track {
    background-color: var(--gray300);
}
.program__container .eventsSidebar .eventsCategories__dropdown::-webkit-scrollbar-thumb {
    background-color: var(--gray700);
}
.program__container .eventsSidebar .eventsCategories__dropdown .category {
    display: block;
    width: 100%;
    padding: 12px 18px;
    border: 0;
    border-bottom: 1px solid var(--gray300);
    border-radius: 0;
    background: unset;
    cursor: pointer;
    text-align: left;
}
.program__container .eventsSidebar .eventsCategories__dropdown .category:hover {
    background-color: var(--gray200);
}
.program__container .eventsSidebar .eventsCategories__dropdown .category span {
    display: block;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
}
.program__container .eventsList {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: calc(100% - 382px);
    transition: ease 0.3s;
}
.program__container .eventsList--loading {
    opacity: 0;
}
.program__container .eventsList .not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
}
.program__container .eventsList .not-found h2 {
    font-size: 2.25em;
    line-height: 1.3;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--gray400);
    margin: 0;
}
.program__container .eventsList__list {
    width: 100%;
}
.program__container .eventsList__more {
    width: 100%;
    margin: 30px 0 0;
}
.program__container .eventsList__more a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    max-width: 300px;
    margin: 10px auto 0;
    background-color: unset;
    border: 1px solid var(--navy);
    border-radius: 4px;
    padding: 0 20px;
    outline: none;
    cursor: pointer;
    transition: ease 0.3s;
}
.program__container .eventsList__more a:hover {
    background-color: var(--navy);
}
.program__container .eventsList__more a:hover span {
    color: var(--white);
}
.program__container .eventsList__more a span {
    font-size: 15px;
    line-height: 1;
    font-family: 'Playfair', sans-serif;
    text-transform: uppercase;
    color: var(--navy);
    transition: ease 0.3s;
}
.program--full {
    max-width: 100%;
}
.program--full .eventsList {
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100% !important;
}
.program--full .eventsList .event {
    max-width: calc(100% / 2 - 10px);
    margin: 0 0 20px;
}
@media (max-width: 1469px) {
    .program__container .eventsSidebar {
        max-width: 320px;
        margin-right: 24px;
   }
    .program__container .eventsList {
        max-width: calc(100% - 344px);
   }
    .program--full .eventsList .event__thumb {
        height: 220px;
        padding-right: 20px;
   }
    .program--full .eventsList .event__content .info {
        flex-wrap: wrap;
   }
    .program--full .eventsList .event__content .info a {
        margin: 10px 0 0;
        max-width: 100%;
   }
}
@media (max-width: 1199px) {
    .program__container .eventsSidebar {
        max-width: 280px;
        margin-right: 15px;
   }
    .program__container .eventsList {
        max-width: calc(100% - 295px);
   }
    .program--full .eventsList .event__content a h3 {
        font-size: 21px;
   }
}
@media (max-width: 991px) {
    .program__container {
        flex-direction: column;
   }
    .program__container .eventsSidebar {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        position: relative;
        top: auto;
   }
    .program__container .eventsSidebar .eventsCategories {
        max-width: 350px;
        margin: 0 auto 20px;
   }
    .program__container .eventsSidebar .eventsCategories__selected {
        padding: 12px 16px;
   }
    .program__container .eventsSidebar .eventsCategories__selected h3 {
        font-size: 14px;
   }
    .program__container .eventsSidebar .eventsCategories__dropdown {
        max-height: 130px;
   }
    .program__container .eventsSidebar .eventsCategories__dropdown .category {
        padding: 10px 16px;
   }
    .program__container .eventsSidebar .eventsCategories__dropdown .category span {
        font-size: 13px;
   }
    .program__container .eventsSidebar .eventsCalendar {
        margin: 0 auto;
   }
    .program__container .eventsList {
        max-width: 100%;
   }
    .program--full .eventsList .event {
        max-width: 100%;
        margin: 0 0 20px;
   }
    .program--full .eventsList .event:last-of-type {
        margin: 0;
   }
}


/**
 *  Seat selector - discounts
 */
.productInfo .discounts__discount input{
    z-index: 2 !important;
}

/**
 *  Section - video01
 */
.video01{
    display: flex;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video01 iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


/**
 *  Product info
 */
 .productInfo {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3058823529);
  }
  .productInfo__wrap {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    max-width: 460px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--gray500);
    border-radius: 10px;
    pointer-events: all;
  }
  .productInfo .pos {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
  }
  .productInfo .pos--seat {
    display: block;
  }
  .productInfo .pos:last-of-type {
    margin: 0;
  }
  .productInfo .pos__color {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    margin-right: 10px;
  }
  .productInfo .pos h4 {
    display: block;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--gold700);
    text-align: center;
  }
  .productInfo .pos .info {
    font-size: 18px;
    line-height: 1;
    margin: 0 0 12px;
    text-align: center;
  }
  .productInfo .pos .info b {
    font-weight: 600;
  }
  .productInfo .pos .price {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    color: var(--gold400);
    text-align: center;
    margin: 0 0 16px;
  }
  .productInfo .discounts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 12px;
  }
  .productInfo .discounts__discount {
    display: flex;
    align-items: flex-start;
    padding: 6px 8px;
    border: 1px solid var(--gray400);
    border-radius: 5px;
    margin: 0 0 6px;
    cursor: pointer;
    position: relative;
  }
  .productInfo .discounts__discount:last-of-type {
    margin: 0;
  }
  .productInfo .discounts__discount input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    cursor: pointer;
    opacity: 0;
  }
  .productInfo .discounts__discount .checker {
    width: 18px;
    height: 18px;
    background-color: var(--white);
    border: 1px solid var(--gray400);
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
  }
  .productInfo .discounts__discount .checker:after {
    content: "";
    display: none;
    background-image: url("/wp-content/themes/cavatinahall/assets/icons/check.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .productInfo .discounts__discount .checker--checked {
    border-color: var(--gold400);
  }
  .productInfo .discounts__discount .checker--checked:after {
    display: block;
  }
  .productInfo .discounts__discount label {
    display: block;
    max-width: calc(100% - 26px);
    font-size: 14px;
    line-height: 1.3;
    color: var(--black);
  }
  .productInfo .discounts__discount--active {
    background-color: var(--gold400);
    border-color: var(--gold400);
  }
  .productInfo .discounts__discount--active label {
    color: var(--white);
  }
  .productInfo .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0 0;
  }
  .productInfo .actions #close-product-info {
    max-width: calc(35% - 5px);
    background-color: var(--gray400);
  }
  .productInfo .actions #close-product-info span {
    color: var(--gray600);
  }
  .productInfo .actions button {
    width: 100%;
    max-width: calc(65% - 5px);
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: var(--gold400);
    cursor: pointer;
    transition: ease 0.3s;
  }
  .productInfo .actions button.remove {
    background-color: var(--red200);
  }
  .productInfo .actions button:hover {
    opacity: 0.75;
  }
  .productInfo .actions button span {
    display: block;
    font-size: 0.75em;
    line-height: 1;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
  }
  
  @media (max-width: 575px) {
    .productInfo__wrap {
      transform: translate(0, calc(-50% + 16px));
      max-width: calc(100% - 20px);
      max-height: calc(100% - 50px);
      padding: 12px;
      overflow: scroll;
    }
    .productInfo__wrap .pos {
      margin: 0 0 8px;
    }
    .productInfo__wrap .pos h4 {
      font-size: 18px;
      margin: 0 0 6px;
    }
    .productInfo__wrap .pos .info {
      font-size: 14px;
      margin: 0 0 8px;
    }
    .productInfo__wrap .pos .price {
      font-size: 21px;
    }
    .productInfo__wrap .discounts__discount {
      padding: 4px 6px;
    }
    .productInfo__wrap .discounts__discount .checker {
      margin-right: 5px;
    }
    .productInfo__wrap .discounts__discount label {
      position: relative;
      top: 2px;
    }
  }
  @media (max-width: 340px) {
    .productInfo__wrap {
      max-width: calc(100% - 20px);
    }
  }