  :root {
    --main-tph-color: #FFC629;
    --tph-amarillo: #FFC629;
    --tph-rosa: #E01C7E;
    --tph-naranja: #E1251B;
    --tph-gris: #464646;
    --tph-lila: #90268F;
    --tph-cuenta-atras: #e8871b;
    --tph-form-label: #fff;
    --tph-form-placeholder: white;
    --tph-form-input: black;
    --tph-form-bg: #fff;
    --tph-font-body: 'jollygoodproperregular';
    --tph-font-jgp-bold: 'jollygoodproperbold';
    --tph-font-jgp-extra-bold: 'jollygoodproperextrabold';
    --tph-font-jgp-regular: 'jollygoodproperregular';

    /************* VARIABLES DE COLOR *************/
    /* Fondo del contenedor del carrusel */
    --tph-carousel-bg-color: #EEE;
    /* Fondo de las celdas (si no hay imagen) */
    --tph-carousel-cell-bg-color: #8C8;
    /* Color del texto descriptivo */
    --tph-carousel-text-color: #666;
    /* Color del título del servicio */
    --tph-carousel-title-color: #000;
    /* Color de la línea horizontal */
    --tph-carousel-hr-color: #CCC;

    /************* VARIABLES DE TAMAÑO *************/
    /* Ancho de las celdas del carrusel */
    --tph-carousel-cell-width: 600px;
    /* Altura de las celdas del carrusel */
    --tph-carousel-cell-height: 443px;
    /* Margen derecho de las celdas */
    --tph-carousel-cell-margin-right: 10px;
    /* Bordes redondeados de las celdas */
    --tph-carousel-border-radius: 5px;

    /************* VARIABLES DE TIPOGRAFÍA *************/
    /* Familia de fuente */
    --tph-carousel-font-family: sans-serif;
    /* Tamaño del título del servicio */
    --tph-carousel-title-font-size: 18px;
    /* Tamaño de la fuente de la descripción */
    --tph-carousel-description-font-size: 14px;
    /* Espacio arriba de la descripción */
    --tph-carousel-description-margin-top: 10px;
    /* Margen arriba y abajo de la línea horizontal */
    --tph-carousel-hr-margin: 5px 0;

  }

  /********************************************************************* fuentes *********************************************************/

  @font-face {
    font-family: 'jollygoodproperbold';
    src: url('../../../fonts/jollygoodproper-bold.woff2') format('woff2'),
      url('../../../fonts/jollygoodproper-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'jollygoodproperextrabold';
    src: url('../../../fonts/jollygoodproper-extrabold.woff2') format('woff2'),
      url('../../../fonts/jollygoodproper-extrabold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'jollygoodproperregular';
    src: url('../../../fonts/jollygoodproper-regular.woff2') format('woff2'),
      url('../../../fonts/jollygoodproper-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }


  .font-body {
    font-family: var(--tph-font-body);
  }

  .font-jgp-bold {
    font-family: var(--tph-font-jgp-bold);
  }

  .font-jgp-extra-bold {
    font-family: var(--tph-font-jgp-extra-bold);
  }

  .font-jgp-regular {
    font-family: var(--tph-font-jgp-regular);
  }

  .font-arial {
    font-family: Arial, Helvetica, sans-serif;
  }

  .font-georgia {
    font-family: 'georgia';
  }

  .font-georgia-i {
    font-family: 'georgiai';
  }

  .font-typold {
    font-family: 'Typold Regular';
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-family: var(--tph-font-body);
    color: white;
    background-color: var(--main-tph-color);
  }

  img,
  iframe {
    max-width: 100%;
  }

  .bg-promo {
    background-color: var(--tph-amarillo);
  }

  .bg-menu {
    background-color: var(--tph-amarillo);
  }

  .bg-amarillo {
    background-color: var(--tph-amarillo);
  }

  .bg-rosa {
    background-color: var(--tph-rosa);
  }

  .bg-naranja {
    background-color: var(--tph-naranja);
  }

  .bg-gris {
    background-color: var(--tph-gris);
  }

  .bg-lila {
    background-color: var(--tph-lila);
  }

  .color-amarillo {
    color: var(--tph-amarillo);
  }

  .color-rosa {
    color: var(--tph-rosa);
  }

  .color-naranja {
    color: var(--tph-naranja);
  }

  .color-gris {
    color: var(--tph-gris);
  }

  .color-lila {
    color: var(--tph-lila);
  }

  .cursor-blocked {
    cursor: not-allowed;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .alert-error {
    margin-bottom: .5rem;
  }

  .cookies {
    z-index: 99999;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /********************************************************************* Botones *********************************************************/

  .btn-formulario {
    background-color: var(--tph-amarillo);
    color: var(--tph-rosa);
    font-family: 'jollygoodproperbold';
    /* font-size: 2.5rem; */
    font-size: 1.6rem;
    padding: 0rem 0rem;
    border-radius: 5rem;
    width: 70%;
  }

  .btn-formulario:hover {
    background-color: var(--tph-rosa);
    color: var(--tph-amarillo);
  }

  .btn-formulario:focus {
    background-color: var(--tph-amarillo);
    color: rgb(255, 255, 255);
  }

  .btn-promo {
    background-color: rgb(0, 0, 0);
    color: #fff;
  }

  .btn-promo:hover {
    background-color: rgb(255, 255, 255);
    color: white;
  }

  .btn-promo:focus {
    background-color: rgb(255, 255, 255);
    color: white;
  }

  .btn-round-negativo {
    border-radius: 1.3rem !important;
    background-color: rgb(255, 255, 255);
    color: white;
  }

  .gradiente-texto {
    background-clip: text;
    -webkit-background-clip: text;
    /* Para navegadores basados en WebKit, como Chrome y Safari */
    color: transparent;
    background-image: linear-gradient(to right, #00B09F, #004862);
  }

  /********************************************************************* scrollbar css *********************************************************/
  /* width */
  ::-webkit-scrollbar {
    width: 5px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: white;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--tph-dorado);
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: black;
  }

  .alert {
    font-family: 'Typold Regular';
  }

  /********************************************************************************** MENU  *******************************************************************************/

  #logo {
    max-width: 100px;
  }

  .navbar-brand {
    max-width: 210px;
  }

  #accesoMicuenta {
    z-index: 99999;
    font-family: 'Typold Regular';
  }

  #mainMenu {
    font-family: 'jollygoodproperbold';
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 0%;
    padding-bottom: 0%;
    position: relative;
  }

  #mainMenu .container-fluid {
    background-color: var(--tph-amarillo);
    min-height: 4rem;
    color: var(--tph-naranja) !important;
    z-index: 1;
  }

  #mainMenu .nav-link {
    color: var(--tph-naranja);
  }

  /* .navbar-dark .navbar-nav .nav-link {
    color: var(--tph-naranja);
  }

  .navbar-dark .navbar-brand {
    color: var(--tph-naranja);
  }

  .navbar-dark .navbar-nav .nav-link.active,
  .navbar-dark .navbar-nav .show>.nav-link {
    color: var(--tph-naranja) !important;
  } */

  .fixed-top {
    position: fixed !important;
  }

  /********************************************************************************** INICIO  *******************************************************************************/

  .sin-sorteos {
    color: white;
    background-color: var(--tph-naranja);
    padding: 0.2em 0.5em;
    transform: rotate(-5deg);
  }

  .una-peli {
    color: var(--tph-lila);
    transform: rotate(-5deg);
  }

  .de-alquiler {
    color: white;
    transform: rotate(-5deg);
    line-height: 0.5;
  }

  .gratis {
    color: var(--tph-lila);
    transform: rotate(-5deg);
  }

  .con-cada-pack {
    color: white;
    transform: rotate(-5deg);
    line-height: 0.5;
  }

  .participa {
    color: var(--tph-amarillo);
    background-color: var(--tph-naranja);
    padding: 0.2em 1em;
    border-radius: 0.5em;
    transform: rotate(-5deg);
    display: inline-block;
    text-align: center;
  }

  .highlighted-text {
    font-family: var(--tph-font-jgp-extra-bold);
    padding: 0.1em 0.3em;
    transform: rotate(-5deg);
    font-size: 3.5em;
    border-radius: 0.2em;
    color: var(lila);
    /* Color del texto principal */
    -webkit-text-stroke: 3px var(--tph-amarillo);
    /* Borde del texto: grosor y color */
    text-fill-color: var(lila);
    /* Color de relleno del texto, solo necesario si el borde usa -webkit-text-stroke */
    text-shadow:
      -2px -2px 0 var(--tph-amarillo),
      2px -2px 0 var(--tph-amarillo),
      -2px 2px 0 var(--tph-amarillo),
      2px 2px 0 var(--tph-amarillo);
  }

  /********************************************************************************** mecánica  *******************************************************************************/

  .palomita {
    max-width: 120px;
  }

  /********************************************************************************** countdown  *******************************************************************************/

  #countdown {
    font-family: var(--tph-font-special);
    font-size: 2rem;
  }

  #countdown .wrapper {
    text-align: center;
  }

  #countdown .time {
    color: var(--tph-amarillo);
    font-size: 3rem;
    padding: 0.25rem;
  }

  #countdown .label {
    font-size: 1.8rem;
    display: block;
    color: var(--tph-amarillo);
  }

  #countdown svg {
    font: bold 5rem;
    width: 100%;
    height: 120px;
  }

  #countdown text {
    fill: none;
    stroke: var(--tph-amarillo);
    stroke-width: 6px;
    stroke-linejoin: round;
    animation: 2s pulsate infinite;
  }

  @keyframes pulsate {
    50% {
      text-shadow: 4px 4px #fff;
    }
  }

  /********************************************************************************** participa  *******************************************************************************/

  .flecha {
    margin-top: -1px;
  }

  #participa .input-group-text {
    display: none;
  }

  form#formReg_l label {
    display: block;
    color: var(--tph-form-label);
  }

  form#formReg_l input {
    border-radius: 5rem;
    border-color: white;
  }

  form#formReg_l .form-control {
    color: var(--tph-form-input);
    background-color: var(--tph-form-bg);
    font-size: 1rem;
    font-family: var(--font-textos);
  }

  form#formReg_l .form-select {
    border-color: white;
    background-color: var(--tph-form-bg);
    font-family: var(--font-textos);
    border-radius: 5rem;
    color: black;
  }

  form#formReg_l label.custom-control-label {
    display: block !important;
    color: var(--tph-form-label);
    font-size: 1rem;
  }

  form#formReg_l .form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--tph-form-placeholder);
    opacity: 1;
    /* Firefox */
  }

  form#formReg_l .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--tph-form-placeholder);
  }

  form#formReg_l .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--tph-form-placeholder);
  }

  form#formReg_l .form-select::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--tph-form-placeholder);
    opacity: 1;
    /* Firefox */
  }

  form#formReg_l .form-select:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--tph-form-placeholder);
  }

  form#formReg_l .form-select::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--tph-form-placeholder);
  }

  form#formReg_l a {
    color: var(--tph-form-label);
  }

  form option {
    color: #000000;
    font-size: 1rem;
  }

  form option:hover {
    background-color: #ffffff;
  }

  form .input-group-text {
    background: transparent;
    color: #fff;
    border: none;
  }

  form .form-check-input:checked {
    background-color: var(--tph-amarillo);
    border-color: var(--tph-amarillo);
  }

  .form-check-input {
    --bs-form-check-bg: var(--tph-rosa);
  }

  /********************************************************************************** premios  *******************************************************************************/



  /********************************************************************************** contacto  *******************************************************************************/

  #contacto {
    width: 100%;
    /* background-color: var(--tph-dorado); */
    padding: 1rem;
  }

  #contacto h1 {
    font-size: 4rem;
  }

  #contacto h2 {
    font-size: 2rem;
  }

  .tel_promo a {
    text-decoration: none;
    color: var(--tph-rosa);
    /* font-size: 1.5rem; */
    text-align: end;
  }

  .email_contacto a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    text-align: start;
  }

  /********************************************************************************** footer  *******************************************************************************/

  footer {
    background-color: var(--tph-amarillo);
    position: sticky;
    font-family: 'Typold Regular';
  }

  footer ul {
    list-style: none;
  }

  footer a {
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s color;
  }

  footer a:hover {
    color: black;
  }

  footer .small {
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
  }

  footer img .small {
    max-width: 1.5rem;
  }

  .logoBonduellPie {
    max-width: 8rem;
  }

  .pull-right {
    float: right;
  }

  .xs-d-flex {
    flex-direction: column;
  }

  /********************************************************************************** Area personal  *******************************************************************************/
  .card-width {
    min-width: 10rem;
  }

  .flex-adapt {
    flex-direction: column !important;
  }

  /********************************************************************************** textos  *******************************************************************************/

  /********************************************************************************** media query  *******************************************************************************/

  @media (min-width: 536px) {
    .highlighted-text {
      font-size: 4.5em;
    }
  }

  @media (min-width: 636px) {
    .highlighted-text {
      font-size: 5.5em;
    }
  }

  @media (min-width: 768px) {
    .highlighted-text {
      font-size: 6.5em;
    }
  }

  @media (min-width: 992px) {
    .sin-sorteos {
      font-size: 1.5em;
    }

    .de-alquiler {
      font-size: 1em;
    }

    .con-cada-pack {
      font-size: 1em;
    }

    .highlighted-text {
      font-size: 3.5em;
    }

    .margin-pasos {
      margin-top: -70px;
    }
  }

  @media (min-width: 1024px) {}

  @media (min-width: 1200px) {

    .sin-sorteos {
      font-size: 2em;
    }

    .de-alquiler {
      font-size: 1.5em;
    }

    .con-cada-pack {
      font-size: 1.5em;
    }

    .highlighted-text {
      font-size: 4.5em;
    }

    #contacto .d-none {
      display: block !important;
    }

    #contacto .tel_promo {
      font-size: 2rem;
    }

    .navbar-brand {
      margin-left: 5rem;
    }

    .navbar-collapse {
      margin-right: 5rem !important;
    }

  }

  @media (min-width: 1400px) {}

  @media (min-width: 1600px) {

    #mainMenu,
    section,
    header,
    footer {
      max-width: 1920px;
      margin: 0 auto;
    }


  }

  @media(min-width:1800px) {
    .sin-sorteos {
      font-size: 3em;
    }

    .de-alquiler {
      font-size: 2em;
      line-height: 0.5;
    }

    .con-cada-pack {
      font-size: 2em;
      line-height: 0.5;
    }

    .highlighted-text {
      font-size: 7.5em;
    }
  }