.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 500;
}

.btnCookie{
    cursor: pointer;
}
.cookie-consent-level2 {
    display: none;
}

/* Base styles for the toggle switch */
.toggle-switch {
    position: relative;
    width: 75px;
    height: 34px;
}

.toggle-switch-checkbox {
    display: none;
}
.wrapperCookieLevel2{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2%;
    border-bottom: 1px solid #ccc;
}
.cookieReseau{
    border-top: 1px solid #ccc;;
}

/* The slider (the part that slides) */
.toggle-switch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 34px;
    margin: 0;
}

.toggle-switch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.2s ease-in 0s;
}

.toggle-switch-inner:before, .toggle-switch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: white;
    font-family: Trebuchet, Arial, sans-serif;
    box-sizing: border-box;
}

.toggle-switch-inner:after {
    content: "OFF";
    /* padding-right: 15px; */
    padding-left: 25px;
    background-color: #ff0000;
    color: #ffffff;
}

.toggle-switch-inner:before {
    content: "ON";
    padding-right: 40px;
    background-color: #5be400;
    color: white;
    text-align: right;
}

.toggle-switch-switch {
    display: block;
    width: 26px;
    margin: 4px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 39px;
    border: 2px solid #ddd;
    border-radius: 34px;
    transition: all 0.2s ease-in 0s;
}

/* Move the slider to the right when the checkbox is checked */
.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-inner {
    margin-left: 0;
}

.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-switch {
    right: 0px;
}
