:root {
  --colorBack: #FFF;
  --colorHeader: #FFF;
  --colorText: #000;
  --colorTextInvers: #FFF;
  --colorMedium2: rgba(255,255,255,0.9);
}

#cookie-notice {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  max-height: 100%;
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  color: var(--colorText);
  background: var(--colorMedium2);
  z-index: 200;
  overflow: hidden;
  -webkit-box-shadow: 0 -0.3em 0.5em 0em rgba(0, 0, 0, 0.3);
          box-shadow: 0 -0.3em 0.5em 0em rgba(0, 0, 0, 0.3);
  -webkit-transition: max-height 0.5s 0s ease-out;
  transition: max-height 0.5s 0s ease-out;
}
.cookie-settings-show #cookie-notice {
  max-height: 0;
}
#cookie-notice .center {
  max-width: 75em;
  padding: 3em 2em 3em;
  margin: 0 auto;
}
#cookie-notice .titular {
  font-family: "Figtree", sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 0 0.6em;
  border-bottom: 1px solid var(--colorText);
  margin-bottom: 0.8em;
}
#cookie-notice a {
  text-decoration: underline;
  color: var(--colorText);
}
#cookie-notice p {
  font-size: 1.7em;
  margin-bottom: 1em;
}
#cookie-notice .buttons_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
}
#cookie-notice .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  padding-top: 0.5em;
  margin-bottom: 0;
}
#cookie-notice .buttons a {
  display: block;
  width: auto;
  min-width: 8em;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--colorTextInvers);
  text-decoration: none;
  padding: 0.6em 2em;
  margin-bottom: 0;
  border-radius: 0.4em;
  border: none;
  background: var(--colorMedium);
}
.no-touch #cookie-notice .buttons a:hover {
  color: var(--colorTextInvers);
  background: var(--colorMedium);
}
#cookie-notice .buttons .cookies-accept {
  color: var(--colorTextInvers);
  background: var(--colorText);
}
#cookie-notice .buttons .cookie-settings {
  color: var(--colorText);
  border: 1px solid #000;
  background: var(--colorTextInvers);
}
.cookies-policy #cookie-notice, .politica-de-cookies #cookie-notice {
  max-height: 0;
}

#cookie-settings {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  max-height: 0;
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  color: var(--colorText);
  background: var(--colorMedium2);
  z-index: 200;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease-in-out, max-height 0s 1s;
  transition: opacity 0.5s ease-in-out, max-height 0s 1s;
}
.cookie-settings-show #cookie-settings {
  opacity: 1;
  max-height: 100%;
  -webkit-transition: max-height 0s linear, opacity 0.5s linear;
  transition: max-height 0s linear, opacity 0.5s linear;
  pointer-events: all;
}
#cookie-settings .ck-set-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 78em;
  min-height: 4em;
  max-height: 90vh;
  border-radius: 0.7em;
  padding: 2em 2.5em;
  background: var(--colorBack);
  -webkit-transform: translate(-50%, -70%);
      -ms-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
  -webkit-box-shadow: 0 0.3em 0.5em 0em rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.3em 0.5em 0em rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.3s 0s ease-in-out;
  transition: all 0.3s 0s ease-in-out;
}
.cookie-settings-show #cookie-settings .ck-set-container {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s 0.5s ease-in-out;
  transition: all 0.3s 0.5s ease-in-out;
}
#cookie-settings .ck-set-header {
  padding: 1em 0 0;
  margin: 0 0 0.8em;
}
#cookie-settings .ck-set-content {
  min-height: 7em;
  padding: 1em 1.5em 0.5em;
  overflow: auto;
}
#cookie-settings .list-selector {
  border-top: 1px solid var(--colorText);
  padding-top: 0.8em;
  margin-bottom: 2em;
}
#cookie-settings .ck-set-footer {
  padding: 1em 0;
}
#cookie-settings .titular {
  font-family: "Figtree", sans-serif;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 0 0.6em;
}
#cookie-settings .option-info {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
#cookie-settings .option-info p {
  margin: 1.5em 0 0.5em;
}
#cookie-settings .option {
  text-align: left;
  border-bottom: 1px solid var(--colorMedium);
  padding: 1em 1em 1.5em;
  margin: 0 0 0.8em;
}
#cookie-settings .option .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#cookie-settings .option button {
  position: relative;
  font-size: 2em;
  color: var(--colorText);
  font-weight: 700;
  padding: 0 0 0 1.6em;
  cursor: pointer;
  background: none;
}
#cookie-settings .option button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9em;
  height: 1.2em;
  background: url("../img/interface/expand.svg") no-repeat center;
  background-size: 100% auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
