/*/////////////////////////////////////////////// BANNER ///////////////////////////////////////////////*/
#contenedor-cookies {
  display: none;
  position: fixed;
  width: 100%;
  color: black !important;
  bottom: 0px;
  background-color: #ffffff;
  z-index: 9999;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.75);
  padding: 35px 15% 35px 15%;
}

.titulo-texto-cookies {
  font-size: 30px;
  margin-bottom: 18px;
}

.texto-cookies p {
  font-size: 18px;
  line-height: 2rem;
}

.btn-cookies {
  font-size: 15px;
  font-weight: 600;
  background-color: #ffffff;
  color: black;
  padding: 10px 30px;
  cursor: pointer;
  margin-right: 15px;
  border-radius: 5px;
}

#btn-aceptar-cookies {
  border: 2px solid #EE858A;
}

#btn-rechazar-cookies,
#btn-configurar-cookies {
  border: 2px solid #D2C7BC;
}

@media (max-width: 1300px) {
  #contenedor-cookies {
      padding: 30px 5% 30px 5%;
  }
}

@media (max-width: 800px) {
  .contenedor-contenido-cookies {
    flex-direction: column;
  }

  .titulo-texto-cookies {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .texto-cookies {
    width: 100%;
  }

  .texto-cookies p {
    font-size: 14px;
  }

  .contenedor-boton-aceptar {
    width: 100% !important;
  }

  #btn-ok-banner-cookies {
    padding: 10px 24px !important;
  }
}

@media (max-width: 576px) {
  .btn-cookies {
    display: block;
    margin: 10px auto;
    width: 100%;
  }
}
/*/////////////////////////////////////////////// FIN  BANNER ///////////////////////////////////////////////*/



/*/////////////////////////////////////////////// MODAL ///////////////////////////////////////////////*/
.modal-cookies {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: scroll;
}

.modal-cookies-content {
  background-color: #fefefe;
  margin: auto;
  border: 1px solid #888;
  border-radius: 20px;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.cerrar-modal {
  color: black;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.cerrar-modal:hover,
.cerrar-modal:focus {
  color: #292929;
  cursor: pointer;
}

.modal-cookies-header {
  padding: 5px 25px;
  border-bottom: 1px solid black;
}

.modal-cookies-header .titulo-modal-cookies {
  font-size: 22px !important;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

.modal-cookies-body {
  padding: 15px 25px;
}

.modal-cookies-body .subtitulos-modal-cookies {
  font-size: 16px !important;
  margin-bottom: 15px;
  margin-top: 30px;
}

.modal-cookies-body p {
  margin: 8px 0 10px 0;
}

.contenedor-cookie-modal {
  display: flex;
  align-items: center;
  padding-left: 15px;
  margin-bottom: 15px;
}

.contenedor-cookie-modal p {
  margin: 0;
}

.estado-cookies {
  cursor: pointer;
}

.col-1-cookie {
  list-style: none;
  padding-left: 15px;
  margin-bottom: 0;
}

.modal-cookies-footer {
  padding: 15px 25px;
}

.modal-cookies-footer p {
  padding-bottom: 18px;
}

#btn-cerrar-modal-footer {
  text-transform: uppercase;
  background-color: white;
  border: 2px solid #D2C7BC;
  font-size: 0.9em;
  color: #292929;
  padding: 15px 32px !important;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1400px) {
  .modal-cookies-content {
      width: 90%;
  }
}

@media (max-width: 800px) {
  .modal-cookies-content {
      width: 96%;
  }

  .modal-cookies-body {
      font-size: 0.9em;
  }
}
/*/////////////////////////////////////////////// FIN MODAL ///////////////////////////////////////////////*/



/*/////////////////////////////////////////////// TEXTO ESTADO ///////////////////////////////////////////////*/
#estado-cookies-global {
  margin: 12px 0 12px 0;
}

.cookies-aceptadas-estado {
  font-size: 1.2em;
  color: green;
  display: inline;
}

.cookies-rechazadas-estado {
  font-size: 1.2em;
  color: red;
  display: inline;
}

.cookies-sin-determinar-estado {
  font-size: 1.2em;
  display: inline;
}
/*/////////////////////////////////////////////// FIN TEXTO ESTADO ///////////////////////////////////////////////*/



/*/////////////////////////////////////////////// ANIMACION ///////////////////////////////////////////////*/
@-webkit-keyframes animatetop {
  from {
      top: -300px;
      opacity: 0
  }

  to {
      top: 0;
      opacity: 1
  }
}

@keyframes animatetop {
  from {
      top: -300px;
      opacity: 0
  }

  to {
      top: 0;
      opacity: 1
  }
}
/*/////////////////////////////////////////////// FIN ANIMACION ///////////////////////////////////////////////*/


#contenedor-botones-aviso-cookies {
  margin-bottom: 25px;
}