@font-face {
  font-family: "DIN-BLACK";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/TE/FONTS/DINosaur-Black.woff2") format("woff2"),
    url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/Runroom/Landing%20Page%20Zoomin/fonts/ttf/CaligraKids-DSans.ttf") format("ttf");
}

@font-face {
  font-family: "DIN-BOOK";
  font-style: normal;
  font-weight: 500;
  font-display: swap;

  src: url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/TE/FONTS/DINosaur-Book.woff2") format("woff2"),
    url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/TE/FONTS/DINosaur-Medium.eot") format("eot");

  /*
  src: url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/Runroom/Landing%20Page%20Zoomin/fonts/woff2/DINOffcPro.woff2") format("woff2"),
  url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/Runroom/Landing%20Page%20Zoomin/fonts/ttf/DINOffcPro.ttf") format("ttf");
  */

}

@font-face {
  font-family: "DINosaur";
  font-style: normal;
  font-weight: 700;
  font-display: swap;

  src: url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/TE/FONTS/DINosaur-Medium.woff2") format("woff2"),
    url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/TE/FONTS/DINosaur-Medium.eot") format("eot");

}

@font-face {
  font-family: "DIN-L";
  font-style: normal;
  font-weight: 700;
  font-display: swap;

  src: url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/TE/FONTS/DINosaur-Light.woff2") format("woff2"),
    url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/TE/FONTS/DINosaur-Light.eot") format("eot");


  /*
  src: url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/Runroom/Landing%20Page%20Zoomin/fonts/woff2/DINOffcPro-Medi.woff2") format("woff2"),
  url("https://5313163.fs1.hubspotusercontent-na1.net/hubfs/5313163/Runroom/Landing%20Page%20Zoomin/fonts/ttf/DINOffcPro-Medi.ttf") format("ttf");
  */



}


/* ==========================================================================
2. VARIABLES
========================================================================== */

/* 2.1 Vertical Rythm */
:root {
  --vr: 18px;
}



@media (min-width: 768px) {
  :root {
    --vr: 20px;
  }
}

/* 2.2 Wrappers */
:root {
  --wrapperWidth: 1441px;
  --wrapperReadingWidth: 750px;
  --wrapperPaddingLeft: 16px;
  --wrapperPaddingRight: 16px;
}

/* 2.3 Colors */
:root {
  --c-white: #FFFFFF;
  --c-black: #000000;
  --c-neutro100: #F2F2F2;
  --c-neutro300: #D8D8D8;
  --c-neutro500: #959595;
  --c-neutro800: #474747;
  --c-pink100: #FFE6E3;
  --c-pink200: #F2D589;
  --c-pink200TE: #fad735;
  --c-pink200TEVERDE: #badbc2;
  --c-pink300: #FF8282;
  --c-green100: #E5EA9D;
  --c-green200: #BFF7DC;
  --c-orange: #FFBC88;
  --c-TEROSA: #ef85b4;
}


/* 2.4 Font Sizes & Line heights */
:root {
  --baseFontSize: 16px;
  --baseLineHeight: 30px;
  --psmallFontSize: 18px;
  --psmallLineHeight: 26px;
  --h1FontSize: 64px;
  --h1LineHeight: 44px;
  --h2FontSize: 35px;
  --h2LineHeight: 44px;
  --h3FontSize: 28px;
  --h3LineHeight: 36px;
}

@media (max-width: 767px){
  :root {
  --h1LineHeight: 36px;
  
  }
}


@media (min-width: 767px) {
  :root {
    --baseFontSize: 20px;
    --baseLineHeight: 40px;
    --psmallFontSize: 20px;
    --psmallLineHeight: 28px;
    --h1FontSize: 98px;
    --h1LineHeight: 60px;
    --h2FontSize: 60px;
    --h2LineHeight: 70px;
    --h3FontSize: 36px;
    --h3LineHeight: 50px;
  }
}


*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
  font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
}

/* 3.2 Highlighted Text */


html,
body {
  font-weight: 500;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Typography spacings reset */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
}
/*
/* JL: Visualización de los iconos en escritorio y móvil */
.mobile-view {
  display: none !important;
} /*

@media (max-width: 768px) {
.desktop-view {
  display: none !important;
} 
.mobile-view {
  display: flex !important;
  justify-content: space-around;


}   */
}



/* 3.3 Wrapper settings */
.container-fluid .row-fluid .u-wrapper {
  float: none;
  max-width: var(--wrapperWidth);
  margin: 0 auto;
  padding-left: var(--wrapperPaddingLeft);
  padding-right: var(--wrapperPaddingRight);
}

