@charset "UTF-8";

/*------------------------------------------------------------
                        banners
------------------------------------------------------------*/
/*coloca el banner en la posicion adecuada*/
#bannerSol {
  position: relative;
  margin-left: -30%;
  margin-right: -3%;
}

/*tamaño del banner*/
#bannerSp {
  width: 117%;
}

/*titulo del banner*/
#titSp {
  position: absolute;
  top: 5%;
  left: 22%;
  font-size: 4.5rem;
  text-align: left;
}

/*descripcion del banner*/
#descSp {
  position: absolute;
  top: 27%;
  left: 22%;
  font-size: 2.5rem;
  text-align: left;
}

.titulo_sol {
  text-align: center;
  font-size: 2.5rem;
}

/*------------------------------------------------------------
                        lineas
------------------------------------------------------------*/
/*linea1 (global)*/
.linSol {
  position: relative;
  width: 300px;
  height: 10px;
  left: 23%;
  top: 15px;
  border: 2px solid #436CAE;
  background-color: #436CAE;
  border-radius: 50px;
}

/*punto (global)*/
.punSol {
  position: relative;
  width: 30px;
  height: 10px;
  left: 25%;
  top: 15px;
  border: 2px solid #436CAE;
  background-color: #436CAE;
  border-radius: 50px;
}

/*linea2 (global)*/
.lin2Sol {
  position: relative;
  width: 170px;
  height: 10px;
  left: 27%;
  top: 15px;
  border: 2px solid #436CAE;
  background-color: #436CAE;
  border-radius: 50px;
}

/*------------------------------------------------------------
                contenedor beneficios
------------------------------------------------------------*/
/*contenedor*/
.box-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*contenedor icon y descripción*/
.box {
  padding: 30px;
  margin-right: 20px;
  background: transparent;
  width: 30%;
  height: 350px;
  border-radius: 3px;
  transition: .2s all;
}

/*en mouse hover aplica blur a los demas items*/
.box-wrap:hover .box {
  filter: blur(3px);
  opacity: .5;
  transform: scale(.98);
  box-shadow: none;
}

/*en mouse hover resalta el item añadiendo sombras y una linea en la parte superior*/
.box-wrap:hover .box:hover {
  transform: scale(1);
  filter: blur(0px);
  opacity: 1;
  box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.125);
  border-top: 10px solid #436CAE;
}

/*------------------------------------------------------------
               opcionales
------------------------------------------------------------*/
body .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 600px;
  max-width: 900px;
  width: calc(100% - 100px);
  height: 400px;
}

.options {
  padding-left: 0%;
  margin-left: 13%;
}

.opt_t{
  margin-left: 6%;
}

body .options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #000000));
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

body .options .option:nth-child(1) {
  --defaultBackground: #ED5565;
}

body .options .option:nth-child(2) {
  --defaultBackground: #FC6E51;
}

body .options .option:nth-child(3) {
  --defaultBackground: #FFCE54;
}

body .options .option:nth-child(4) {
  --defaultBackground: #2ECC71;
}

body .options .option:nth-child(5) {
  --defaultBackground: #5D9CEC;
}

body .options .option:nth-child(6) {
  --defaultBackground: #AC92EC;
}

body .options .option.active {
  flex-grow: 10000;
  transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 40px;
  background-size: auto 100%;
}

body .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

body .options .option.active .label {
  bottom: 20px;
  left: 20px;
  background: transparent;
}

body .options .option.active .label .info>div {
  left: 0px;
  opacity: 1;
}

body .options .option:not(.active) {
  flex-grow: 1;
  border-radius: 30px;
}

body .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

body .options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
  background: transparent;
}

body .options .option:not(.active) .label .info>div {
  left: 20px;
  opacity: 0;
}

body .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

body .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

body .options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: -5px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}

body .options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 10px;
  color: white;
  white-space: pre;
}

