@import url('futura.css');

/**
* Variables
*/
:root {
  --header-height: 128px;
  --footer-height: 230px;
  
  --dark-blue: #002D4F;
  --blue: #5BB4EA;
  
  --turquoise: #0083A1;
  --orange: #FEC713;
  
  
  
  
  
  --brown: #432923;
  --light-pink: #F7E0EE;
  --lighter-pink: #F7E0EE;
  --dark-pink: #BF8790;
  --purple: #CEBADB;
  --cyan: #ACD9DD;
  
  --pink: #1E1E4C;
  --red: #E72D79;
  --red2: #D91B5B;
  --black: #000000;
  --black2: #2D2328;
  --white: #FFFFFF;
  --grey: #BCB8B8;
  --light-red: #F7E0EE;
  
  --text-color: var(--black2);
  --text-color-alt: var(--red2);
  --title-color: var(--red);
  --title-color-alt: var(--black2);
  --error-color: var(--red);
  --error-bg-color: var(--light-pink);
}

@media screen and (max-width: 1024px) {
  :root {
  --header-height: 128px;
  --footer-height: 556px;
  }
}

/**
* General
*/
html, body {font-family: 'Futura PT', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 14px; scroll-behavior:smooth; height: 100%; background: var(--pink); height: 100%; color: var(--white);}

a, a:hover {color: inherit; text-decoration: none;}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
}

button:focus {
  outline: 0 none;
}

.link, .link:hover {text-decoration: underline;}

input {font-family: inherit;}

img {display: block; max-width: 100%;}

.page-container {
  position: relative;
  min-height: 100%;
  padding-top: var(--header-height);
  padding-bottom: var(--footer-height);
  overflow: hidden;
}

.no-header .page-container {
  padding-top: 0;
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-content {
  /* padding-top: 45px;JC*/
  /* padding-bottom: 35px; */
  
}
@media screen and (max-width: 1024px) {
  .page-content {
    /* padding-top: 15px; JC*/
    padding-bottom: 50px;
  }
}

/**
* Header
*/

.site-header {
  position: absolute;
  height: var(--header-height);
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
}

.site-header .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /*! height: 100%; */
  width: 100%;
}

.site-header__logo {
  margin-right: auto;
  display: block;
  font-size: 0;
}
.site-header__logo.is-mobile {
  display: none;
}
.site-header__logo.is-right {
  margin-left: 13px;
  margin-right: 0;
}

.site-header__menu {
  margin-left: auto;
}
@media screen and (max-width: 1400px) {
  .site-header:before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .site-header {
    display: flex;
    align-items: flex-start;
    background: url('../imagenes/header-mbl.png') no-repeat center bottom;
  }
  .site-header .wrapper {
    align-items: center;
  }
  .site-header__logo {
    display: none;
    max-width: 152px;
  }
  .site-header__logo.is-mobile {
    display: flex;
    margin-top: 10px;
    max-width: none;
    flex: 1;
    padding: 0 20px;
    justify-content: center;
  }
  .site-header__logo img {
    
  }
  .site-header__logo.is-right {
    display: none !important;;
  }
}

/**
* Main Menu
*/
.main-menu-btn {
  display: none;
  width: 42px;
  padding: 5px;
  margin-top: 7px;
  margin-right: -7px;
}
.main-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
}
.main-menu-btn span:not(:last-child) {
  margin-bottom: 7px;
}
.main-menu {
  display: flex;
}
.main-menu__logo {
  position: absolute;
  top: 25px;
  left: 30px;
  display: none;
  /*! max-width: 152px; */
}
.main-menu__logo-bottom {
  display: none;
  max-width: 100px;
  margin-top: 50px;
}
.main-menu__close {
  display: none;
  position: absolute;
  top: 36px;
  right: 24px;
  width: 30px;
  height: 30px;
}
.main-menu__close:before,
.main-menu__close:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  position: absolute;
  transform: rotate(45deg);
}
.main-menu__close:after {
  transform: rotate(-45deg);
}
.main-menu__list {
  display: flex;
}
.main-menu__item {
  margin-right: 24px;
}