.container-fluid .row-fluid .u-wrapper--billboard {
  float: none;
  max-width: var(--wrapperWidth);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .container-fluid .row-fluid .u-wrapper--billboard {
    padding-left: var(--wrapperPaddingLeft);
    padding-right: var(--wrapperPaddingRight);
  }
}

.container-fluid .row-fluid .u-wrapper--reading {
  float: none;
  max-width: var(--wrapperReadingWidth);
  margin: 0 auto;
  padding-left: var(--wrapperPaddingLeft);
  padding-right: var(--wrapperPaddingRight);
}




/* 3.4 Typography Sizes and Line Heights */
h1,
.t-h1 {
  font-size: var(--h1FontSize);
  line-height: var(--h1LineHeight);
}

h2 {
  font-size: var(--h2FontSize);
  line-height: var(--h2LineHeight);
}

.t-h2 {
  font-size: var(--h2FontSize) !important;
  line-height: var(--h2LineHeight) !important;
}

h3 {
  font-size: var(--h3FontSize);
  line-height: var(--h3LineHeight);
}

.t-h3 {
  font-size: var(--h3FontSize) !important;
  line-height: var(--h3LineHeight) !important;
}

h4 {
  font-size: 40px;
  line-height: var(--h3LineHeight);
}



p {
  font-size: var(--baseFontSize);
  line-height: var(--baseLineHeight);
}

.p-small {
  font-size: var(--psmallFontSize);
  line-height: var(--psmallLineHeight);
}

.p-big {
  font-size: var(--pbigFontSize);
  line-height: var(--pbigLineHeight);
}

/* 3.5 EU Cookie Confirmation Bar */

/* Confirmation Outer Wrapper*/
#hs-eu-cookie-confirmation {}

/* Confirmation Inner Wrapper*/
#hs-eu-cookie-confirmation-inner {}

#hs-eu-cookie-confirmation-inner p {}

/* Confirmation Button */
#hs-en-cookie-confirmation-buttons-area {}

a#hs-eu-confirmation-button {}


/* ==========================================================================
4. COS STRUCTURE
========================================================================= */

/* =============== Structure =============== */

/* The outer wrappers of your website */
.header-container-wrapper,
.body-container-wrapper,
.footer-container-wrapper {}

/* The inner wrappers of your website */
.header-container,
.body-container,
.footer-container {}


/* =============== Header =============== */
.header-container-wrapper {}

.header-container {}


/* =============== Content =============== */
.body-container-wrapper {}

.body-container {}

.content-wrapper {}

.main-content {}

.sidebar {}

.sidebar.right {}

.sidebar.left {}


/* =============== Footer =============== */
.footer-container-wrapper {}

.footer-container {}



html,
body {
  background: var(--c-white), #FFFFFF;
  color: var(--c-neutro800);
  font-family: 'DIN-L', HelveticaNeue-Light, Helvetica Neue Light, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;
  font-size: var(--baseFontSize);
  font-weight: 300;
  line-height: var(--baseLineHeight);
  text-size-adjust: 100%;
}


/* JLRC: Fuentes Portatil */


@media (max-width: 767px) {
  h1 {
    font-family: 'DIN-BLACK';
    font-size: 35px;
    font-weight: 500;
  }
}

@media (min-width: 768px) {

  h1 {
    font-family: 'DIN-BLACK';
    font-size: 60px;
    font-weight: 500;
  }

  h2 {
    font-family: 'DIN-BOOK';
    font-size: 52px;
    font-weight: 500;
  }

  h3 {
    font-family: 'DINosaur';
    font-size: 30px;
    font-weight: normal;
  }

  h4 {
    font-family: 'DINosaur';
    font-size: 26px;
    font-weight: normal;
  }


}

@media (min-width: 1024px) and (max-width: 1400px) {

  h2 {
    font-size: 40px;
  }
}


.talking__pen {
  background-color: #fef3e9;
  color: #d25d5e;
  padding: 0px 100px 0px 100px;
}

.app_mylocker {
  background-color: #e4f6ec;
  padding: 30px 100px 30px 100px;

}

.compromiso {
  background-color: #fef3e9; 
  padding: 25px 100px 0px 100px;
}

/* Links */
a {
  color: #191919;
  cursor: pointer;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}



/* JLRC: Sentidos */

.sentidos__wrapper {
  flex-basis: 100vw;
  position: block;   
  display: flex !important;
  justify-content: center; 
}

.sentidos__wrapper_movil {
  flex-basis: 100vw;
  position: block;   
  display: none !important;
  justify-content: center; 
}

/* JLRC: Descripción App My App */

.icons__wrapper {
  position: relative;
  top: -2px;
  background-color: #d9f3e4;
  padding: 0px 100px 0px 100px;

}



