/*
1-st window starts here
*/

.agreement-cookie-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99999;
}

.agreement-cookie-modal {
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999999;
}

.agreement-cookie-modal-block {
    min-width: 1090px;
    font-family: Arial, sans-serif;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
}

.agreement-cookie-title {
    width: 260px;
    margin-right: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #1a1a1a;
}

.agreement-cookie-content {
    height: auto;
    width: 625px;
    font-weight: 400;
    color: #1a1a1a;
    transition: all .2s ease-out;
    font-size: 14px;
    line-height: 20px;
}

.agreement-cookie-content-text {
    margin-bottom: 8px;
}

.agreement-cookie-content-buttons {
    display: flex;
    justify-content: space-between;
    margin: 32px 0px 0px 0px;
}

.agreement-cookie-content-reject-btn {
    border: 1px solid #e6e8eb;
    border-radius: 4px;
    background-color: #fff;
    height: 48px;
    width: 124px;
    margin-right: 8px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
}

.agreement-cookie-content-reject-btn:hover {
    background-color: #f7f8fa;
}

.agreement-cookie-content-reject-btn:active {
    background-color: #ebedf0;
}

.agreement-cookie-content-accept-btn {
    border: 1px solid #07c;
    border-radius: 4px;
    background-color: #07c;
    height: 48px;
    width: 124px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;

}

.agreement-cookie-content-accept-btn:hover {
    border: 1px solid #006ebd;
    background-color: #006ebd;
}

.agreement-cookie-content-accept-btn:active {
    border: 1px solid #006ebd;
    background-color: #0068b2;
}

.agreement-cookie-settings-link {
    color: #1a1a1a;
    text-decoration: underline;
}

.agreement-cookie-settings-link:hover {
    color: #e52e6b;
    text-decoration: underline;
}

.agreement-cookie-settings-link:active {
    color: #cc215a;
    text-decoration: underline;
}

.agreement-cookie-policy-link {
    color: #1a1a1a;
    text-decoration: underline;
}

.agreement-cookie-policy-link:hover {
    color: #07c;
    text-decoration: underline;
}

.agreement-cookie-policy-link:active {
    color: #1a1a1a;
    text-decoration: underline;
}

/*
2-nd window starts here
*/

.settings-cookie-option{
    border-bottom: 1px solid #e6e8eb;
    margin-bottom: 15px;
}

.option-cookie-header {
    display: flex;
    justify-content: space-between;
}

.option-cookie-title {
    width: 260px;
    margin-right: 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #1a1a1a;
}

.option-cookie-toggle {
    width: 35px;
    height: 20px;
    background: #ccc;
    border-radius: 12px;
    position: relative;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.option-cookie-toggle::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 2px;
    transition: transform 0.3s;
}

.option-cookie-toggle.active {
    background: #007bff;
}

.option-cookie-toggle.active::after {
    transform: translateX(16px);
}

.option-cookie-description {
    margin: 15px 0px 15px 0px;
}

.settings-cookie-info {
    color: rgb(160, 161, 163);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.settings-cookie-policy-link {
    color: rgb(160, 161, 163);
    text-decoration: underline;
}

.settings-cookie-policy-link:hover {
    color: rgb(0, 119, 204);
    text-decoration: underline;
}

.settings-cookie-buttons {
    margin-top: 32px;
}

@media (max-width: 1024px) {

    .agreement-cookie-modal{
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

    .agreement-cookie-modal-block{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: auto;
    }

    .agreement-cookie-title {
        align-self: center;
        margin: 20px 0px 20px 0px;
    }

    .agreement-cookie-content-buttons{
        flex-direction: column-reverse;
        width: auto;
        margin-top: 24px;
    }

    .agreement-cookie-content-reject-btn{
        width: auto;
        margin-top: 8px;
    }

    .agreement-cookie-content-accept-btn{
        width: auto;
        margin-top: 8px;
    }

    .settings-cookie-buttons {
        display: flex;
        width: auto;
        margin-top: 24px;
    }

    .settings-cookie-buttons .agreement-cookie-content-accept-btn {
        width: 100%;
    }

    .settings-cookie-buttons .agreement-cookie-content-reject-btn {
        width: 100%;
    }

}