.main-menu__link {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 5px;
  transition: color 200ms linear;
  color: var(--blue);
}
.main-menu__link:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--white);
  opacity: 0;
  transition: opacity 200ms linear;
}
.main-menu__link:hover,
.main-menu__link.is-active {
  color: var(--white);
}
.main-menu__link.is-active:before {
  background: var(--white);
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .main-menu-btn {
    display: block;
  }
  .main-menu {
    flex-direction: column;
  }
  .main-menu__close,
  .main-menu__logo,
  .main-menu__logo-bottom {
    display: block;
    opacity: 0;
    transition: opacity 200ms linear;
    transition-delay: 0;
  }
  
  .main-menu {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--red);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 400ms linear 200ms;
    pointer-events: none;
  }
  .main-menu__list {
    flex-direction: column;
    align-items: center; 
    opacity: 0;
    transition: opacity 200ms linear;
  }
  .main-menu__item {
    margin-right: 0;
  }
  .main-menu__item:not(:last-child) {
    margin-bottom: 30px;
  }
  .main-menu__link {
    color: var(--white) !important;;
  }
  
  .is-menu-visible {
    overflow: hidden;
  }
  .is-menu-visible .main-menu {
    pointer-events: auto;
  }
  
  .is-menu-visible .main-menu__close,
  .is-menu-visible .main-menu__logo,
  .is-menu-visible .main-menu__logo-bottom {
    opacity: 1;
    transition-delay: 500ms;
  }
  
  .is-menu-visible .main-menu {
    width: 100%;
    transition-delay: 0s;
  }
  .is-menu-visible  .main-menu__list {
    opacity: 1;
    transition-delay: 500ms;
  }
  .main-menu__link.is-active:before {
    display: none;
  }
}

/**
* Footer
*/

.site-footer {
  position: absolute;
  background: var(--red);
  height: var(--footer-height);
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 35px 0 0;
  font-size: 16px;
  color: var(--white);
}

.site-footer .wrapper {
  display: flex;
}

.site-footer .wrapper > * {
  flex: 0 33.33%;
  width: 33.33%;
}

.site-footer__contact {
  margin-right: auto;
}
.site-footer__contact li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.site-footer__contact li span {
  position: absolute;
  left: 0;
}
.site-footer__contact a:hover {
  text-decoration: underline;
}
.site-footer__rrss {
  margin: 0 auto;
  text-align: center;
}
.site-footer__rrss > a {
  text-transform: uppercase;
  text-decoration: underline;
}
.rrss-menu {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.rrss-menu__link {
  margin: 0 3px;
  border-radius: 50%;
  transition: box-shadow 150ms linear;
}
.rrss-menu__link:hover {
  box-shadow: 0 0 3px 2px rgba(255, 255, 255, .5);
}
.site-footer__menu {
  
}
.footer-menu {
  text-align: right;
}
.footer-menu__link,
.footer-menu__link:hover {
  text-decoration: underline;
}
.site-footer__left-logo {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 15px;
}
.site-footer__right-logo {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 15px;
}
.site-footer__copyright {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

@media screen and (max-width: 1024px) {
  .site-footer .wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .site-footer .wrapper > * {
    flex: 0 auto;
    width: auto;
  }
  .site-footer__contact {
    margin: 0 0 15px;
  }
  .rrss-menu {
    margin-top: 20px;
  }
  .footer-menu {
    text-align: center;
    margin: 30px 0 15px;
  }
  
}

/**
* Form registration
*/
.section-registration {
  margin-top: 30px;
  color: var(--text-color);
}
.section-registration .wrapper {
  display: flex;
  align-items: flex-start;
}

.form-registration {
  position: relative;
  max-width: 390px;
  flex: 0 0 390px;
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
  padding: 35px 0 0;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.200807);
  order: 1;
}
.form-registration:after {
  display: none;
  content: "";
  width: 630px;
  height: 868px;
  background: url('../imagenes/adornos-caja-registro.png');
  position: absolute;
  left: 50%;
  top: -45px;
  transform: translateX(-50%);
  pointer-events: none;
}
.section-registration.not-winner .form-registration,
.section-registration.is-winner .form-registration {
  padding-top: 30px;
  padding-bottom: 25px;
}
.form-registration__title {
  font-size: 19px;
  padding: 0 35px;
  line-height: 1.1em;
  /*! text-transform: uppercase; */
}
.form-registration__title strong {
  font-weight: 700;
  font-size: 24px;
  color: var(--text-color-alt);
}
.form-registration__title span {
  color: var(--text-color-alt);
  /*! display: inline-block; */
}
.section-registration.not-winner .form-registration__title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: var(--text-color);
}

