﻿.cookies-box {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: #e0e8f3;
    line-height: 1.4;
    box-shadow: 0px 0px 10px 0px #0005;
    display: none;
    z-index: 800;

}

.cookies.cookies-box p{
    margin-bottom:0px !important;
}

    .cookies-box .container {
        max-width: 1200px;
        margin: 0 auto;
        /*display: flex;
        align-items: center;*/
    }


.cookies-box .summary {
    font-size: 12px;
}

    .cookies-box .summary .cookie-title {
        margin:0px;
        margin-bottom:4px;
    }

    .cookies-box .summary a {
        color: #1a3761;
    }

    .cookies-box .actions {
        display: flex;
        justify-content: flex-end;
        margin-top:8px;
    }

        .cookies-box .actions .btn {
            cursor: pointer;
            width: 150px;
            text-align: center;
            border-radius: 16px;
            -webkit-border-radius: 16px;
            background: #fdc209;
            color: #1a3761;
            font-weight: bold;
            font-size: 12px;
            height: 32px;
            margin-top: 0px;
            user-select: none;
            margin: 0px 4px;
        }
/**/
.cookies-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0005;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
    z-index: 99999;
}

    .cookies-modal .modal-inner {
        width: 100%;
        max-width: 1200px;
        max-height: 90%;
        min-height: 200px;
        margin: 0 auto;
        background-color: #ffffff;
        box-sizing: border-box;
        box-shadow: 0px 0px 10px 0px #0005;
        position: relative;
        overflow: auto;
    }

    .cookies-modal .head {
        position: sticky;
        width: 100%;
        background-color: #ffffff;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
        box-shadow: 0px 0px 6px 0px #0002;
        z-index: 1;
        top: 0;
    }

        .cookies-modal .head .btn-close {
            font-size: 24px;
            padding: 8px;
            user-select: none;
            cursor: pointer;
        }

    .cookies-modal .content {
        padding: 16px;
        padding-bottom: 75px;
        line-height: 1.4;
    }

        .cookies-modal .content a {
            color: #1a3761;
        }

        .cookies-modal .content details {
            margin: 16px 0 0 0;
            opacity: 0.9;
        }

            .cookies-modal .content details:hover {
                opacity: 1;
            }

            .cookies-modal .content details summary {
                padding: 8px 0;
                cursor: pointer;
            }

                .cookies-modal .content details summary:focus {
                    outline: none;
                }

            .cookies-modal .content details label {
                margin: 4px 8px 12px 8px;
                display: flex;
                align-items: center;
                gap: 4px;
            }

    .cookies-modal .foot {
        display: flex;
        justify-content: flex-end;
        position: sticky;
        bottom: 0;
        width: 100%;
        padding: 0 16px 0 0;
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: 0px 0px 6px 0px #0000002b;
    }

.cookies-modal .btn {
    cursor: pointer;
    width: auto;
    padding: 0 32px;
    text-align: center;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    background: #fdc209;
    color: #1a3761;
    font-weight: bold;
    font-size: 13px;
    height: 32px;
    margin-top: 0px;
    user-select: none;
    margin: 0px;
}

    .cookies-modal .foot .btn-save-cookies-settings {
        margin: 4px 2px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

@media (max-width: 768px) {
    .btn-cookies-ok .btn-cookies-fail .btn-cookies-settings {
        white-space: normal;
    }
}