/* clase del boto */
.accept-cookie{

}
/* clase del div contenidor */
.cookie-banner{
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 20px 15px 10px;
    position: fixed;
    z-index: 1000000;
}

/* clase del p del text de les cookie */
.text-banner{
    color: white;
}

/* clase del boto de link pagina politica */

.policy-link{
    color: white;
}



.toggle input {
    height: 40px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 40px;
  }
  .toggle {
    position: relative;
    display: inline-block;
  }
  
  label.toggle-item {
    width: 2em;
    background: #2e394d;
    height: 1em;
    display: inline-block;
    border-radius: 50px;
    margin: 0px;
    position: relative;
    transition: all .3s ease;
    transform-origin: 20% center;
    cursor: pointer;
  }
  label.toggle-item:before {
    content: '';
    position: absolute;
    display: block;
    transition: all .2s ease;
    width: 2.3em;
    height: 2.3em;
    top: .1em;
    left: .1em;
    border-radius: 2em;
    border: 2px solid #88cf8f;
    transition: .3s ease;
  }
  
  .toggle label {
    background: #af4c4c;
    border: 0.5px solid rgba(117, 117, 117, 0.31);
   /* box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.2), 0 -3px 4px rgba(0, 0, 0, 0.15);*/
  }
  .toggle label:before {
    content: '';
    position: absolute;
    border: none;
    width: 0.7em;
    height: 0.7em;
    box-shadow: inset 0.5px -1px 1px rgba(0, 0, 0, 0.35);
    background: #fff;
    transform: rotate(-25deg);
  }
  .toggle label:after {
    content: '';
    position: absolute;
    background: transparent;
    height: calc(100% + 8px);
    border-radius: 30px;
    top: -5px;
    width: calc(100% + 8px);
    left: -4px;
    z-index: 0;
    box-shadow: inset 0px 2px 4px -2px rgba(0, 0, 0, 0.2), 0px 1px 2px 0px rgba(151, 151, 151, 0.2);
  }
  
  .toggle input:checked + label {
    background: #4caf50;
  }
 .toggle input:checked + label:before {
    left: 1.25rem;
  }

  .toggle.readonly input + label {
    background: #145c82;
  }
  
  .toggle.readonly input + label:before {
    left: 1.25rem;
  }