@charset "UTF-8";
/**
    Theme Name: Iaci 2024
    Text Domain: iaci2024
    Version: 1.0
    Description: Iaci 2024 theme.
    Tags: 
    Author: Marta Panizo
    Author URI: https://iaci2024.com
    Theme URI: https://iaci2024.com
    License URI: http://www.gnu.org/licenses/gpl-2.0.html

    All files, unless otherwise stated, are released under the GNU General Public
    License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

    This theme, like WordPress, is licensed under the GPL.
    Use it to make something cool, have fun, and share what you've learned
    with others.

    ------------------------
    >>> TABLE OF CONTENTS:
    ------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
  4. 	Site Header
  5.  Content
	6. 	Menu Modal
	7. 	Search Modal
	8. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	9.  Post: Archive
	10.  Post: Single
	11. Blocks
	12. Entry Content
	13. Comments
	14. Site Pagination
	15. Error 404
	16. Widgets
	17. Site Footer
  18. Media Queries
  19. Plugins
  20. Animations

  */
/**-------------------------------------------------------------------------- 
*	0. CSS Reset
*-------------------------------------------------------------------------- */
/**
  * Theme Name:   Iaci 2024
  * Description: Define main information about styles use in all page

    ------------------------
    >>> TABLE OF CONTENTS:
    ------------------------

        1. 	Typography
        2. 	Color
        3.  Content size / Breaking Points

  */
/**-------------------------------------------------------------------------- 
  *	1. Typography
  *-------------------------------------------------------------------------- */
/**-------------------------------------------------------------------------- 
  *	2. Colors
  *-------------------------------------------------------------------------- */
/**
  * components */
/**-------------------------------------------------------------------------- 
  *	3. Size / Breaking Points
  *-------------------------------------------------------------------------- */
/*
 * Theme Name:   Iaci 2024
 * Description:  Reset format navigator defaults

 */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

/* Evitamos problemas con las imagenes */
img,
picture,
video,
iframe,
figure {
  /* max-width: 100%;
  width: 100%; */
  display: block;
}

/* Reseteamos los enlaces para funcionar como cajas... */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/* ... excepto los que se encuentran en párrafos */
p a {
  display: inline;
}

/* Quitamos los puntos de los <li> */
li {
  list-style-type: none;
}

/* Configuramos anclas suaves */
html {
  scroll-behavior: smooth;
}

/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
blockquote,
i,
b,
u,
em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* Evitamos problemas con los pseudoelementos de quotes */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Configuramos el texto que seleccionamos */
::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}

::selection {
  background-color: #000000;
  color: #ffffff;
}

/* Nivelamos problemas de tipografías y colocación de formularios */
form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
  hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  /* opcional */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Reseteamos las tablas */
table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Evitamos problemas con los SVG */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/**-------------------------------------------------------------------------- 
*	1. Document Setup
*-------------------------------------------------------------------------- */
/**
  * Theme Name:   Panacea
  * Description: Mixin archive

    --------------------------------------------------------------
    >>> TABLE OF CONTENTS:
    ----------------------------------------------------------------

        1. 	Typography
        2. 	Background
        3.  Media Queries

  */
/**-------------------------------------------------------------------------- 
  *	1. Typography
  *-------------------------------------------------------------------------- */
/*@mixin typography($font-family,$font-style, $font-weight,$line-height, $color){
  font-family: $font-family;
  font-style: $font-style;
  font-weight: $font-weight;
  line-height: $line-height;
  color: $color;
}*/
/**-------------------------------------------------------------------------- 
  *	2. Background
  *-------------------------------------------------------------------------- */
/**-------------------------------------------------------------------------- 
  *	2. Media Query size
  *-------------------------------------------------------------------------- */
/**
  * Theme Name:   Iaci 2024
  * Description: Define main information about typography
  */
@font-face {
  font-family: "Archivo";
  src: url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&display=swap") format("opentype");
}
@font-face {
  font-family: "Inter";
  src: url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap") format("opentype");
}
/**-------------------------------------------------------------------------- 
*	2. Element Base
*-------------------------------------------------------------------------- */
@media screen and (min-width: 1922px) {
  :root {
    --textMov-postition-x: -1341px;
    --animation-postition-y: ;
  }
}
@media screen and (max-width: 1922px) {
  :root {
    --textMov-postition-x: -858px;
    --animation-postition-y: ;
  }
}
/* Configuramos la tipografía para toda la web */
body, html {
  min-height: 100vh;
  font-size: 100%;
  font-family: Inter, sans-serif;
  font-display: swap;
  color: #003BFF;
  background-color: #F6FCFF;
  /* opcional */
  -webkit-hyphens: auto;
  hyphens: auto;
  /* opcional */
  font-smooth: always;
  /* opcional */
  -webkit-font-smoothing: antialiased;
  /* opcional */
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 576px) {
  body, html {
    /* Para que no haya scroll horizontal nunca */
    overflow-x: hidden;
  }
}

body::-webkit-scrollbar {
  width: 0.6em;
}

body::-webkit-scrollbar-track {
  background-color: #7A97FA;
}

body::-webkit-scrollbar-thumb {
  background-color: #003BFF;
}

h1,
h2 {
  font-family: "Archivo", sans-serif;
  font-size: 3.5em;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #003153;
  word-break: auto-phrase;
}
@media screen and (max-width: 576px) {
  h1,
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 2em;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  word-break: auto-phrase;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.5em;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #003153;
  word-break: auto-phrase;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 1.125em;
  font-style: normal;
  font-weight: 400;
  line-height: 122%;
  color: #003153;
}

.p.semibold {
  font-weight: 600;
}

.bt-azul-electrico > a {
  padding: 0.5em 1em;
  background: #003BFF;
  font-family: Inter;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  border-radius: 0;
}
.bt-azul-electrico > a:hover {
  color: #DDE3F6;
}

.btn-default, .cancel, .woocommerce-button--next, #place_order {
  background-color: #003BFF !important;
  color: #DEDEDE !important;
  border: 1px solid #003BFF;
}
.btn-default:hover, .cancel:hover, .woocommerce-button--next:hover, #place_order:hover {
  background-color: #DEDEDE !important;
  color: #003BFF !important;
  border: 1px solid #003BFF;
}

button.bt-azul-electrico {
  padding: 0.5em 1em;
  background: #003BFF;
  font-family: Inter;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  border-radius: 0;
}
button.bt-azul-electrico:hover {
  color: #DDE3F6;
}

.grecaptcha-badge {
  opacity: 0;
}

