/**
* Version 2024.01
*/
.privacy-policy-message-layer {
    position: fixed;
    z-index: 2147483647;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: #fff;
    color: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, .2);
}

.privacy-policy-message-layer .content-list {
    padding: 0 30px;
    font-size: 14px;
}

.privacy-policy-message-layer .content-list h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #1d294c;
}

.privacy-policy-message-layer .content-list p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-policy-link {
    color: #1d294c !important;
    text-decoration: underline !important;
}

#privacy-policy-btn-close {
    box-sizing: border-box;
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    color: #000;
    cursor: pointer;
    border: 1px solid #000;
    text-decoration: none;
    font-size: 15px;
}

#privacy-policy-btn-close:hover {
    background-color: #000;
    color: #fff;
}

.privacy-policy-btn {
    box-sizing: border-box;
    display: inline-block;
    padding: 8px 25px;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    margin-right: 15px;
    cursor: pointer;
}

.privacy-policy-btn:hover {
    background-color: #000;
    color: #fff;
}

.privacy-policy-btn.primary {
    box-sizing: border-box;
    display: inline-block;
    padding: 8px 25px;
    background-color: #000000;
    color: #fff;
    text-decoration: none;
}

.privacy-policy-btn.primary:hover {
    background-color: #16a8db;
    border: 1px solid #16a8db;
    color: #fff;
}

.privacy-policy-message-popup {
    position: fixed;
    z-index: 2147483647;
    top: 15%;
    left: 5%;
    width: 90%;
    height: 500px;
    padding: 0;
    background-color: #fff;
    color: #000;
    font-size: 15px;
}

.privacy-policy-message-popup .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.privacy-policy-message-popup h3 {
    font-size: 20px;
    padding: 0 20px;
    margin: 0;
}

.privacy-policy-message-popup h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 20px 0 20px;
    border-top: 1px solid #ddd;
}

@media screen and (min-width: 992px) {
    .privacy-policy-message-popup {
        width: 650px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.privacy-policy-message-popup .content-list {
    height: 355px;
    overflow-y: auto;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    margin: 0;
    background-color: #fff;
    padding: 20px 0 5px 0;
    box-sizing: border-box;
}

.privacy-policy-message-popup .content-list p {
    margin: 0 0 15px 0;
    padding: 0 20px;
    font-size: 15px;
}

.privacy-policy-message-popup .toolbar {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
}

.privacy-policy-always-active {
    color: #3371be;
    float: right;
}

.privacy-policy-gray-text {
    color: #666;
}

.privacy-policy-message-layer .privacy-info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
}

.privacy-policy-message-layer .privacy-info .privacy-text {
    max-width: 1000px;
}

.privacy-policy-message-layer .privacy-info .privacy-text p {
    margin-bottom: 0;
    font-size: 15px;
    color: #1d294c;
}

.privacy-policy-message-layer .privacy-info .privacy-btn {
    flex-shrink: 0;
    margin-left: 100px;
}

@media screen and (max-width: 1000px) {

    .privacy-policy-message-layer .content-list {
        padding: 0 15px;
    }

    .privacy-policy-message-layer .privacy-info .privacy-btn {
        margin-left: 0;
    }

    .privacy-policy-message-layer .privacy-info .privacy-text {
        margin-bottom: 15px;
    }

    .privacy-policy-message-layer .privacy-info {
        flex-wrap: wrap;
        padding: 0;
    }

    .privacy-policy-btn {
        padding: 8px 15px;
    }

    .privacy-policy-btn.primary {
        padding: 8px 15px;
    }

}