/* 'SLIDER POPUP
---- ---- ---- ---- -- - */

#mobile-popup {
    display: none;
}

#slider-popup {
    box-sizing: border-box;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 99;
    border-bottom: 12px solid #FFF;
}

#slider-content {
    box-sizing: border-box;
    max-width: 690px;
    width: calc(100% - 3.125em);
    padding: 2.8125em 3.75em 0.75em;
    margin: 0 auto -12px;
    text-align: center;
    color: #FFF;
    background: #005d99;
    border: 12px solid #FFF;
    border-bottom: none;
    box-shadow: 0px -1px 12px 2px rgba(0, 0, 0, 0.25);
}

#slider-msg {
    margin: 0 2em 0 0;
    color: #FFF;
    font-size: 1.25em;
}

#slider-msg span {
    display: block;
    font-size: 2.25em;
    font-weight: 600;
    text-transform: uppercase;
}

#slider-disclaimer {
    font-size: 0.625em;
    line-height: 16px;
    padding: 1.5625rem 2.375rem 0;
    color: rgba(255, 255, 255, 0.7);
}

#slider-close {
    color: #232323;
    background: #FFF;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    line-height: 34px;
    font-size: 1.25em;
    font-family: 'Arial', sans-serif;
    position: absolute;
    top: -12px; right: -12px;
}

/* 'CENTER POPUP
---- ---- ---- ---- -- - */

#center-popup {
    display: block;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0; right: 0; 
    bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
    overflow-y: auto;
}

#popup-content {
    box-sizing: border-box;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    background: #005d99;
    border: 12px solid #FFF;
    text-align: center;
    padding: 3.75em;
    margin: 0 auto;
    max-width: 660px;
    width: 100%;
}

#popup-content.top-center {
    top: 3.125em;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 3.125em;
}

#center-msg {
    font-size: 2.25em;
    margin: 0 auto 2rem;
}

#center-msg span {
    display: block;
    font-size: 2em;
    font-weight: 600;
}

#center-disclaimer {
    text-align: left;
    font-size: 0.625em;
    line-height: 16px;
    margin: 2.5rem auto 1.875rem;
    color: rgba(255, 255, 255, 0.7);
}

#center-close {
    color: #232323;
    background: #FFF;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    line-height: 34px;
    font-size: 1.25em;
    font-family: 'Arial', sans-serif;
    position: absolute;
    top: -12px; right: -12px;
}

/* 'GIFT BOX
---- ---- ---- ---- -- - */

#giftbox-popup {
    position: fixed;
    right: 60px; bottom: 60px;
    z-index: 97;
    max-width: 390px;
    width: 100%;
}

#giftbox-content {
    box-sizing: border-box;
    padding: 1.375em 1.875em 1.5625em;
    color: #005d99;
    background: #fffeec;
    border: 10px solid #eeebd8;
    margin: 0 -1.25em 1.5625em 0;
}

#giftbox-content:before {
    content: "";
    position: absolute;
    bottom: -22px;
    right: 20px;
    height: 20px;
    width: 20px;
    background: #fffeec;
    transform: rotate(45deg);
    border-bottom:inherit;
    border-right:inherit;
    box-shadow:inherit;
}

#giftbox-msg {
    color: #005d99;
    font-size: 1.625em;
    margin: 0 auto 1.375rem;
}

#giftbox-msg span {
    display: block;
    font-size: 1.5em;
    font-weight: 600;
}

#giftbox-close {
    color: #005d99;
    font-family: 'Arial', sans-serif;
    font-size: 1.25em;
    position: absolute;
    top: 8px; right: 12px;
}

#giftbox-open span {
    display: block;
    color: #FFF;
    width: 20px;
    height: 20px;
    font-size: 0.875em;
    font-family: 'Arial', sans-serif;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    background: #d80505;
    position: absolute;
    top: 20px; right: -4px;
}

/* 'RESPONSIVE
---- ---- ---- ---- -- - */

@media screen and (max-width: 1024px) {
    
    /**
    * Giftbox Popup
    */
    
    #giftbox-popup {
        right: 30px;
        bottom: 30px;
    }
    
    #giftbox-popup #giftbox-open { width: 60px; }
    
}

@media screen and (max-width: 600px) {

    #web-popup {
        display: none;
    }

    #mobile-popup {
        display: block;
    }
    
    /**
    * Center Popup
    */

    #popup-content {
        margin: 0 auto;
        padding: 2.5em 1.5625em 1em;
        width: calc(100% - 3.125em);
    }
    
    /**
    * Slider popup
    */
    
    #slider-content { padding: 2.8125em 1.5625em 0.75em; }
    
    /**
    * Giftbox popup
    */
    
    #giftbox-content { 
        font-size: 14px; 
        margin: 0 auto 1.5625em;
    }
    
    #giftbox-popup { 
        width: calc(100% - 3.125em); 
        right: auto; left: 50%;
        transform: translateX(-50%);
    }
    
    #giftbox-open { width: 60px; }
}