@charset "UTF-8";
@font-face {
  font-family: "Neue-Montreal";
  src: url("PPNeueMontreal-Regular.woff2") format("woff2"), url("PPNeueMontreal-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Editoral-New";
  src: url("PPEditorialNew-Regular.woff2") format("woff2"), url("PPEditorialNew-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*

  VARIABLES

*/
/*
	Theme Name: AJL 2024 V1
	Theme URI: https://www.loygorri.com
	Description: Tailored WordPress Theme
	Version: 1.0
	Author: Gabriel García Loygorri
	Author URI: https://www.loygorri.com
	Tags: TAILORED, HTML5, CSS3, SASS

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

:root, :root.light {
  --crema: rgba(237, 234, 229, 1);
  --crema_siempre: rgba(237, 234, 229, 1);
  --principal: rgba(64,103,183,1);
  --oscuro: rgba(51,51,51,1);
  --blanco: rgba(255,255,255,1);
  --familia:"Neue-Montreal";
  --titular:"Editoral-New";
}

@media (prefers-color-scheme: dark) {
  :root {
    --principal: rgba(237, 234, 229, 0.5);
    --crema: rgba(35,56,100,1);
    --crema: rgba(40,40,40,1);
    --crema_siempre: rgba(237, 234, 229, 1);
    --oscuro: rgba(51,51,51,1);
  }
}
:root.dark {
  --principal: rgba(237, 234, 229, 0.5);
  --crema: rgba(35,56,100,1);
  --crema: rgba(40,40,40,1);
  --crema_siempre: rgba(237, 234, 229, 1);
  --oscuro: rgba(51,51,51,1);
}

hr {
  display: none;
}

body {
  font-family: var(--familia);
  font-size: 100%;
  color: var(--principal);
  background-color: var(--crema);
}
body.stop {
  height: 100dvh;
  overflow: hidden;
}
body .wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 25px 1fr;
  grid-template-rows: auto 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-color: var(--crema);
  position: sticky;
  z-index: 2;
}

header > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

header > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

header > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

header > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media only screen and (max-width: 550px) {
  header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 10px auto;
    grid-template-columns: repeat(2, auto);
    -ms-grid-rows: auto 20px 1fr;
    grid-template-rows: auto 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    padding: 10px 20px 30px;
  }
  header > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  header > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  header > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  header > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-height: 415px;
  width: 100%;
  max-width: 100%;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
}
@media only screen and (max-width: 550px) {
  header .logo {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
}
header .logo svg {
  height: 100%;
  max-width: 100%;
  fill: var(--principal);
}
@media only screen and (max-width: 550px) {
  header .logo svg {
    width: 100%;
  }
}
header .logo h1 {
  width: 100%;
}
header .logo a {
  text-decoration: none;
  width: 100%;
  display: block;
}
header .intro {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 550px) {
  header .intro {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
  }
}
header .intro p {
  font-family: var(--titular);
  text-transform: uppercase;
  font-size: 22px;
}
@media only screen and (max-width: 550px) {
  header .intro p {
    text-align: center;
    font-size: 15px;
    padding-right: 0vh;
  }
}
header .navegacion {
  font-family: var(--titular);
  text-transform: uppercase;
  font-size: 22px;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 550px) {
  header .navegacion {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3/1/4/3;
    font-size: 18px;
    gap: 20px;
  }
}
header .navegacion ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 25px;
}
header .navegacion ul:has(li img) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  padding-top: 25px;
}
@media only screen and (max-width: 550px) {
  header .navegacion ul:has(li img) {
    padding-top: 0px;
  }
}
header .navegacion ul:has(li img) li {
  width: initial;
}
header .navegacion ul:has(li img) li img {
  width: 100%;
  max-height: 100px;
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 550px) {
  header .navegacion ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
header .navegacion ul li {
  width: 50%;
}
@media only screen and (max-width: 550px) {
  header .navegacion ul li {
    width: initial;
  }
  header .navegacion ul li:first-of-type span:first-of-type {
    display: none;
  }
}
header .navegacion ul li:last-of-type span {
  white-space: nowrap;
}
header .navegacion ul li a {
  text-decoration: none;
  color: var(--principal);
}
header .navegacion ul li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header hr {
  display: none;
}
header .centrado {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  cursor: pointer;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
header .centrado .bars svg {
  width: 30px;
  fill: var(--oscuro);
}
header .centrado .nav {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
header .centrado .nav .sociales {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
header .centrado .nav .sociales a {
  width: 25px;
  height: 25px;
  border-radius: 325px;
  border: 1px solid var(--oscuro);
}
header .centrado .nav .sociales a svg {
  fill: var(--oscuro);
}
header .centrado .nav .switch {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
header .centrado .nav .switch a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-align: center;
  font-size: 22px;
  color: var(--oscuro);
  font-family: var(--gosha);
  line-height: 0.8em;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .nav .switch a:hover {
  color: var(--naranja);
}
header .centrado .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0px;
  list-style: none;
  gap: 10px 30px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 550px) {
  header .centrado .nav ul {
    display: none;
  }
}
header .centrado .nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .centrado .nav ul li.current-menu-item a {
  color: var(--naranja);
}
header .centrado .nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-align: center;
  font-size: 22px;
  color: var(--oscuro);
  font-family: var(--gosha);
  line-height: 0.8em;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .nav ul li a:hover {
  color: var(--naranja);
}
header .centrado .nav ul li ul {
  display: none;
}

body.no_top header .centrado .logo svg #uno {
  opacity: 0;
}
body.no_top header .centrado .logo svg #dos {
  opacity: 1;
}

body.aaaa .wrapper header {
  top: 0px;
  grid-row-gap: 0px;
  border-bottom: 2px solid var(--principal);
}
body.aaaa .wrapper header .logo svg {
  height: 50px;
}
body.aaaa .wrapper header .intro {
  display: none;
}
body.aaaa .wrapper header .navegacion ul:last-of-type {
  display: none;
}

@media only screen and (max-width: 550px) {
  .stop .wrapper header {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    background-color: var(--oscuro_siempre);
  }
  .stop .wrapper header .logo svg path,
  .stop .wrapper header .logo svg rect {
    fill: var(--crema_siempre);
  }
  .stop .wrapper header .centrado .bars svg {
    fill: var(--crema_siempre);
  }
  .stop .wrapper header .centrado .nav .sociales a {
    border: 1px solid var(--crema_siempre);
  }
  .stop .wrapper header .centrado .nav .sociales a svg {
    fill: var(--crema_siempre);
  }
}
body.arriba.body-scrolled .fijo {
  top: 0px;
  opacity: 1;
}
body .fijo {
  top: -120px;
  opacity: 0;
  grid-row-gap: 0px;
  border-bottom: 2px solid var(--principal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
  gap: 25px;
  position: fixed;
  z-index: 3;
  background-color: var(--crema);
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 550px) {
  body .fijo {
    gap: 10px;
    padding: 10px;
  }
}
body .fijo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-height: 415px;
  width: 100%;
  max-width: 100%;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
}
@media only screen and (max-width: 550px) {
  body .fijo .logo {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
    width: initial;
  }
}
body .fijo .logo svg {
  height: 50px;
  max-width: 100%;
  fill: var(--principal);
}
@media only screen and (max-width: 550px) {
  body .fijo .logo svg {
    width: 100%;
  }
}
body .fijo .logo h1 {
  width: 100%;
}
body .fijo .logo a {
  text-decoration: none;
  width: 100%;
  display: block;
}
body .fijo ul {
  font-family: var(--titular);
  text-transform: uppercase;
  font-size: 22px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 25px;
}
@media only screen and (max-width: 550px) {
  body .fijo ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5px;
    font-size: 15px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
body .fijo ul li {
  width: 50%;
}
@media only screen and (max-width: 550px) {
  body .fijo ul li {
    width: initial;
  }
  body .fijo ul li:first-of-type span:first-of-type {
    display: none;
  }
  body .fijo ul li:last-of-type span:last-of-type {
    display: none;
  }
}
body .fijo ul li a {
  text-decoration: none;
  color: var(--principal);
}
body .fijo ul li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*

	VARIABLES

*/
.menu-desplegable {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  right: -400px;
  background-color: var(--blanco_75);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 5;
  padding: 20px 20px;
  opacity: 0.9;
  overflow: scroll;
}
@media only screen and (max-width: 550px) {
  .menu-desplegable {
    right: -500px;
    top: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    width: 100%;
    height: 100vh;
    background-color: var(--oscuro_siempre);
    opacity: 1;
    border-right: 0px;
  }
}
.menu-desplegable > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: auto;
}
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .menu-desplegable > a {
    margin-right: 100%;
  }
}
.menu-desplegable > a svg {
  height: 100%;
  width: auto;
}
.menu-desplegable > a svg .texto_logo, .menu-desplegable > a svg .forma_logo {
  fill: var(--color_blanco_siempre);
}
.menu-desplegable > a span {
  display: none;
}
.menu-desplegable ul {
  list-style-type: none;
}
.menu-desplegable ul li {
  position: relative;
}
.menu-desplegable ul li.current-menu-item a {
  color: var(--naranja);
}
.menu-desplegable ul li a {
  /*background-color: rgba(255, 255, 255, 0.3);*/
  color: var(--oscuro);
  font-family: var(--gosha);
  line-height: 1.5em;
  letter-spacing: -0.05em;
  font-weight: 400;
  font-size: 22px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 550px) {
  .menu-desplegable ul li a {
    color: var(--crema_siempre);
    font-size: 28px;
    line-height: 1.3em;
  }
}
.menu-desplegable ul li.activo a {
  font-weight: bold;
}
.menu-desplegable ul li i {
  position: absolute;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: grey;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.menu-desplegable ul li i:hover {
  background-color: darkgray;
}
.menu-desplegable ul li i.activo {
  background-color: white;
}
.menu-desplegable ul li.interruptor a::after {
  content: "off";
  text-transform: uppercase;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  margin-left: 10px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0em;
  padding-left: 0px;
  padding-right: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--oscuro);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 550px) {
  .menu-desplegable ul li.interruptor a::after {
    border: 1px solid var(--crema);
  }
}
.menu-desplegable ul li.interruptor.dark a::after {
  content: "on";
  border: 1px solid var(--naranja);
  background-color: var(--naranja);
  color: var(--oscuro_siempre);
}
.menu-desplegable ul li:last-child a {
  border-bottom: 0px;
}
.menu-desplegable ul li .sub-menu {
  display: none;
}
.menu-desplegable ul li .sub-menu.activo {
  display: block;
}
.menu-desplegable.activo {
  right: 50px;
}
@media only screen and (max-width: 550px) {
  .menu-desplegable.activo {
    right: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}

.cierre-menu-desplegable {
  position: fixed;
  top: 0px;
  left: 100%;
  width: 100%;
  height: 100vh;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media only screen and (max-width: 550px) {
  .cierre-menu-desplegable {
    display: none;
  }
}

.cierre-menu-desplegable.activo {
  left: 0px;
}
@media only screen and (max-width: 550px) {
  .cierre-menu-desplegable.activo {
    display: none;
  }
}

/* FIRMA */
.firma {
  background-color: rgb(10, 10, 10);
  color: rgb(255, 255, 255);
  padding: 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.firma a {
  color: rgb(255, 255, 255);
}

.firma a:hover {
  font-weight: 700;
}

.enlace_firma {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 75px;
  max-width: 200px;
  margin-top: 20px;
}

.enlace_firma span {
  color: rgb(255, 255, 255);
  padding: 0px 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.enlace_firma span a {
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.enlace_firma a {
  height: 30px;
  font-weight: 700;
}

.enlace_firma a svg {
  height: 30px;
}

/*

	VARIABLES
	--color_fondo_footer




*/
footer {
  padding: 10px 25px;
  border-top: 1px solid var(--principal);
}
@media only screen and (max-width: 550px) {
  footer {
    padding: 10px 5px;
  }
}
footer .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 550px) {
  footer .centrado {
    padding-left: 0px;
    padding-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
footer .centrado p {
  font-size: 13px;
  font-family: var(--titular);
}
@media only screen and (max-width: 550px) {
  footer .centrado p {
    text-align: center;
  }
}
footer .centrado p a {
  text-decoration: none;
  color: var(--principal);
}
footer .centrado p a:hover {
  text-decoration: underline;
}
footer .centrado ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0px;
}
@media only screen and (max-width: 550px) {
  footer .centrado ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .centrado ul li {
  font-size: 13px;
  font-family: var(--titular);
}
footer .centrado ul li:after {
  content: "|";
  padding-right: 5px;
  padding-left: 5px;
}
@media only screen and (max-width: 550px) {
  footer .centrado ul li:after {
    content: "";
    padding-right: 2px;
    padding-left: 2px;
  }
}
footer .centrado ul li:last-child:after {
  content: "";
}
footer .centrado ul li a {
  text-decoration: none;
  color: var(--principal);
}
footer .centrado ul li a:hover {
  text-decoration: underline;
}

/*

	VARIABLES
	--color_fondo_footer

*/
.home .wrapper main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
}
.home .wrapper main .areas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
.home .wrapper main .areas .area {
  width: 100%;
  border-top: 2px solid var(--principal);
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home .wrapper main .areas .area h2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 15px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 40px;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-family: var(--titular);
  font-weight: normal;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area h2 {
    font-size: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home .wrapper main .areas .area h2 strong {
  font-weight: 400;
  width: 50%;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area h2 strong {
    width: 100%;
  }
}
.home .wrapper main .areas .area h2 span {
  width: 50%;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 10px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area h2 span {
    display: none;
  }
}
.home .wrapper main .areas .area h2:hover {
  background-color: var(--principal);
  color: var(--crema);
}
.home .wrapper main .areas .area .panel {
  padding-left: 25px;
  padding-right: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area .panel {
    padding-left: 20px;
    padding-right: 20px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.home .wrapper main .areas .area .panel p {
  width: 100%;
  max-width: 50%;
  padding-bottom: 25px;
  font-size: 22px;
  line-height: 26px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area .panel p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.5em;
  }
}
.home .wrapper main .areas .area .panel ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding-bottom: 40px;
  padding-top: 40px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area .panel ul {
    gap: 15px;
  }
}
.home .wrapper main .areas .area .panel ul li {
  white-space: nowrap;
  border-radius: 15px;
  background-color: var(--principal);
  color: var(--crema);
  font-size: 15px;
  padding: 5px 15px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area .panel ul li {
    white-space: initial;
    font-size: 14px;
  }
}
.home .wrapper main .areas .area .panel a {
  position: absolute;
  right: -250px;
  top: 21px;
  white-space: nowrap;
  border-radius: 25px;
  color: var(--principal);
  background-color: var(--crema);
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  padding-left: 40px;
  padding-right: 40px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border: 1px solid var(--principal);
}
.home .wrapper main .areas .area .panel a:hover {
  background-color: var(--principal);
  color: var(--crema);
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area .panel a {
    position: relative;
    right: initial;
    top: initial;
    display: inline-block;
  }
}
.home .wrapper main .areas .area.activo h2 {
  color: var(--principal);
}
.home .wrapper main .areas .area.activo h2:hover {
  background-color: initial;
  color: var(--principal);
}
.home .wrapper main .areas .area.activo .panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .wrapper main .areas .area.activo .panel a {
  right: 25px;
}
@media only screen and (max-width: 550px) {
  .home .wrapper main .areas .area.activo .panel a {
    right: initial;
  }
}

.cv main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding: 40px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5vh;
}
@media only screen and (max-width: 550px) {
  .cv main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px;
  }
}
.cv main > a {
  white-space: nowrap;
  border-radius: 25px;
  color: var(--principal);
  background-color: var(--crema);
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  padding-left: 40px;
  padding-right: 40px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border: 1px solid var(--principal);
  position: sticky;
  top: 25px;
}
.cv main > a:hover {
  color: var(--crema);
  background-color: var(--principal);
}
@media only screen and (max-width: 550px) {
  .cv main > a {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
.cv main .main {
  width: 100%;
  max-width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content;
  -ms-grid-columns: max-content;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  -ms-grid-rows: auto 20px auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  position: sticky;
  top: 25px;
}
.cv main .main > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.cv main .main > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
@media only screen and (max-width: 550px) {
  .cv main .main {
    width: 100%;
    max-width: 100%;
    padding: 70px 25px 0px;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 20px auto;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    position: inherit;
  }
  .cv main .main > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .cv main .main > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .cv main .main > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .cv main .main > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
.cv main .main h1 {
  font-size: 44px;
  font-weight: normal;
  font-family: var(--titular);
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  -ms-grid-column-align: stretch;
      justify-self: stretch;
}
.cv main .main h1 span {
  display: block;
}
@media only screen and (max-width: 550px) {
  .cv main .main h1 {
    width: 50%;
    font-size: 26px;
  }
}
.cv main .main img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
@media only screen and (max-width: 550px) {
  .cv main .main img {
    max-width: 100%;
  }
}
.cv main .main div {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2/1/3/3;
}
@media only screen and (max-width: 550px) {
  .cv main .main div {
    max-width: 100%;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
}
.cv main .main div p {
  font-family: var(--titular);
  font-size: 22px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 550px) {
  .cv main .main div p {
    font-size: 16px;
    padding-bottom: 20px;
  }
}
.cv main .main div a svg {
  fill: var(--principal);
}
.cv main .descripcion {
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 550px) {
  .cv main .descripcion {
    padding: 25px;
    max-width: 100%;
    border-top: 2px solid var(--principal);
  }
}
.cv main .descripcion h2 {
  font-family: var(--titular);
  font-size: 22px;
}
@media only screen and (max-width: 550px) {
  .cv main .descripcion h2 {
    font-size: 16px;
  }
}
.cv main .descripcion ul {
  padding-top: 20px;
  padding-bottom: 40px;
  list-style: none;
}
@media only screen and (max-width: 550px) {
  .cv main .descripcion ul:last-of-type {
    padding-bottom: 0px;
  }
}
.cv main .descripcion ul li {
  font-size: 22px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 550px) {
  .cv main .descripcion ul li {
    font-size: 16px;
  }
}
.cv main .descripcion ul li img {
  width: 100%;
  max-width: 600px;
  margin-top: 10px;
  display: none;
}
.cv main .descripcion ul li:has(img) {
  cursor: pointer;
}
.cv main .descripcion ul li:hover img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  border: 10px solid var(--blanco);
}

.contact main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-top: 2px solid var(--principal);
  padding-top: 25px;
  gap: 25px;
}
@media only screen and (max-width: 550px) {
  .contact main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.contact main .ubicacion {
  width: 100%;
  max-width: 25%;
}
@media only screen and (max-width: 550px) {
  .contact main .ubicacion {
    max-width: 100%;
  }
}
.contact main .ubicacion h2 {
  font-family: var(--titular);
  font-size: 22px;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: normal;
}
.contact main .ubicacion p {
  font-size: 20px;
  padding-bottom: 20px;
}
.contact main .cita {
  width: 100%;
  max-width: 25%;
  font-size: 22px;
}
@media only screen and (max-width: 550px) {
  .contact main .cita {
    max-width: 100%;
  }
}
.contact main .cita h2 {
  font-family: var(--titular);
  font-size: 22px;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: normal;
}
.contact main .cita p {
  font-size: 20px;
  padding-bottom: 20px;
}
.contact main .formulario {
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 550px) {
  .contact main .formulario {
    max-width: 100%;
  }
}
.contact main .formulario h1 {
  font-family: var(--titular);
  font-size: 22px;
  text-transform: uppercase;
}
.contact main .formulario .screen-reader-response {
  display: none;
}
.contact main .formulario form {
  width: 100%;
}
.contact main .formulario form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 20%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 550px) {
  .contact main .formulario form p {
    padding-right: 0%;
  }
}
.contact main .formulario form p > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-size: 22px;
  margin-top: 20px;
  position: relative;
}
.contact main .formulario form p > label .wpcf7-not-valid-tip {
  position: absolute;
  right: 0px;
  top: 3px;
  background-color: red;
  padding: 5px 10px;
  color: var(--crema_siempre);
  font-size: 12px;
  border-radius: 5px;
}
.contact main .formulario form p > label input::-webkit-input-placeholder {
  color: var(--color_principal);
  opacity: 1;
}
.contact main .formulario form p > label input::-moz-placeholder {
  color: var(--color_principal);
  opacity: 1;
}
.contact main .formulario form p > label input:-ms-input-placeholder {
  color: var(--color_principal);
  opacity: 1;
}
.contact main .formulario form p > label input::-ms-input-placeholder {
  color: var(--color_principal);
  opacity: 1;
}
.contact main .formulario form p > label input::placeholder {
  color: var(--color_principal);
  opacity: 1;
}
.contact main .formulario form p > label input:not([type=checkbox]),
.contact main .formulario form p > label textarea {
  width: 100%;
  padding: 10px 10px;
  font-size: 16px;
  border: 0px;
  background-color: var(--crema);
  border-bottom: 1px solid var(--principal);
}
.contact main .formulario form p > label input[type=checkbox] {
  width: 16px;
  height: 16px;
  background-color: var(--crema);
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid var(--principal);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  top: 0px;
  position: relative;
  margin-right: 0px;
}
.contact main .formulario form p > label input[type=checkbox]:checked {
  background-color: var(--principal);
}
.contact main .formulario form p > label:last-of-type {
  font-size: 14px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.contact main .formulario form p > label:last-of-type a {
  color: var(--principal);
}
.contact main .formulario form p > label:last-of-type label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.contact main .formulario form p input[type=submit] {
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  min-height: 40px;
  border: 1px solid var(--principal);
  color: var(--principal);
  font-family: var(--titular);
  background-color: var(--crema);
  border-radius: 20px;
  padding-left: 40px;
  padding-right: 40px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.contact main .formulario form p input[type=submit]:hover {
  background-color: var(--principal);
  color: var(--crema);
}
.contact main .formulario form .wpcf7-response-output {
  margin-top: 20px;
  padding: 5px 10px;
  color: var(--crema);
  font-size: 12px;
  border-radius: 5px;
}
.contact main .formulario form.sent .wpcf7-response-output {
  background-color: green;
  color: var(--crema_siempre);
}
.contact main .formulario form.invalid .wpcf7-response-output {
  background-color: red;
  color: var(--crema_siempre);
}
.contact main .formulario form.unaccepted .wpcf7-response-output {
  background-color: orange;
  color: var(--crema_siempre);
}

.legal main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: 2px solid var(--principal);
  gap: 25px;
}
@media only screen and (max-width: 550px) {
  .legal main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.legal main .titulo {
  width: 100%;
  max-width: 50%;
  position: relative;
}
@media only screen and (max-width: 550px) {
  .legal main .titulo {
    max-width: 100%;
  }
}
.legal main .titulo h1 {
  font-family: var(--titular);
  font-size: 22px;
  padding-bottom: 20px;
  text-transform: uppercase;
  color: var(--principal);
  font-weight: normal;
  position: sticky;
  top: 20px;
}
.legal main .descripcion {
  width: 100%;
  max-width: 50%;
  font-size: 22px;
}
@media only screen and (max-width: 550px) {
  .legal main .descripcion {
    max-width: 100%;
  }
}
.legal main .descripcion h2 {
  font-family: var(--titular);
  font-size: 22px;
  padding-bottom: 10px;
  text-transform: uppercase;
  padding-top: 10px;
  color: var(--principal);
  font-weight: normal;
}
.legal main .descripcion p, .legal main .descripcion li {
  font-size: 20px;
  padding-bottom: 10px;
  line-height: 1.5em;
}
.legal main .descripcion ul, .legal main .descripcion ol {
  padding-left: 20px;
}

.kit {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_1 img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 55px;
}
.kit .kit_2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_2 img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 55px;
}
@media only screen and (max-width: 550px) {
  .kit .kit_2 img {
    height: 50px;
  }
}

/*

	VARIABLES

	--color_fondo_alert
	--color_borde_alert

	--grosor_uno

*/
.alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 3;
  bottom: -50px;
  left: 0px;
  width: 100%;
  background-color: var(--oscuro);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid var(--crema);
}
.alert p {
  width: 100%;
  padding: 10px;
  margin: 0px;
  color: var(--crema_siempre);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 550px) {
  .alert p {
    padding: 15px 10px;
  }
}
.alert p a {
  font-weight: 700;
  color: var(--crema_siempre);
  margin-left: 20px;
}
.alert span {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.alert span svg {
  fill: var(--crema_siempre);
}
.alert.dark {
  bottom: 0px;
  text-transform: uppercase;
}

/*

  VARIABLES

  --grosor_uno

*/
.again {
  cursor: pointer;
}

#gdpr-cookie-message {
  position: fixed;
  bottom: 0px;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  padding: 20px;
}

#gdpr-cookie-message h4 {
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 15px;
}

#gdpr-cookie-message p {
  line-height: 1.3em;
  font-size: 14px;
}

#gdpr-cookie-message a {
  color: rgb(255, 255, 255);
}

#gdpr-cookie-types {
  padding: 20px 0px;
}

#gdpr-cookie-types h5 {
  text-transform: uppercase;
  padding-bottom: 10px;
}

#gdpr-cookie-types ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#gdpr-cookie-types ul li {
  padding: 0px 10px;
}

#gdpr-cookie-message p:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
}

#gdpr-cookie-types input[type=checkbox] {
  width: 16px;
  height: 16px;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid rgb(255, 255, 255);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  top: -2px;
  position: relative;
  margin-right: 5px;
}

#gdpr-cookie-types input[type=checkbox]:checked {
  background-color: rgb(255, 255, 255);
}

#gdpr-cookie-message button {
  padding: 10px 20px;
  border-radius: 20px;
  border: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#gdpr-cookie-message button:first-of-type:hover {
  background-color: rgba(0, 0, 0, 0);
}

#gdpr-cookie-message button:last-of-type {
  margin-left: 20px;
  padding: 0px;
  border: 0px;
  text-decoration: underline;
  font-size: 12px;
}

#gdpr-cookie-message label {
  cursor: pointer;
}

@media (max-width: 414px) {
  #gdpr-cookie-types {
    padding-bottom: 0px;
  }
  #gdpr-cookie-types h5 {
    margin: 0px;
  }
  #gdpr-cookie-types ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px;
    padding: 0px;
  }
}