/*BANNER COOKIES*/
.banner-cookies {
  width: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: column nowrap;
  position: fixed;
  bottom: 0;
}

@media screen and (max-width: 700px) {
  .banner-cookies-content {
    flex-flow: column nowrap !important;
  }

  .banner-cookies-buttons {
    flex-flow: row nowrap !important;
  }
}

/* Texto y botones */
.banner-cookies-content {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
  padding: 1em;

}

.banner-cookies-text {
  width: 100% !important;
  overflow-y: auto;
  text-align: justify;
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}

.banner-cookies-text p {
  padding-bottom: 0 !important;
  font-size: 14px !important;
  line-height: 1.5;
}

.banner-cookies-buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: flex-start;
}

.banner-cookies-buttons button {
  color: #483729;
  padding: 0.5em 1.5em;
  font-size: 14px;
  border-radius: 1em;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
}

.banner-cookies-buttons button:hover {
  border-color: #483729;
}

/* Politicas */
.banner-cookies-politics {
  background-color:#483729;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  padding: 0.5rem;
}

.banner-cookies-politics a {
  color: #fff;
  text-decoration: none;
  /* font-weight: 600; */
}

/*Opciones personalizadas*/
.banner-cookies-choices {
  display: flex;
  flex-flow: row nowrap;
}
.banner-cookies-choice {
  display: flex;
  align-items: start;
}

/* Customize the label (the container) */
.banner-cookies-choice .container {
  display: block;
  position: relative;
  padding-left: 35px;
  /* margin-bottom: 12px; */
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 5px;
}

/* Hide the browser's default checkbox */
.banner-cookies-choice .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.banner-cookies-choice .container .checkmark {
  position: absolute;
  top: 5px;
  left: 8px;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 5px;
}

/* On mouse-over, add a grey background color */
.banner-cookies-choice .container:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.banner-cookies-choice .container input:checked~.checkmark {
  background-color: #2196F3;
}

/* When the checkbox is checked, add a grey background */
.banner-cookies-choice .container input:disabled~.checkmark {
  background-color: grey;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.banner-cookies-choice .container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.banner-cookies-choice .container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}













/*FIN BANNER COOKIES*/

/*MODAL*/
.modal-banner-cookies {
  background-color: rgba(0, 0, 0, .6);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.modal-cookies-content {
  background-color: #fff;
  border: solid 2px #000;
  border-radius: 15px;
  box-shadow: 3px 3px 3px 6px rgba(0, 0, 0, .3);
  padding: 2rem;
  min-width: 50%;
  min-height: 50%;
  gap: 20px;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.modal-close {
  align-self: flex-end;
  color: #000;
  border: 1px solid #000;
  padding: 2px 10px;
  border-radius: 50%;
}

.modal-banner-cookies.modal-open,
.modal-cookies-content.modal-open {
  visibility: visible;
}

.modal-cookies-buttons {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.modal-cookies-buttons button {
  color: #090909;
  padding: 0.7em 1.7em;
  font-size: 14px;
  border-radius: 0.5em;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  transition: all .3s;
  box-shadow: 6px 6px 12px #c5c5c5,
    -6px -6px 12px #ffffff;
}

.modal-cookies-buttons button:hover {
  border: 1px solid white;
  box-shadow: 4px 4px 12px #c5c5c5,
    -4px -4px 12px #ffffff;
}

.modal-cookies-buttons button:active {
  box-shadow: 4px 4px 12px #c5c5c5,
    -4px -4px 12px #ffffff;
}



/*FIN MODAL*/