@media screen and (min-width: 2000px) {
  .container-margin {
    width: 70%;
    margin: 0 auto;
  }
}
/**-------------------------------------------------------------------------- 
*	4. Site Header
*-------------------------------------------------------------------------- */
.header {
  width: 100%;
}
.header .header-wrapper {
  padding: 1rem 2rem 0;
  animation: menuMov 1s linear 0s;
}
@media screen and (max-width: 576px) {
  .header .header-wrapper {
    padding: 0.5rem 0.5rem 0;
  }
}
.header .header-wrapper .custom-logo-link {
  max-height: 4rem;
  min-height: 3rem;
}
.header .header-wrapper .navbar-toggler {
  border: none;
}
.header .header-wrapper .navbar-toggler:focus {
  box-shadow: none;
}
.header .header-wrapper .navbar-layout {
  justify-content: end;
}
.header .header-wrapper .navbar-layout.show .navbar-nav > li, .header .header-wrapper .navbar-layout.collapsing .navbar-nav > li {
  padding: 1em 0;
  border-bottom: 1px solid #003BFF;
}
.header .header-wrapper .navbar-layout.show .navbar-nav > li > a, .header .header-wrapper .navbar-layout.collapsing .navbar-nav > li > a {
  padding: 0 1em;
}
.header .header-wrapper .navbar-layout.show .navbar-nav > li > .dropdown-menu.show, .header .header-wrapper .navbar-layout.collapsing .navbar-nav > li > .dropdown-menu.show {
  --bs-dropdown-border-width: 0px;
  background-color: #F6FCFF;
  padding: 1em 1em 0 1em;
}
@media screen and (max-width: 992px) {
  .header .header-wrapper .navbar-layout .navbar-nav {
    padding-top: 2em;
  }
}
.header .header-wrapper .navbar-layout .navbar-nav > li {
  margin: 1rem;
}
@media screen and (max-width: 992px) {
  .header .header-wrapper .navbar-layout .navbar-nav > li {
    margin: 0rem 1rem;
  }
}
@media screen and (max-width: 576px) {
  .header .header-wrapper .navbar-layout .navbar-nav > li {
    margin: 0rem;
  }
}
.header .header-wrapper .navbar-layout .navbar-nav > li > a::after {
  content: "";
  background-color: #003BFF;
  height: 2px;
  width: 0%;
  display: block;
  transition: 0.5s ease-in-out;
  margin-left: 0em;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
@media screen and (max-width: 992px) {
  .header .header-wrapper .navbar-layout .navbar-nav > li > a::after {
    content: none;
  }
}
@media screen and (min-width: 992px) {
  .header .header-wrapper .navbar-layout .navbar-nav > li > a:hover::after {
    content: "";
    background-color: #003BFF;
    height: 2px;
    width: 100%;
    display: block;
  }
}
.header .header-wrapper .navbar-layout .navbar-nav > li > a > span {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  color: #003BFF;
  display: flex;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 122%;
  width: -moz-fit-content;
  width: fit-content;
}
.header .header-wrapper .navbar-layout .navbar-nav > li > a > span > i {
  width: 11px;
  height: 11px;
  margin-left: 0.5em;
  display: block;
  border-left: 1px solid #003BFF;
  border-bottom: 1px solid #003BFF;
  transform: rotate(-45deg);
  transition: all 0.25s ease;
}
@media screen and (max-width: 992px) {
  .header .header-wrapper .navbar-layout .navbar-nav > li > a > span > i {
    margin: 0rem 1rem;
  }
}
.header .header-wrapper .navbar-layout .navbar-nav .dropdown ul {
  --bs-dropdown-padding-y: 0rem;
  --bs-dropdown-min-width: 0rem;
}
.header .header-wrapper .navbar-layout .navbar-nav .dropdown ul li .dropdown-item {
  color: #003BFF !important;
  text-decoration: none !important;
  font-family: "Inter", sans-serif !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
}
@media screen and (max-width: 761px) {
  .header .header-wrapper .navbar-layout .menu-register-menu-container {
    display: flex;
    justify-content: center;
  }
}
.header .header-wrapper .navbar-layout .menu {
  display: flex;
  flex-flow: row;
  gap: 1em;
  margin-bottom: 0;
}
@media screen and (max-width: 761px) {
  .header .header-wrapper .navbar-layout .menu {
    margin-top: 1em;
    padding-left: 0;
  }
}
.header .header-wrapper .navbar-layout .menu > .menu-item > a > span {
  display: none;
}
.header .header-wrapper .navbar-layout .menu .xoo-el-username-menu > a > span {
  display: inline;
}
.header .header-wrapper .navbar-layout .menu .xoo-el-username-menu > a > span img {
  display: none;
}

/**-------------------------------------------------------------------------- 
*	5. Content
*-------------------------------------------------------------------------- */
/** Home */
.blur {
  background: radial-gradient(ellipse at center, #E3FF00, transparent 93%);
}

/* Block main */
.main {
  /* Breakpoints */
}
.main .hero {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  gap: 3rem;
}
.main .hero .text {
  width: 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 3rem 0rem;
  margin-left: 6rem;
}
.main .hero .text h1 {
  position: relative;
  left: -858px;
  animation: firstTextMov 1.5s linear 1.4s forwards;
}
.main .hero .text .details {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 3rem;
  position: relative;
  left: -990px;
  animation: secondTextMov 1.5s linear 2.8s forwards;
}
.main .hero .text .details > h2 {
  color: #003BFF;
  margin: 0 0 1rem 0;
}
.main .hero .text .details > h3 {
  word-break: auto-phrase;
}
.main .hero .text .details .location {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 1rem 0;
  gap: 0.3rem;
}
.main .hero .text .details .location > p {
  background-color: #E3FF00;
  text-transform: uppercase;
  margin: 0;
}
.main .hero .text .details::before {
  content: " ";
  display: block;
  width: 100%;
  border: 1px solid #003BFF;
}
.main .hero .images {
  padding: 3rem 0rem;
  overflow-x: clip;
  display: flex;
  justify-content: center;
}
.main .hero .images .horizontal {
  position: relative;
  top: -612px;
  width: 100%;
  animation: horizontalImgMov 1.8s linear 1.1s forwards;
}
.main .hero .images .vertical {
  position: relative;
  right: -922px;
  width: 81%;
  animation: verticalImgMov 1.8s linear 2.5s forwards;
}
@media screen and (min-width: 1922px) {
  .main .hero .text h1, .main .hero .text .details {
    position: relative;
    left: -1341px;
  }
}
@media screen and (max-width: 1024px) {
  .main .hero .text h1 {
    position: relative;
    left: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .main .hero .text {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .main .hero .text {
    padding: 0rem 0rem 3rem 0rem;
  }
  .main .hero .text h1 {
    animation: none;
    position: relative;
    left: 0px;
  }
  .main .hero .text .details {
    animation: none;
    position: relative;
    left: 0px;
  }
  .main .hero .images {
    padding: 0rem;
  }
  .main .hero .images > div:first-child {
    display: flex;
    flex-flow: row nowrap !important;
  }
  .main .hero .images .horizontal {
    animation: none;
    position: relative;
    top: 0px;
    left: 31px;
  }
  .main .hero .images .vertical {
    animation: none;
    position: relative;
    right: 0px;
  }
}
@media screen and (max-width: 576px) {
  .main .hero {
    padding: 3rem 1rem;
  }
  .main .hero .text {
    padding: 0rem 0rem 3rem 0rem;
  }
  .main .hero .text h1 {
    animation: none;
  }
  .main .hero .text .details {
    animation: none;
  }
  .main .hero .images {
    overflow-x: visible;
    padding: 6rem 0;
  }
  .main .hero .images > div:first-child {
    display: flex;
    flex-flow: row nowrap !important;
    scale: 2;
  }
  .main .hero .images .horizontal {
    animation: none;
    position: relative;
    top: -7px;
    left: 0px;
    width: 111%;
  }
  .main .hero .images .vertical {
    animation: none;
  }
}

/* Block dates */
.rounded-deco-dates {
  width: 100%;
  min-height: 3rem;
  background-image: radial-gradient(ellipse at 50% 90%, #003153 50%, #003153 74%, #F6FCFF 76%);
}

.dates {
  width: 100%;
  background-color: #003153;
  padding-bottom: 3rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Breakpoints */
}
.dates > h2 {
  padding: 3rem;
  text-align: center;
  color: #E3FF00;
}
.dates > ul {
  width: 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem;
}
.dates > ul::after {
  content: " ";
  display: block;
  width: 100%;
  border: 1px solid #E3FF00;
}
.dates > ul > li {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 2rem 2rem 2rem;
}
.dates > ul > li > p {
  color: #F6FCFF;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .dates > ul {
    width: 68%;
  }
}
@media screen and (max-width: 768px) {
  .dates {
    padding-bottom: 0;
  }
  .dates > h2 {
    padding: 3rem 1rem;
  }
  .dates > ul {
    width: 100%;
    padding: 1rem 0;
  }
  .dates > ul:last-child {
    padding: 1rem 0 0 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .dates > ul > li {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 1rem 1rem 1rem;
  }
}

/* Block program */
.program {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.program .card-1 {
  z-index: 1;
}
.program .card-2 {
  z-index: 2;
}
.program .card-3 {
  z-index: 3;
}
.program .card-4 {
  z-index: 4;
}
.program .card-5 {
  z-index: 5;
}
.program .card-6 {
  z-index: 6;
}
.program [class*=card-] {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3rem;
  border-top: 2px solid #003BFF;
  background-color: #F6FCFF;
  position: sticky;
  top: 5rem;
}
@media screen and (max-width: 576px) {
  .program [class*=card-] {
    gap: 1rem;
  }
}
.program > h2:first-child {
  padding: 3rem;
  margin-left: 6rem;
}
.program > div:first-child {
  width: 100%;
}
.program ul {
  padding: 0;
}
.program ul .num {
  width: 30%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}
.program ul .num > h2 {
  text-align: center;
  font-family: "Archivo", sans-serif, sans-serif;
  font-size: 12.5rem;
  font-weight: 200;
}
.program ul .content {
  width: 70%;
  padding: 3rem;
  height: 479px;
  display: flex;
  flex-flow: column wrap;
}
.program ul .content > div:first-child {
  width: 52%;
  display: flex;
  flex: 0 0 50%;
  flex-flow: column nowrap;
  justify-content: center;
  align-self: center;
  order: 1;
}
.program ul .content > div:nth-child(2) {
  width: 50%;
  display: flex;
  flex: 0 0 100%;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  order: 3;
}
.program ul .content > div:nth-child(2) img {
  width: 55%;
}
.program ul .content > div:nth-child(3) {
  width: 50%;
  display: flex;
  flex: 0 0 50%;
  flex-flow: column nowrap;
  justify-content: flex-start;
  order: 2;
}
.program ul .content > div:nth-child(3) > p {
  color: #003153;
}

/* Breakpoints */
@media screen and (max-width: 1024px) {
  .program > h2:first-child {
    padding: 3rem 1rem;
    margin-left: 0;
  }
  .program ul {
    padding: 0;
  }
  .program ul .content {
    padding: 2rem 3rem 3rem 0rem;
    height: auto;
  }
  .program ul .content > div:first-child {
    width: 100%;
    display: flex;
    flex: 0 0 0%;
    order: 0;
  }
  .program ul .content > div:nth-child(2) {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    flex: 0 0 0%;
    order: 0;
  }
  .program ul .content > div:nth-child(2) img {
    width: 40%;
  }
  .program ul .content > div:nth-child(3) {
    width: 100%;
    display: flex;
    flex: 0 0 0%;
    order: 0;
  }
}
@media screen and (max-width: 768px) {
  .program > h2:first-child {
    padding: 3rem 1rem;
  }
  .program ul {
    padding: 0;
  }
  .program ul .num > h2 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 576px) {
  .program > h2:first-child {
    padding: 0rem 1rem 3rem 1rem;
  }
  .program ul {
    padding: 0;
  }
  .program ul .num {
    width: 25%;
  }
  .program ul .num > h2 {
    font-size: 2.5rem;
  }
  .program ul .content {
    padding: 2rem 1rem 3rem 0rem;
    height: auto;
  }
  .program ul .content > div:first-child {
    width: 100%;
    display: flex;
    flex: 0 0 0%;
    order: 0;
  }
  .program ul .content > div:nth-child(2) {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    flex: 0 0 0%;
    order: 0;
  }
  .program ul .content > div:nth-child(2) img {
    width: 100%;
  }
  .program ul .content > div:nth-child(3) {
    width: 100%;
    display: flex;
    flex: 0 0 0%;
    order: 0;
  }
}
/* Block city */
.city {
  width: 100%;
  min-height: 10rem;
  background-color: #EBFA7A;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 3rem;
}
.city .container-margin > div:first-child {
  width: 50%;
  display: flex;
  flex-flow: column nowrap;
  padding: 3rem 0;
  gap: 2rem;
  margin-left: 6rem;
}
.city .container-margin > div:first-child p {
  width: 70%;
  color: #003153;
}
.city .container-margin > div:nth-child(2) {
  width: 50%;
  margin: 0 auto;
  padding: 0 40px 0;
}

/* Breakpoints */
@media screen and (max-width: 1024px) {
  .city .container-margin {
    gap: 3rem;
  }
  .city .container-margin > div:first-child {
    margin-left: 0;
  }
  .city .container-margin > div:first-child p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .city .container-margin {
    gap: 0rem;
  }
  .city .container-margin > div:first-child {
    margin-left: 0;
  }
  .city .container-margin > div:first-child p {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .city {
    padding: 0rem 1rem 3rem 1rem;
  }
  .city .container-margin {
    gap: 0rem;
  }
  .city .container-margin > div:first-child {
    margin-left: 0;
  }
  .city .container-margin > div:first-child p {
    width: 100%;
  }
}
/* Block organizers */
.organizers {
  display: none;
  width: 100%;
  padding: 3rem 0;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  /* Breakpoints */
}
.organizers > h2 {
  padding: 3rem;
}
.organizers > div:first-of-type {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.organizers > div:first-of-type ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin: 0 6rem;
  width: 80%;
}
.organizers > div:first-of-type ul > li {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
}
.organizers > div:first-of-type ul > li > img {
  min-height: 15rem;
  min-width: 20rem;
  max-height: 15rem;
  max-width: 25rem;
  border: 1.5px solid #003BFF;
  background: #E5EAEE;
}
.organizers > div:first-of-type ul > li > div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.3rem;
}
.organizers > div:first-of-type ul > li > div > p {
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 122%;
  color: #003153;
}
.organizers > div:first-of-type ul > li > div > p:first-child {
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .organizers h2 {
    padding: 3rem 1rem;
  }
  .organizers div ul:first-of-type {
    padding: 0;
    margin: 0 1rem;
    width: 100%;
  }
  .organizers div ul:first-of-type li img {
    min-height: auto;
    min-width: auto;
    max-height: none;
    max-width: none;
    width: 100%;
  }
}

/** Block home cards pages */
.container-margin-cards {
  margin: 4em 9em;
}
@media screen and (max-width: 1024px) {
  .container-margin-cards {
    margin: 4em 3em;
  }
}
@media screen and (max-width: 576px) {
  .container-margin-cards {
    margin: 4em 1em;
  }
}
.container-margin-cards h2 {
  width: 50%;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1440px) {
  .container-margin-cards h2 {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .container-margin-cards h2 {
    width: 100%;
  }
}
.container-margin-cards .home-cards-pages {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1em;
}
.container-margin-cards .home-cards-pages > a {
  border: 1px solid #003BFF;
  width: 32%;
}
@media screen and (max-width: 1024px) {
  .container-margin-cards .home-cards-pages > a {
    width: 46%;
  }
}
@media screen and (max-width: 576px) {
  .container-margin-cards .home-cards-pages > a {
    width: 100%;
  }
}
.container-margin-cards .home-cards-pages > a:hover {
  background-color: #DDE3F6;
  opacity: 0.8;
}
.container-margin-cards .home-cards-pages > a > div > div:first-child img {
  width: 100%;
  border-bottom: 1px solid #003BFF;
}
.container-margin-cards .home-cards-pages > a > div > div:last-child {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 2em 3em;
}
@media screen and (max-width: 576px) {
  .container-margin-cards .home-cards-pages > a > div > div:last-child {
    padding: 2em 1em;
  }
}
.container-margin-cards .home-cards-pages > a > div > div:last-child h3 {
  margin: 0;
  color: #003BFF;
}
.container-margin-cards .home-cards-pages > a > div > div:last-child svg {
  width: auto;
}

/* Block countdown */
.countdown {
  width: 100%;
  min-height: 10rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 6rem;
  /* Breakpoints */
}
.countdown > h2:first-of-type {
  width: 50%;
  padding: 3rem;
}
.countdown > div:first-of-type {
  width: 100%;
  padding-bottom: 2em;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.countdown > div:first-of-type ul {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  position: relative;
}
.countdown > div:first-of-type ul li {
  min-width: 10em;
  min-height: 9em;
  list-style-type: none;
  font-size: 1rem;
  font-family: Archivo;
  text-transform: capitalize;
  text-align: center;
  background-color: #DDE3F6;
  border: 1px solid #003BFF;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  gap: 0.5rem;
  position: relative;
}
.countdown > div:first-of-type ul li > span {
  display: flex;
  flex-flow: column nowrap;
  display: block;
  font-size: 4rem;
  color: #003BFF;
}
@media screen and (max-width: 1024px) {
  .countdown {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .countdown {
    margin-left: 0;
  }
  .countdown > h2:first-of-type {
    padding: 3rem 3rem;
    width: 100%;
  }
  .countdown div ul:first-of-type {
    padding: 3rem 1rem;
    gap: 0.5rem;
  }
  .countdown div ul:first-of-type li {
    padding: 1rem 1rem;
    gap: 0.2rem;
  }
  .countdown div ul:first-of-type li > span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .countdown {
    margin-left: 0rem;
  }
  .countdown > h2:first-of-type {
    padding: 3rem 1rem;
    width: 100%;
  }
  .countdown div ul:first-of-type {
    padding: 0rem 1rem 3rem 1rem;
    gap: 0.5rem;
  }
  .countdown div ul:first-of-type li {
    min-width: auto;
    min-height: auto;
    width: 28%;
    font-size: 0.5em;
    word-break: auto-phrase;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem;
    gap: 0.2rem;
  }
  .countdown div ul:first-of-type li > span {
    font-size: 1rem;
  }
}

.registration {
  width: 100%;
  padding-right: 7rem;
  margin: 0 0rem 6rem 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}
.registration > h2 {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .registration {
    padding-right: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .registration {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .registration {
    padding-right: 1rem;
    margin: 0 0rem 3rem 0;
  }
  .registration > h2 {
    text-align: left;
    padding-left: 1rem;
  }
}

/** Workshops */
.container-pages {
  padding: 3em 0 5em;
}
@media screen and (max-width: 576px) {
  .container-pages {
    padding: 3em 1em 5em;
  }
}
.container-pages .title-left {
  padding: 0em 3em 0;
}
@media screen and (max-width: 576px) {
  .container-pages .title-left {
    padding: 0em;
  }
}
.container-pages .title-left h3 {
  width: 32%;
  -webkit-hyphens: none;
  hyphens: none;
}
@media screen and (max-width: 1200px) {
  .container-pages .title-left h3 {
    width: 45%;
  }
}
@media screen and (max-width: 1024px) {
  .container-pages .title-left h3 {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .container-pages .title-left h3 {
    width: 100%;
  }
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  color: #003153;
  margin-bottom: 1.5em;
}

p {
  line-height: 22px;
  margin-bottom: 0;
}

.cards-workshops {
  display: flex;
  flex-flow: row wrap !important;
  gap: 1em;
  padding: 3em 3em 0;
}
@media screen and (max-width: 576px) {
  .cards-workshops {
    padding: 3em 0 0;
  }
}
.cards-workshops > div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: 48%;
  border: 1.5px solid #003BFF;
  padding: 2.5em;
  min-height: 20em;
}
@media screen and (max-width: 768px) {
  .cards-workshops > div {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .cards-workshops > div {
    padding: 1em;
  }
}
.cards-workshops > div > div h2 {
  font-family: "Inter", sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 0em;
  color: #003BFF;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .cards-workshops > div .block-end {
    flex-flow: row nowrap !important;
  }
}
.cards-workshops > div .block-end > div span {
  color: #003BFF;
}
.cards-workshops > div .block-end > div:last-child {
  display: flex;
  justify-content: end;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog {
  max-width: 60% !important;
}
@media screen and (max-width: 1200px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog {
    max-width: 70% !important;
  }
}
@media screen and (max-width: 768px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog {
    max-width: 100% !important;
    margin-right: 1em !important;
    margin-left: 1em !important;
  }
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-header {
  padding: 2em 2em 0;
}
@media screen and (max-width: 576px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-header {
    padding: 2em 1em 0;
  }
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-header > div {
  display: flex;
  flex-flow: column nowrap;
  width: 75%;
}
@media screen and (max-width: 1024px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-header > div {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-header > div {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-header > div h2 {
    font-size: 1.5em;
  }
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-header > div h3 {
    font-size: 1.3em;
  }
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-header button {
  align-self: start;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body {
  padding: 2em;
}
@media screen and (max-width: 576px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body {
    padding: 2em 1em;
  }
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:first-child {
  display: flex;
  flex-flow: row nowrap;
  gap: 8em;
  padding-bottom: 2em;
}
@media screen and (max-width: 1024px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:first-child {
    gap: 5em;
  }
}
@media screen and (max-width: 768px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:first-child {
    gap: 1em;
  }
}
@media screen and (max-width: 576px) {
  .cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:first-child {
    flex-flow: row wrap;
  }
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:first-child > div {
  display: flex;
  flex-flow: column nowrap;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:first-child > div h5 {
  text-transform: uppercase;
  font-family: Inter;
  font-size: 0.8em;
  font-weight: 600;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:first-child > div > div:last-child {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5em;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:first-child > div > div:last-child svg {
  width: auto;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:nth-child(2) {
  display: flex;
  flex-flow: column wrap;
  gap: 1em;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:nth-child(2) > h4 {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:nth-child(2) > p {
  line-height: 22px;
  margin-bottom: 0;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:nth-child(2) > ul {
  padding-left: 0;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:nth-child(2) > ul.list-style-numbers > li {
  list-style: decimal;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:nth-child(2) > ul li {
  color: #003153;
  list-style: disc;
  margin-left: 1.5em;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:nth-child(2) > ul li ul li {
  margin-left: 0em;
}
.cards-workshops > div .block-end > div:last-child .modal-dialog .modal-body > div:nth-child(2) > ul li ul.list-style-letters > li {
  list-style: lower-alpha;
}
.cards-workshops > div .block-end .align-start {
  display: flex !important;
  justify-content: start !important;
}
.cards-workshops .card-blue-label {
  width: 65px;
  height: 30px;
  padding: 5px 0;
  border-radius: 20px;
  background-color: #003BFF;
  text-align: center;
  margin-bottom: 1em;
}
.cards-workshops .card-blue-label > p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: auto;
}

.last-title {
  display: flex;
  flex-flow: row nowrap;
  justify-content: end;
  margin: 1em 0 1em;
}
.last-title span {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.2em;
}
.last-title span svg {
  color: #003153;
  width: auto;
}

/* Posters */
.posters-container {
  padding: 5% 9%;
  padding-bottom: 0% !important;
}
.posters-container .poster-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
}
.posters-container .poster-item .name {
  color: #003BFF;
  font-weight: 600;
}
.posters-container .poster-item .description {
  color: #003BFF;
}
.posters-container .poster-item .institution {
  color: #8098A9;
}
.posters-container .poster-item .border {
  border-bottom: 1.5px solid #003BFF !important;
}

/** Open call */
.block-justify-center {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  -webkit-hyphens: none;
  hyphens: none;
}
.block-justify-center h1, .block-justify-center h3 {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .block-justify-center h1, .block-justify-center h3 {
    width: 100%;
  }
}

.marquee {
  width: 100%;
  padding: 0.5em 0;
  background-color: #003BFF;
  overflow: hidden;
}
.marquee .marquee__content {
  display: flex;
  gap: 1em;
  margin-bottom: 0em;
  padding-left: 0em;
  list-style: none;
  animation: scrolling 15s linear infinite;
}
.marquee .marquee__content li {
  font-size: 50px;
  color: #E5EAEE;
  font-size: 1.5em;
}
.marquee .marquee__content li.marquee__item {
  display: flex;
  flex-shrink: 0;
  flex-flow: row nowrap;
  gap: 0.5em;
}
.marquee .marquee__content li.marquee__item svg {
  width: auto;
  align-self: center;
}
.marquee .marquee__content li.marquee__item span {
  font-weight: 600;
}
.marquee.yellow {
  background-color: #E3FF00;
}
.marquee.yellow > .marquee__content li {
  color: #003153;
  font-weight: 600;
}

.call-body-content {
  padding: 4em 3em 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 5em;
}
@media screen and (max-width: 576px) {
  .call-body-content {
    padding: 4em 0 0;
  }
}
.call-body-content div:first-child > div:first-child {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.call-body-content div:first-child > div:first-child figure img {
  max-width: 78%;
}
@media screen and (max-width: 768px) {
  .call-body-content div:first-child > div:first-child figure {
    display: flex;
    justify-content: center;
    margin-bottom: 5em;
  }
}
.call-body-content div:first-child > div:last-child {
  display: flex;
  flex-flow: column;
  gap: 1em;
}
.call-body-content div:first-child > div:last-child h2 {
  width: 50%;
  font-family: "Archivo", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .call-body-content div:first-child > div:last-child h2 {
    width: 100%;
    -webkit-hyphens: none;
    hyphens: none;
  }
}
.call-body-content div:first-child > div:last-child .bt-azul-electrico.inactive {
  pointer-events: none;
  cursor: default;
}
.call-body-content > p {
  font-size: 1.125em;
}
.call-body-content .block-cards-call {
  display: flex;
  flex-flow: column wrap;
  gap: 2em;
}
.call-body-content .block-cards-call .card-call > div {
  border: 1.5px solid #003BFF;
  padding: 2.5em;
}
.call-body-content .block-cards-call .card-call > div > p {
  font-family: "Inter", sans-serif;
  font-size: 1.7em;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 0em;
  color: #003BFF;
  text-transform: uppercase;
}

/** Plenary Speakers */
.cards-speakers {
  display: flex;
  flex-flow: row wrap !important;
  gap: 1em;
  padding: 3em 3em 0;
}
@media screen and (max-width: 576px) {
  .cards-speakers {
    padding: 3em 0 0;
  }
}
.cards-speakers > div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  border: 1.5px solid #003BFF;
  height: -moz-fit-content;
  height: fit-content;
}
.cards-speakers > div > div:first-child {
  border-bottom: 1.5px solid #003BFF;
}
.cards-speakers > div > div:first-child figure {
  margin: 0;
}
.cards-speakers > div .block-end {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: 237px;
}
@media screen and (max-width: 1024px) {
  .cards-speakers > div .block-end {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .cards-speakers > div .block-end {
    height: auto;
  }
}
.cards-speakers > div .block-end > div:first-child {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  text-align: center;
  padding: 2em;
}
.cards-speakers > div .block-end > div:first-child h3 {
  font-family: Inter;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: center;
  color: #003BFF;
  margin-bottom: 0;
}
.cards-speakers > div .block-end > div:first-child p {
  font-weight: 600;
}
.cards-speakers > div .block-end > div:last-child {
  display: flex;
  justify-content: end;
  padding: 0em 2em 2em;
}
.cards-speakers > div .block-end > div:last-child a:hover {
  color: #003BFF;
  font-weight: 600;
}

.block-page-speaker {
  display: flex;
  flex-flow: row wrap;
  gap: 5em;
  padding: 0 3em 0;
}
@media screen and (max-width: 768px) {
  .block-page-speaker {
    gap: 3em;
  }
}
@media screen and (max-width: 576px) {
  .block-page-speaker {
    padding: 0;
  }
}
.block-page-speaker > div:first-child {
  display: flex;
  flex-flow: row wrap;
  gap: 3em;
}
.block-page-speaker > div:first-child > div:first-child figure {
  border: 1.5px solid #003BFF;
}
.block-page-speaker > div:first-child > div:last-child h1 {
  margin-bottom: 1em;
}
.block-page-speaker > div:first-child > div:last-child p {
  font-weight: 600;
}
.block-page-speaker > div:nth-child(2), .block-page-speaker > div:nth-child(3) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.block-page-speaker > div:nth-child(2) > div:first-child, .block-page-speaker > div:nth-child(3) > div:first-child {
  display: flex;
  justify-content: end;
  max-width: 20%;
}
@media screen and (max-width: 768px) {
  .block-page-speaker > div:nth-child(2) > div:first-child, .block-page-speaker > div:nth-child(3) > div:first-child {
    justify-content: start;
    max-width: 100%;
  }
}
.block-page-speaker > div:nth-child(2) > div:last-child, .block-page-speaker > div:nth-child(3) > div:last-child {
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
  max-width: 70%;
}
.block-page-speaker > div:nth-child(2) > div:last-child > ul, .block-page-speaker > div:nth-child(3) > div:last-child > ul {
  padding-left: 0;
}
.block-page-speaker > div:nth-child(2) > div:last-child > ul li, .block-page-speaker > div:nth-child(3) > div:last-child > ul li {
  font-size: 1.125em;
  line-height: 137%;
  color: #003153;
  list-style: disc;
  margin-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .block-page-speaker > div:nth-child(2) > div:last-child, .block-page-speaker > div:nth-child(3) > div:last-child {
    max-width: 100%;
  }
}
.block-page-speaker a {
  width: 100%;
  text-align: end;
}

/** Pricing */
.unset {
  display: unset;
  position: absolute;
  float: right;
  z-index: 1000;
  right: 142px;
  height: 100%;
}
@media screen and (max-width: 1500px) {
  .unset {
    right: 2px;
  }
}
@media screen and (max-width: 768px) {
  .unset {
    display: none;
  }
}
.unset .sticky {
  position: sticky;
  top: 30px;
  z-index: 999;
  float: right;
  padding: 1em;
  margin-top: 5em;
  right: 20%;
}
.unset .sticky img {
  position: relative;
  top: -27px;
  margin: 0.5em auto;
}
.unset .sticky > .blur {
  background: radial-gradient(circle at center, #E3FF00, transparent 65%);
  text-align: center;
  padding: 2em;
}
.unset .sticky > .blur p {
  font-size: 14px;
  font-weight: 600;
}

.block1-pricing, .block2-pricing {
  padding-bottom: 3em;
}
@media screen and (max-width: 768px) {
  .block1-pricing, .block2-pricing {
    padding-bottom: 0em;
  }
}
@media screen and (max-width: 576px) {
  .block1-pricing, .block2-pricing {
    padding-bottom: 1em;
  }
}
.block1-pricing h2, .block2-pricing h2 {
  font-family: Inter;
  font-size: 2em;
  font-weight: 400;
  font-size: #003153;
  text-align: center;
  padding: 2em 0 1em;
}
@media screen and (max-width: 576px) {
  .block1-pricing h2, .block2-pricing h2 {
    padding: 1em 0;
  }
}
.block1-pricing .cards1-pricing, .block1-pricing .cards2-pricing, .block2-pricing .cards1-pricing, .block2-pricing .cards2-pricing {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 2.5em;
}
@media screen and (max-width: 1240px) {
  .block1-pricing .cards1-pricing, .block1-pricing .cards2-pricing, .block2-pricing .cards1-pricing, .block2-pricing .cards2-pricing {
    gap: 3.5em;
  }
}
.block1-pricing .cards1-pricing .cards-width1, .block1-pricing .cards2-pricing .cards-width1, .block2-pricing .cards1-pricing .cards-width1, .block2-pricing .cards2-pricing .cards-width1 {
  width: 37%;
}
@media screen and (max-width: 1240px) {
  .block1-pricing .cards1-pricing .cards-width1, .block1-pricing .cards2-pricing .cards-width1, .block2-pricing .cards1-pricing .cards-width1, .block2-pricing .cards2-pricing .cards-width1 {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .block1-pricing .cards1-pricing .cards-width1, .block1-pricing .cards2-pricing .cards-width1, .block2-pricing .cards1-pricing .cards-width1, .block2-pricing .cards2-pricing .cards-width1 {
    width: 100%;
  }
}
.block1-pricing .cards1-pricing .cards-width2, .block1-pricing .cards2-pricing .cards-width2, .block2-pricing .cards1-pricing .cards-width2, .block2-pricing .cards2-pricing .cards-width2 {
  width: 100%;
}
.block1-pricing .cards1-pricing .cards-format, .block1-pricing .cards2-pricing .cards-format, .block2-pricing .cards1-pricing .cards-format, .block2-pricing .cards2-pricing .cards-format {
  display: flex;
  flex-flow: column nowrap;
  border: 1px solid #003BFF;
}
.block1-pricing .cards1-pricing .cards-format > div:first-child, .block1-pricing .cards2-pricing .cards-format > div:first-child, .block2-pricing .cards1-pricing .cards-format > div:first-child, .block2-pricing .cards2-pricing .cards-format > div:first-child {
  display: flex;
  flex-flow: column nowrap;
  gap: 1em;
  background-color: #003BFF;
  padding: 2em 0;
}
.block1-pricing .cards1-pricing .cards-format > div:first-child > h3, .block1-pricing .cards2-pricing .cards-format > div:first-child > h3, .block2-pricing .cards1-pricing .cards-format > div:first-child > h3, .block2-pricing .cards2-pricing .cards-format > div:first-child > h3 {
  font-family: Inter;
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .block1-pricing .cards1-pricing .cards-format > div:first-child > h3, .block1-pricing .cards2-pricing .cards-format > div:first-child > h3, .block2-pricing .cards1-pricing .cards-format > div:first-child > h3, .block2-pricing .cards2-pricing .cards-format > div:first-child > h3 {
    font-size: 1.6em;
  }
}
.block1-pricing .cards1-pricing .cards-format > div:first-child > p, .block1-pricing .cards2-pricing .cards-format > div:first-child > p, .block2-pricing .cards1-pricing .cards-format > div:first-child > p, .block2-pricing .cards2-pricing .cards-format > div:first-child > p {
  font-family: Inter;
  font-size: 1.125em;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child, .block1-pricing .cards2-pricing .cards-format > div:last-child, .block2-pricing .cards1-pricing .cards-format > div:last-child, .block2-pricing .cards2-pricing .cards-format > div:last-child {
  display: flex;
  flex-flow: column nowrap;
  gap: 2.5em;
  padding: 3.5em 2.5em;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .block1-pricing .cards1-pricing .cards-format > div:last-child, .block1-pricing .cards2-pricing .cards-format > div:last-child, .block2-pricing .cards1-pricing .cards-format > div:last-child, .block2-pricing .cards2-pricing .cards-format > div:last-child {
    padding: 3.5em 1em;
  }
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table {
  display: flex;
  flex-flow: column nowrap;
  gap: 1em;
  height: 100%;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table > p:first-child, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table > p:first-child, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table > p:first-child, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table > p:first-child {
  font-family: Inter;
  font-size: 1.125em;
  font-weight: 600;
  color: #003BFF;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table > p:first-child > span, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table > p:first-child > span, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table > p:first-child > span, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table > p:first-child > span {
  font-weight: 400;
  color: #003153;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table .layout-buttons-cart, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table .layout-buttons-cart, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table .layout-buttons-cart, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table .layout-buttons-cart {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5em;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table .layout-buttons-cart > .link-cart, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table .layout-buttons-cart > .link-cart, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table .layout-buttons-cart > .link-cart, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table .layout-buttons-cart > .link-cart {
  text-decoration: underline;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table .layout-buttons-cart > .link-cart:hover, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table .layout-buttons-cart > .link-cart:hover, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table .layout-buttons-cart > .link-cart:hover, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table .layout-buttons-cart > .link-cart:hover {
  color: #87898D;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table > div {
  display: flex;
  flex-flow: column nowrap;
  padding-left: 1.5em;
  margin-top: auto;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table > div > div {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
  width: 100%;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table > div > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table > div > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table > div > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table > div > div > div {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table > div > div > div > p, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table > div > div > div > p, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table > div > div > div > p, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table > div > div > div > p {
  font-family: Inter;
  font-size: 1.125em;
  font-weight: 600;
  color: #003153;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child hr, .block1-pricing .cards2-pricing .cards-format > div:last-child hr, .block2-pricing .cards1-pricing .cards-format > div:last-child hr, .block2-pricing .cards2-pricing .cards-format > div:last-child hr {
  margin: 0;
  border-top: 1px solid #003BFF;
  border-bottom: 0;
  opacity: 1;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.5em;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > p:first-child, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > p:first-child, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > p:first-child, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > p:first-child, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > p:first-child, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > p:first-child, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > p:first-child, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > p:first-child {
  font-family: Inter;
  font-size: 1.125em;
  font-weight: 600;
  color: #003BFF;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1em;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > p:first-child, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > p:first-child, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > p:first-child, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > p:first-child, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > p:first-child, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > p:first-child, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > p:first-child, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > p:first-child {
  font-family: Inter;
  font-size: 1.125em;
  font-weight: 600;
  color: #003BFF;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 4em;
}
@media screen and (max-width: 576px) {
  .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div {
    width: 100%;
  }
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div > p:first-child, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div > p:first-child, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div > p:first-child, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div > p:first-child, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div > p:first-child, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div > p:first-child, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div > p:first-child, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div > p:first-child {
  font-family: Inter;
  font-size: 1.125em;
  font-weight: 600;
  color: #003BFF;
  padding-bottom: 1em;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div > div, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div > div {
  padding-left: 1em;
}
@media screen and (max-width: 576px) {
  .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div > div, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div > div, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div > div, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div > div, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div > div {
    gap: 2em;
  }
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div > div > p, .block1-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div > div > p, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div > div > p, .block1-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div > div > p, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table2 > div > div > div > p, .block2-pricing .cards1-pricing .cards-format > div:last-child .price-table3 > div > div > div > p, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table2 > div > div > div > p, .block2-pricing .cards2-pricing .cards-format > div:last-child .price-table3 > div > div > div > p {
  font-family: Inter;
  font-size: 1.125em;
  font-weight: 600;
  color: #003153;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops {
  display: flex;
  flex-flow: column nowrap;
  gap: 2em;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops > p:nth-child(1), .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops > p:nth-child(1), .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops > p:nth-child(1), .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops > p:nth-child(1) {
  font-family: Inter;
  font-size: 1.125em;
  font-weight: 600;
  color: #003153;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column {
  margin-left: 4em;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column > p:nth-child(2), .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column > p:nth-child(2), .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column > p:nth-child(2), .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column > p:nth-child(2) {
  margin-left: 1em;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.64px;
  text-align: left;
  color: #003BFF;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5em;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart > .link-cart, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart > .link-cart, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart > .link-cart, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart > .link-cart {
  text-decoration: underline;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart > .link-cart:hover, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart > .link-cart:hover, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart > .link-cart:hover, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .layout-buttons-cart > .link-cart:hover {
  color: #87898D;
}
.block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout > .woocommerce, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout > .woocommerce, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout > .woocommerce, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout > .woocommerce {
  margin: 0 !important;
}
@media screen and (max-width: 781px) {
  .block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout {
    flex-flow: row wrap;
  }
  .block1-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column, .block1-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column, .block2-pricing .cards1-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column, .block2-pricing .cards2-pricing .cards-format > div:last-child .workshops .workshop-layout .wp-block-column {
    margin-left: 0em;
    padding-bottom: 1em;
  }
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .link-cart-hidden, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .link-cart-hidden, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .link-cart-hidden, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .link-cart-hidden {
  display: none;
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button {
  display: flex;
  gap: 0.5em;
  background-color: #E3FF00;
  border-radius: 40px;
  padding: 10px 13px 1px 13px;
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  font-size: 16px;
  color: #003153;
  margin-left: 0.5em;
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button::before, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button::before, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button::before, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button::before {
  content: url("/wp-content/uploads/2024/05/cart.svg");
  position: relative;
  top: -4px;
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button::after, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button::after, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button::after, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button::after {
  margin-left: 0em;
  position: relative;
  top: -2px;
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button:hover, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button:hover, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button:hover, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button:hover {
  transform: scale(1.03);
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.added, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.added, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.added, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.added {
  background-color: #DDE3F6;
  color: #003153;
  border: 2px solid #003153;
  pointer-events: none;
  padding: 10px 13px 7px 13px;
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.added::before, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.added::before, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.added::before, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.added::before {
  content: none;
  position: relative;
  top: -4px;
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.bt-locked, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.bt-locked, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.bt-locked, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.bt-locked {
  background-color: #DEDEDE;
  color: #87898D;
  pointer-events: none;
  cursor: default;
}
.block1-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.bt-locked::before, .block1-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.bt-locked::before, .block2-pricing .cards1-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.bt-locked::before, .block2-pricing .cards2-pricing .cards-format > div .layout-buttons-cart .add_to_cart_button.bt-locked::before {
  content: url("/wp-content/uploads/2024/06/cart-grey.svg");
  position: relative;
  top: -4px;
}
.block1-pricing .cards1-pricing .cards-format > div .woocommerce a.added_to_cart, .block1-pricing .cards2-pricing .cards-format > div .woocommerce a.added_to_cart, .block2-pricing .cards1-pricing .cards-format > div .woocommerce a.added_to_cart, .block2-pricing .cards2-pricing .cards-format > div .woocommerce a.added_to_cart {
  display: none;
}

.information-container > .wp-block-columns {
  padding: 3em 0;
  gap: 2em;
}
.information-container > .wp-block-columns.information-block1 figure, .information-container > .wp-block-columns.information-block3 figure {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 781px) {
  .information-container > .wp-block-columns.information-block1, .information-container > .wp-block-columns.information-block3 {
    flex-flow: row wrap !important;
  }
  .information-container > .wp-block-columns.information-block1 figure, .information-container > .wp-block-columns.information-block3 figure {
    display: flex;
    justify-content: center;
  }
}
.information-container > .wp-block-columns.information-block2 figure {
  display: flex;
  justify-content: start;
}
@media screen and (max-width: 781px) {
  .information-container > .wp-block-columns.information-block2 {
    flex-flow: row wrap-reverse !important;
  }
  .information-container > .wp-block-columns.information-block2 figure {
    justify-content: center;
  }
}
.information-container img {
  padding: 1em 0;
  width: 100%;
}
@media screen and (max-width: 550px) {
  .information-container img {
    width: 80%;
  }
}

.h1-hotel {
  background-color: rgba(255, 255, 0, 0.5); /* Color de fondo */
  border-radius: 60px; /* Radio de 60px */
  padding: 0 15px; /* Padding opcional para dar espacio alrededor del texto */
  box-shadow: 0 0 30px 15px rgba(255, 255, 0, 0.5); /* Difuminado */
  font-size: 100px;
}
@media screen and (max-width: 600px) {
  .h1-hotel {
    font-size: 60px;
  }
}

.map-container {
  display: flex;
  justify-content: center;
}
.map-container > div {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 1065px;
}
.map-container > div iframe {
  height: 453px;
  width: 100%;
}
.map-container p {
  align-self: flex-start;
  color: #003153;
}
.map-container p a {
  text-decoration: underline;
}
.map-container p a:hover {
  color: #003BFF;
}

.tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 9em;
}
.tabs .tab-buttons {
  display: flex;
  justify-content: space-around;
  margin: 2em 0 2em 0;
  width: 50%;
  flex-wrap: wrap;
  gap: 1em;
}
.tabs .tab-buttons button {
  font-size: 16px;
  text-transform: uppercase;
}
.tabs .tab-buttons button:hover {
  color: #ffffff;
}
.tabs .tab-buttons .active {
  font-weight: 600;
}
.tabs .tab-content {
  border: 1px solid #003BFF;
  background-color: #ffffff;
  width: 100%;
  padding: 2.5em;
  position: relative;
  overflow: hidden;
}
.tabs .tab-content.slide-right {
  animation: slide-right 0.5s forwards;
}
.tabs .tab-content.slide-left {
  animation: slide-left 0.5s forwards;
}
.tabs .tab-content > h3:last-of-type {
  margin-top: 1.5em !important;
}
@media screen and (max-width: 781px) {
  .tabs .tab-content {
    padding: 2.5em 1em;
  }
}
.tabs .tab-content .title {
  background-color: #E3FF00;
}
.tabs .tab-content > div > div:hover {
  background-color: #DDE3F6;
}
.tabs .tab-content > div > div > a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1em 0 1em;
}
.tabs .tab-content > div > div > a > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5em;
}
.tabs .tab-content > div > div > a > div img {
  max-width: 112px;
}
.tabs .tab-content .transport-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5em;
  padding: 0 1em;
}
.tabs .tab-content .transport-type > img {
  max-width: 112px;
}
.tabs .tab-content .transport-type > div {
  max-width: 33em;
}
.tabs .tab-content .transport-type > div a.transport-link {
  display: inline;
  text-decoration: underline;
}
.tabs .explore-more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em 0 2em 0;
}
.tabs .explore-more h3 {
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .tabs {
    padding: 0 5em;
  }
}
@media screen and (max-width: 1200px) {
  .tabs {
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  .tab-content > div > div > a {
    flex-direction: column;
  }
  .tab-content > div > div > a > div {
    flex-direction: column;
    gap: 1em !important;
    margin-top: 1em;
  }
  .tab-content > div > div > a .arrow {
    align-self: flex-end;
    padding: 0 1em 1em 0;
  }
  .transport-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em !important;
  }
}
.p-azul-electrico-program {
  display: flex;
  flex-direction: column;
  color: #003BFF;
  align-self: flex-start;
  padding: 4em 18%;
}
@media screen and (max-width: 1399px) {
  .p-azul-electrico-program {
    padding: 4em 13%;
  }
}
@media screen and (max-width: 1199px) {
  .p-azul-electrico-program {
    padding: 4em 6%;
  }
}
@media screen and (max-width: 991px) {
  .p-azul-electrico-program {
    padding: 4em 0%;
  }
}

.program-tabs,
.program-tabs-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3em;
}
.program-tabs .tab-buttons,
.program-tabs-mobile .tab-buttons {
  display: flex;
  justify-content: center;
  width: 64%;
}
.program-tabs .tab-buttons button,
.program-tabs-mobile .tab-buttons button {
  border-top: 1px solid #003BFF;
  border-right: 1px solid #003BFF;
  border-bottom: 1px solid #003BFF;
  padding: 15px 5px;
  width: 100%;
  white-space: nowrap;
}
.program-tabs .tab-buttons button:first-child,
.program-tabs-mobile .tab-buttons button:first-child {
  border-left: 1px solid #003BFF;
}
.program-tabs .tab-buttons button span,
.program-tabs-mobile .tab-buttons button span {
  font-weight: 600;
}
.program-tabs .tab-buttons button.active,
.program-tabs-mobile .tab-buttons button.active {
  background-color: #003BFF;
  color: #ffffff;
}
@media screen and (max-width: 1399px) {
  .program-tabs .tab-buttons button,
  .program-tabs-mobile .tab-buttons button {
    padding: 15px 35px;
  }
}
@media screen and (max-width: 768px) {
  .program-tabs .tab-buttons,
  .program-tabs-mobile .tab-buttons {
    width: 100%;
    flex-flow: column wrap;
  }
  .program-tabs .tab-buttons button,
  .program-tabs-mobile .tab-buttons button {
    border-top: 0;
    border-left: 1px solid #003BFF;
    border-right: 1px solid #003BFF;
    border-bottom: 1px solid #003BFF;
    padding: 15px 55px;
    width: 100%;
    white-space: nowrap;
  }
  .program-tabs .tab-buttons button:first-child,
  .program-tabs-mobile .tab-buttons button:first-child {
    border-top: 1px solid #003BFF;
  }
}
.program-tabs .tab-content,
.program-tabs-mobile .tab-content {
  position: relative;
  overflow: hidden;
}
.program-tabs .tab-content.slide-right,
.program-tabs-mobile .tab-content.slide-right {
  animation: slide-right 0.5s forwards;
}
.program-tabs .tab-content.slide-left,
.program-tabs-mobile .tab-content.slide-left {
  animation: slide-left 0.5s forwards;
}
.program-tabs .tab-content > div,
.program-tabs-mobile .tab-content > div {
  display: flex;
  justify-content: center;
}
.program-tabs .tab-content .program-table,
.program-tabs-mobile .tab-content .program-table {
  width: 840px;
  border: 1px solid #003BFF;
}
.program-tabs .tab-content .program-table tr th,
.program-tabs-mobile .tab-content .program-table tr th {
  border-right: 1px solid #003BFF;
  border-bottom: 1px solid #003BFF;
  text-align: center;
  vertical-align: middle;
  padding: 1em 0.5em;
  width: 20%;
}
.program-tabs .tab-content .program-table tr th .time-cell,
.program-tabs-mobile .tab-content .program-table tr th .time-cell {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .program-tabs .tab-content .program-table tr th .time-cell,
  .program-tabs-mobile .tab-content .program-table tr th .time-cell {
    flex-flow: column wrap;
    gap: 0em;
  }
}
.program-tabs .tab-content .program-table tr td,
.program-tabs-mobile .tab-content .program-table tr td {
  border-bottom: 1px solid #003BFF;
  padding: 20px;
  vertical-align: middle;
  color: black;
}
.program-tabs .tab-content .program-table tr td > div img, .program-tabs .tab-content .program-table tr td span img,
.program-tabs-mobile .tab-content .program-table tr td > div img,
.program-tabs-mobile .tab-content .program-table tr td span img {
  align-self: center;
  width: 24px;
  height: 24px;
}
.program-tabs .tab-content .program-table tr td > p,
.program-tabs-mobile .tab-content .program-table tr td > p {
  font-size: 1em;
}
.program-tabs .tab-content .program-table tr td .small-text,
.program-tabs-mobile .tab-content .program-table tr td .small-text {
  display: flex;
  flex-flow: column;
  gap: 0.3em;
  padding-left: 2.5em;
}
.program-tabs .tab-content .program-table tr td .small-text p,
.program-tabs-mobile .tab-content .program-table tr td .small-text p {
  font-size: 0.875em;
}
.program-tabs .tab-content .program-table tr td .event-type,
.program-tabs-mobile .tab-content .program-table tr td .event-type {
  font-weight: 600;
  color: #003BFF;
  line-height: 40px;
}
.program-tabs .tab-content .program-table tr td .coffee-break,
.program-tabs-mobile .tab-content .program-table tr td .coffee-break {
  display: flex;
  gap: 10px;
  line-height: 40px;
  white-space: nowrap;
  font-style: italic;
}
.program-tabs .tab-content .program-table tr td .location-program a,
.program-tabs-mobile .tab-content .program-table tr td .location-program a {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5em;
  color: #7A97FA;
  text-decoration: underline;
}
.program-tabs .tab-content .program-table tr td .location-program a:hover,
.program-tabs-mobile .tab-content .program-table tr td .location-program a:hover {
  text-decoration: none;
}
.program-tabs .tab-content .program-table tr td .h-lunch,
.program-tabs-mobile .tab-content .program-table tr td .h-lunch {
  font-weight: 700;
  color: #003BFF;
  display: flex;
  gap: 10px;
  line-height: 40px;
}
.program-tabs .tab-content .program-table tr td .speakers:hover,
.program-tabs .tab-content .program-table tr td .workshops:hover,
.program-tabs-mobile .tab-content .program-table tr td .speakers:hover,
.program-tabs-mobile .tab-content .program-table tr td .workshops:hover {
  color: #003153;
  font-weight: 600;
}
.program-tabs .tab-content .program-table tr td .posters:hover,
.program-tabs-mobile .tab-content .program-table tr td .posters:hover {
  font-weight: 800;
}
.program-tabs .tab-content .program-table tr td .guided-tour,
.program-tabs-mobile .tab-content .program-table tr td .guided-tour {
  font-weight: 600;
  color: #003BFF;
  display: flex;
  gap: 10px;
}
.program-tabs .tab-content .program-table tr td .bold,
.program-tabs-mobile .tab-content .program-table tr td .bold {
  font-weight: 600;
}
.program-tabs .tab-content .program-table tr td .poster-session,
.program-tabs-mobile .tab-content .program-table tr td .poster-session {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.program-tabs .tab-content .program-table tr.bg-white,
.program-tabs-mobile .tab-content .program-table tr.bg-white {
  background-color: #ffffff;
}
.program-tabs .tab-content .program-table tr.bg-lima-10,
.program-tabs-mobile .tab-content .program-table tr.bg-lima-10 {
  background-color: #F4F6DD;
}

.program-tabs-mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .program-tabs {
    display: none;
  }
  .program-tabs-mobile {
    display: flex;
    gap: 0;
  }
  .program-tabs-mobile .tab-buttons {
    pointer-events: none;
    cursor: default;
  }
  .program-tabs-mobile .tab-buttons .tab-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 0;
    border-left: 1px solid #003BFF;
    border-right: 1px solid #003BFF;
    border-bottom: 0;
    padding: 15px 55px;
    width: 100%;
    white-space: nowrap;
    background-color: #003BFF;
    color: #ffffff;
  }
  .program-tabs-mobile .tab-buttons .tab-button span {
    font-weight: 600;
  }
  .program-tabs-mobile .tab-content {
    display: flex !important;
  }
  .program-tabs-mobile .tab-content .program-table {
    width: 100%;
  }
  .program-tabs-mobile .tab-content .program-table tr th {
    padding: 0px;
  }
}
.bg-lima-50 {
  background-color: #EBFA7A;
  padding: 5em 0;
}

.bg-azul-cielo-10 {
  background-color: #F6FCFF;
}

.granada-container {
  display: flex;
  flex-direction: column;
  gap: 7em;
}
.granada-container > div:nth-child(odd) {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap-reverse !important;
}
@media screen and (max-width: 781px) {
  .granada-container > div:nth-child(odd) {
    gap: 2em !important;
  }
}
.granada-container > div:nth-child(even) {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap !important;
}
.granada-container > div:nth-child(even) > div {
  max-width: 550px;
}
@media screen and (max-width: 781px) {
  .granada-container > div:nth-child(even) > div {
    max-width: 100%;
  }
}
@media screen and (max-width: 781px) {
  .granada-container > div:nth-child(even) {
    gap: 2em !important;
  }
}
.granada-container img {
  max-width: 416px;
  max-height: 286px;
  -o-object-fit: none;
     object-fit: none;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .granada-container img {
    width: 328px;
  }
}

.centrar-img-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Aplica estilos solo a la página con ID 303 para que el footer haga la curva en lima-50 */
.page-id-303 .section-inner {
  background-color: #EBFA7A !important;
}
.page-id-303 .footer .rounded-deco {
  background-image: radial-gradient(ellipse at 50% 90%, #003153 50%, #003153 74%, #EBFA7A 76%) !important;
}

.woocommerce-account .woocommerce {
  padding: 5em 15em 0em 15em;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  border: 1px solid #003BFF;
  width: 13em;
  height: 14em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  padding-top: 1em;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 7px;
  text-transform: uppercase;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child {
  padding-top: 2.5em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #003153;
  font-weight: 600;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child a {
  padding-bottom: 7px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child:before {
  content: url("/wp-content/uploads/2024/06/log-out-vector-1.svg");
}

.is-active {
  font-weight: 600 !important;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.dashboard-content h2 {
  color: #003BFF;
  font-size: 32px;
  font-weight: 400;
}
.dashboard-content .dashboard-info {
  display: flex;
  gap: 2em;
}
.dashboard-content .dashboard-info .dashboard-img {
  width: 400px;
}
.dashboard-content .dashboard-info .dashboard-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5em;
}
.dashboard-content .dashboard-info .dashboard-text .hello {
  color: #003153;
  font-size: 21px;
}
.dashboard-content .dashboard-info .dashboard-text p {
  color: #003153;
}

.empty-orders {
  padding-bottom: 5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
.empty-orders h1, .empty-orders p {
  color: #003BFF;
}

.account-details {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.account-details h2 {
  color: #003BFF;
  font-size: 32px;
}
.account-details form {
  max-width: 40em;
  width: 100%;
  margin-bottom: 3em;
}
.account-details form legend {
  color: #003153;
  font-weight: 600;
}
.account-details form .woocommerce-form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #003153;
  gap: 0;
  margin: 0;
  padding: 0 0 0.7em 0;
}
.account-details form .woocommerce-form-row.form-row-first, .account-details form .woocommerce-form-row.form-row-last {
  width: 49%;
}
.account-details form input {
  border: 1px solid #003153;
  padding: 0.5rem !important;
}
.account-details form .required {
  color: #003153 !important;
  font-weight: 400 !important;
}
.account-details form em {
  color: #8098A9 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}
.account-details form .space {
  height: 3em;
}
.account-details form .button-row {
  display: flex;
  justify-content: center;
  margin-top: 3em;
}
.account-details form .button-row button {
  background-color: #003BFF;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.account-addresses {
  padding: 0 0 5em 0;
}
.account-addresses h2 {
  color: #003BFF;
  font-size: 32px;
  padding-bottom: 0.5em;
}
.account-addresses > div {
  padding-top: 2em;
}
.account-addresses > div > header h3 {
  font-weight: 600;
  margin-bottom: 0 !important;
}
.account-addresses > div > header hr {
  border-top: 1px solid #003153;
}
.account-addresses > div > address {
  border: 1px solid #003BFF;
  margin: 0 1em;
  padding: 1.2em 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.account-addresses > div .button {
  background-color: #003BFF;
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
}
.account-addresses > div .cancel {
  background-color: #8098A9;
}

.billing-form .billing-header {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}
.billing-form > hr {
  border-top: 1px solid #003153;
}
.billing-form > div {
  width: 70%;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.billing-form > div > p {
  display: flex;
  flex-direction: column;
  color: #003BFF;
  text-transform: uppercase;
  gap: 0;
}
.billing-form > div > p > label .required {
  color: #003BFF !important;
}
.billing-form > div > p > span > input {
  border: 1px solid #003BFF;
  padding: 0.5em;
}
.billing-form > div > div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 0;
}
.billing-form > div > div > p {
  color: #003BFF;
  width: 50% !important;
  min-width: 15em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.billing-form > div > div > p > label .required {
  color: #003BFF !important;
}
.billing-form > div > div > p > span > input, .billing-form > div > div > p > span select {
  border: 1px solid #003BFF;
  padding: 0.5em;
}
.billing-form > div > div > p .woocommerce-input-wrapper {
  position: relative;
  font-family: Arial;
}
.billing-form > div > div > p .woocommerce-input-wrapper .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid #003BFF;
  color: #003BFF;
  padding: 0.32em 0;
  height: auto;
  line-height: normal;
  border-radius: 0;
}
.billing-form > div > div > p .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #003BFF;
}
.billing-form > div > div > p .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  transform: translateY(-50%);
}
@media screen and (max-width: 1058px) {
  .billing-form > div > div > p {
    width: 100% !important;
  }
}
@media screen and (max-width: 1661px) {
  .billing-form > div {
    width: 90%;
  }
}
@media screen and (max-width: 1399px) {
  .billing-form > div {
    width: 100%;
    padding: 0;
  }
}
.billing-form > p .button {
  background-color: #003BFF;
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  margin: 1em 0;
}

.xoo-el-form-container {
  padding-bottom: 5em;
}

.xoo-el-login-btm-fields label {
  display: flex;
  gap: 0.5em;
}
.xoo-el-login-btm-fields span,
.xoo-el-login-btm-fields a {
  color: #003BFF;
}

.xoo_el_reg_terms_cont .xoo-aff-checkbox_single label {
  display: flex;
  gap: 0.5em;
}
.xoo_el_reg_terms_cont .xoo-aff-checkbox_single label p {
  font-weight: 400;
  color: #003BFF;
  font-size: 1em;
}
.xoo_el_reg_terms_cont .xoo-aff-checkbox_single label p a {
  color: #003BFF;
}
.xoo_el_reg_terms_cont .xoo-aff-checkbox_single label p a:hover {
  color: #87898D;
  text-decoration: underline;
}

@media (max-width: 1300px) {
  .woocommerce-account .woocommerce {
    padding: 5em 8em 0em 8em;
  }
}
@media (max-width: 990px) {
  .woocommerce-account .woocommerce {
    padding: 5em 3em 0em 3em;
  }
}
@media (max-width: 800px) {
  .woocommerce-account .woocommerce {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
  }
  .dashboard-content {
    width: 700px;
  }
}
@media (max-width: 750px) {
  .dashboard-content {
    width: 600px;
  }
}
@media (max-width: 640px) {
  .dashboard-content {
    width: 400px;
  }
  .dashboard-info {
    flex-direction: column;
    gap: 1em;
  }
  .dashboard-info img {
    width: 200px;
  }
}
@media (max-width: 470px) {
  .dashboard-content {
    width: 300px;
  }
}
/** Contact */
.form-row {
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
}
.form-row > div {
  width: 100%;
}
.form-row > div:nth-child(1), .form-row > div:nth-child(2) {
  width: 48.6%;
}
@media screen and (max-width: 1024px) {
  .form-row > div:nth-child(1), .form-row > div:nth-child(2) {
    width: 100%;
  }
}
.form-row > div:last-child {
  display: flex;
  flex-flow: row nowrap;
  justify-content: end;
}
.form-row > div label {
  margin-bottom: 0.5em;
}
.form-row > div label, .form-row > div input, .form-row > div p {
  color: #003BFF;
}
.form-row > div input, .form-row > div textarea {
  border: 1px solid #003BFF;
  border-radius: 0;
}
.form-row > div .form-check {
  padding-left: 1em;
}

/** Cookie policy */
.text-only-content > p {
  line-height: 30px;
}
.text-only-content h5 {
  color: #003153;
}
.text-only-content > ul {
  padding-left: 0;
}
.text-only-content > ul > li {
  font-size: 1.125em;
  line-height: 137%;
  color: #003153;
  list-style: disc;
  margin-left: 1.5em;
}

.order-details-container, .woocommerce-order {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4em 0 5em 0;
}
.order-details-container ul, .woocommerce-order ul {
  padding-bottom: 3em;
}
.order-details-container .woocommerce-order-details h2, .order-details-container .woocommerce-customer-details h2, .woocommerce-order .woocommerce-order-details h2, .woocommerce-order .woocommerce-customer-details h2 {
  font-size: 2em;
}
.order-details-container > p, .woocommerce-order > p {
  color: #003BFF;
}
.order-details-container > p.woocommerce-thankyou-order-received, .woocommerce-order > p.woocommerce-thankyou-order-received {
  padding: 2em 0;
  font-size: 2.125em;
}
.order-details-container > form, .woocommerce-order > form {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
}
.order-details-container > form .box label, .woocommerce-order > form .box label {
  display: flex;
  flex-wrap: nowrap;
  gap: 1em;
}
.order-details-container > form .box > p, .woocommerce-order > form .box > p {
  margin-top: 1em;
  display: flex;
  justify-content: center;
}
.order-details-container > form .box > p a, .woocommerce-order > form .box > p a {
  background-color: #003BFF;
  color: #ffffff;
}
.order-details-container > form #paycomet-cancel, .woocommerce-order > form #paycomet-cancel {
  display: flex;
  justify-content: center;
}
.order-details-container > form #paycomet-cancel a, .woocommerce-order > form #paycomet-cancel a {
  background-color: #8098A9;
  color: #003153;
}

.woocommerce-form-coupon-toggle {
  display: none;
}

.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before {
  background-image: url(/wp-content/uploads/2024/06/logos-tarjetas.png);
  background-size: 285px 35px;
  background-repeat: no-repeat;
  display: flex;
  width: 100%;
  height: 35px;
}
.woocommerce-checkout .proceed-layout {
  display: flex;
  flex-flow: row nowrap;
  gap: 4em;
  padding: 3em 9em 8em;
}
@media screen and (max-width: 1200px) {
  .woocommerce-checkout .proceed-layout {
    padding: 3em 1em 8em;
  }
}
@media screen and (max-width: 914px) {
  .woocommerce-checkout .proceed-layout {
    flex-flow: row wrap;
    gap: 2em;
    padding: 3em 1em 8em;
  }
}
.woocommerce-checkout .proceed-layout .your-order {
  width: 40%;
}
@media screen and (max-width: 914px) {
  .woocommerce-checkout .proceed-layout .your-order {
    width: 100%;
  }
}
.woocommerce-checkout .proceed-layout .your-order .woocommerce-checkout-payment {
  background: #DEDEDE !important;
}
.woocommerce-checkout .proceed-layout .your-order .woocommerce-checkout-payment .place-order {
  display: flex;
  flex-flow: column nowrap;
}
.woocommerce-checkout .proceed-layout .your-order .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper {
  width: 100%;
}
.woocommerce-checkout .proceed-layout .your-order .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper p {
  font-size: 1em;
}
.woocommerce-checkout .proceed-layout .your-order .woocommerce-checkout-payment .place-order > button {
  margin: 0 auto;
  width: 50%;
}
.woocommerce-checkout #customer_details {
  display: flex;
  flex-flow: column nowrap;
  width: 60%;
}
@media screen and (max-width: 914px) {
  .woocommerce-checkout #customer_details {
    width: 100%;
  }
}
.woocommerce-checkout #customer_details > div {
  width: 100%;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields h3 {
  color: #003153;
  font-size: 18px;
  font-weight: 600;
  margin: 2em 0 1em;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields h3::after {
  content: "";
  display: block;
  width: 100%; /* O el ancho que desees */
  border-bottom: 1px solid #003153; /* Color y estilo de la línea */
  margin: 5px 0; /* Espacio alrededor de la línea */
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row {
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px !important;
  color: #003BFF !important;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row > label {
  font-size: 18px;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row > label .required {
  color: #003BFF !important;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row > span > input, .woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row > span select {
  border: 1px solid #003BFF;
  padding: 0.5em;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper {
  position: relative;
  font-family: Arial;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid #003BFF;
  color: #003BFF;
  padding: 0.32em 0;
  height: auto;
  line-height: normal;
  border-radius: 0;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #003BFF;
}
.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  transform: translateY(-50%);
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields h3 {
  color: #003153;
  font-size: 18px;
  font-weight: 600;
  margin: 2em 0 1em;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields h3::after {
  content: "";
  display: block;
  width: 100%; /* O el ancho que desees */
  border-bottom: 1px solid #003153; /* Color y estilo de la línea */
  margin: 5px 0; /* Espacio alrededor de la línea */
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper .form-row {
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0px !important;
  color: #003BFF !important;
}
.woocommerce-checkout #customer_details .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text {
  border: 1px solid #003BFF;
  padding: 0.5em;
}
.woocommerce-checkout #order_review_heading {
  color: #003153;
  font-size: 18px;
  font-weight: 600;
  margin: 2em 0 2em;
}
.woocommerce-checkout #order_review_heading::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid #003153;
  margin: 5px 0;
}
.woocommerce-checkout #order_review .shop_table thead tr .product-name {
  border: 1px solid #003BFF;
  border-right: none;
}
.woocommerce-checkout #order_review .shop_table thead tr .product-total {
  border: 1px solid #003BFF;
  border-left: none;
}
.woocommerce-checkout #order_review .shop_table tbody tr .product-name {
  border: 1px solid #003BFF;
  border-right: none;
  border-top: none;
}
.woocommerce-checkout #order_review .shop_table tbody tr .product-total {
  border: 1px solid #003BFF;
  border-left: none;
  border-top: none;
}
.woocommerce-checkout #order_review .shop_table tfoot tr th {
  border: 1px solid #003BFF;
  border-top: none;
  border-right: none;
}
.woocommerce-checkout #order_review .shop_table tfoot tr td {
  border: 1px solid #003BFF;
  border-top: none;
  border-left: none;
}

.block-awards-cards {
  display: flex;
  flex-flow: column wrap;
  gap: 1.5em;
}

.block-awards-first {
  display: flex;
}
.block-awards-first > div:first-child {
  min-width: 70%;
}
.block-awards-first > div:last-child {
  min-width: 30%;
}
@media screen and (max-width: 1200px) {
  .block-awards-first > div:first-child, .block-awards-first > div:last-child {
    max-width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .block-awards-first > div:first-child, .block-awards-first > div:last-child {
    max-width: 100%;
  }
}

.columns-awards {
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .columns-awards.columns-awards-reverse > div:first-child {
    order: 2 !important;
  }
  .columns-awards.columns-awards-reverse > div:last-child {
    order: 1 !important;
  }
}
.columns-awards > div {
  min-width: 50%;
}
@media screen and (max-width: 768px) {
  .columns-awards > div {
    max-width: 100%;
  }
}
.columns-awards figure {
  margin: 0;
  display: flex;
  align-self: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.columns-awards figure.img-desktop {
  display: block;
}
.columns-awards figure.img-desktop img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.columns-awards figure.img-mobile {
  display: none;
}
@media screen and (max-width: 764px) {
  .columns-awards figure.img-desktop {
    display: none;
  }
  .columns-awards figure.img-mobile {
    display: block;
  }
}
.columns-awards .card-awards {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  border: 1.5px solid #003BFF;
  padding: 2.5em;
}
@media screen and (max-width: 576px) {
  .columns-awards .card-awards {
    padding: 1em;
  }
}
@media screen and (max-width: 992px) {
  .columns-awards .card-awards {
    justify-content: center;
    gap: 1.5em;
  }
}
.columns-awards .card-awards.small-size {
  height: 412px;
}
@media screen and (max-width: 992px) {
  .columns-awards .card-awards.small-size {
    height: auto;
  }
}
.columns-awards .card-awards.big-size {
  height: 524px;
}
@media screen and (max-width: 992px) {
  .columns-awards .card-awards.big-size {
    height: auto;
  }
}
.columns-awards .card-awards em {
  font-style: italic;
}
.columns-awards .card-awards p {
  line-height: normal;
}
@media screen and (max-width: 576px) {
  .columns-awards .card-awards p {
    text-align: left;
  }
}
@media screen and (max-width: 992px) {
  .columns-awards .card-awards p:last-child {
    margin-top: auto;
  }
}
.columns-awards .card-awards .title-awards {
  display: flex;
  flex-flow: row nowrap;
  gap: 1em;
}
.columns-awards .card-awards .title-awards div:first-child {
  max-width: 20%;
}
@media screen and (max-width: 576px) {
  .columns-awards .card-awards .title-awards div:first-child {
    max-width: 100%;
  }
}
.columns-awards .card-awards .title-awards div:first-child figure {
  margin: 0;
}
.columns-awards .card-awards .title-awards div:first-child img {
  width: 102px;
}
.columns-awards .card-awards .title-awards div:last-child {
  max-width: 80%;
}
@media screen and (max-width: 576px) {
  .columns-awards .card-awards .title-awards div:last-child {
    max-width: 100%;
  }
}
.columns-awards .card-awards .title-awards div:last-child h2 {
  font-family: "Inter", sans-serif;
  font-size: 2em;
  font-weight: 400;
  line-height: 39px;
  letter-spacing: 0em;
  color: #003BFF;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

/**-------------------------------------------------------------------------- 
*	9. Post: Archive
*-------------------------------------------------------------------------- */
/**-------------------------------------------------------------------------- 
*	10. Post Single
*-------------------------------------------------------------------------- */
/**-------------------------------------------------------------------------- 
*	15. Error 404
*-------------------------------------------------------------------------- */
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.notFound {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.notFound .circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.notFound .circle-wrapper .circle-svg {
  vertical-align: middle;
  width: 20%;
  height: 20%;
}
.notFound .circle-wrapper .circle-svg .circle-text {
  font-size: 1.5em;
  color: #003BFF;
  transform-origin: center;
  animation: rotateText 10s linear infinite;
}
.notFound .circle-wrapper .circle-svg image {
  width: 60%;
  height: 60%;
}
@media screen and (max-width: 850px) {
  .notFound .circle-wrapper .circle-svg {
    width: 50%;
    height: 50%;
  }
}
@media screen and (max-width: 576px) {
  .notFound .circle-wrapper .circle-svg {
    width: 80%;
    height: 80%;
  }
}

/**-------------------------------------------------------------------------- 
*	17. Site Footer                                                           *
*-------------------------------------------------------------------------- */
.footer {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  background-color: #003153;
}
.footer > h4, .footer a {
  color: white;
}
.footer > .rounded-deco {
  width: 100%;
  min-height: 3rem;
  background-image: radial-gradient(ellipse at 50% 90%, #003153 50%, #003153 74%, #F6FCFF 76%);
}
.footer .footer-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 12em;
  position: relative;
}
.footer .footer-container > .footer-left-part {
  display: flex;
  justify-content: center;
  width: 30%;
  margin: 3rem 0 0 0;
}
.footer .footer-container > .footer-left-part > img {
  max-height: 4rem;
  margin: 0 0 0 2rem;
}
.footer .footer-container > .footer-right-part {
  width: 70%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  margin: 3rem 0;
}
.footer .footer-container > .footer-right-part > .footer-contact {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin: 0 0 2rem 0;
}
.footer .footer-container > .footer-right-part > .footer-contact .title {
  margin: 0 0 1rem 0;
  color: #ffffff;
  font-weight: 600;
}
.footer .footer-container > .footer-right-part > .footer-contact a {
  text-decoration: none;
}
.footer .footer-container > .footer-right-part > .footer-contact a > h4 {
  color: #F6FCFF;
  white-space: nowrap;
}
.footer .footer-container > .footer-right-part > .footer-contact a:hover {
  color: #E3FF00;
}
.footer .footer-container > .footer-right-part > .footer-columns {
  width: 80%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer .footer-container > .footer-right-part > .footer-columns > div:first-child, .footer .footer-container > .footer-right-part > .footer-columns > div:nth-child(2) {
  display: flex;
  flex-flow: column nowrap;
}
.footer .footer-container > .footer-right-part > .footer-columns .title {
  margin: 0 0 1rem 0;
  color: #ffffff;
  font-weight: 600;
}
.footer .footer-container > .footer-right-part > .footer-columns ul {
  width: 100%;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
}
.footer .footer-container > .footer-right-part > .footer-columns ul li {
  list-style-type: none;
  min-width: 153px;
  margin-bottom: 0.5em;
  white-space: nowrap;
}
.footer .footer-container > .footer-right-part > .footer-columns ul li a {
  text-decoration: none;
}
.footer .footer-container > .footer-right-part > .footer-columns ul li a:hover {
  color: #E3FF00;
}
.footer .logos-footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 4.5em;
  background-color: #ffffff;
  border-radius: 155px;
  width: 70%;
  padding: 1em 2em;
  margin-bottom: 3em;
}
.footer .logos-footer h3 {
  font-weight: 600;
}
@media screen and (max-width: 1240px) {
  .footer .logos-footer {
    width: 80%;
    gap: 1.5em;
  }
  .footer .logos-footer h3 {
    font-size: 1em;
  }
}
@media screen and (max-width: 576px) {
  .footer .logos-footer {
    flex-flow: row wrap;
    gap: 2em;
    width: 100%;
    margin-right: 1em;
    margin-left: 1em;
    border-radius: 33px;
    padding-top: 2em;
  }
}
.footer .logos-footer h3 {
  white-space: nowrap;
  margin: 0;
}
.footer .logos-footer img {
  width: 84%;
}

/* Breakpoints footer */
@media screen and (max-width: 1240px) {
  .footer .footer-container {
    margin: 0 4em;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer-container {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    flex-flow: row wrap;
  }
  .footer .footer-container {
    flex-flow: row wrap;
    margin: 0 auto;
  }
  .footer .footer-container .footer-left-part {
    width: 100%;
    justify-content: center;
  }
  .footer .footer-container .footer-left-part img {
    margin: 0;
  }
  .footer .footer-container .footer-right-part {
    flex-flow: column wrap;
    justify-content: center;
    width: 100%;
    margin: 1rem;
  }
  .footer .footer-container .footer-right-part .footer-contact {
    flex-flow: column wrap;
    align-items: center;
    padding: 2em 0;
  }
  .footer .footer-container .footer-right-part .footer-columns {
    flex-flow: row nowrap;
    justify-content: center;
    width: 100%;
    padding: 3rem 1rem 3rem;
  }
  .footer .footer-container .footer-right-part .footer-columns > div:first-child, .footer .footer-container .footer-right-part .footer-columns > div:nth-child(2) {
    display: flex;
    flex-flow: row wrap;
  }
  .footer .footer-container .footer-right-part .footer-columns > div:first-child ul, .footer .footer-container .footer-right-part .footer-columns > div:nth-child(2) ul {
    flex-flow: column wrap;
  }
  .footer .footer-container .footer-right-part .footer-columns > div:first-child ul li, .footer .footer-container .footer-right-part .footer-columns > div:nth-child(2) ul li {
    min-width: 153px;
  }
}
@media screen and (max-width: 576px) {
  .footer .footer-container {
    max-width: 0 auto;
  }
  .footer .footer-container .footer-right-part .footer-contact {
    text-align: left;
    align-items: center;
    padding: 1em 0;
  }
  .footer .footer-container .footer-right-part .footer-columns {
    flex-flow: row wrap;
    gap: 1rem;
    padding: 3rem 1rem 1rem 1rem;
  }
  .footer .footer-container .footer-right-part .footer-columns > div {
    display: flex;
    justify-content: center;
  }
  .footer .footer-container .footer-right-part .footer-columns > div > ul li {
    min-width: none;
    text-align: center;
  }
}
/**-------------------------------------------------------------------------- 
*	19. Plugins                                                          *
*-------------------------------------------------------------------------- */
.woocommerce-MyAccount-navigation {
  width: 20%;
  margin-bottom: 8em;
}
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}

.woocommerce-MyAccount-content {
  display: flex;
  flex-flow: column wrap;
  gap: 2em;
  width: 77%;
  padding-bottom: 4em;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5em;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a {
  background-color: #DEDEDE;
  color: #003BFF;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a:hover {
  background-color: #003BFF;
  color: #DEDEDE;
}

.woocommerce-notices-wrapper {
  display: none;
}

.cart-body > div:first-child .coupon > div:first-child {
  display: none;
}
.cart-body > div:first-child .coupon > div:last-child {
  width: 100%;
  display: flex;
  justify-content: end;
}

.actions .coupon {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 0.5em;
  padding: 2em 0;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .actions .coupon {
    flex-flow: row wrap;
  }
}
.actions .coupon > div:first-child {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5em;
}
@media screen and (max-width: 576px) {
  .actions .coupon > div:first-child {
    flex-flow: row wrap;
  }
}
.actions .coupon input[name=coupon_code] {
  border: 1px solid #003BFF;
  padding: 0.3em;
}
.actions .coupon .button {
  display: block;
  background-color: #003BFF;
  color: #ffffff;
  border: 1px solid #003BFF;
}
.actions .coupon .button:hover {
  background-color: #DEDEDE;
  border: 1px solid #003BFF;
  color: #003BFF;
}
.actions button[name=update_cart] {
  display: none;
}

.cart-and-totals-container {
  padding: 5em 10em 5em 10em;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-between;
}
.cart-and-totals-container > div {
  margin-left: 0;
}

.woocommerce-cart-form,
.cart-collaterals {
  flex: 1;
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: 5em;
}

@media (max-width: 912px) {
  .cart-and-totals-container {
    flex-direction: column;
  }
  .woocommerce-cart-form,
  .cart-collaterals {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .cart-and-totals-container {
    padding: 3em 1em 3em 1em;
  }
}
@media (max-width: 430px) {
  .cart-and-totals-container {
    padding: 3em 1em 3em 1em;
  }
}
.cart {
  max-width: 650px;
}
.cart hr {
  display: none;
}
.cart .cart-header h3 {
  color: #003BFF;
}
.cart .cart-body > div:first-child {
  border-top: 1px solid #7A97FA;
  border-bottom: 1px solid #7A97FA;
}
.cart .cart-body > div:last-child {
  border-bottom: 1px solid #7A97FA;
}
.cart .cart-body > .woocommerce-cart-form__cart-item {
  /* Quitar el borde inferior del último elemento */
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item {
  display: flex;
  justify-content: space-between;
  padding: 2em 0;
}
@media screen and (max-width: 576px) {
  .cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item {
    display: flex;
    flex-flow: column wrap;
    justify-content: none;
    gap: 2em;
  }
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item:not(:has(+ .tour-form)) {
  border-bottom: 1px solid #7A97FA;
  padding: 2em 0;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .cart-item-info {
  display: flex;
  gap: 3em;
  flex-flow: row nowrap;
  width: 50%;
}
@media screen and (max-width: 576px) {
  .cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .cart-item-info {
    width: auto;
  }
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .cart-item-info .product-thumbnail {
  width: 30%;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .cart-item-info .product-thumbnail img {
  width: 100px;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .cart-item-info .product-info {
  display: flex;
  flex-direction: column; /* Cambia de column a row para que los hijos estén en fila */
  justify-content: space-between;
  align-items: flex-start; /* Alinea los items en el centro verticalmente */
  width: 60%;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .cart-item-info .product-info .product-name {
  pointer-events: none;
  cursor: default;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .cart-item-info .product-info .product-remove {
  display: none;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
  padding: 0 2em;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column {
    justify-content: none;
    width: auto;
  }
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .quantity-msg p {
  color: #003BFF !important;
  font-size: 14px;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .product-quantity {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 112px;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .product-quantity .quantity {
  border: 1px solid #003BFF;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .product-quantity .quantity .button {
  background: none;
  color: #003BFF;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .product-quantity .quantity .button:hover {
  background-color: #003BFF;
  color: #ffffff;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .product-quantity .quantity .minus,
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .product-quantity .quantity .plus {
  min-width: 0;
  max-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .product-quantity .quantity input[type=number] {
  width: 30px;
  text-align: center;
  margin: 0 5px;
  font-size: 14px;
}
@media screen and (max-width: 781px) {
  .cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .quantity-column .product-quantity {
    margin-right: 5px;
  }
}
.cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .product-price {
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: end;
  width: 20%;
}
@media screen and (max-width: 576px) {
  .cart .cart-body > .woocommerce-cart-form__cart-item > .cart-item .product-price {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}
.cart .cart-body > .woocommerce-cart-form__cart-item .tour-form {
  border-bottom: 1px solid #7A97FA;
  padding: 2em 1em;
}
.cart .cart-body > .woocommerce-cart-form__cart-item .tour-form > p {
  color: #003BFF;
}
.cart .cart-body > .woocommerce-cart-form__cart-item .tour-form .tour-info-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5em 0;
  gap: 1em;
}
.cart .cart-body > .woocommerce-cart-form__cart-item .tour-form .tour-info-form .tour-info-name {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.cart .cart-body > .woocommerce-cart-form__cart-item .tour-form .tour-info-form input {
  border: 1.5px solid #003BFF;
  padding: 0.5em;
}
.cart .cart-body > .woocommerce-cart-form__cart-item .tour-form .tour-info-form input:focus {
  border: 3px solid #003BFF !important;
}
.cart .cart-body > .woocommerce-cart-form__cart-item:last-child > .cart-item {
  border-bottom: none;
}
.cart .update-cart {
  display: flex;
  justify-content: flex-end;
  margin-top: 1em;
}
.cart .update-cart button {
  background-color: #003BFF !important;
  color: #ffffff !important;
  border-radius: 40px !important;
  visibility: hidden !important;
}

.cart_totals {
  width: 100% !important;
  max-width: 650px !important;
}
.cart_totals h3 {
  color: #003BFF;
}
.cart_totals .shop_table {
  border: 1px solid #003BFF;
  padding: 2em;
}
.cart_totals .shop_table .cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 18px;
}
.cart_totals .shop_table .order-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 600;
}
.cart_totals .shop_table .order-total > div:first-child {
  padding-right: 0.5em;
}
.cart_totals a.checkout-button {
  margin-top: 1em;
  background-color: #003BFF !important;
  color: #ffffff !important;
  border-radius: 40px !important;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2em;
  padding: 5em 0 5em 0;
}
.cart-empty img {
  max-width: 213px;
}
.cart-empty h2 {
  color: #003BFF;
}
.cart-empty p {
  color: #003BFF;
}
.cart-empty .button {
  background-color: #003BFF !important;
  color: #ffffff !important;
}

input[type=checkbox i] {
  background-color: initial !important;
  cursor: default !important;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
  box-sizing: border-box !important;
  margin: 3px 3px 3px 4px !important;
  padding: initial !important;
  border: initial !important;
}

.xoo-el-main label {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.3em;
}

/**-------------------------------------------------------------------------- 
*	20. Animations
*-------------------------------------------------------------------------- */
@keyframes menuMov {
  from {
    position: relative;
    top: -125px;
  }
  to {
    position: relative;
    top: 0px;
  }
}
@keyframes horizontalImgMov {
  from {
    position: relative;
    top: -612px;
    right: -41px;
  }
  to {
    position: relative;
    top: -8px;
    right: -41px;
  }
}
@keyframes firstTextMov {
  from {
    position: relative;
    left: var(--textMov-postition-x);
  }
  to {
    position: relative;
    left: 0px;
  }
}
@keyframes verticalImgMov {
  from {
    position: relative;
    right: -922px;
  }
  to {
    position: relative;
    right: -24px;
  }
}
@keyframes secondTextMov {
  from {
    position: relative;
    left: var(--textMov-postition-x);
  }
  to {
    position: relative;
    left: 0px;
  }
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}