.f_cookies{
    width:100%;
    background:white;
    border-top:1px solid black;
    position:fixed;
    bottom:0;
    left:0;
    z-index:1000;
    padding:20px;
    text-align: center;
    font-size:0px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display:none;
    color:black;
  }
  .f_cookies.active{
    display:block;
  }
  .f_cookies_left,.f_cookies_right{
    display:inline-block;
    width:50%;
    font-size:14px;
    vertical-align: top;
    text-align: left;
  }
  .f_cookies_left_title, .panel_cookies_title{
    font-size:18px;
    font-weight:bold;
    padding-bottom:10px;
    color:black;
  }
  .f_cookies_right{
    width:50%;
    text-align: center;
    font-size:0px;
    padding-top:50px;
  }
  .f_cookies_callto, .panel_cookies input[type="submit"]{
    border:1px solid black;
    padding:15px 10px;
    display:inline-block;
    font-weight:bold;
    border-radius:3px;
    cursor:pointer;
    font-size:14px;
    margin:3px;
    display:inline-block;
    vertical-align: middle;
    background:white;
    box-sizing: border-box;
    color:black;
  }
  .f_cookies_left_text{
    color:black;
  }
  .f_cookies_left_text a {
    color:#c3291f;
  }
  
  
  .panel_cookies{
    width:320px;
    border-right:1px solid black;
    position:fixed;
    z-index:1001;
    background:white;
    height:100%;
    left:0;
    top:0;
    overflow:scroll;
    padding:20px;
    box-sizing: border-box;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  }
  .formodal{
    position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  display: flex;
  height: auto;
  background: rgba(52, 64, 84, 0.4);
  -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
  .cookies_container {
    display: block;
    position: relative;
    padding-left: 0px;
    margin:30px 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight:bold;
    padding-top:3px;
    padding-right:50px;
  }
  
  
  .panel_cookies input[type="submit"]{
    width:100%;
  }
  .panel_cookies_close {
    position: absolute;
    top: 10px;  /* Distance du haut de la .panel_cookies */
    right: 10px;  /* Distance du bord droit de la .panel_cookies */
    width: 20px;  /* Largeur de la croix */
    height: 20px;  /* Hauteur de la croix */
    cursor: pointer;
  }
  
  .panel_cookies_close::before,
  .panel_cookies_close::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;  /* Épaisseur des lignes de la croix */
    background-color: black;  /* Couleur de la croix */
    top: 50%;
    left: 0;
    transform-origin: center;
  }
  
  .panel_cookies_close::before {
    transform: rotate(45deg);
  }
  
  .panel_cookies_close::after {
    transform: rotate(-45deg);
  }
  .panel_cookies img{
    margin-bottom:30px;
  }
  .cookies_text{
    width:100%;
    clear:both;
    padding-top:10px;
    display:block;
    font-weight:normal;
    color:black;
  }
  input.apple-switch {
    position: relative;
    -webkit-appearance: none;
    outline: none;
    width: 50px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #D9DADC;
    border-radius: 50px;
    box-shadow: inset -20px 0 0 0 #fff;
    cursor:pointer;
    position:absolute;
    right:0px;
    top:0px;
  }
  
  input.apple-switch:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    background: transparent;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
  }
  
  input.apple-switch:checked {
    box-shadow: inset 20px 0 0 0 #4ed164;
    border-color: #4ed164;
  }
  
  input.apple-switch:disabled {
    box-shadow: inset 20px 0 0 0 #013409;
    border-color: #013409;
    cursor:not-allowed;
  }
  
  input.apple-switch:checked:after {
    left: 20px;
    box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
  }
  
  @media only screen and (max-width: 600px) {
    .f_cookies_left, .f_cookies_right{
      width:100%;
    }
    .f_cookies_right{
      padding-top:20px;
    }
    .f_cookies_callto{
      width:100%;
    }
  }