.modal {
    z-index: 1070;
}

#cookies-alert {
    background-color: #fff;
    border-radius: 8px;
    max-width: 622px;
    padding: 40px 28px 28px;
    margin: 0 auto;
}

#cookies-alert .title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 24px;
}

#cookies-alert p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 37px;
}

.btn-cookie {
    border: 1px solid rgba(0, 0, 0, .16);
    border-radius: 8px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    height: 43px;
    margin-top: 32px;
    margin-left: 0;
}
.btns .col-md-6 {
    padding: 0 15px!important;
}
.btn-cookie.btn-cookie-accept {
    background-color: rgba(0, 0, 0, .88);
    border: none;
    color: rgba(255, 255, 255, .88);
}

.btn-cookie:hover {
    border: none;
    background-color: rgba(0, 0, 0, .88);
    color: rgba(255, 255, 255, .88);
}

.btn-cookie.btn-cookie-accept:hover {
    border: 1px solid rgba(0, 0, 0, .16);
    background-color: #fff;
    color: #000;
}

@media only screen and (max-width: 575px) {
    .btn-cookie {
        margin-top: 0;
    }
    .btn-cookie-accept {
        margin-top: 20px;
    }
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    width: fit-content;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 24px;
    width: 24px;
    border-radius: 6px;
    background-color: #fff;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: rgba(0, 0, 0, 0.88);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
