#modal-cookies-advice {
    display: none;
}

#cookies-advice {
    display: none;
    position: fixed;
    bottom: 0;
    background-color: #fff;
    left: 0;
    width: calc(100vw - 50px);
    padding: 25px;
    z-index: 9999999999999999999999999999999999999999;
}

#cookies-advice .container a:hover {
    text-decoration: none;
}

#cookies-advice .container .message,
#cookies-advice .container .actions {
    max-width: 1280px;
    margin: auto;
    text-align: center;
}

#cookies-advice .container .message a {
    cursor: pointer;
    color: #231F20;
    font-weight: 600;
}

#cookies-advice .container .actions a {
    cursor: pointer;
    border-radius: 20px;
    padding: 10px 20px;
    width: 150px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin: 20px auto 0;
}

#cookies-advice .container .actions a.accept-all {
    background-color: #231F20;
    color: white;
}


/*** MODAL ***/

#modal-cookies-advice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999999999999999999999999999999999;
}

#modal-cookies-advice .content {
    background-color: #fff;
    width: 80%;
    max-width: 1100px;
    margin: auto;
    position: relative;
    top: 100px;
}

#modal-cookies-advice .content>.close {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

#modal-cookies-advice .content .close svg {
    width: 30px;
}

#modal-cookies-advice .content .modal-body {
    padding: 0 50px 30px;
}

#modal-cookies-advice .content .modal-body .privacy-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 2rem 0;
    padding-top: 30px;
}

#modal-cookies-advice .content .modal-body .row {
    padding-top: 15px;
}

#modal-cookies-advice .content .modal-body .row.flex {
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
}

#modal-cookies-advice .content .modal-body .row .content-text.reduce {
    max-height: 50px;
    overflow: hidden;
}

#modal-cookies-advice .content .modal-body .row span a.less-text,
#modal-cookies-advice .content .modal-body .row span a.more-text {
    color: #231F20;
    font-weight: 500;
}

#modal-cookies-advice .content .modal-body .row span a.less-text {
    display: none;
}

#modal-cookies-advice .content .modal-body .row .cookie-check {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#modal-cookies-advice .content .modal-body .row .cookie-check input {
    position: absolute;
    opacity: 0;
    height: 25px;
    width: 25px;
    z-index: 99;
    cursor: pointer;
}

#modal-cookies-advice .content .modal-body .row .cookie-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

#modal-cookies-advice .content .modal-body .row .cookie-check:hover input~.checkmark {
    background-color: #ccc;
}

#modal-cookies-advice .content .modal-body .row .cookie-check input:checked~.checkmark:not(.disable) {
    background-color: #2196F3;
}

#modal-cookies-advice .content .modal-body .row .cookie-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

#modal-cookies-advice .content .modal-body .row .cookie-check input:checked~.checkmark:after {
    display: block;
}

#modal-cookies-advice .content .modal-body .row .cookie-check .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#modal-cookies-advice .content .modal-body .actions {
    text-align: center;
}

#modal-cookies-advice .content .modal-body .actions a {
    cursor: pointer;
    border-radius: 20px;
    padding: 10px 20px;
    width: 150px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin: 20px auto 0;
}

#modal-cookies-advice .content .modal-body .actions a.accept-all {
    background-color: #231F20;
    color: white;
}

#modal-cookies-advice .content .modal-body .actions a.close {
    color: #231F20;
}