.landing_page_popup_container {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.landing_page_popup_container .popup__overlay {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.landing_page_popup_container .popup__content {
    width: 720px;
    margin: 50px auto;
    position: relative;
    padding: 60px 0 10px;
}

.landing_page_popup_container .popup__close_button {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #EC443D;
    font-family: "GillSans", sans-serif;
    font-size: 21px;
    line-height: 28px;
    text-transform: uppercase;
    cursor: pointer;
}

.landing_page_popup_container .popup__close_button__cross {
    width: 28px;
    height: 19px;
    top: 0;
    left: 4px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.landing_page_popup_container .popup__close_button__cross:before,
.landing_page_popup_container .popup__close_button__cross:after {
    position: absolute;
    content: "";
    height: 8px;
    width: 136%;
    top: 50%;
    left: 0;
}

.landing_page_popup_container .popup__close_button__cross:before {
    transform: rotate(45deg);
}

.landing_page_popup_container .popup__close_button__cross:after {
    transform: rotate(-45deg);
}

.landing_page_popup_container .popup__close_button__cross--green:before,
.landing_page_popup_container .popup__close_button__cross--green:after {
    background-color:#EC443D;
}

.landing_page_popup_container .popup__close_button__cross--grey:before,
.landing_page_popup_container .popup__close_button__cross--grey:after {
    background-color: #707070;
}

#ticket_examples {
    display: none;
}

@media (max-width: 550px) {
    .landing_page_popup_container .popup__content {
        width: 100%;
    }
}
