.text-cookie {
  display: grid;
  grid-row-gap: 1em;
  font-size: 1rem;
  color: grey;
}

#barraaceptacion {
  display: none;
  position: fixed;
  grid-row-gap: 12px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  color: #fff;
  z-index: 99999999;
  background-color: rgba(0, 0, 0, 0.89);
  min-height: 28vh;
  height: 700px;
  align-content: center;
  grid-template-columns: 1fr 2fr 2fr;
  grid-column-gap: 2em;
  padding: 18px;
}

.botones {
  display: grid;
  justify-content: start;
  align-items: center;
}

.cookie_icon {
  display: grid;
  justify-content: end;
  align-items: center;
  color: white;
}
.cookie_icon svg {
  width: 95px;
}

.inner {
  color: white;
}

.inner a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.inner a:hover {
  color: #8fd300;
}

.inner span {
  font-weight: bold;
  cursor: pointer;
}

.boton_cookie {
  position: relative;
  padding: 5px 15px;
  border-radius: 4px;
  background-color: #fbfbff;
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  color: white;
}
.boton_cookie:hover {
  background-color: #8fd300;
}

.boton_cookie:hover {
  background: #8fd300;
  color: white;
}

.custom-cookie {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: none;
  justify-items: center;
  align-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0;
  z-index: 100000000000;
}
.custom-cookie .padding {
  padding-left: 3em;
  padding-right: 3em;
}

.content-custom-cookie {
  width: 80%;
  height: 100%;
  background-color: #fff;
  display: grid;
  grid-row-gap: 17px;
  overflow: hidden;
  overflow-y: auto;
  align-content: start;
}

.header-custom-cookie {
  background-color: #8fd300;
  color: white;
  font-weight: bold;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 1.1rem;
  align-items: center;
}

.close-modal-custom-cookie {
  cursor: pointer;
}

.btns-cookie {
  display: grid;
  justify-content: space-between;
  grid-auto-flow: column;
}
.btns-cookie .btn-btns-cookie {
  padding: 7px 12px;
  display: grid;
  align-items: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btns-cookie .save {
  border: 1px solid grey;
  color: rgb(182, 182, 182);
}
.btns-cookie .save:hover {
  background-color: #8fd300;
  color: white;
}
.btns-cookie .acept-all {
  background-color: #8fd300;
  color: white;
}
.btns-cookie .acept-all.hover {
  background-color: #8fd300;
}

.lists-cookie {
  display: grid;
  grid-row-gap: 10px;
  padding-bottom: 2em;
}

.list-cookie {
  display: grid;
  grid-row-gap: 10px;
  margin: 5px 0;
}
.list-cookie .title-list {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.list-cookie .inputs {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: end;
  grid-column-gap: 11px;
}

#check-cookie, #custom-cookie, #uncheck-cookie {
  margin: 10px;
}

.botones.btns-cookie.padding {
  justify-content: flex-start;
}

.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.hidden {
  display: none;
}

@media only screen and (max-width: 900px) {
  #barraaceptacion {
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    overflow-y: scroll;
    height: 100%;
  }
  .cookie_icon {
    justify-content: center;
  }
  .cookie_icon svg {
    width: 60px;
  }
  .botones {
    justify-content: center;
  }
  .text-cookie {
    font-size: 0.8rem;
    padding-right: 25px;
  }
}
@media only screen and (max-width: 500px) {
  .list-cookie .title-list {
    grid-auto-flow: row;
    grid-row-gap: 11px;
  }
  .list-cookie .title-list .inputs {
    justify-content: start;
  }
}
@media only screen and (max-width: 400px) {
  .btns-cookie {
    /*grid-auto-flow: row;*/
    grid-row-gap: 12px;
    justify-items: center;
    justify-self: center;
  }
}/*# sourceMappingURL=cookies.css.map */