.policyCookiesSection {
    background-color: rgba(0,0,0,.6);
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999999;
    height: 100%
}

.CookieButton {
    background-color: #2376d0;
    font-size: 1em;
    color: #fff;
    font-family: Adani-Regular;
    line-height: 17px;
    border-radius: .25rem;
    height: 48px;
    border: none;
    padding: 5px 18px;
}

.outlinedButton {
    font-size: 1em;
    color: #393939;
    font-family: Adani-Regular;
    background: #393939;
    border: none;
    z-index: 1;
    border-radius: .25rem;
    min-width: 102px;
    padding-left: 20px;
    padding-right: 20px;
    height: 48px;
    position: relative;
    display: inline-grid;
    align-items: center;
    text-align: center;
}

    .outlinedButton::before {
        content: "";
        display: block;
        background-color: #fff;
        position: absolute;
        border-radius: 3px;
        height: calc(100% - 2px);
        width: calc(100% - 2px);
        z-index: -1;
        left: 1px;
        top: 1px;
    }

    .outlinedButton:hover {
        background-image: linear-gradient(270deg, #007FA0 0%, #4F469D 20.67%, #962B81 68.18%, #BE3A56 100%)
    }

        .outlinedButton:hover span {
            background-image: linear-gradient(270deg, #007FA0 0%, #4F469D 20.67%, #962B81 68.18%, #BE3A56 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: rgba(0,0,0,0);
        }

.policyCookiesSection .policyCookiesInner {
    border-radius: .25rem .25rem 0 0;
    box-shadow: 0 -10px 40px 0 rgba(0,0,0,.06);
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 99;
    padding: 30px 90px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
}

    .policyCookiesSection .policyCookiesInner .leftBlock {
        width: 50%;
    }

        .policyCookiesSection .policyCookiesInner .leftBlock h4 {
            font-size: 1.5em;
            color: #000;
            font-family: Adani-Regular;
            font-weight:600;
            line-height: 29px;
            margin-bottom: 14px;
        }

        .policyCookiesSection .policyCookiesInner .leftBlock p {
            font-size: 1em;
            color: #666;
            font-family: Adani-Regular;
            line-height: 26px;
            margin-bottom: 0;
        }

            .policyCookiesSection .policyCookiesInner .leftBlock p a {
                color: #000;
                text-decoration: underline;
                white-space: nowrap;
            }

    .policyCookiesSection .policyCookiesInner .rightBlock {
        width: 50%;
        margin-bottom: 15px;
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

.cookiePreferences .modal-dialog {
    max-width: 680px;
}

    .cookiePreferences .modal-dialog .modal-content {
        border-radius: .25rem;
        box-shadow: 0 -10px 40px 0 rgba(0,0,0,.06);
        border: none;
    }

        .cookiePreferences .modal-dialog .modal-content .modal-header {
            background-color: #fafafa;
            border-radius: .25rem;
            box-shadow: 0 1px 0 0 #eee;
            padding: 12px 30px;
            border: none;
            line-height: 26px;
            font-size: 1.375em;
            color: #000;
            font-family: Adani-Regular;
        }

        .cookiePreferences .modal-dialog .modal-content .modal-body {
            padding: 0 30px;
        }
            .cookiePreferences .modal-dialog .modal-content .modal-body .preferencesList h3 {
                font-family: Adani-Regular;
            }

            .cookiePreferences .modal-dialog .modal-content .modal-body .preferencesList {
                box-shadow: 0 1px 0 0 #eee;
                display: flex;
                padding: 15px 0;
                justify-content: space-between;
                font-family: Adani-Regular;
            }

                .cookiePreferences .modal-dialog .modal-content .modal-body .preferencesList.dissabled {
                    opacity: .4;
                    pointer-events: none;
                }

                .cookiePreferences .modal-dialog .modal-content .modal-body .preferencesList h3 {
                    margin-bottom: 6px;
                    font-size: 1em;
                    color: #393939;
                    font-family: Adani-Regular;
                    line-height: 26px;
                }

                .cookiePreferences .modal-dialog .modal-content .modal-body .preferencesList p {
                    font-size: .75em;
                    color: #666;
                    font-family: Adani-Regular;
                    line-height: 20px
                }

                .cookiePreferences .modal-dialog .modal-content .modal-body .preferencesList:last-child {
                    box-shadow: none;
                }

        .cookiePreferences .modal-dialog .modal-content .modal-footer {
            border: none;
            padding-bottom: 28px;
            padding-left: 30px;
            padding-right: 30px;
        }

            .cookiePreferences .modal-dialog .modal-content .modal-footer button {
                margin-left: 24px;
            }

.btn-toggle {
    margin: 0;
    flex: none;
    padding: 0;
    position: relative;
    border: none;
    border-radius: 15px;
    width: 47px;
    height: 26px;
    color: #6b7381;
    background: #c9c9c9;
    margin-left: 45px;
}

    .btn-toggle:hover, .btn-toggle:active {
        background: #c9c9c9;
    }

:not(.btn-check) + .btn:active {
    background: #c9c9c9;
}

.btn-toggle:focus, .btn-toggle.focus, .btn-toggle:focus.active, .btn-toggle.focus.active {
    outline: none;
    box-shadow: none;
}

.btn-toggle > .handle {
    position: absolute;
    top: .1875rem;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    background: #fff;
    transition: left .25s;
}

.btn-toggle.active {
    transition: background-color .25s
}

    .btn-toggle.active > .handle {
        left: 24px;
        transition: left .25s
    }

    .btn-toggle.active:before {
        opacity: .5;
    }

    .btn-toggle.active:after {
        opacity: 1;
    }

.btn-toggle.active {
    background-color: #2376d0;
}

@media only screen and (max-width: 767px) {

    .CookieButton, .outlinedButton {
        height: 42px;
        font-size: .875em;
    }

    .policyCookiesSection .policyCookiesInner {
        padding: 24px;
    }

        .policyCookiesSection .policyCookiesInner .leftBlock, .policyCookiesSection .policyCookiesInner .rightBlock {
            width: 100%;
            margin-bottom: 0;
        }

    .policyCookiesInner .rightBlock {
        width: 100%;
        margin-bottom: 0;
    }

    .policyCookiesSection .policyCookiesInner {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}