/* JLRC: Formulario */
.pie_logo {
  text-align: center; 
}


/* Buttons */

.rr_cta,
body .hs-button.primary,
body input[type="submit"],
body input[type="button"] {
  background-color: var(--c-green200);
  border: 3px solid var(--c-white);
  color: var(--c-neutro900);
  cursor: pointer;
  border-radius: 30px;
  font-family: 'DINosaur';
  font-size: var(--baseFontSize);
  font-weight: 700;
  line-height: 24px;
  width: 100%;
  padding: calc(var(--vr) * 0.75) calc(var(--vr) * 2);
  text-align: center;
}


.wrapper_audios {
  flex-grow: 1;
  z-index: 2; 
  height: 490px;
  text-align: center; 
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .wrapper_audios {
    height: 560px;
  }
}

.wrapper_audios_fila {

  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;




}




@media (min-width: 767px) {

  .rr_cta,
  body .hs-button.primary,
  body input[type="submit"],
  body input[type="button"] {
    width: auto;
  }
}

.rr_cta.rr_cta--secondary {
  background-color: transparent;
  border: 2px solid var(--c-neutro900);
  color: var(--c-neutro900);
}

.rr_cta.rr_cta--secondary:hover {
  background-color: var(--c-neutro900);
  color: var(--c-neutro100);
  transition: all .1s ease-in-out;
}

.rr_cta-sticky {
  background-color: var(--c-white);
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: var(--wrapperPaddingLeft);
  padding-right: var(--wrapperPaddingRight);
  z-index: 4;
}

@media (min-width: 767px) {  
  .rr_cta-sticky {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}



/* Estilos ROOT */


/* Button timers */

.rr_cta-sticky--timerOn {
  display: block;
}

.rr_cta-sticky--timerFinished {
  display: none;
}


/* BILLBOARD */

.billboard {
  background-color: #d9f3e4;
}

.billboard__bg {
  display: none;
}

.billboard__img {
  height:100vh;
}

.billboard__text {
  background-color: #d9f3e4;
  position: absolute;
  top: 35%;
  left: 50%; 
  height: 30%;
  width: 45%;   
}

.billboard--thank {
  background-color: #FF9B9B;
}

/* DESCARGA */

.descarga__app_ordenador {
  display:none !important; 
}






@media (min-width: 1023px) {
  .billboard__bg-wrapper {
    display: block !important;
    position: absolute !important;
    width: 62% !important;  
    z-index: 14;  
  }

  .billboard__text {
    top: 20%;
    left: 45%;
  }

  .billboard__logo {
    left: 40px; 
    top: 25px;
    width: 155px !important;
  }
}




/* Intr */

.intro__title {
  color: var(--c-pink300);
}

.intro__flower img {
  -webkit-animation:spin 10s linear infinite;
  -moz-animation:spin 10s linear infinite;
  animation:spin 10s linear infinite;
}

@-moz-keyframes spin { 
  100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
  100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
  100% { 
    -webkit-transform: rotate(360deg); 
    transform:rotate(360deg); 
  } 
}
/* Module Styles */

/* Countdown Timer */

.countdown-timer__wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-timer__item {
  background: rgba(255, 255, 255, .9);
  border: 2px solid var(--c-neutro800);
  border-radius: 100%;
  position: relative;
  max-width: 129px;
  width: calc(45% - 16px);
  margin-top: calc(var(--vr) * 1)
}

@media (min-width: 767px) {
  .countdown-timer__item {
    margin-top: 0;
    width: calc(25% - 50px);
    max-width: 132px;
  }
}

.countdown-timer__item::before {
  content: "";
  padding-top: 100%;
  position: relative;
  display: block;
}

.countdown-timer__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.countdown-timer__number,
.countdown-timer__text {
  display: block;
  text-align: center;
}

.countdown-timer__number {
  color: var(--c-pink300);
  font-size: 52px;
  line-height: 58px;
  font-family: 'DINosaur';
  font-weight: 700;
}

.countdown-timer__text {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}

@media (min-width: 767px) {
  .countdown-timer__number {
    font-size: 54px;
    line-height: 57px;
  }

  .countdown-timer__text {
    font-size: 16px;
    line-height: 24px;
  }
}



/* JLRC: Cuenta Regresiva */

.countdown-timer__item:nth-child(even) {
  margin-left: 32px;
}

@media (min-width: 767px) {
  .countdown-timer__item:not(:first-child) {
    margin-left: 50px;
  }
}


/* JLRC: Linda House */
.lindahouse {
  display: none !important;

}

/* JLRC: Flip-flop */

.flip-flop {
  position: relative;
  z-index: 2;
}

.flip-flop__image {
  float: none !important;
}

.flip-flop__image img {
  width: 100%;
}

.flip-flop--first {
  background-color: #f2b5b2;
}

.flip-flop--second {
  background-color: var(--c-TEROSA);
}

.flip-flop__text {
  margin-left: 0 !important;
  padding-left: 38px;
  padding-top: 60px;
  padding-right: 38px;
  padding-bottom: 30px;
}
/*DR - Ujuste bloque inicial,
.flip-flop__bilb {
margin-left: -100px !important;
padding-left: 38px;
padding-top: 100px;
padding-right: 38px;
padding-bottom: 30px;*/
}