.section-registration.is-winner .form-registration__title {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-bottom: 25px;
  color: var(--red);
}
.page-checker .section-registration .form-registration__title {
  text-align: left;
}
.form-registration__text {
  padding: 0 35px;
  font-size: 18px;
  margin: 25px 0;
  line-height: 1.3;
}
.form-registration__text:last-child {
  margin-bottom: 0;
}
.form-registration__text span {
  color: var(--red);
}
.section-registration.is-winner .form-registration__text {
  margin: 12px 0;
  font-size: 16px;
}
.section-registration.is-winner .form-registration__text span {
  color: var(--text-color-alt);
  font-size: 18px;
}
.form-registration__marked {
  background: #D5D1D9;
  padding: 10px 0;
  margin: 20px 0;
}
.form-registration .form-registration__marked .form-registration__text {
  font-size: 14px;
}
.form-registration__marked .form-registration__text.is-small {
  font-size: 12px;
  margin-bottom: 10px;
}
.form-registration__text .button {
  margin-top: 40px;
}
.section-registration.not-winner .form-registration__text .button {
  margin-top: 90px;
}
.form-registration__warning {
  padding: 5px 25px 0;
  color: var(--red);
}

.checks-error {
  background: var(--error-bg-color);
  color: var(--error-color);
  padding: 6px 10px;
  width: 100%;
  margin: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms linear;
}
.checks-error.has-error {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1024px) {
  .section-registration {
    margin-top: 0;
  }
  .section-registration .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .form-registration {
    /*! order: 2; */
    margin: 0 -20px 40px;
  }
  
  .section-registration.is-winner .form-registration,
  .section-registration.not-winner .form-registration {
    order: 1;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .form-registration {
    margin-top: 15px;
  }
  .form-registration:after {
    display: none;
  }
}
@media screen and (max-width: 390px) {
  .form-registration {
    border-radius: 0;
    box-shadow: none;
  }
}

/**
* Content registration
*/

.content-registration {
  flex: 1;
  margin-left: 40px;
  margin-top: -70px;
  margin-bottom: 45px;
  order: 2;
}

.content-registration__image.is-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .content-registration {
    margin: 0;
    /*! order: 1; */
  }
  .content-registration__image {
    display: none;
  }
  .content-registration__image.is-mobile {
    display: block;
    max-width: 540px;
    width: 100%;
  }
  .section-registration.is-winner .content-registration,
  .section-registration.not-winner .content-registration {
    /*! margin-top: 25px; */
    order: 2;
  }
}

/**
* Button
*/

.button {
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  padding: 22px 16px;
  border-radius: 6px;
  display: block;
  width: 100%;
  font-weight: 500;
  position: relative;
  transition: box-shadow 200ms linear, opacity 200ms linear;
  text-align: center;
}
.button.is-alt {
  background: var(--white);
  color: var(--red);
}
.button:hover {
  color: var(--white);
}
.button.has-arrow {
  text-align: left;
}
.button.has-arrow:after {
  display: block;
  position: absolute;
  content: "";
  width: 7px;
  height: 13px;
  background: url('../imagenes/flecha-boton.png');
  right: 22px;
  top: 50%;
  margin-top: -6px;
}

