﻿html, body {
    min-height: 100%;
    height: 100%;
}

body {
    background-image: url(/Images/BookingWizard/bookWizardBackground.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 25px;
    height: 25px;
}

.package-session-selection {
    transition: all ease-in-out 0.3s;
}

.full-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(2, 13, 17, 0.5);
    z-index: 10;
    transition: all ease-in-out 0.3s;
    opacity: 0;
    pointer-events: none;
}

.full-loader > div {
    background-color: #0a232c;
    border: 1px solid rgba(65, 192, 240, 0.1);
    box-shadow: rgba(0,0,0,0.3) 0 0 50px;
    display: block;
    height: 150px;
    width: 150px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 75px);
}

.full-loader .loader-symbol {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid #41c0f0;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    animation-duration: 1.7s;
    animation-name: rotate;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-duration: 1.7s;
    -webkit-animation-name: rotate;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.full-loader > div:after {
    display: block;
    margin: auto;
    width: 30px;
    height: 30px;
    border: 2px solid #41c0f0;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    margin-top: 8px;
    animation-duration: 1.7s;
    animation-name: rotate-anticlickwise;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-duration: 1.7s;
    -webkit-animation-name: rotate-anticlickwise;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

.full-loader.show {
    opacity: 1;
    pointer-events: all;
}

.full-loader p {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    text-transform: uppercase;
    color: #41c0f0;
}

.full-loader.redirecting > div {
    width: auto;
    max-width: 360px;
    padding: 30px;
    height: 240px;
    top: calc(50% - 120px);
}

.full-loader.redirecting p {
    position: relative;
    display: block;
    top: 0;
    font-size: 16px;
}

.full-loader.redirecting .gateway-logo {
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 200px;
    margin: auto;
    margin-top: 10px;
}

.full-loader.redirecting.paypal .gateway-logo {
    background-image: url(/Images/BookingWizard/payPalLogo.png);
}

.full-loader.redirecting.freedompay .gateway-logo {
    background-image: url(/Images/BookingWizard/freedompayLogo.png);
}

.full-loader.redirecting .loader-symbol {
    top: 140px;
}

.full-loader.redirecting > div:after {
    top: 140px;
}

.loading {
    opacity: 0.5;
}

.loader-container {
    position: relative;
    top: 50px;
    transition: all ease-in-out 0.3s;
    pointer-events: none;
    z-index: 1;
}

.loader-container.hidden {
    transform: scale(0.5);
    opacity: 0;
}

.loader {
    background-image: url(/Images/ringLoader.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 74px;
    height: 74px;
    animation-duration: 0.8s;
    animation-name: rotate;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-duration: 0.8s;
    -webkit-animation-name: rotate;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.loader > span {
    display: none;
}

.wizard-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0a232c;
    padding: 20px;
    text-align: center;
    z-index: 2;
    box-shadow: rgba(0,0,0,1) 0 0 150px;
}

section {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    padding-bottom: 100px;
}

section.wizard-section {
    display: none;
}

section.wizard-section.current-section {
    display: block;
}

section header {
    text-transform: uppercase;
    margin-right: 40px;
}

section header:after {
    content: '';
    display: table;
    clear: both;
}

section header strong {
    font-size: 16px;
}

section header h2 {
    font-size: 22px;
    font-weight: 500;
}

.back-button {
    float: left;
    width: 45px;
    height: 45px;
    border: 2px solid #256b86;
    margin-right: 15px;
    position: relative;
    top: 8px;
    transition: all ease-in-out 0.15s;
}

.back-button:hover {
    background-color: rgba(65, 192, 240, 0.1);
    border-color: #41c0f0;
}

.back-button:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/Images/upArrowWhite.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px auto;
    transform: rotate(-90deg);
}

.back-button > span {
    display: none;
}

/*a.button {
    margin: 30px 0;
}*/

.button-container {
    transition: all ease-in-out 0.2s;
    pointer-events: all;
}

.hidden {
    transform: scale(0.8,0.8);
    pointer-events: none;
    opacity: 0;
}

.calendar-button {
    color: #fff;
    border: 2px solid #256b86;
    margin: 20px auto;
    display: block;
    padding: 10px;
    text-transform: uppercase;
    max-width: 180px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
}

.calendar-button span {
    display: inline-block;
    background-image: url(/Images/BookingWizard/calendarIcon.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding-left: 30px;
}


.session-footer .footer-details:after {
    clear: both;
    display: table;
}

.session-footer .footer-details > div {
    display: block;
    float: left;
    width: 20%;
    text-align: left;
    font-size: 14px;
    padding-right: 20px;
    display: none;
}

.session-footer .footer-details > div.total {
    display: block;
    float: left;
    text-align: left;
}

.session-footer .footer-details > div > span {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    color: #41c0f0;
    margin-bottom: 10px;
}

.session-footer .footer-details > div strong {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.session-footer .footer-details > div.total span {
    margin: 0;
}

.session-footer .footer-details > div.total strong {
    font-size: 30px;
}

.session-footer .button {
    float: right;
    margin: 0;
}

.venue-map-container {
    height: 400px;
    background-color: rgb(48, 51, 52);
    position: relative;
}

.venue-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.choose-location-secton .button-container {
    margin-top: 50px;
    text-align: center;
}

.choose-location-secton .location-address {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Scroll date */
.date-selection {
    overflow: hidden;
    margin: 0 -20px;
    border: 2px solid #256b86;
    border-left: none;
    border-right: none;
    position: relative;
    height: 134px;
}

.date-slider {
    width: calc(7 * 115px);
    position: absolute;
    top: 0;
    left: 0;
    transition: all ease-in-out 0.5s;
}

.no-animation .date-slider {
    transition: none;
}

.date-slider div {
    position: relative;
    float: left;
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.3);
    width: 115px;
    height: 130px;
    text-align: center;
    text-transform: uppercase;
    border-right: 2px solid #256b86;
    font-weight: 400;
    line-height: normal;
    transition: all ease-in-out 0.2s;
    cursor: pointer;
}

.date-slider div:hover {
    background-color: rgba(65, 192, 240, 0.1);
}

.date-slider div.open {
    color: #fff;
    background-color: rgba(65, 192, 240, 0.1);
}

.date-slider div:after {
    content: '';
    display: block;
    position: absolute;
    transition: all ease-in-out 0.15s;
    opacity: 0;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: transparent #41c0f0 transparent transparent;
}

.date-slider div.selected:after {
    opacity: 1;
    border-width: 0 20px 20px 0;
}

.date-slider div.limited {
    background-color: rgba(171, 157, 41, 0.2);
    color: #f3e65e;
}

.date-slider div.sold {
    background-color: rgba(255, 0, 0, 0.2);
    color: #ad292b;
}

.date-slider div.active {
    color: #fff;
    background-color: rgba(65, 192, 240, 0.5);
}

.date-slider div span {
    line-height: 100%;
}

.date-slider div .weekday {
    font-size: 10px;
    padding-top: 13px;
    padding-bottom: 15px;
    font-weight: 500;
}

.date-slider div .month {
    font-size: 14px;
}

.date-slider div .date {
    font-size: 38px;
}

.date-slider div .status {
    font-size: 14px;
    padding-top: 10px;
    font-weight: 300;
}

.date-slider div span {
    display: block;
}

/* Package selection */
.integrated-package-session-selection .package {
    position: relative;
    border: 2px solid #256b86;
    margin: 20px 0;
    background-color: rgba(37, 107, 134, 0.1);
}

.package.limited {
    border-color: #948c30;
    background-color: rgba(243, 230, 94, 0.1);
}

.package.sold-out {
    border-color: #ad292b;
    background-color: rgba(255, 0, 0, 0.1);
}

.package .hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
    z-index: 1;
}

.package .hero a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/Images/BookingWizard/playVideo.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90px auto;
    opacity: 0.7;
    transform: scale(0.8);
    transition: all ease-in-out 0.15s;
}

.package .hero:hover a {
    transform: scale(1);
    opacity: 1;
}

.package .hero a span {
    display: none;
}

.package .details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.sessions-toggle {
    /*position: absolute;*/
}

.package-availability {
    display: none;
}

.details > .price {
    display: none;
}

.package .package-details {
    position: relative;
    height: 300px;
}

.package .package-details h3 {
    margin: 5px;
}

.integrated-package-session-selection .package-availability {
    font-size: 18px;
    margin-top: 30px;
}

.integrated-package-session-selection .package.available .package-availability .availability {
    color: #00e77d;
}

a.sessions-toggle {
    margin: 20px;
}

.package .package-details p {
    display: none;
}

.package .sessions > div {
    position: relative;
    padding: 20px;
    border-top: 1px solid #256b86;
}

.package .sessions > div.active {
    background-color: rgba(65, 192, 240, 0.2);
}

.package .sessions > div .time {
    position: absolute;
    top: 15px;
    left: 20px;
}

.package .sessions > div .price {
    position: absolute;
    top: 15px;
    right: 20px;
}

.package ul {
    margin: 0;
    padding: 0;
    margin-top: 25px;
    display: flex;
    border-right: 2px solid #256b86;
}

.package ul li {
    position: relative;
    display: block;
    flex-grow: 1;
    border: 2px solid #256b86;
    border-right: none;
    height: 40px;
}

.package ul li:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/Images/BookingWizard/playerIcon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px auto;
}

.package ul li.active {
    background-color: #41c0f0;
}

.package ul li.sold {
    background-color: rgba(255, 0, 0, 0.3);
}

.package ul li.sold:before {
    opacity: 0.2;
}

.package ul li > span {
    display: none;
}

.no-sessions-message {
    border: 2px solid rgba(65, 192, 240, 0.5);
    color: rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.no-sessions-message.hidden {
    display: none;
}

.package-selection {
    overflow: hidden;
    margin: 30px -30px;
}

.package-details {
    text-align: center;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
}

/* Session selection */
.session-selection {
    background-color: rgba(65, 192, 240, 0.1);
    margin: 0 -30px;
    padding-bottom: 80px;
}

.session-selection > div {
    padding: 20px 30px;
    border-top: 1px solid rgba(65, 192, 240, 0.2);
    color: #fff;
    text-transform: uppercase;
    position: relative;
    transition: all ease-in-out 0.3s;
}

.session-selection > div.active {
    background-color: rgba(65, 192, 240, 0.1);
}

.session-selection > div .time {
    float: left;
    margin-bottom: 10px;
}

.session-selection > div .price {
    float: right;
}

.session-selection > div ul:after {
    clear: both;
    content: '';
    display: table;
}

.session-selection ul {
    display: flex;
    flex-direction: row;
    border-left: 2px solid #256b86;
    clear: both;
}

.session-selection ul li {
    display: block;
    flex-grow: 1;
    border: 2px solid #256b86;
    border-left: none;
    height: 50px;
    box-sizing: border-box;
    position: relative;
    transition: all ease-in-out 0.2s;
}

.session-selection ul li span {
    display: none;
}

.multiply {
    font-family: 'Montserrat', sans-serif;
}

.session-selection > div ul li:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/Images/BookingWizard/playerIcon.png);
    background-position: center;
    background-size: 16px auto;
    background-repeat: no-repeat;
}