.flip-flop__bg .rr-bg {
  height: 50%; 
}

.flip-flop__bg-wrapper {
  display: none !important;
}

.flip-flop__image-wrapper {
  margin-left: -16px !important;     
  margin-right: -16px !important;
  height: 300px;  /* JLRC: !important estaba antes en 400px es el tamaño vertical del flip flop */
}

/* JLRC: Flip-flop Media Query */

@media (min-width: 767px) {
  .flip-flop {
    min-height: auto !important;
  }

  .flip-flop__image-wrapper {
    margin-left: -16px !important;     
    margin-right: -16px !important;
    height: 400px; /* JLRC: !important estaba antes en 400px es el tamaño vertical del flip flop */
  }

  .flip-flop--first .flip-flop__text {
    padding: 120px 20px 20px 60px; 
  }

  .flip-flop--second .flip-flop__text {
    padding: 30px 60px 20px 20px 
  }

  .flip-flop--reverse .flip-flop__bg-wrapper {
    right: 0;
  }

  .flip-flop__bg-wrapper {
    display: block !important;
    position: absolute !important;
    width: 55% !important;
    z-index: 14;
    height: 100%; !important;
  }

  .flip-flop__bg {
    height: 100%; !important;
    position: absolute !important;
    z-index: 14;
  }

  .flip-flop--reverse .row-depth-1 .row-fluid {
    display: flex !important;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .flip-flop-image__wrapper {
    width: 100%;
  }

  .flip-flop__bg .rr-bg {
    width: 100%;
    height: 100%; 
  } 

  .flip-flop--second .flip-flop__bg .rr-bg {
    right: 0;
  } 

  /*DR - Ujuste bloque inicial,
  .flip-flop__Bilb {
    margin-left: -150px !important;
    padding-left: 38px;
    padding-top: 100px;
    padding-right: 38px;
    padding-bottom: 30px;
  }
}*/




/*.flip-flop--first .flip-flop__text {
  padding: 150px 60px 0px 0px; 

}*/


@media (min-width: 1400px) {

  /*DR - Ujuste bloque inicial,*/
  .flip-flop__Bilb {
    margin-left: -55px !important;
    /* padding: 150px 0px 0px 0px;*/
  }

}

@media (min-width: 1600px) {

  /*DR - Ujuste bloque inicial,*/
  .flip-flop__Bilb {
    margin-left: -80px !important;
    /* padding: 150px 0px 0px 0px;*/
  }

}

@media (min-width: 1920px) {
  .flip-flop {
    min-height: 600px !important;
  }

  /*DR - Ujuste bloque inicial,*/
  .flip-flop__Bilb {
    margin-left: -80px !important;
    /* padding: 150px 60px 0px 0px;*/
  }

}


@media (min-width: 2400px) {
  .flip-flop__Bilb {
    margin-left: -100px !important;

  }
}




/* icons */

.icons {
  color: var(--c-white);
}

.icons__icon {
  max-width: 115px;
}

.icon.animated .icons__icon img {
  -webkit-animation: upDown 1s 1s 1 alternate;
  animation: upDown 1s 1s 1 alternate;
}

@keyframes upDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.icons__image-wrapper {
  display: flex !important;
  justify-content: center;
}

/* share */

.share__bee #lottie-share-bee {
  width: 75px;
  margin: 0 auto;
}

@media (min-width: 767px) {
  .share__bee #lottie-share-bee {
    width: 110px;
  }
}

.share__bg {
  position: absolute;
  top: 0;
  z-index: -1;
}

@media (min-width: 767px) {
  .share__bg {
    top: 50%;
    transform: translateY(-50%);  
  }
}










/* Scroll down */

.rr_scroll-down {
  bottom: calc(var(--vr));
  border-radius: 100%;
  height: 48px;
  width: 48px;
}
.rr_scroll-down__icon-static {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Text Icon */
.rr_text-icon {
  font-weight: bold;
}
  
  
  .Appicon {
  font-weight: bold;
  font-size: 12px;
  Text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}