  :root {
    --main-tph-color: #fff;
    --tph-naranja: #EB6608;
    --tph-rosa: #F4A7B0;
    --tph-gris: #8D8D8D;
    --tph-cuenta-atras: #e8871b;
    --tph-form-label: #ffffff;
    --tph-form-placeholder: #868686;
    --tph-form-input: #000;
    --tph-form-bg: #fff;
    --tph-font-body: 'carmensansregular';
    --tph-font-special: 'helveticaneuelight';
    --tph-font-special-2: 'carmensansextrabold';

    /************* 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: 'carmensansextrabold';
    src: url('../../../fonts/carmen-sans-extrabold.woff2') format('woff2'),
      url('../../../fonts/carmen-sans-extrabold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

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

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

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

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

  .font-especial-2 {
    font-family: var(--tph-font-special-2);
  }

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


  html,
  body {
    overflow-x: hidden;
  }


  body {
    font-family: var(--tph-font-body);
    color: rgb(0, 0, 0);
    background-color: var(--main-tph-color);
  }

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

  .bg-promo {
    background-color: transparent;
  }

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

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

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

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

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

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

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

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

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

  .cursor-pointer {
    cursor: pointer;
  }

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

  .btn-formulario {
    background-color: var(--tph-amarillo);
    color: #fff;
    font-family: var(--tph-font-special);
    font-size: 3rem;
    padding: 0rem 0rem;
    border-radius: 5rem;
    width: 100%;
  }

  .btn-formulario:hover {
    background-color: var(--tph-rojo);
    color: #ffffff;
  }

  .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: rgb(0, 0, 0);
  }

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

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

  .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: var(--tph-amarillo);
  }

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

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--main-tph-color);
  }

  /********************************************************************************** MENU  *******************************************************************************/
  #accesoMicuenta {
    z-index: 99999;
  }

  #mainMenu {
    padding-top: 0%;
    padding-bottom: 0%;
    position: relative;
  }

  #mainMenu .container-fluid {
    background-color: var(--tph-rosa);
    min-height: 4rem;
    color: #fff;
    z-index: 1;
  }

  .navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
  }

  .navbar-dark .navbar-brand {
    color: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link.active,
  .navbar-dark .navbar-nav .show>.nav-link {
    text-decoration: underline;
    text-transform: uppercase;
    font-family: var(--tph-font-special);
    color: var(--tph-amarillo);
    font-weight: bold;
  }

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

  /********************************************************************************** header  *******************************************************************************/

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

  #inicio .banner-header {
    background-color: var(--main-tph-color);
    max-width: 395px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 0rem 0rem 3rem 3rem;
  }

  #logoMenu {
    margin-top: 0rem;
    margin-bottom: 1rem;
    margin-left: 50%;
    transform: translate(-50%);
    max-width: 250px;
  }

  #inicio .sorteazo h1 {
    font-family: var(--tph-font-special);
    color: var(--tph-amarillo);
    font-size: 5rem;
    font-style: italic;

  }

  #inicio .banda-promo p {
    font-family: var(--tph-font-body);
    font-size: 1rem;
    color: #fff;
  }

  #inicio .banda-promo {
    padding: 0.25rem 3rem;
  }

  /********************************************************************************** mecánica  *******************************************************************************/
  #mecanica .display-1 {
    font-size: 8rem;
  }

  /********************************************************************************** Descuento  *******************************************************************************/
  #conjunto-ayuda {
    padding-left: 0%;
    padding-right: 0%;
  }

  #descuento {
    text-align: center;
    background-color: var(--tph-amarillo);
    margin-bottom: -1rem;
  }

  #descuento h1 {
    font-family: var(--tph-font-special);
    color: #fff;
    font-size: 4rem;
    margin-top: 3rem;

  }

  #descuento p {
    font-family: var(--tph-font-body);
    color: #fff;
    font-size: 1.5rem;

  }

  /********************************************************************************** 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);
    /* text-shadow     : 2px 2px #FF0620; */
  }

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

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

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

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

  #participa .container {
    height: 580px;
  }

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

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

  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 {
    color: var(--tph-form-input);
    background-color: var(--tph-form-bg);
    font-family: var(--font-textos);
    border-radius: 5rem;

  }

  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-gris);
    border-color: var(--tph-gris);
  }

  /* Container for 2 child elements (button & filename) */
  .fileUpload {
    background: #fff;
    border: 0;
    display: block;
    margin: 2% 0 5% 0;
    width: 100%;
    /* border radius */
    -o-border-radius: 5rem;
    -moz-border-radius: 5rem;
    -webkit-border-radius: 5rem;
    border-radius: 5rem;
  }

  /* The button */
  .fileUpload .fileBtn {
    background: #cecece;
    cursor: pointer;
    float: left;
    font-size: 1em;
    font-weight: bold;
    padding: 2% 0;
    text-align: center;
    width: 33%;
    /* border radius */
    -o-border-radius: 5rem 0 0 5rem;
    -moz-border-radius: 5rem 0 0 5rem;
    -webkit-border-radius: 5rem 0 0 5rem;
    border-radius: 5rem 0 0 5rem;
  }

  .fileUpload .fileBtn:hover {
    background: #bb7177;
  }

  /* Where the input-name will be filled in */
  .fileUpload .fileName {
    float: right;
    overflow: hidden;
    white-space: nowrap;
    width: 67%;
    text-align: center;
    color: #000;
    padding: 2% 0;
  }

  /* Animation (hover) */
  .fileUpload .fileBtn:hover {
    -webkit-transition-property: background;
    -webkit-transition-duration: 0.4s;
    -webkit-transition-timing-function: ease-in;
    -moz-transition-property: background;
    -moz-transition-duration: 0.4s;
    -moz-transition-timing-function: ease-in;
    -o-transition-property: background;
    -o-transition-duration: 0.4s;
    -o-transition-timing-function: ease-in;
    -ms-transition-property: background;
    -ms-transition-duration: 0.4s;
    -ms-transition-timing-function: ease-in;
    transition-property: background;
    transition-duration: 0.4s;
    transition-timing-function: ease-in;
  }

  /* Clear input-parent, due to child-floats */
  .fileUpload:after {
    clear: both;
    content: " ";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
  }

  .caja-boton {
    width: 25rem !important;
  }

  #div-formulario .col {
    margin-bottom: 20px;
  }

  #div-formulario input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 0.25rem;
    color: #495057;
  }

  .caja-boton {
    width: 100%;
    text-align: center;
  }

  .caja-boton .btn {
    width: 50%;
    margin-top: 10px;
  }

  #participa a {
    color: #fff;
  }

  #participa .btn-formulario {
    background-color: var(--tph-naranja);
  }


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

  #contacto {
    width: 100%;
    background-color: #fff;
    padding: 1rem;
  }

  .tel_promo a {
    text-decoration: none;
    color: #fff;
    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-rosa);
    position: sticky;
  }

  footer ul {
    list-style: none;
  }

  footer a {
    color: rgb(255, 255, 255);
    font-size: 0.8rem;
  }

  footer a:hover {
    text-decoration: underline;
    color: rgb(255, 255, 255)
  }

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

  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: 768px) {}

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

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

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

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

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