body .options .option .label .info>div {
  position: relative;
  top: 15%;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

body .options .option .label .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}

body .options .option .label .info .sub {
  transition-delay: 0.1s;
  position: relative;
  top: 100%;
  margin-left: -7%;
  font-size: 18px;
}


/*------------------------------------------------------------
        App Telematics
------------------------------------------------------------*/
.list_app {
  text-align: left;
  margin-left: 20%;
  margin-top: -20%;
  font-size: 16px;
}

#comple{
  transform: translateZ(50px);
  position: fixed;
  top: 25%;
  left: 27%;
}
#comple_antel {
  transform: translateZ(50px);
  position: absolute;
  left: 19%;
  top: 23.5%;
  width: 63%;
}
#comple_lusat{
  transform: translateZ(50px);
  position: absolute;
  top: 23.5%;
  left: 19%;
  width: 63%;
}
#comple_narvi{
  transform: translateZ(50px);
  position: absolute;
  top: 22.5%;
  left: 19%;
  width: 63%;
}
/*------------------------------------------------------------
          eco driving
------------------------------------------------------------*/
.ecoRe{
color: #368154;
}

.container {
  display: flex;
  flex-direction: row;
  background-color: transparent;
}

.card-featured {
  margin-right: -5%;
  padding-left: 5.3%;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  max-width: 340px;
}

.card-featured img {
  display: block;
  width: 100%;
}

.overlay {
  top: 0;
  left: 15%;
  position: absolute;
  z-index: 1;
  background-color: black;
  width: 90%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s;
}

.tag-price {
  display: flex;
  position: absolute;
  align-items: center;
  color: white;
  right: 0;
  bottom: 5%;
}

.tag-price-item {
  font-size: 0.75rem;
  padding: 0.2rem 0;
  padding-right: 0.5rem;
  background-color: #344654;
}

.tag-price-discount-percentage {
  padding: 0.2rem 0.5rem;
  color: #344654;
  background-color: #a1cd44;
  font-weight: bold;
  font-size: 1rem;
}

.tag-price-original {
  padding-left: 0.5rem;
  text-decoration: line-through;
  color: gray;
}

.tag-price-discounted {
  color: white;
}