.is-loading .button,
.button.is-loading {
  opacity: .3;
  cursor: not-allowed;
}
/**
* Back button
*/
.back-button {
  color: var(--text-color-alt);
  text-transform: uppercase;
  font-size: 10px;
  line-break: 1;
  display: block;
  position: relative;
  height: 13px;
  line-height: 10px;
  padding: 2px 0 1px 13px;
  text-decoration: underline;
}
.back-button:before {
  display: block;
  position: absolute;
  content: "";
  width: 7px;
  height: 13px;
  background: url('../imagenes/back-arrow.png');
  left: 0;
  top: 50%;
  margin-top: -6px;
}

/**
* Form 
*/

.form__fieldset {
  height: 40px;
  /*! overflow: hidden; */
  overflow: visible;
}
.form__fieldset.is-active {
  height: auto;
}
.form__fieldset-title {
  background: var(--red);
  padding: 5px 10px; 
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  margin: 0;
  color: var(--white);
}
.form__fieldset:first-of-type:not(.is-active) .form__fieldset-title {
  background: var(--grey);
  color: var(--text-color);
  font-weight: normal;
}
.form__fieldset-title span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  color: var(--black);
  font-weight: normal;
}
.form__fieldset.is-active .form__fieldset-title {
  color: var(--white);
  background: var(--red);
}
.form__fieldset:nth-child(2).is-active .form__fieldset-title {
  
}
.form__fieldset.is-active .form__fieldset-title span {
  background: var(--black);
  color: var(--white);
}
.form__fieldset:first-of-type:not(.is-active) .form__fieldset-title span {
  font-size: 0;
  background-image: url('../imagenes/step-check.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.form__fieldset-content {
  padding: 25px 29px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  overflow: visible;
  pointer-events: none;
}
.form__fieldset.is-active .form__fieldset-content {
  pointer-events: auto;
}

.form__group {
  padding: 0 6px 7px;
  flex: 1 1 66.66%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  flex-direction: column;
}
.form__group.is-third {
  max-width: 33.33%;
  flex: 0 0 33.33%;
}
.form__group.is-full {
  max-width: 100%;
  flex: 0 0 100%;
}

.form__label {
  margin-bottom: 8px;
  flex: 0 auto;
}
.form__group.has-error .form__label {
  color: var(--error-color);
}
.form__input,
.c-file-input {
  display: block;
  appearance: none;
  border: 1px solid var(--black);
  height: 40px;
  font-size: 14px;
  padding: 13px;
  line-height: 1;
  border-radius: 4px;
  background: var(--white);
  color: var(--text-color);
  width: auto;
  transition: color 200ms linear, background 200ms linear, border-color 200ms linear, box-shadow 200ms linear;
  flex: 0 auto;
  position: relative;
  max-width: 100%;
}
.form__input:focus {
  outline: 0 none;
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, .3);
}
.form__text {
  font-size: 10px;
}
.form__text.is-big {
  font-size: 13px;
}
.c-file-input {
  padding-left: 38px;
  display: flex;
  align-items: center;
  /*! max-width: 65%; */
  flex: 1;
  min-width: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.has-error .c-file-input {
  border-color: var(--error-color);
  background: var(--error-bg-color);
  color: var(--error-color);
}
.c-file-input:before {
  content: "\f030";
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  height: 24px;
  width: 24px;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 8px;
}
.has-error .c-file-input:before {
  border-color: var(--red);
  color: var(--red);
}
.c-file-input__file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.c-file-input__text {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
  line-height: 38px;
}
.form__info {
  flex: 0;
  font-size: 22px;
  margin-left: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
}
.form__group.has-error .form__input {
  color: var(--error-color);
  border-color: var(--error-color);
  background: var(--error-bg-color);
}
.form__group.has-error .form__info {
  color: var(--error-color);
}
.form__error {
  display: block;
  opacity: 0;
  text-align: right;
  /*! position: absolute; */
  width: 100%;
  left: 0;
  padding: 0 05px;
  min-height: 16px;
  transition: opacity 200ms linear;
  pointer-events: none;
  color: var(--red);
}
.form__error.no-padding {
  padding: 0;
}
.form__error.no-padding-left {
  padding-left: 0;
}
.form__group.has-error .form__error {
  opacity: 1;
  pointer-events: auto;
}
.form__legend {
  font-size: 12px;
  text-align: right;
  margin: 5px 0 0;
}
.form__group.has-error .form__legend {
  color: var(--text-color-alt);
}

.c-checkbox input {
  display: none;
}
.c-checkbox input + label {
  padding-left: 18px;
  position: relative;
  font-size: 11px;
  line-height: 1.1;
}
.c-checkbox input + label a {
  text-decoration: underline;
}
.has-error .c-checkbox input + label {
  color: var(--error-color);
}
.c-checkbox input + label:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border: 1px solid var(--text-color);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: -1px;
}
.has-error .c-checkbox input + label:before {
  border-color: var(--error-color);
  background: var(--error-bg-color);
}
.c-checkbox input + label:after {
  content: "\f00c";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: -1px;
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  font-size: 10px;
  opacity: 0;
  transition: opacity 200ms linear;
}
.has-error .c-checkbox input + label:after {
  color: var(--text-color-alt);
}
.c-checkbox input:checked + label:after {
  opacity: 1;
}
.form__buttons {
  align-items: center;
  flex-direction: row;
}
.form__buttons > *:not(:last-child) {
  margin-right: 18px;
}
.form__buttons .back-button {
  flex: 0 0;
}
.form__buttons .button {
  flex: 1 1;
}

