/* ============================================== */
/* COLOR */
/* ============================================== */

:root{

/*-- Font Family --*/

    --f-family:   'Inter', sans-serif;
    --f-family-h: 'Readex Pro', sans-serif;

    /*-- Colors --*/

    --color-orange: rgb(253, 133, 0);
    --color-orange-h: rgb(255, 159, 53);

    --color-orange-btn: 253, 133, 0;
    --color-red: #A5232D;

    --color-green: #00AA15;

/*-- Font Size --*/

  --fs-base:    1rem;
  --lh-base:    1.5;

}

#wg-if-wrapper-conversso{
  z-index: 9999 !important;
}

.c-orange{ background: var(--color-orange); }
.c-trans { background: rgba(255,255,255,0.8); }
.c-deg{ background: linear-gradient(#e8eef7, #ffffff); }
.tc-orange{ color: var(--color-orange); }
.c-red { background: var(--color-red); }
.c-green { background: var(--color-green); }


b{
  font-weight: var(--f-weight-m);
}

.code{
  white-space: wrap;
  overflow: scroll;
  white-space: pre-wrap;
  border-radius: 5px;
  margin-top: 20px;
  background: #e6d9ff;
}

/* ============================================== */
/* TEXT */
/* ============================================== */

h1,h2,h3,h4,h5,h6    {  color: var(--color-90);  }
p,li                 {  color: var(--color-60);  }

p,h1,h2,h3,h4,h5,h6  {  margin:10px 0;  }

p,li,a,body,pre,label{  font-weight: 400;  }
h1,h2,h3,h4,h5,h6    {  font-weight: 600;  }
b                    {  font-weight: 600;  }

/* ============================================== */
/* BTN */
/* ============================================== */

.btn.c-color {
  font-weight: bold;
  max-width: 220px;
}

.c-color{
  background-color: var(--color-orange);
  animation: colorChange 1s infinite; /* Duración 3 segundos, loop infinito */
  transition: background-color 0.1s;
}

@keyframes colorChange {
  0% {
    background-color: var(--color-orange);
  }
  50% {
    background-color: var(--color-red);
  }
  100% {
    background-color: var(--color-orange);
  }
}

/* ============================================== */
/* IMGE MOBILE */
/* ============================================== */

.img-mobile{
  display: none;
}

@media screen and (max-width: 1024px){
  .img-mobile{
    display: block;
  }
}

.modelos{
  background:#ffffff;
  padding: 10px 20px;
  border-radius: 10px;
}

/* ============================================== */
/* BTN */
/* ============================================== */

.btn.w-auto{
  width: auto;
}

.btn.c-orange:hover{
  background: var(--color-orange-h);
}

.btn.c-grey:hover{
  background: var(--color-orange-h);
}

@media screen and (max-width: 1024px){
  .btn-google{
    width: 175px;
  }
}

@media screen and (max-width: 768px){
  .btn-google{
    width: 48%;
  }
}

/* ============================================== */
/* MENU LISTA */
/* ============================================== */

.menu-lista li{
 padding-left: 20px;
 margin: 5px 0;
}

.menu-lista{
  list-style-type: decimal;
  margin-left: 20px;
}

/* ============================================== */
/* T-JUSTIFY */
/* ============================================== */

.t-justify p{
  text-align: justify;
}

.t-justify h2{
  margin-top: 30px;
}

/* ============================================== */
/* SUBPAGE */
/* ============================================== */

.subpage{
  margin-top: 140px;
}

@media screen and (max-width: 1080px){
  .subpage{
    margin-top: 70px;
  }
}

/* ============================================== */
/* RESEÑA */
/* ============================================== */

.resena{
  position: relative;
  padding-left: 50px;
}

.resena:before{
  content: url("./../../images/icons/body/quotes.svg");
  width: 30px;
  height: 30px;
  position: absolute;
  top:0;
  left: 0;
}

/* ============================================== */
/* ITEM */
/* ============================================== */

.item{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.item .input{
  margin: 10px 0;
}

.item .input:first-child{
  width: 150px;
}

/* ============================================== */
/* ICON LOCAL */
/* ============================================== */

:root{
  --Icon-size: 50px;
  --Icon-wrap: 50px;
}

.icon_local {
    height: var(--Icon-wrap);
    width: var(--Icon-wrap);
    padding: 0;
    position: relative;
    display: block;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.icon_local::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: " ";
    background-image: url("./../../images/body/sprite_local.svg");
    background-size: calc(var(--Icon-size) * 10);
    overflow: hidden;
    position: absolute;
    height: var(--Icon-size);
    width: var(--Icon-size);
}

.icon_local_img_1::before { background-position: 0 0; }
.icon_local_img_2::before { background-position: calc(-1 * var(--Icon-size)) 0; }
.icon_local_img_3::before { background-position: calc(-2 * var(--Icon-size)) 0; }
.icon_local_img_4::before { background-position: calc(-3 * var(--Icon-size)) 0; }
.icon_local_img_5::before { background-position: calc(-4 * var(--Icon-size)) 0; }
.icon_local_img_6::before { background-position: calc(-5 * var(--Icon-size)) 0; }
.icon_local_img_7::before { background-position: calc(-6 * var(--Icon-size)) 0; }
.icon_local_img_8::before { background-position: calc(-7 * var(--Icon-size)) 0; }
.icon_local_img_9::before { background-position: calc(-8 * var(--Icon-size)) 0; }
.icon_local_img_10::before { background-position: calc(-9 * var(--Icon-size)) 0; }


/* ============================================== */
/* ALERTS */
/* ============================================== */

.alert{
  width: auto;
  overflow: hidden;
  padding:15px 20px;
  position: fixed;
  text-align: center;
  z-index: 999;
  left: 50%;
  border-radius: 10px;
  bottom: 0;
  transform: translate(-50%,-50%);
  opacity: 0;
}

.alert p{
  font-weight: 600;
  margin: 0;
}

.alert.alert-warning{
  background: #FFCCCC;
  border:1px solid #F7A7A7;
}

.alert.alert-warning p{
  color:#4F2222;
}

.alert.alert-success{
  background: #A3EF97;
  border:1px solid #7FD072;
}

.alert.alert-success p{
  color:#284F22;
}

.show {
  display: block !important;
  animation-name: show;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}

@keyframes show {
  0%   { opacity: 0; bottom: 0;}
  10%  { opacity: 1; bottom: 30px;}
  90%  { opacity: 1; bottom: 30px;}
  100% { opacity: 0; bottom: 0;}
}


/* ============================================== */
/* MED-MT-50 */
/* ============================================== */

@media screen and (max-width: 1440px){
  .med-mt-50{
    top: 50px;
  }
}

@media screen and (max-width: 768px){
  .med-mt-50{
    top: 0;
  }
}

/* ============================================== */
/* BLOCK-BOX-BG */
/* ============================================== */

.block-box-bg.module .wrapper{
  height: 80vh;
}

.block-box-bg-img{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px){
  .block-box-bg-img{
    position: relative;
    height: 300px;
  }

  .block-box-bg.module .wrapper{
    height: auto;
  }

  .block-box-bg-img img.full-img-abs{
    height: 100% !important;
  }
}

/* ============================================== */
/* SELECT */
/* ============================================== */

.custom-select-wrapper select {
  display: none;
}

.custom-select,
.custom-select-trigger,
.custom-option {
  position: relative;
  width: 100%;
}

.custom-select-wrapper{
  width: 100%;
}

.custom-select-trigger,
.custom-options {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.custom-select-trigger:hover{
  cursor: pointer;
}

.custom-select-trigger:after {
  content: url("./../../images/icons/body/chevron.svg");
  display: block;
  position:absolute;
  right: 15px;
  top:11px;
  width: 24px;
  height: 24px;
  z-index: 2;
  transform: rotate(90deg);
}

.custom-select.opened .custom-select-trigger:after {
  transform: rotate(0deg);
}

.custom-select-trigger,
.custom-options{
  color: var(--color-80);
  background: white;
  overflow: hidden;
  border:1px solid var(--color-10);
}

.custom-options{
  -webkit-box-shadow: 0 50px 20px -40px var(--color-shadow);
  -moz-box-shadow: 0 50px 20px -40px var(--color-shadow);
  -ms-box-shadow: 0 50px 20px -40px var(--color-shadow);
  box-shadow: 0 50px 20px -40px var(--color-shadow);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: -1px;
  max-height: 300px;
  overflow-y: scroll;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(3px);
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option{
  padding: 15px 20px;
  color: #77767c;
}

.custom-option:not(:last-child){  border-bottom: 1px solid var(--color-40);  }

.custom-option:hover{
  color: var(--color-100);
  cursor: pointer;
  background: var(--color-20);
}

.custom-select-trigger,
.custom-select-trigger:after,
.custom-options,
.custom-option{
  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;
}

@media screen and (max-width: 768px){
  .custom-select-wrapper{
    width: 100%;
  }
}

/* ============================================== */
/* IMG RUTAS */
/* ============================================== */

.margin-top{
  top: -120px;
  position: relative;
  z-index: 9;
}

.img_rutas{
  width: 100%;
  overflow: hidden;
  height: 500px;
  position: relative;
}

.img_rutas:after{
  content: "";
  background: linear-gradient(to top, #1a1b1c, transparent);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 768px){
  .img_rutas{
    height: 200px;
  }
  .margin-top{
    top: 0px;
  }
}

/* ============================================== */
/* FORM SEARCH */
/* ============================================== */

.form_search{
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 10px auto;
}

.form_search input{
  background: var(--color-orange);
}

.form_search select{
  margin: 0 2px;
}

@media screen and (max-width: 768px){
  .form_search{
    flex-wrap: wrap;
  }

  .form_search select,
  .form_search .btn{
    margin: 2px 0;
    width: 100%;
  }
}

/* ============================================== */
/* CONTACT */
/* ============================================== */

.amo-button-holder.amo-horisontal {
  right:  40px !important;
  bottom: 40px !important;
}

@media screen and (max-width: 768px){
   .amo-button-holder.amo-horisontal {
    right: 20px !important;
    bottom:20px !important;
  }
}

/* ============================================== */
/* RESULTS */
/* ============================================== */

.results_slick{
  margin-bottom: 20px;
  max-height: 500px; /* Ajusta según tus necesidades */
  overflow-y: auto;  /* Agrega scroll vertical */
}
.results_slick ul li{
  margin-bottom:2px;
}

.results_slick ul{
  border-radius: 5px;
  overflow: hidden;
}


.results_slick ul li .results_info{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding: 25px 10px 10px;
}


.results{
  background: var(--color-soft);
  overflow: hidden;
  border-top:1px solid var(--color-metal);
  border-bottom:1px solid var(--color-metal);
}

.results li{
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: white;
  flex-wrap: wrap;
  padding: 10px 20px;
  position: relative;
  margin: 0;
  border-bottom:1px solid var(--color-metal);
}

.results li span,
.results_slick ul li .results_info span{
  width: 14%;
  display: inline-block;
}

.results li p,
.results_slick ul li .results_info p{
  position: absolute;
  width: auto;
  font-size: 12px;
  color: white;
  border-radius: 5px;
  top:0;
  left: 0;
  background: black;
  padding: 2px 5px;
  margin: 0;
}

@media screen and (max-width: 768px){
  .results li:first-child{
    display: none;
  }
  .results li span,
  .results_slick ul li .results_info span{
    width: 100%;
    border-bottom:1px solid var(--color-metal);
    padding: 10px 20px;
    text-align: right;
  }
  .results li span:before,
  .results_slick ul li .results_info span:before {
    content: attr(data-label);
    font-size: 12px;
    float: left;
    text-transform: uppercase;
    font-weight: bold;
  }
  .results li p{
    position: relative;
    width: 100%;
    text-align: center;
  }
}


/* ============================================== */
/* TEASER CHEVRON */
/* ============================================== */

.teaser-chevron{
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background: white;
  align-items: stretch;
  border-radius: 10px;
  flex-wrap: wrap;
}

.teaser-chevron div{
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px 20px 30px 120px;
  width: 33%;
}

.teaser-chevron div:after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--color-100);
  text-align: center;
  padding: 15px 10px 5px 10px;
  margin: 0;
  border-radius: 50%;
  font-weight: bold;
  font-size: 24px;
  color:white;
  z-index: 3;
}

.teaser-chevron div:nth-child(1):after{content: "1";}
.teaser-chevron div:nth-child(2):after{content: "2";}
.teaser-chevron div:nth-child(3):after{content: "3";}

.teaser-chevron div:nth-child(2){
  background: var(--color-orange);
  clip-path: polygon(0 0, 95% 0%, 100% 50%, 95% 100%, 0 100%, 5% 50%);
  z-index: 2;
  color: white;
}

@media screen and (max-width: 768px){
  .teaser-chevron div{
    padding: 10px 20px 10px 80px;
    width: 100%;
  }

  .teaser-chevron div:after {
  left: 10px;
  width: 30px;
  height: 30px;
  padding: 10px;
  font-size: 18px;

}
  .teaser-chevron div:nth-child(2){
    clip-path: polygon(0 0, 95% 0%, 100% 50%, 95% 100%, 0 100%, 0 50%);
  }
}
/* ============================================== */
/* GUYS */
/* ============================================== */

.img-guys{
  position: absolute;
  bottom: 0;
  left: 45%;
  width: 50%;
  z-index: 99;
  height: 100%;
}

.img-guys img{
  position: absolute;
  max-width: 700px;
  bottom: 0;
  left: 0;
}

.img-guys img.guy_one{
  left: 30%;
}

@media screen and (max-height: 1440px){
  .img-guys img{
    max-height: 80%;
  }
}

@media screen and (max-width: 768px){
  .img-guys{
    left: 0;
    width: 100%;
    height: 400px;
  }

  .img-guys img{
    left: 60%;
    max-width: 180px;
    margin-left: -90px;
  }
  .img-guys img.guy_one{
    left: 40%;
  }

}


/* ============================================== */
/* CONTENT */
/* ============================================== */

@media screen and (max-width: 1440px){
  .content{
    max-width:1440px;
  }
}

/* ============================================== */
/* WHATSAPP */
/* ============================================== */

.btn-whatsapp{
  position: fixed;
  top:50%;
  right: -200px;
  width: 200px;
  height: 50px;
  background: var(--color-green);
  color: white;
  z-index: 999;
  padding: 10px 10px 10px 50px;
  border-radius: 10px 0 0 10px;

  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;
}

.btn-whatsapp.active{
  right: -150px;
}

.btn-whatsapp:after{
  content: url("./../../images/icons/social/whatsapp.svg");
  position: absolute;
  width: 30px;
  height: 30px;
  top:10px;
  left: 10px;
}

.btn-whatsapp.active:hover{
  right: 0;
}

@media screen and (max-width: 768px){
  .btn-whatsapp{
    display: none;
  }
}

/* ============================================== */
/* MAP */
/* ============================================== */

.map{
  max-width: 1440px;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
}

.map img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map .pin {
  position: absolute;
  content: url("./../../images/body/user.svg");
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: saltar 2s infinite;
}

@keyframes saltar {
  0%,100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  10%,90% {
    transform: translate(-50%, -50%) translateY(-5px);
  }
}

.map .little-car{
  position: absolute;
  content: url("./../../images/body/car.png");
  width: 50px;
  height: 50px;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

/* ============================================== */
/* TEASER */
/* ============================================== */

.teaser{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  bottom: -70px;
  align-items: stretch
}

.teaser li{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin: 1%;
  width: 15%;
  padding: 20px;
  text-align: center;
  background: white;
  border: 1px solid var(--color-10);
  border-radius: 10px;
  opacity: 0;
  transition:all 250ms ease;
  bottom: -50px;
}

.teaser li img{
  max-width: 100px;
  margin: 0 auto;
}

.teaser.fade-in li{
  opacity: 1;
  bottom: 0;
}

.teaser.fade-in li:nth-child(1),
.teaser li:nth-child(1){
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.teaser.fade-in li:nth-child(2),
.teaser li:nth-child(2){
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.teaser.fade-in li:nth-child(3),
.teaser li:nth-child(3){
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.teaser.fade-in li:nth-child(4),
.teaser li:nth-child(4){
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}


@media screen and (max-width: 768px){

  .teaser{
    bottom: 0;
  }
  .teaser li{
    margin: 1%;
    width: 48%;
    opacity: 1;
  }
}
/* ============================================== */
/* ACCORDION */
/* ============================================== */

.accordion .link {
  position: relative;
  border-bottom: 1px solid white;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-10);
}

.accordion .link p{
  margin: 0;
}

.accordion li.open .link {
    background: var(--color-20);
}

.icon.icon-chevron{
    position: relative;
    float:right;
    padding:5px;
    border-radius: 5px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 9;

    -webkit-transition:all 350ms ease;
    -moz-transition:all 350ms ease;
    -ms-transition:all 350ms ease;
    transition:all 350ms ease;
}



.accordion li.open .icon.icon-chevron{
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.accordion .link,
.accordion .submenu {
    padding: 10px 30px;
    width: 100%;
}

.accordion .submenu {
    display: none;
    background: var(--color-20);
}


@media screen and (max-width: 768px){
  .accordion .link,
  .accordion .submenu {
      padding: 10px 20px;
  }
}

/* ============================================== */
/* MENU FOOTER */
/* ============================================== */

.menu_footer{
  margin: 10px;
  width: 20%;
}

.menu_footer a{
  display: inline-block;
  margin: 5px 0;
  padding: 5px 10px;
  color: white;
  opacity: 0.8;
  transition:all 350ms ease;
  width: 100%;
}

.menu_footer a:hover{
  opacity: 1;
}


@media screen and (max-width: 768px){
  .menu_footer{
    margin: 10px 0;
    width: 100%;
  }
}


/* ============================================== */
/* WAVES */
/* ============================================== */

.waves {
  position: relative;
  display: block;
  margin: 40px auto;
  max-width: 3000px;
  height: 80px;
  background: url("./../../images/body/logos.png");
  background-size: cover;
  background-position: 0 0;
  background-repeat: repeat-x;

  animation-duration: 50000ms;
  transform-origin: 0%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: go;
}


@keyframes go {
  100% { background-position: 0 0; }
  0% { background-position: 3000px 0; }
}

/* ============================================== */
/* CAR */
/* ============================================== */

.preloader::before{
  display: none;
}

.car {
  position: absolute;
  background: url("./../../images/body/car.svg") center center no-repeat;
  width: 200px;
  height: 70px;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: brincar-infinito 0.2s linear infinite;
}


.car:after,
.car:before {
  content: url("./../../images/body/llanta.svg");
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50px;
  animation: rotar-infinito 0.5s linear infinite;
}

.car:after { left: 135px; }
.car:before { left: 30px; }

@keyframes brincar-infinito {
  0%,100% { top: 49%; }
  50% { top: 50%;; }
}

@keyframes rotar-infinito {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px){
  .car{
    width: 100px;
    height: 35px;
    top: 70%;
  }

  @keyframes brincar-infinito {
    0%,100% { top: 70%; }
    50% { top: 69%;; }
  }
  .car:after,
  .car:before {
    width: 20px;
    height: 20px;
    top: 25px;
  }

  .car:after { left: 66px; }
  .car:before { left: 15px; }
}

/* ============================================== */
/* ALERTS */
/* ============================================== */

.alert-ajax-guardado,
.alert-ajax-borrado,
.alert-ajax-repite,
.alert-ajax-desigual,
.alert-ajax-ocupado,
.alert-ajax-vacio,
.alertin{
  display: none;
  width: 100%;
  overflow: hidden;
  padding:20px;
  position: fixed;
  margin-top: 0;
  text-align: center;
  z-index: 9999;
  top: 0;
  left: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;

  color:#9c8a49;
  background: #fbecb7;
  border:1px solid #e5d392;
}

.alertin {
  opacity: 0;
}

.alert-ajax-guardado,
.alert-ajax-borrado,
.alertin.success{
  color:#314359;
  background: #c9efa0;
  border:1px solid #aad895;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

.fade-in-out {
  animation-name: fadeInOut;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

/* ============================================== */
/* CHECK */
/* ============================================== */

.check{  cursor: pointer;  }
.check:not(:last-child){  margin-bottom: 10px;  }
.checkmark{
  --size: 30px;
  width: var(--size);
  height: var(--size);
  background-color: var(--color-pearl);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  order: -1;
}
.checkmark::before{
  content: url("./../../images/icons/body/icon_check.svg");
  display: block;
  width: calc(var(--size) * 0.66);
  height: calc(var(--size) * 0.66);
  opacity: 0;
}
.input-check:checked + .checkmark{  background-color: var(--color-orange);  }
.input-check:checked + .checkmark::before{  opacity: 1;  }

form input.input-check{
    border: 0;
}

label.check{
    font-size: 14px;
}

/* ============================================== */
/* TABLES */
/* ============================================== */

.table :is(ul,li){
  width: 100%;
}

.table ul{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom:1px solid var(--color-10);
  text-align: left;
}

.table ul:last-child{
  border-bottom:0;
}

.table li{
  padding: 10px 20px;
  align-items: center;
  display: flex;
}

.table ul:nth-child(even){ background: var(--color-5); }
.table ul:nth-child(odd){ background: var(--color-10); }

.table li:last-child,
.table li:first-child{
  max-width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.table li:first-child{
  max-width: 100px;
}

.table.first-none li:first-child,
.table.first-none li:last-child{
  max-width: 100%;
  justify-content: start;
}

.table li:first-child span{
  margin-right: 10px;
}

.table li:last-child .icon,
.table li:last-child button.icon{
  width: 40px;
  height: 40px;
  padding: 0;
}

.table li:last-child .icon:after{
  top: 8px;
  left: 8px;
}

.table.title ul li{
  font-weight: 500;
  font-size: 14px;
  padding: 5px 20px;
  color: var(--color-70);
}

.table.title ul{
  background: var(--color-blue-2);
  border-radius: 10px 10px 0 0;
}

@media only screen and (max-width: 768px){
  .table.title{
    display: none;
  }
  .table ul{
    flex-direction: column;
    padding: 20px;
  }
  .table li{
    text-align: center;
    justify-content: center;
    padding: 0;
  }
}

/* ============================================== */
/* IDA / VUELTA */
/* ============================================== */

.circle{
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-10);
  margin: 0 auto;
}

.circle.ida{
  background: var(--color-green);
}
.circle.vuelta{
  background: var(--color-red);
}

.circle:after{
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: " ";
  background-image: url("./../../images/icons/sprite_white.svg");
  background-size: calc(var(--Icon-size) * 10);
  background-position: 0px 50px;
  overflow: hidden;
  position: absolute;
  height: var(--Icon-size);
  width: var(--Icon-size);
  border: none;
  z-index: 1;
}

.circle.ida::after{
  background-position: -150px -50px;
}
.circle.vuelta::after{
  background-position: -150px -50px;
}

.circle.ida::before,
.circle.vuelta::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  margin-top: -2px;
  top: 50%;
  z-index: 1;
  transition: width 0.3s ease;
}

.circle.ida::before {
  left: 50%;
  background: var(--color-green);
}

.circle.vuelta::before {
  right: 50%;
  background: var(--color-red);
}

.circle.ida::before {
  left: 0;
}

.circle.vuelta::before {
  right: 0;
}

.circle.ida::before,
.circle.vuelta::before {
  width: 160px;
}

.avance li {
    max-width: 140px;
    width: 100%;
}

.avance li:last-child .circle.ida::before{
  display: none;
}
.avance li:first-child .circle.vuelta::before{
  display: none;
}

.bola{
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

@media only screen and (max-width: 768px){
  .circle.ida::before,
  .circle.vuelta::before{
    display: none;
  }
}