.card-data {
  height: 60%;
  width: 90%;
  position: absolute;
  top: 100%;
  left: 15%;
  right: 0;
  z-index: 3;
  background: linear-gradient(315deg, #50a958 5%, #507253 95%);
  padding: 1rem;
  opacity: 0.5;
  transition: top 0.4s, opacity 0.6s
}

.card-data .card-name {
  color: white;
}

.card-data .card-stat {
  text-align: left;
  padding-right: 5%;
  font-size: 1rem;
  margin-top: -5%;
}

.card-data .card-stat .label {
  color: #959595;
}

.card-data .card-stat .data {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.game-review-summary-mixed {
  color: #B9A074;
}

.game-review-summary-very-positive {
  color: #66C0F4;
}

.card-button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7%;
  padding: 1rem;
}

.card-button .btn-green {
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  padding: 0.5rem 1rem;
  color: #fefefe;
  background: linear-gradient(to bottom, #a4d007 5%, #536904 95%);
}

.card-button .btn-green:hover {
  color: #FFFFFF;
  background: linear-gradient(to bottom, #b6d908 5%, #80a006 95%);
}

.card-featured:hover .overlay {
  opacity: 0.5;
  transition: opacity 0.2s;
}

.card-featured:hover .card-data {
  top: 45%;
  opacity: 1;
  transition: top 0.4s, opacity 0.6s;
}

.card-featured:hover .card-screenshots {
  top: 0;
  opacity: 1;
  transition: top 0.4s, opacity 0.6s;
}

.card-screenshots {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 100%;
  transition: top 0.4s, opacity 0.4s;
}

@media only screen and (max-width: 600px) {
  .container {
    flex-direction: column;
    left: 16px;
  }

  .card-data .card-name {
    font-size: 0.625rem;
  }

  .card-data .card-name h2 {
    margin: 0.625rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }

  .card-data .card-stat {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
}

/*---------------------------------------
prueba
-----------------------------------------*/
.container_planes{
  position: relative; 
  margin-top: 5%;  
  width: 180%;
  display:flex;
  justify-content: space-evenly;
}
.container_planes .cards{
   position: relative;
   width: 300px;
   height: 300px;
   background: #000;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 15px;
}
.container_planes .cards:before{
   position: absolute;
   content: '';
   top: 0;
   left: 0;
   widows: 50%;
   height: 100%;
   background: rgba(255,255,255,.1);
   z-index: 20;
   pointer-events: none;
}
.container_planes .cards:nth-child(1){
  background: #6c99e3;
  background: linear-gradient(45deg, #6c99e3 0%, #436cae 50%, #1a3f7d 100%);
}
.container_planes .cards:nth-child(1) .overlay_planes{
  background: #6c99e3;
  background: linear-gradient(45deg, #6c99e3 0%, #436cae 50%, #1a3f7d 100%);
}
.container_planes .cards:nth-child(2){
  background: #6c99e3;
  background: linear-gradient(45deg, #6c99e3 0%, #436cae 50%, #1a3f7d 100%);
}
.container_planes .cards:nth-child(2) .overlay_planes{
  background: #6c99e3;
  background: linear-gradient(45deg, #6c99e3 0%, #436cae 50%, #1a3f7d 100%);
}
.container_planes .cards .imgBx{
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   cursor: pointer;

}
.container_planes .cards .imgBx h2{
   margin: 10px 0 0;
   padding: 0;
   color: #fff;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   font-size: 1.8rem;
}
.container_planes .cards .overlay_planes{
   position: absolute;
   bottom: 20px;
   right: 20px;
   width: 50px;
   height: 50px;
   background: #fff;
   box-shadow: 0 10px 8px rgba(0,0,0,.2);
   cursor: pointer;
   border-radius: 50%;
   transition: 0.5s;
}
.container_planes .cards .overlay_planes:hover{
   bottom: 0;
   right: 0;
   width: 100%;
   height: 100%;
   box-shadow: none;
   opacity: 0.9;
   border-radius: 15px;
}
.container_planes .cards .overlay_planes:before{
   content: 'Más';
   position: absolute;
   top:0;
   left: 0;
   right: 0;
   bottom:0;
   color: white;
   font-size: 12px;
   font-weight: 500;
   letter-spacing: 1px;
   display: flex;
   justify-content: center;
   align-items: center;
   transition-delay: 0.5s;
}
.container_planes .cards .overlay_planes:hover:before{
   display: none;
   transition-delay: 0s;
}
.container_planes .cards .content{
   padding:20px;
   box-sizing: border-box;
   z-index: 1;
   pointer-events: none;
   opacity: 0;
   visibility: hidden;
   transition:0s;
   color: #fff;
   cursor: pointer;

}
.container_planes .cards .overlay_planes:hover ~ .content{
   opacity: 1;
   visibility: visible;
   transition:0.2s;
   transition-delay: 0.5s;
}
.container_planes .cards .content h2{
   margin: 0;
   padding: 0;
}
.container_planes .cards .content p{
  font-size: 16px;
}

/*------------------------------------------------------------
        Fuel Manager
------------------------------------------------------------*/
/*background div a toda la pantalla*/
#banner_fuel{
  background: url('/static/img/bannerFuel.png'); /*imagen*/
  background-repeat: no-repeat; /*repetición de la imagen*/
  background-size: cover, contain; /*cubre todo el contenido*/
  width: 100vw;
  position: relative;
  margin-left: -51vw;
  height: 39vw;
  left: 51%;
}

.tit_fuel{
  margin-top: 5%;
  margin-left: 17%;
  font-size: 5.5rem;
  font-weight: bold;
  color: #FFFFFF;
}

.desc_fuel{
  margin-left: 17%;
  margin-top: 7%;
  font-size: 3rem;
  color: #FFFFFF;
}

.img_FM{
  margin-right: 25px;
  margin-bottom: 35px;
}

.screen_fuel{
  border-radius: 15px;
  box-shadow: 0px 10px 30px 5px rgba(0,0,0,0.7);
  -webkit-box-shadow: 0px 10px 30px 5px rgba(0,0,0,0.7);
  -moz-box-shadow: 0px 10px 30px 5px rgba(0,0,0,0.7);
}

.espacio{
  height: 20px;
}

.tr{
  background-color: white;
}

.desc_FM{
  font-size: 1.18rem;
  text-align: justify;
}

.frase_FM{
  color: #1A3F7D;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
}

.slogan_FM{
  text-align: center;
  font-size: 1.5rem;
}

.grid{
  display: grid;
  justify-content: center;
}

.fuel_mng{
  font-size: 1.5rem;
}

.btn-fuel{
  background-color: #fff;
  color: #436CAE;
  width: 8%;
  border-radius: 7px;
  margin: 10% 0 0 34%;
  box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
  -webkit-box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
  -moz-box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
}

.btn_tg {
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  height: 10%;
  box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
  -webkit-box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
  -moz-box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
}

.btn-fuel:hover{
  color: #3a2381;
  border-color: #3a2381;
  font-weight: bold;
  transform: scale(1.05);
  box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
  -webkit-box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
  -moz-box-shadow: 0px 18px 35px -11px rgba(0,0,0,0.83);
}

#lineas{
  margin-left: 10%;
}

#img_sensor_tg99{
  width: 30%;
  position: relative;
  margin-top: -78%;
  left: 11%;
}

.subtit_tg99 {
  position: relative;
  text-align: justify;
  font-size: 27px;
  font-weight: bold;
  color: white;
  margin: 10%;
}

/*------------------------------------------------------------
        Carrusel Fuel Manager
------------------------------------------------------------*/

.carrousel {
  width: 900px;
  height: calc(450px);
  margin: auto;
  font-size: 0;
  overflow: hidden;
  position: relative;
  text-align: left;
}
.carrousel .screens {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  width: 900px;
  height: 600px;
  position: relative;
  transform: translate(0%,-30%);
}
.carrousel .screens > li {
  width: 0%;
  height: 100%;
  width: 50%;
  height: 50%;
  display: inline-block;
  font-size: 15px;
  overflow: hidden;
  background: #bbb;
  border-radius: 10px;
  opacity: 0;
  filter: blur(5px);
  cursor: pointer;
  position: absolute;
  bottom: 0;
  transform: translate(50%,0);
  transition: all .7s;
  pointer-events: none;
}
.carrousel .screens > li:hover {
  filter: none;
  opacity: 1;
}
.carrousel .screens > li.active {
  opacity: 1;
  filter: none;
  width: 70%;
  height: 70%;
  z-index: 100;
  transform: none;
  transform: translate(20%,0);
}
.carrousel .screens > li.active, .carrousel .screens > li.left, .carrousel .screens > li.right {
  pointer-events: all;
}
.carrousel .screens > li.left, .carrousel .screens > li.right {
  transform: translate(0%,0);
  opacity: .5;
}
.carrousel .screens > li.left {
  transform: translate(0%,0);
}
.carrousel .screens > li.right {
  transform: translate(100%,0);
}
.carrousel .screens > li p {
  margin: 15% 9%;
  text-align: justify;
  height: 100%;
  color: #fff;
  font-size: 20px;
  pointer-events: none;
}
.carrousel .pagination {
  display: none;
  list-style: none;
  padding: 0% 45%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.carrousel .pagination li {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  margin: 5px;
  opacity: .3;
  cursor: pointer;
  background: #000;
  border-radius: 100%;
  transition: all .2s;
  background-size: cover;
  background-position: center;
}
.carrousel .pagination li:hover, .carrousel .pagination li.active {
  opacity: 1;
}
#s1 {
  background-image: url(/static/img/fondo_carac_tg99.png);
  background-size: cover;
  background-position: center;
}
#s2 {
  background-image: url(/static/img/fondo_carac_tg99.png);
  background-size: cover;
  background-position: center;
}
#s3 {
  background-image: url(/static/img/fondo_carac_tg99.png);
  background-size: cover;
  background-position: center;
}

/*------------------------------------------------------------
      Vistas
------------------------------------------------------------*/
.vista_movil{
  display: none;
}
.vista_monitor{
  display: flex;
}
.nvs_1{
  display: flex;
}
.nvs_2{
  display: none;
}

/*------------------------------------------------------------
        Responsividad del sitio 1599px
------------------------------------------------------------*/
@media screen and (max-width: 1599px){
  .vista_movil{
    display: none;
  }
  .vista_monitor{
    display: flex;
  }
  #comple{
    left: 21%;
  }
  #comple_antel {
    left: 19%;
    top: 23.5%;
    width: 62%;
  }
  #comple_lusat{
    left: 19%;
    top: 23.5%;
    width: 62%;
  }
  #comple_narvi{
    left: 19%;
    top: 22.5%;
    width: 62%;
  }
  .tit_fuel{
    margin-top: 3%;
  }
  .desc_fuel{
    margin-left: 17%;
    margin-top: 3%;
    font-size: 2.5rem;
  }
  .fuel_mng{
    font-size: 1.18rem;
  }
  .btn-fuel{
    width: 10%;
    margin: 16% 0 0 26%;
  }
  #img_sensor_tg99{
    margin-top: -88%;
  }
  .options {
    margin-left: 4%;
  }
  .opt_t{
    margin-left: 0%;
  }
}
/*------------------------------------------------------------
        Responsividad del sitio 1300px revisar Antel
------------------------------------------------------------*/
@media screen and (max-width: 1300px){
  #titSp {
    font-size: 4rem;
  }
  #descSp {
    font-size: 2rem;
  }
  body .options .option .label .info .sub {
    margin-left: -15%;
    font-size: 14.5px;
  }
  .nvs_1{
    display: none;
  }
  .nvs_2{
    display: flex;
  }
  #comple_nvs{
    transform: translateZ(50px);
    position: absolute;
    left: 19%;
    top: 22%;
    width: 61%;
  }
  #comple{
    left: 21%;
  }
  #comple_antel {
    left: 19%;
    top: 18%;
    width: 62%;
  }
  #comple_antel_dos {
    transform: translateZ(50px);
    position: absolute;
    left: 19%;
    top: 18%;
    width: 62%;
  }
  #comple_omd{
    transform: translateZ(50px);
    position: absolute;
    left: 19%;
    top: 23%;
    width: 62%;
  }
  #comple_dvy{
    transform: translateZ(50px);
    position: absolute;
    left: 19%;
    top: 23%;
    width: 62%;
  }
  #comple_lusat{
    left: 19%;
    top: 23%;
    width: 62%;
  }
  #comple_narvi{
    left: 19%;
    top: 22%;
    width: 62%;
  }
  .tit_fuel{
    margin-top: 3%;
    font-size: 5rem;
  }
  .desc_fuel{
    margin-left: 17%;
    margin-top: 3%;
    font-size: 2.3rem;
  }
  .fuel_mng{
    font-size: 1.18rem;
  }
  .btn-fuel{
    width: 12%;
    margin: 15% 3% 0% 19%;
  }
  .subtit_tg99 {
    font-size: 24px;
  }
  #img_sensor_tg99{
    margin-top: -88%;
  }
  .options {
    margin-left: 4%;
  }
  .opt_t{
    margin-left: 0%;
  }
  .grafica_tg99{
    width: 100%;
  }
}