.input-with-info {
  display: flex;
  flex: 1 1 auto;
}

.input-with-info .form__input {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .form__fieldset-content {
    padding-left: 14px;
    padding-right: 14px;
  } 
}

/**
* Section title
*/

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--title-color);
}

.section-title span {
  color: var(--white);
}

/**
* Section gifts
*/
.section-gifts {
    margin-top: 45px;
}

.section-gifts__title {
  margin-bottom: 45px;
}
.section-gifts__title span {
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .section-gifts {
    background: none;
  }
  .section-gifts .wrapper {
    padding: 0;
  }
  .section-gifts__title {
    font-size: 20px;
    margin: 15px auto 20px;
    padding: 0 20px;
    max-width: 300px;
  }
  .section-gifts__title span {
    display: block;
  }
}

/**
* Gift list
*/

.gift-list {
  margin: 0 auto;
  max-width: 1100px;
  margin: 0 auto 45px;
  padding: 10px 0;
}
.gift-list__item {
  background: var(--white);
  margin-bottom: 100px;
  padding: 35px;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 20px;
  margin-bottom: 0;
}
.gift-list__item:not(:first-child) {
  margin-top: -35px;
}
.gift {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.gift__name {
  padding-left: 20px;
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase;
  max-width: 320px;
  color: var(--text-color-alt);
}
.gift__name .txt-color-blue{
  color: var(--blue);
}
.gift__name strong {
  color: var(--text-color);
}
.gift__amount {
  font-size: 96px;
  font-weight: bold;
  color: var(--text-color-alt);
  margin-left: auto;
  position: relative;
  /*! padding-top: 40px; */
  /*! padding-left: 50px; */
  line-height: 1;
  letter-spacing: .005em;
}
.gift__amount.is-alt {
  color: var(--orange);
}
.gift__amount.txt-color-blue{
  color: var(--blue);
}

@media screen and (max-width: 1024px) {
  .gift-list {
    max-width: 768px;
  }
  .gift-list__item {
    padding: 35px;
  }
  .gift__name {
    order: 3;
    padding-left: 0;
    flex: 0 0 100%;
    max-width: none;
  }
  .gift__amount {
    order: 2;
    margin-top: 0;
    margin-left: auto;
    flex: 0;
  }
  .gift__image {
    order: 1;
    display: flex;
    
    /*! flex: 1; */
    flex: 1;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .gift-list {
    /* max-width: 360px; */
    /* padding: 5px 0; */
  }
  .gift-list__item {
    /* margin-bottom: 20px;
    padding: 12px 15px;
    max-width: 290px; */
    border-radius: 0;
  }
  .gift__name {
    font-size: 18px;
    margin: 0;
  }
  .gift__amount {
    font-size: 40px;
    padding-top: 0;
    flex: 0 auto;
  }
  .gift__amount:before {
    width: 23px;
    height: 20px;
  }
  .gift__amount:after {
    width: 23px;
    height: 20px;
  }
  .gift.with-star .gift__amount:after {
    width: 30px;
    height: 39px;
  }
  .gift__image {
    justify-content: center;
    margin-top: 0;
    max-width: 150px;
    flex: 1 auto;
    margin-bottom: 10px;
  }

  .section-legals .wrapper{
    padding: 0;
  }
  .section-legals .wrapper .section-legals__container {
    max-width: 100%;
    border-radius: 0;
    padding: 30px;
  }
}

/**
* Gift footer
*/

.gifts-footer {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  /*! color: var(--white); */
  max-width: 980px;
  margin: auto;
}
.gifts-footer__links {
  flex: 0 33.33%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}
.gifts-footer__links .button {
  max-width: 320px;
  margin-bottom: 20px;
}
.gifts-footer__links .link {
  
}
.gifts-footer__warning {
  flex: 0 33.33%;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
.gifts-footer__warning-content {
  display: block;
  max-width: 280px;
  text-align: right;
  font-size: 16px;
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .gifts-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .gifts-footer__links {
    flex: 0;
    margin: 0;
    width: 100%;
  }
  .gifts-footer__warning {
    flex: 0 100%;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  .gifts-footer__warning-content {
    max-width: 240px;
    text-align: center;
  }
}


/**
* Section Howto
*/
.section-howto{
  margin-top: 45px;
}
.page-howto .page-content {
  /* background: url('../imagenes/participar-bg.png') no-repeat; */
  background-position: center bottom;
}
.page-howto .page-content {
  min-height: 1000px;
}

.section-howto__title {
  margin-bottom: 40px;
}
.section-howto__footer {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  /*! padding-bottom: 170px; */
}
.section-howto__footer .button {
  max-width: 320px;
}
@media screen and (max-width: 1024px) {
  .page-howto .page-container {
    background: none;
  }
  .section-howto__footer {
    margin-top: 0;
    padding-bottom: 0;
  }
  .page-howto .page-content {
    min-height: none;
    background: none;
  }
}
@media screen and (max-width: 768px) {
  .section-howto__title {
    font-size: 20px;
    max-width: 330px;
    margin: 15px auto 0;
  }
}


/**
* Steps
*/

.steps {
  display: flex;
}
.steps__item {
  flex: 0 33.33%;
}
.step {
  display: flex;
  flex-direction: column;
  position: relative;
}
.steps__item:first-child .step:before {
  /*! content: ""; */
  width: 35px;
  height: 36px;
  background: url('../imagenes/flor.png');
  display: block;
  position: absolute;
  bottom: -150px;
  left: 100px;
}
.step__image {
  margin-bottom: -15px;  
  position: relative;
  display: flex;
  justify-content: center;
}
.step__name {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--blue);
}
.step__description {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  font-size: 16px;
  /*! color: var(--white); */
  line-height: 1.2;
}


@media screen and (max-width: 1024px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .steps__item {
    flex: 0 330px;
    max-width: 330px;
  }
  .steps__item:first-child .step:before {
    display: none;
  }
  .step__name {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
  .step {
    padding-bottom: 10px;
  }
  .steps__item:not(:last-child) .step {
    border-bottom: 1px solid var(--text-color);
  }
  .steps__item:nth-child(3) .step__description:before {
    display: none;
  }
  .step__description {
    margin: 0;
    padding: 0 10px 20px;
  }
  .steps__item:not(:last-child) .step__description {
    border-bottom: 1px solid var(--red);
  }
}
@media screen and (max-width: 768px) {
  .step__image {
    max-width: 300px;
    margin: 0 auto;
  }
}

/**
* Section about
*/
.page-about .page-container {
}
.page-about .page-content {
  /* background: url('../imagenes/participar-bg.png') no-repeat; */
  background-position: center bottom;
  padding-bottom: 35px;
}
.section-about {
  margin-top: 45px;
}
.section-about p{
  color: var(--text-color);
}
.section-about__title {
  margin-bottom: 15px;
}

.section-about__footer {
  display: flex;
  justify-content: center;
  margin-top: 140px;
}
.section-about__footer .button {
  max-width: 320px;
}
@media screen and (max-width: 1024px) {
  .section-about .wrapper {
    padding: 0;
  }
  .page-about .page-content {
    background: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-about .page-container {
    background: none;
  }
  .section-about{
    padding: 20px;
  }
  .section-about__title { 
   font-size: 20px;
  }
  .section-about__footer { 
    margin-top: 25px;
  }
}

/**
* About
*/

.about-group {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.about {
  font-size: 16px;
  display: flex;
  line-height: 1.3;
  position: relative;
}
.about:not(:last-child) {
  margin-bottom: 20px;
}

.about__image {
  flex: 0 0 auto;
  position: relative;
}
.about__image:first-child {
  margin-right: 33px;
}
.about__image:last-child {
  margin-left: 10px;
}
.about p {
  margin: 0;
}
.about p:not(:last-child) {
  margin-bottom: 20px;
}
.about__text {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .about-group {
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .about-group {
    /*! background: none; */
    padding: 15px;
    margin: 0 -20px;
    border-radius: 0;
  }
  .about {
    flex-direction: column;
    margin: 0;
  }
  .about__image {
    flex: 0 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0 !important;
  }
  .about__image:first-child {
    order: 2;
  }
}

/**
* Button backgorund
*/

.btn-bg {
  z-index: 0;
  position: relative;
  margin-bottom: 80px;
  margin-top: 170px;
}

.btn-bg .button {
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .btn-bg {
    margin: 20px 0 0;
  }
  .btn-bg:before {
    display: none;
  }
}
/**
* Section faq
*/
.section-faq{
  margin-top: 45px;
  color: var(--text-color);
}
.page-faq .page-content {
  /* background: url('../imagenes/participar-bg.png') no-repeat; */
  background-position: center bottom;
  padding-bottom: 35px;
}

.section-faq__title {
  margin-bottom: 40px;
  text-transform: none;
  position: relative;
}

.section-faq__footer {
  display: flex;
  justify-content: center;
  
}
.section-faq__footer .button {
  max-width: 320px;
}
@media screen and (max-width: 1024px) {
  .page-faq .page-content {
    background: none;
  }
}

@media screen and (max-width: 768px) {
  .section-faq .wrapper {
    padding: 0 10px;
  }
  .section-faq__title {
    font-size: 20px;
  }
}

/**
* Question list
*/


.question-list {
  max-width: 1024px;
  margin: 0 auto 100px;
  position: relative;
  z-index: 1;
}

.question {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: box-shadow 200ms linear;
}
.question.is-visible {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
}
.question__title {
  position: relative;
  background: var(--red);
  font-size: 16px;
  font-weight: bold;
  padding: 20px 50px 20px 20px;  
  margin: 0;
  cursor: pointer;
  color: var(--white);
}
.question__title:after {
  content: "";
  width: 13px;
  height: 7px;
  background: url('../imagenes/down-arrow.png');
  position: absolute;
  right: 25px;
  top: 50%;
  margin-top: -3px;
  transition: transform 200ms linear;
}
.question.is-visible .question__title:after {
  transform: rotateX(180deg);
}
.question__text {
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.question__content {
  padding: 34px 18px;
  line-height: 1.2;
  font-size: 16px;
  max-width: 935px;
}
.question__content p {
}
.question__content p:first-child {
  margin-top: 0;
}
.question__content p:last-child {
  margin-bottom: 0;
}
.question__content span {
  color: var(--text-color-alt);
}
@media screen and (max-width: 768px) {
  .question {
    margin-bottom: 10px;
  }
  .question__title {
    padding: 14px 50px 14px 14px; 
  }
  .question__content {
    padding: 20px 18px;
  }
  .question-list {
    margin-bottom: 50px;
  }
}

/**
* Section legals
*/

.section-legals{
  margin-top: 45px;
}
.section-legals .wrapper {
  
}


.section-legals__title {
  text-transform: none;
  margin-bottom: 23px;
  position: relative;
}
.section-legals__container {
  background: var(--white);
  padding: 36px 10px;
  border-radius: 20px
}
.section-legals__content {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  font-size: 16px;
  
  line-height: 1.2;
  color: var(--text-color);
}
.section-legals__content p{
  color: var(--text-color);
}
.section-legals__content:before {
  content: "";
  width: 46px;
  height: 40px;
  position: absolute;
  background: url('../imagenes/confetti.png');
  top: -50px;
  left: -100px;
}
.section-legals__content h3 {
  font-size: 16px;
  font-weight: bold;
}
.section-legals__content h3:not(:first-child) {
  margin-top: 40px;
}

.section-legals__content h4 {
  font-size: 16px;
  font-weight: normal;
  margin-top: 40px;
}

.section-legals__content a {
  text-decoration: underline;
}

.section-legals__footer {
  display: flex;
  justify-content: center;
  margin: 50px 0 80px;
}
.section-legals__footer .button {
  max-width: 320px;
}

@media screen and (max-width: 768px) {
  .section-legals__container {
    padding: 15px;
    border-radius: 6px;
  }
  .section-legals__title {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .section-legals__footer {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/**
* Tooltip
*/

.c-tooltip {
  position: absolute;
  z-index: 100;
  left: 365px;
  width: 445px;
  opacity: 0;
  transition: left 200ms linear, opacity 200ms linear;
  pointer-events: none;
  margin-top: -30px;
}
.c-tooltip.is-large {
  width: 630px;
}
.c-tooltip:before,
.c-tooltip__content:before {
  content: "";
  width: 20px;
  height: 20px;
  background: #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: 40px;
  left: -10px;
}
.c-tooltip:before {
  z-index: 0;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, .3);
}
.c-tooltip.is-visible {
  opacity: 1;
  pointer-events: auto;
  left: 375px;
}
.c-tooltip__content {
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  z-index: 1;
  position: relative;
  background: #ffffff;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, .3);
}
.c-tooltip__content > * {
  position: relative;
  z-index: 10;
}
.c-tooltip__content:before {
  z-index: 2;
}
.c-tooltip__content p {
  margin: 0 0 5px;
}

@media screen and (max-width: 1024px) {
  .c-tooltip {
    left: 0;
    width: 100%;
    margin-top: 50px;
  }
  .c-tooltip.is-large {
    width: 100%;
  }
  .c-tooltip.is-visible {
    left: 0;
  }
  .c-tooltip:before,
  .c-tooltip__content:before {
    top: -10px;
    left: auto;
    right: 21px;
  }
}

/**
* Holding
*/
.section-holding {
  margin-bottom: 0;
}
.section-holding__image {
  display: flex;
  justify-content: center;
/*   max-width: 735px; */
  margin: 0 auto 0;
}

.section-holding__image.is-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .section-holding__image {
    display: none;
  }
  .section-holding__image.is-mobile {
    display: flex;
    margin-top: 20px;
    /*! max-width: 540px; */
  }
}
