@import url('../../fonts.css');
.header-container {
    background-color: white;
}
.privacy-statement-popup {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;    
    background: #007DB0;
    padding: 16px 0px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    display: none;    
    margin-bottom: 45px;
    max-height: 80.2px;
}

.privacy-statement-popup.custom-container-width-2 {
    margin-bottom: 0px;
    z-index: 1031;
}

@media (max-width: 992px) {
    .privacy-statement-popup.custom-container-width-2 {
        margin-bottom: 10px;
    }
}

.privacy-statement-popup.custom-padding {
    padding: 17px 0px;
}

.privacy-statement-popup.sticky {
    position: sticky !important;
}

.privacy-statement-popup .container {
    border: none !important;
    max-width: 1202px;
    width: 1202px;
    margin: 0 auto;
}

.privacy-statement-popup.custom-container-width .container {
    border: none !important;
    max-width: 1170px;
    width: 1170px;
    margin: 0 auto;
}

.privacy-statement-popup.custom-container-width-2 .container {
    border: none !important;
    max-width: 1010px;
    width: 1010px;
    margin: 0 auto;    
}

.privacy-statement-popup.custom-container-width-3 .container {
    border: none !important;
    max-width: 938px;
    width: 938px;
    margin: 0 auto;    
}

.privacy-statement-popup.custom-container-width-2,
.privacy-statement-popup.custom-container-width-3 {
    max-height: unset!important;
}

.privacy-statement-popup .container .row {
    margin-right: 0px;
    margin-left: 0px;
    max-width: none;
}

@media (max-width: 1200px) and (min-width: 992px){
    .privacy-statement-popup {
        max-height: none;
    }
    
    .privacy-statement-popup .container,
    .privacy-statement-popup.custom-container-width .container,
    .privacy-statement-popup.custom-container-width-2 .container,
    .privacy-statement-popup.custom-container-width-3 .container {
        width: 100%;
    }

    .privacy-statement-popup.custom-container-width-3 p {
        padding-right: 27px !important;
        padding-left: 27px !important; 
    }

    .privacy-statement-popup.custom-container-width-2 p {
        padding-right: 0px !important;
    }

    .privacy-statement-popup.custom-container-width p {
        padding-right: 15px !important;
        padding-left: 15px !important;  
    }
    
    .privacy-statement-popup p {
        padding-right: 15px !important;
        padding-left: 15px !important;    
    }
}

@media (max-width: 992px) {
    .privacy-statement-popup {
        margin-bottom: 26px;
        max-height: fit-content;
    }

    .privacy-statement-popup.no-mb {
        margin-bottom: 0px !important;
        max-height: fit-content;
    }

    .privacy-statement-popup .container {
        padding-right: 0px;
        padding-left: 0px;
        width: 100% !important;
    }    
}

.privacy-statement-popup.opened {
    display: block;
}

.privacy-statement-popup.closed {
    transform: translateY(-100px);
    height: 0px;
    overflow: hidden;
    margin-bottom: 0;
    padding: 0px;
}

.privacy-statement-popup p {
    color: white;
    text-align: left;
    width: fit-content;
    margin: 0 auto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    font-family: 'Gotham A' !important;
    padding: 0px 0px 0px;
}

@media (max-width: 992px) {
    .privacy-statement-popup p {
        padding-right: 15px !important;
        padding-left: 15px !important;   
        font-size: 12px;
        line-height: 18px;    
    }
}

.privacy-statement-popup p b {
    font-weight: 700;
}

.privacy-statement-popup a {
    color: white;
    text-decoration: underline;
    font-family: 'Gotham A' !important;
}

.privacy-statement-popup a:hover {
    color: white;
    text-decoration: underline;
}

.privacy-statement-popup-close {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: #007DB0;
    position: absolute;
    bottom: -38px;
    right: 26px;
    color: white;
    text-align: center;
    padding: 7px 0px;
    cursor: pointer;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .privacy-statement-popup-close {
        width: 26px;
        height: 26px;
        border-radius: 4px;
        background: #007DB0;
        position: absolute;
        bottom: -23px;
        right: 26px;
        color: white;
        text-align: center;
        padding: 0px 0px;
        cursor: pointer;
        line-height: 1.5;
    }

    .privacy-statement-popup-close img {
        width: 9px;
        height: 9px;
    }
}

.privacy-statement-popup-close.custom-height {
    height: 25px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}