:root {
    --cookies-warning-color: #3b4249;
    --cookies-text-color: #fff;
}

.cookies-warning {
    position: fixed;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;

    bottom: 10px;
    background: var(--cookies-warning-color);
    width: 90%;
    left: 5%;
    height: auto;
    z-index: 101;
    padding: 2.5%;
}

.cookies-warning .cookie-content {
    height: auto;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 70%;
}

.cookies-warning .cookie-content h5 {
    color: var(--cookies-text-color);
    font: 600 14px "Montserrat", sans-serif;
}

.cookies-warning .cookie-content p {
    color: var(--cookies-text-color);
    font: 400 14px "Montserrat", sans-serif;
    line-height: 130% !important;
    margin-bottom: 0 !important;
}

.cookies-warning .cookies-pref {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    flex: 1 0 auto;
}

.cookies-warning button {
    cursor: pointer;
    background-color: #ea5b0c;
    font: 12px "Montserrat", sans-serif;
    padding: 8px 12px;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #ea5b0c;
    color: #ffffff;
    transition: all 0.3s ease;
}

.cookies-warning button.btn-reject {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.cookies-warning button:hover {
    background-color: transparent;
    color: #ea5b0c;
    transition: all 0.3s ease;
}

.cookies-warning button.btn-reject:hover {
    background-color: #fff;
    color: var(--cookies-warning-color);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1200px) {
    .cookies-warning .cookies-pref {
        justify-content: center;
    }
}

/* --------------------------------------------------- */

.sidenav .content {
    overflow-y: scroll;
    height: calc(100dvh - 150px);
    margin-bottom: 0;
}
.sidenav {
    opacity: 0;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: -39px;
    background-color: #ffff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 26px;
    padding-left: 57px;
    padding-right: 10px;
}
.sidenav .content::-webkit-scrollbar {
    width: 10px;

    height: 10px;
}
.sidenav .content::-webkit-scrollbar-thumb {
    background: #18293b;

    border-radius: 10px;
}

.sidenav .content::-webkit-scrollbar-thumb:hover {
    background: #18293b;
}

.sidenav .logo {
    width: 140px;
    height: auto;
    aspect-ratio: 290/68;
    background: #3b4249;
    padding: 5px;
    margin-bottom: 16px;

    svg {
        height: 100%;
        width: 100%;
    }
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #18293b;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #ea5b0c;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 18px;
    }
}

.sidenav .permis label {
    display: block;
}

#mySidenav .content .doc {
    padding: 0;
    font-size: 13px;
    border-bottom: solid 1px;
    display: table;
    color: #ea5b0c;
    margin-top: 5px;
    font-weight: bold;
}

#mySidenav .content .doc:hover {
    color: #18283b;
}

#mySidenav .content p {
    line-height: 25px;
}

#mySidenav .plus_button {
    display: table;

    /* margin: 0 auto; */

    margin-top: 24px;
}

#mySidenav .plus_button button {
    cursor: pointer;
    background-color: #ea5b0c;
    font: 12px "Montserrat", sans-serif;
    padding: 8px 12px;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #ea5b0c;
    color: #ffffff;
    transition: all 0.3s ease;
}

.sidenav .permis label {
    font: 15px "ralewaythin", sans-serif;
    font-weight: bold;
    color: #18283b;
    margin-bottom: 20px;
}

.sidenav a {
    color: #fff;
}

.sidenav input[type="checkbox"] {
    position: relative;
    width: 3rem;
    height: 23px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    outline: none;
    border-radius: 2.5rem;
    box-shadow: inset 0 0 0.5 gray;
    transition: all 0.45s ease-in-out;
    top: 7px;
}

.sidenav input:checked[type="checkbox"] {
    background-color: #ea5b0c99;
}

.sidenav input:not(:checked)[type="checkbox"] {
    background-color: #ea5b0c33;
}

.sidenav input[type="checkbox"]::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 21px;
    border-radius: 50%;
    background-color: #3b4249;
    top: 1px;
    left: 0;
    transition: all 0.45s ease-in-out;
    transform: scale(1.1);
}

.sidenav input:checked[type="checkbox"]::before {
    left: 27px;
}
