/**
 * International Sitewide Popup split test
 *
 * Moved out of assets/css/main.css so it survives the templates that drop that
 * sheet. The popup's markup is printed from wp_footer in
 * inc/core/template-functions.php on nearly every page, but every rule it needs
 * lived in main.css — so wherever 'escoffier-main' is dequeued the popup came
 * out as unstyled markup at the end of the document instead of a fixed overlay:
 *
 *   - the Pro Essentials cart / checkout / account templates, via
 *     dequeue_theme_styles_on_pe_templates() in inc/class-woocommerce.php
 *   - the Continuing Education hub, via its own keep-list in
 *     templates/page-continuing-education/template-functions.php
 *
 * Enqueued as 'escoffier-international-popup' next to 'escoffier-main' in
 * inc/core/enqueue.php, so it follows main.css everywhere and also survives
 * those two prunes. Keep this handle OFF both dequeue lists.
 *
 * Plain CSS on purpose: main.css has no SCSS source, so this needs no build
 * step and nothing to compile before it ships.
 */
.escoffier-international-popup__arrrow {
    display: none;
    width: 157px;
    height: 173px;
    position: absolute;
    bottom: 75px;
    left: -45px;
}
.escoffier-international-popup__arrrow:after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    background: #8E6C4A;
    position: absolute;
    left: 45px;
    top: -5px;
}
@media (min-width: 992px) {
    .escoffier-international-popup__arrrow {
        display: block;
    }
}
.escoffier-international-popup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    background: rgba(0,0,0,0.75);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 10001;
    padding: 10px;
    overflow-y: scroll;
}
.escoffier-international-popup__inner {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 510px;
    height: auto;
    min-height: 350px;
    max-height: calc(100vh - 50px);
    -ms-overflow-style: none;
    scrollbar-width: none;
    color: #fff;
}
.escoffier-international-popup__close-btn {
    color: #000;
    font-family: Lato;
    font-size: 26px;
    line-height: 33px;
    width: 33px;
    height: 33px;
    border-radius: 100%;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    outline: none;
    border: none;
    appearance: none;
    padding: 0;
}
.escoffier-international-popup__close-btn:hover {
    color: #fff;
    background: #000;
}
.escoffier-international-popup__close-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.escoffier-international-popup__step-1{
    line-height: 0;
}
.escoffier-international-popup__step-1-content {
    background: #8E6C4A;
    padding: 45px 25px 25px;
    border-radius: 8px;
    text-align: center;
}
@media (min-width: 992px){
    .escoffier-international-popup__step-1-content {
        padding: 45px 45px 30px;
        text-align: left;
    }
}
.escoffier-international-popup__greeting {
    color: #FFF;
    font-family: TradeGothic;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
}
.escoffier-international-popup__step-1-title {
    font-family: TradeGothic;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.05;
    margin-bottom: 15px;
}
@media (min-width: 992px){
    .escoffier-international-popup__step-1-title {
        font-size: 38px;
    }
}
.escoffier-international-popup__step-1-text {
    font-family: Lato;
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 25px;
    text-align: left;
}
@media (min-width: 992px){
    .escoffier-international-popup__step-1-text {
        line-height: 1.66;
    }
}
.escoffier-international-popup__step-1-btns-wrap {
    text-align: center;
}
a.escoffier-international-popup__step-1-continue {
    display: inline-block;
    appearance: none;
    border: none;
    outline: none;
    background: #000;
    color: #fff;
    border-radius: 5px;
    font-family: TradeGothic;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
    text-decoration: none;
    padding: 12px 15px;
    margin-bottom: 10px;
    transition: background .2s linear;
}
a.escoffier-international-popup__step-1-continue:hover,
a.escoffier-international-popup__step-1-continue:focus {
    background: #fff;
    color: #000;
}
a.escoffier-international-popup__step-1-continue:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
@media (min-width: 650px){
    a.escoffier-international-popup__step-1-continue {
        font-size: 24px;
        padding: 12px 48px;
    }
}
.escoffier-international-popup__step-1-decline {
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    font-family: Lato;
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    padding: 10px;
}
.escoffier-international-popup__step-1-decline:hover {
    text-decoration: none;
}
.escoffier-international-popup__step-1-decline:focus {
    outline:1px solid #fff
}
.escoffier-international-popup__disclaimer {
    margin-top: 10px;
    color: #FFF;
    font-family: Lato;
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    line-height: 14px;
}
.escoffier-international-popup__disclaimer a {
    text-decoration: underline;
    color: #FFF;
}
.escoffier-international-popup__disclaimer a:hover {
    text-decoration: none;
    color: #FFF;
}
.escoffier-international-popup__disclaimer a:focus {
    color: #FFF;
    outline: 1px solid #fff;
    outline-offset: 2px;
}
@media (min-width: 992px){
    .escoffier-international-popup__disclaimer {
        text-align: left;
    }
}