.session-selection > div ul li > span {
    display: none;
}

.session-selection > div ul li.active {
    background-color: #41c0f0;
}

.session-selection > div ul li.sold {
    background-color: rgba(255, 0, 0, 0.3);
}

.session-selection > div ul li.sold:before {
    opacity: 0.2;
}

/* Personal information */
.logged-in-account {
    border: 2px solid #256b86;
    background-color: rgba(65, 192, 240, 0.05);
    padding: 30px;
    position: relative;
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
}

.logged-in-account .logout {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
    background-image: url(/Images/closeMenuIcon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    transition: all ease-in-out 0.2s;
}

.logged-in-account .logout:hover {
    opacity: 1;
}

.logged-in-account .logout > span {
    display: none;
}

.discount-code-container {
    position: relative;
}

.discount-code-container .discount-success {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 50px;
    background-image: url(/Images/BookingWizard/discountTickCircle.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    transform: scale(0.5);
    opacity: 0;
    transition: all ease-in-out 0.2s;
}

.discount-code-container.success .discount-success {
    transform: scale(1);
    opacity: 1;
}

.booking-summary {
    border: 2px solid #256b86;
    margin: 30px 0;
}

.booking-summary .hero {
    background-color: rgba(37, 107, 134, 0.3);
    background-repeat: no-repeat;
    background-position: center 25%;
    background-size: cover;
    display: block;
    height: 300px;
    border-bottom: 1px solid rgba(37, 107, 134, 0.5);
}

.booking-summary .details {
    font-size: 14px;
    color: #fff;
    padding: 20px;
    background-color: rgba(65, 192, 240, 0.05);
    position: relative;
}

.button.edit-summary {
    margin: 0;
    margin-top: 30px;
    padding: 15px;
    display: block;
    border: 2px solid #256b86;
    text-align: center;
}

.button.edit-summary:hover {
    border-color: #41c0f0;
    background-color: rgba(37, 107, 134, 0.5);
}

.booking-summary .details > div {
    margin-top: 15px;
}

.booking-summary .details > div:first-child {
    margin: 0;
}

.booking-summary .details strong {
    text-transform: uppercase;
    display: block;
}

.cost-summary {
    color: #fff;
    text-transform: uppercase;
    transition: all ease-in-out 0.3s;
}

.cost-summary.loading {
    opacity: 0.3;
}

.cost-summary .line-item {
    border-bottom: 1px solid rgba(65, 192, 240, 0.2);
    padding: 10px 0;
}

.cost-summary .line-item .price {
    float: right;
    text-align: right;
}

.cost-summary .line-item:after {
    clear: both;
    display: table;
    content: '';
}

.cost-summary .line-item:last-child {
    border-bottom: none;
}

.cost-summary .line-item.total .price {
    font-size: 28px;
}

.wizard-footer.timer {
    transition: all ease-in-out 0.3s;
    transform: translateY(100%);
}

.wizard-footer.timer.show {
    transform: translateY(0);
}

.wizard-footer.timer.expire-warning {
    background-color: #ad8421;
}

.wizard-footer.timer.expire-critical {
    background-color: #8b1819;
}

.wizard-footer.timer .time-remaining-label {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wizard-footer.timer .count-down-timer {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px auto;
    padding: 3px 0;
    font-size: 28px;
    color: #fff;
    font-weight: 500;
    width: 100px;
    overflow: visible;
    text-align: left;
}

.term-section {
    text-align: center;
    margin: 30px 0;
}

.booking-small-print,
.booking-small-print li,
.booking-small-print p {
    font-size: 16px;
}

.booking-small-print {
    margin: 30px 0;
    border: 2px solid #256b86;
    background-color: rgba(65, 192, 240, 0.05);
    padding: 20px;
    display: none;
}

.booking-small-print strong {
    color: #fff;
    font-weight: 500;
}

.booking-small-print ul, .booking-small-print ol {
    margin-left: 20px;
}

.booking-small-print li {
    margin: 10px 0;
}

.term-section .agree-to-terms {
    display: inline-block;
    position: relative;
    padding-left: 50px;
    cursor: pointer;
}

.term-section .checkbox {
    display: inline-block;
    border: 1px solid rgba(65, 192, 240, 0.2);
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all ease-in-out 0.15s;
}

.term-section .checked .checkbox {
    border-color: #41c0f0;
    box-sizing: border-box;
}

.term-section .checkbox:after {
    opacity: 0;
    content: '';
    background-color: rgba(65, 192, 240, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    transition: all ease-in-out 0.15s;
    transform: scale(0.5);
    background-image: url(/Images/tick.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px auto;
}

.term-section .checked .checkbox:after {
    opacity: 1;
    transform: scale(1);
}

.date-week-nav {
    position: absolute;
    margin: auto;
    left: -20px;
    right: -20px;
    height: 10px;
}

.date-week-nav a {
    display: block;
    width: 50px;
    height: 160px;
    position: absolute;
    right: 0;
    background-image: url(/Images/BookingWizard/weekNavArrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px auto;
    opacity: 0.4;
    transition: all ease-in-out 0.2s;
}

.date-week-nav a:hover {
    opacity: 1;
}

.date-week-nav a.disabled {
    opacity: 0.1;
    pointer-events: none;
}

.date-week-nav a > span {
    display: none;
}

.date-week-nav .prev-week {
    left: 0;
    transform: rotate(180deg);
}

.date-week-nav .next-week {
    right: 0;
}

.popup-container {
    pointer-events: none;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    position: fixed;
    background-color: rgba(2, 13, 17, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    display: flex;
    z-index: 2;
}

.popup-container.show {
    pointer-events: all;
    opacity: 1;
}

.popup-container .popup {
    transition: all ease-in-out 0.3s;
    transform: scale(0.8);
    background-color: rgba(2,13,17,1);
    max-width: 600px;
    flex-grow: 1;
    margin: auto;
    border: 2px solid #256b86;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 100px;
    padding-bottom: 140px;
    position: relative;
}

.popup-container .popup .popup-body {
    text-align: center;
}

.popup-container .popup .popup-body h2 {
    font-size: 30px;
}

.popup-container .popup .popup-button-container {
    border-top: 1px solid rgba(65, 192, 240, 0.2);
    background-color: rgba(65, 192, 240, 0.1);
    padding: 20px 30px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.popup-container .popup .popup-button-container .button {
    margin: 0;
    float: left;
    min-width: 130px;
}

.popup-container .popup .popup-button-container .button.right {
    float: right;
}

.popup-container .popup .popup-button-container .button.centre {
    float: none;
    display: inline-block;
}

.popup-container .popup .forgot-password-link {
    margin-top: 20px;
    display: inline-block;
    font-size: 20px;
}

.popup-container.show .popup {
    transform: scale(1);
}

.terms-popup-container .popup {
    padding: 0;
    padding-bottom: 95px;
    max-width: 1200px;
}

.terms-popup-container .popup .popup-body {
    height: 70vh;
    overflow: hidden;
    overflow-y: scroll;
    padding: 30px;
    text-align: left;
}

.terms-popup-container .popup .popup-body, .terms-popup-container .popup .popup-body li {
    font-size: 16px;
}

.terms-popup-container .popup .popup-body p {
    margin: 10px 0;
}

.terms-popup-container .popup .popup-body ul {
    padding-left: 30px;
    margin: 30px 0;
}

.terms-popup-container .popup .popup-body h1,
.terms-popup-container .popup .popup-body h2,
.terms-popup-container .popup .popup-body h3 {
    margin: 10px 0;
}

.popup-container .video-frame {
    margin: auto;
    background-color: #333;
    box-shadow: #000 0 30px 100px;
    position: relative;
}

.popup-container .video-frame .video {
    position: relative;
    width: 800px;
    padding-top: 56.2%;
}

.popup-container .video-frame .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.popup-container.popup-video-container .close-video {
    display: none;
}

.popup-container.popup-video-container .close-video {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    right: -50px;
    position: absolute;
    background-size: 20px auto;
}

.popup-container.popup-video-container .close-video:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/Images/closeMenuIcon.png);
    background-repeat: no-repeat;
    background-size: 20px auto;
    background-position: center;
    opacity: 0.5;
    transition: all ease-in-out 0.15s;
}

.popup-container.popup-video-container .close-video:hover:after {
    opacity: 1;
}