#cookie-settings .option.expanded .option-info {
  max-height: 50em;
}
#cookie-settings .option.expanded button:after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
#cookie-settings .option.disabled .selector {
  cursor: not-allowed;
}
#cookie-settings .option.disabled .selector .switch {
  pointer-events: none;
  background: var(--colorMedium);
}
#cookie-settings .selector {
  -ms-flex-preferred-size: 4.7em;
      flex-basis: 4.7em;
}
#cookie-settings .selector input {
  position: absolute;
  visibility: hidden;
  margin: 0;
  pointer-events: none;
}
#cookie-settings .switch {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 2.5em;
  border-radius: 1.25em;
  background: var(--colorText);
}
#cookie-settings .switch:after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0.25em;
  left: 0.25em;
  width: 2em;
  height: 2em;
  border-radius: 100%;
  background: var(--colorTextInvers);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}
#cookie-settings .checked .switch {
  background-color: #00bb2f;
}
#cookie-settings .checked .switch::after {
  left: 2.4em;
}
#cookie-settings .buttons_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
}
#cookie-settings .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 0;
}
#cookie-settings .buttons a {
  display: block;
  width: auto;
  min-width: 8em;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--colorTextInvers);
  text-decoration: none;
  padding: 0.6em 2em;
  margin-bottom: 0;
  border-radius: 0.4em;
  border: none;
  background: var(--colorMedium);
}
.no-touch #cookie-settings .buttons a:hover {
  color: #FFF;
  background: #222;
}
#cookie-settings .buttons .cookies-accept {
  color: var(--colorTextInvers);
  background: var(--colorText);
}
#cookie-settings .buttons .cookie-settings {
  color: var(--colorText);
  border: 1px solid #000;
  background: var(--colorTextInvers);
}

@media only screen and (max-width: 768px) {
  #cookie-notice .buttons_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em;
  }
  #cookie-notice .buttons {
    max-width: 52em;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #cookie-notice .buttons a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #cookie-settings .titular {
    font-size: 2.3em;
  }
  #cookie-settings .ck-set-header {
    margin-bottom: 0.2em;
  }
  #cookie-settings .ck-set-container {
    padding: 1.8em;
  }
  #cookie-settings .ck-set-footer {
    padding-top: 1.5em;
  }
  #cookie-settings .ck-set-content {
    padding: 1em 0 0.5em;
  }
  #cookie-settings .buttons_group {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em;
  }
  #cookie-settings .option {
    padding: 0.8em 0 1.2em 0.2em;
  }
  #cookie-settings .option button {
    font-size: 1.8em;
    padding-left: 1.3em;
  }
  #cookie-settings .option button:after {
    width: 0.8em;
  }
}
@media only screen and (max-width: 400px) {
  #cookie-notice .botones {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 20em;
  }
  #cookie-notice .botones .configure {
    margin: 0;
  }
  #cookie-settings .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #cookie-settings .buttons a {
    min-width: 12em;
    padding: 0.7em 1.2em;
  }
}
.dark-mode {
  --colorBack: #000;
  --colorText: #fff;
  --colorTextInvers: #000;
  --colorMedium: #AAA;
  --colorMedium2: rgba(100,100,100,0.9);
}
.dark-mode #cookie-settings .option button:after {
  background-image: url("../img/interface/expand_white.svg");
}/*# sourceMappingURL=cookie-notice.css.map */