.cookies-container {
    background: var(--body-bg);
    box-shadow: 0 -5px 26px rgba(0, 0, 0, 0.1);
    padding: 54px 0;
    z-index: 1000;
    border-top: 2px solid var(--colour_button_normal);
}
.cookies-container-general {
    background: #fff;
}
.cookies-container button {
    min-width: 150px;
    max-width: 100%;
}

.cookies-container__title {
    font-size: 18px;
    border-bottom: 0.7px solid rgba(32, 32, 32, 0.1);
    padding-bottom: 20px;
    margin: 0 0 20px;
}

.cookies-modal .close-modal {
    font-size: 4.5rem;
    opacity: 1;
    color: var(--colour_text_body)
}

.cookies-modal .modal-title {
    font-weight: 500;
    font-size: 36px;
    margin: 0 0 40px;
    color: var(--colour_text_body) !important;
}

.cookies-modal .custom-modal {
    width: 900px;
    max-width: 100%;
}

.cookies-modal .custom-modal .modal-content,
.cookies-modal .custom-modal {
    background: var(--body-bg) !important;
}

.cookies-modal .custom-modal .modal-body {
    padding: 0 80px 50px;
}

.container-info {
    border-bottom: 0.7px solid rgba(32, 32, 32, 0.1);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.save-cookies {
    min-width: 170px;
    margin-top: 40px;
}

.cookies-header {
    margin-bottom: 20px;
}

.btn-block-outline:disabled:hover {
    background: var(--colour_button_normal);
    border: 1px solid var(--colour_button_normal);
    color: var(--colour_button_normal_text);
    transition: all .5s;
    padding: 7px 20px;
}

@media all and (max-width: 991.9px) {
    .cookiesModal-btn,
    .save-cookies,
    .cookies-container button {
        margin-top: 36px;
    }
}

@media all and (max-width: 950px) {
    .cookies-modal .custom-modal {
        width: 100%;
    }
}

@media all and (max-width: 767px) {
    .cookies-modal .modal-dialog {
        margin: 0;
    }

    .cookies-modal .custom-modal {
        width: 100%;
    }

    .cookies-modal .custom-modal .modal-body {
        padding: 0 40px 40px;
    }

    .cookies-modal .custom-modal .bold-btn,
    .cookies-modal .custom-modal .bold-btn {
        width: 100%;
    }
}

@media all and (max-width: 566.9px) {
    .btn-container {
        width: 100%;
    }

    .cookies-modal .custom-modal .modal-body {
        padding: 0 20px 40px;
    }

    .cookies-container__title {
        border-bottom: 0;
        font-size: 14px;
        padding-bottom: 0;
    }

    .cookiesModal-btn,
    .save-cookies,
    .cookies-container button {
        width: 100%;
        margin-top: 36px;
    }

    .cookies-container {
        font-size: 12px;
        padding: 40px 0;
    }

    .cookies-modal .modal-title {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .container-info {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .cookies-header h3 {
        font-size: 14px;
    }
}

.switch {
    display: inline-block;
    width: 38px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switcher {
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--colour_button_normal);
    transition: .4s;
    border-radius: 34px;
}

.switcher:before {
    position: absolute;
    content: "";
    height: 11px;
    width: 11px;
    left: 4px;
    bottom: 3.5px;
    background-color: var(--colour_button_normal);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .switcher {
    background: var(--colour_button_normal);
}

input:checked + .switcher:before {
    transform: translateX(18px);
    background-color: var(--white);
}
