@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap");

:root {
  --color-blanco: #fff;
  --color-negro: #000;
  --color-amarillo: #FFD700;
  --color-rosa: #FF69B4;
  --color-verde: #00FF00;

}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  list-style: none;
  text-decoration: none;

}

a:hover {
  text-decoration: none;
  color: var(--color-blanco);
}

.hoveryellow a:hover {
  text-decoration: none;
  color: var(--color-amarillo)!important;
}

.containerfb {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 20px;
}

.imgmar{
  margin-bottom: 50px;
}

.colorblack{
  color: var(--color-negro)!important;
}

.colorrosa{
  color: var(--color-rosa)!important;
}

/* ================== HEADER ================== */
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);
 body {
   font-family: "Roboto";
   overflow-x: hidden;
   background-color: var(--color-negro);
}
 body.hidden {
   overflow: hidden;
}
 a {
   color: var(--color-blanco)!important;
   text-decoration: none;
}
 .container {
   max-width: 1200px;
   padding: 0 15px;
   margin: 0 auto;
}
 h1 {
   font-size: 45px;
   line-height: 65px;
   text-align: center;
/*   width: 60%;*/
/*   height: 80vh;*/
   display: flex;
   margin: 0 auto;
   align-items: center;
   justify-content: center;
}
 .header {
   padding-top: 10px;
   padding-bottom: 10px;
}
 .header .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
 .header .logo {
   font-size: 32px;
   line-height: 42px;
   text-transform: uppercase;
   font-weight: 900;
   padding-left: 20px;
}
 .header .menu {
   display: flex;
   align-items: center;
   margin-bottom: 0;
}
 .header .item {
   position: relative;
   font-size: 20px;
   line-height: 16px;
   padding-bottom: 5px;
}
 .header .item a {
   transition: 0.3s;
}
 .header .item:not(:last-child) {
   margin-right: 20px;
}
 .header .item::after {
   content: "";
   background-color: var(--color-blanco);
   position: absolute;
   bottom: -2px;
   left: 50%;
   transform: translateX(-50%);
   width: 0%;
   height: 2px;
   transition: 0.3s;
}
 .header .item.active::after {
   width: 50%;
}
 .header .item:hover::after {
   width: 50%;
}
 .header .hamburger {
   display: none;
   cursor: pointer;
   position: absolute;
/*   top: 10px;*/
   right: 30px;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
   width: 25px;
   z-index: 200;
}
 .header .hamburger::before {
   content: "";
   position: absolute;
   background-color: var(--color-negro);
   top: -70px;
   right: -69px;
   width: 120px;
/*   height: 120px;*/
   border-radius: 50%;
   transition: 0.3s cubic-bezier(0.04, -0.1, 0.29, 0.98);
}
 .header .hamburger span {
   position: relative;
   display: block;
   width: 100%;
   height: 3px;
   border-radius: 2px;
   background-color: #fefefe;
   transition: 0.2s;
   z-index: 110;
}
 .header .hamburger span:not(:last-child) {
   margin-bottom: 5px;
}
 .header .hamburger span:nth-child(2) {
   transition: opacity 0.1s;
   opacity: 1;
}
 .header.mobile span:nth-child(1) {
   transform: rotate(-225deg) translate(7px, -6px);
}
 .header.mobile span:nth-child(3) {
   transform: rotate(225deg) translate(6px, 5px);
}
 .header.mobile span:nth-child(2) {
   opacity: 0;
}
 .header.mobile .hamburger::before {
   width: 100vh;
   height: 100vh;
   transform: scale(5);
   transition-duration: 0.5s;
}
 .header.mobile .menu__wrapper {
   opacity: 1;
   pointer-events: visible;
}
 .header.mobile .menu__wrapper .menu__list-item:nth-child(1) {
   transition-delay: 0.47s;
}
 .header.mobile .menu__wrapper .menu__list-item:nth-child(2) {
   transition-delay: 0.54s;
}
 .header.mobile .menu__wrapper .menu__list-item:nth-child(3) {
   transition-delay: 0.61s;
}
 .header.mobile .menu__wrapper .menu__list-item:nth-child(4) {
   transition-delay: 0.68s;
}
 .header.mobile .menu__wrapper .menu__list-item:nth-child(5) {
   transition-delay: 0.75s;
}
 .header.mobile .menu__wrapper .item {
   opacity: 1;
}
 @media (max-width: 900px) {
   .header {
     padding-top: 15px;
     z-index: 150;
     position: relative;
     top: 0;
     left: 0;
     width: 100%;
/*     height: 50px;*/
     margin-top: 0;
     margin-bottom: 0;
  }
   .header .hamburger {
     display: block;
  }
   .header .menu__wrapper {
     pointer-events: none;
     opacity: 0;
  }
   .header .menu {
     width: 100%;
     z-index: 210;
     position: fixed;
     left: 50%;
     top: 50%;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     transform: translate(-50%, -50%);
     text-align: center;
  }
   .header .menu li {
     opacity: 0;
     width: 100%;
     transition: 0.5s;
  }
   .header .menu li:not(:last-child) {
     margin-right: 0px;
  }
   .header .menu li::after {
     display: none;
  }
   .header .menu li a {
     font-size: 26px;
     line-height: 34px;
     font-weight: 700;
     color: #fff;
  }

    .header .item ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
   .header .menu li a::after {
     display: none;
  }
}
 


/* Estilos para hacer que la barra de navegación sea pegajosa */
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-negro);
/*  box-shadow: 0px -35px 64px var(--color-amarillo);*/
}



/* ================== HEADER ================== */




/* ================== ANIMATION HOME ================== */


:root{
  --background-dark: #2d3548;
  --text-light: rgba(255,255,255,0.6);
  --text-lighter: rgba(255,255,255,0.9);
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}

*{
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
/*  height: 100%;*/
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

body{
/*  height: 100%;*/
}

.hero-section{
  align-items: flex-start;
/*  background-image: linear-gradient(15deg, #0f4667 0%, #2a6973 150%);*/
  display: flex;
/*  min-height: 100%;*/
  justify-content: center;
  padding: var(--spacing-xxl) var(--spacing-l);
}

.card-grid{
  display: grid;
  grid-column-gap: var(--spacing-l);
  grid-row-gap: var(--spacing-l);
  max-width: var(--width-container);
  width: 100%;
}


/* ================== Estilos para dispositivos móviles ================== */
@media (max-width: 767px) {


.card-grid{
    grid-template-columns: repeat(2, 100%);
    justify-content: center;
    width: 46%;
  }


.gridos{
    grid-template-columns: repeat(2, 100%);
   justify-content: center;
  }



.gridos p{
    font-size: 4px;
  }
.gridos h3{
    font-size: 2px;
  }

.centroequipo{
  height: 100px!important;
}

}/* ================== Estilos para dispositivos móviles ================== */





/* ================== Estilos para tablets ================== */
@media (min-width: 768px) and (max-width: 1023px) {



.card-grid{
    grid-template-columns: repeat(2, 30%);
/*    grid-template-columns: repeat(4, 1fr); */
    justify-content: center;
/*    width: 48%;*/
  }

.gridos{
    grid-template-columns: repeat(3, 30%);
/*    width: 46%;*/
  }


.gritres{
    grid-template-columns: repeat(2, 30%);
  }

}
/* ================== Estilos para tablets ================== */







/* ================== Estilos para PC o laptops ================== */
@media(min-width: 1024px){
  
.card-grid{
  grid-template-columns: repeat(2, 30%);
  justify-content: center;
/*  grid-template-columns: repeat(4, 1fr); */
  }

.gridos{
    grid-template-columns: repeat(3, 30%);
    justify-content: center;
/*    width: 46%;*/
  }

  .gritres{
    grid-template-columns: repeat(2, 30%);
    justify-content: center;
  }


}/* ================== Estilos para PC o laptops ================== */

.centroequipo{
  height: 200px;
  align-items: center;
  display: flex;
}


.card{
  list-style: none;
  position: relative;
  border: var(--color-negro);
  background-color: var(--color-negro);
}

.card:before{
  content: '';
  display: block;
  padding-bottom: 150%;
  width: 100%;
}

.carddos:before{
  content: '';
  display: block;
  padding-bottom: 40%!important;
  width: 100%;
}

.card__background{
  background-size: cover;
  background-position: center;
  border-radius: var(--spacing-l);
  bottom: 0;
  filter: brightness(0.75) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  trsnsform: scale(1) translateZ(0);
  transition: 
    filter 200ms linear,
    transform 200ms linear;
}

.card:hover .card__background{
  transform: scale(1.05) translateZ(0);
}

.card-grid:hover > .card:not(:hover) .card__background{
  filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}

.card__content{
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  top: 0;
  display: grid;
}

.card__category{
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-s);
  text-transform: uppercase;
}

.card__heading{
  color: var(--text-lighter);
  font-size: 1.9rem;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
  line-height: 1.4;
/*  word-spacing: 100vw;*/
/*  font-size: 120%;*/
}


.card__text{
  font-size: 120%!important;
  margin-top: var(--spacing-s);
}

.catplan{
  margin-bottom: 0;
  font-size: 13px!important;
}

.catboton{
  display: block;
}

.catboton2{
  display: block;
  margin: 20px;
}

.clasboton{
    width: 53%!important;
    padding: 0!important;
}


/* ================== Estilos para dispositivos móviles ================== */
@media (max-width: 767px) {

.card__heading{
  font-size: 120%!important;
/*  font-size: 1.1rem!important;*/
}


.card__text{
  font-size: 75%!important;
  margin-top: 6px;
  width: 110%;
}

.catplan{
  margin-bottom: 0;
  font-size: 7px!important;
}

.catboton{
  display: none;
}

.catboton2{
  display: block;
}



}/* ================== Estilos para dispositivos móviles ================== */




/* ================== Estilos para tablets ================== */
@media (min-width: 768px) and (max-width: 1023px) {

.card__heading{
  font-size: 140%!important;
}

.card__text{
  font-size: 100%!important;
  margin-top: var(--spacing-s);
}

.catplan{
  margin-bottom: 0;
  font-size: 9px!important;
}

.catboton{
  display: block;
}

.clasboton{
    width: 53%!important;
    padding: 0!important;
}

.catboton2{
  display: block;
}


}
/* ================== Estilos para tablets ================== */



/* ================== ANIMATION HOME ================== */





/* ================== BOX TEXT HOME ================== */


.containerhome {
  text-align: center;
  padding: 40px 0;
  color: var(--color-blanco);
}

.titulo-principal {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-blanco);
}

.subtitulo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.parrafo {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 50px 0 50px;
}


.nonefluid{
  margin: 0;
  padding: 0;

}

/* ================== BOX TEXT HOME ================== */









/* ============ CARRUSEL MOVIES ============ */

.moviefotos {
   display: flex;
   justify-content: center;
   align-items: center;
}
 .slider {
   position: relative;
   width: 100%;
   background-color: rgba(0, 0, 0, 0.9);
   overflow: hidden;
}
 .slider .action-button {
   position: absolute;
   top: 50%;
   width: 50px;
   aspect-ratio: 1;
   padding: 0;
   margin: 0;
   background: rgba(0, 0, 0, 0.9);
   border: none;
   border-radius: 50%;
   color: white;
   font-size: 1.5rem;
   z-index: 100;
   transition: color 0.2s linear, background 0.2s linear, transform 0.2s linear;
}
 .slider .action-button:hover {
   background: rgba(255, 255, 255, 0.9);
   color: black;
   cursor: pointer;
}
 .slider .action-button.left-chevron {
   left: 0;
   transform: translate(5%, -50%);
}
 .slider .action-button.left-chevron:hover {
   transform: translate(15%, -50%);
}
 .slider .action-button.right-chevron {
   right: 0;
   transform: translate(-5%, -50%);
}
 .slider .action-button.right-chevron:hover {
   transform: translate(-15%, -50%);
}
 .slider .slider-list {
   display: grid;
   grid-auto-columns: 100%;
   grid-auto-flow: column;
   margin: 0;
   padding: 1rem 0;
   list-style: none;
   transition: transform 5s linear;
   gap: 1rem;
}
 @media (min-width: 576px) {
   .slider .slider-list {
     grid-auto-columns: 50%;
  }
}
 @media (min-width: 768px) {
   .slider .slider-list {
     grid-auto-columns: 33.33333333%;
  }
}
 @media (min-width: 992px) {
   .slider .slider-list {
     grid-auto-columns: 25%;
  }
}
 @media (min-width: 1200px) {
   .slider .slider-list {
     grid-auto-columns: 20%;
  }
}
 .slider .slider-list .slider-item {
   display: inline-block;
   height: 10rem;
   color: white;
   text-align: center;
}
 .slider .slider-list .slider-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.1s linear;
}
 .slider .slider-list .slider-item img:hover {
   transform: scale(1.1);
}
 






.bbod {
  align-items: center;
/*  background: #E3E3E3;*/
  display: flex;
  height: 100vh;
  justify-content: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slide2 {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
/*  position: relative;*/
/*  width: 960px;*/
}

.slide2::before,
.slide2::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slide2::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slide2::before {
  left: 0;
  top: 0;
}

.slide2 .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide2 .slide2 {
  height: 140px;
  width: 250px;
}


/* ============ CARRUSEL MOVIES ============ */





/* ============ BOTON HOME ============ */

.frame {
  width: 90%;
  margin: 40px auto;
  text-align: center;
}
button {
  margin: 20px;
}
.custom-btn {
  width: 130px;
  height: 40px;
  color: var(--color-negro);
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   /*box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);*/
  outline: none;
}

.btn-15 {
  background: var(--color-blanco);
  border: none;
  z-index: 1;
}
.btn-15:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--color-amarillo);
  border-radius: 5px;
/*   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);*/
  transition: all 0.3s ease;
}
.btn-15:hover {
  color: var(--color-negro);
}
.btn-15:hover:after {
  left: 0;
  width: 100%;
}
.btn-15:active {
  top: 2px;
}


/* ============ BOTON HOME ============ */







/* ============ FAQ ============ */


.accordion {
  max-width: 560px;
  margin: 0 auto 100px;
  border-top: 1px solid #d9e5e8; 
}

.accordion li {
    border-bottom: 1px solid #d9e5e8;
    position: relative; 
    width: 95%;
    margin: auto;
  }

.accordion li p {
      display: none;
      padding: 10px 25px 30px;
      color: var(--color-blanco);
}

.accordion a {
    width: 100%;
    display: block;
    cursor: pointer;
    line-height: 3;
    text-indent: 15px;
    user-select: none; 
}

/* ================== Estilos para dispositivos móviles ================== */
@media (max-width: 767px) {

.accordion a {
    width: 100%;
    display: block;
    cursor: pointer;
    line-height: 2;
    text-indent: 15px;
    user-select: none; 
}

}/* ================== Estilos para dispositivos móviles ================== */



    .accordion a:after {
      width: 8px;
      height: 8px;
      border-right: 1px solid var(--color-blanco);
      border-bottom: 1px solid var(--color-blanco);
      position: absolute;
      right: 10px;
      content: " ";
      top: 17px;
      transform: rotate(-45deg);
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
  .accordion p {
    
    line-height: 2;
    padding: 10px; }

a.active:after {
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }




/* ============ FAQ ============ */





/* ============ REQUISITOS ============ */


.font-alt {
/*    font-family: "Dosis", sans-serif;*/
/*    text-transform: uppercase;*/
    text-align: center;
}

.font-inc {
/*    font-family: "Inconsolata", serif;*/
/*    text-transform: uppercase;*/
  text-align: center;
  display: grid;

}

.content-box {
    margin: 25px auto;
}

.content-box-icon {
    font-size: 4rem;
    text-align: center;
}

.content-box-title {
    font-size: 1.5rem;
/*    letter-spacing: 5px;*/
    color: var(--color-amarillo);
/*    text-align: left;*/
font-weight: bold;
padding: 10px;
}

.content-box-text {
    color: var(--color-blanco);
    text-align: center;
}


/* ============ REQUISITOS ============ */





/* ============ ALERTA ============ */

.alert>.start-icon {
    margin-right: 0;
    min-width: 20px;
    text-align: center;
}

.alert>.start-icon {
    margin-right: 5px;
}

.greencross
{
  font-size:18px;
      color: #25ff0b;
    text-shadow: none;
}

.alert-simple.alert-success
{
  border: 1px solid rgba(36, 241, 6, 0.46);
    background-color: rgba(7, 149, 66, 0.12156862745098039);
    box-shadow: 0px 0px 2px #259c08;
    color: #0ad406;
  text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
}
.alert-success:hover{
  background-color: rgba(7, 149, 66, 0.35);
  transition:0.5s;
}
.alert-simple.alert-info
{
  border: 1px solid rgba(6, 44, 241, 0.46);
    background-color: rgba(7, 73, 149, 0.12156862745098039);
    box-shadow: 0px 0px 2px #0396ff;
    color: #0396ff;
  text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
}

.alert-info:hover
{
  background-color: rgba(7, 73, 149, 0.35);
  transition:0.5s;
}

.blue-cross
{
  font-size: 18px;
    color: #0bd2ff;
    text-shadow: none;
}

.alert-simple.alert-warning
{
      border: 1px solid rgba(241, 142, 6, 0.81);
    background-color: rgba(220, 128, 1, 0.16);
    box-shadow: 0px 0px 2px #ffb103;
    color: #ffb103;
    text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
}

.alert-warning:hover{
  background-color: rgba(220, 128, 1, 0.33);
  transition:0.5s;
}

.warning
{
      font-size: 18px;
    color: #ffb40b;
    text-shadow: none;
}

.alert-simple.alert-danger
{
  border: 1px solid rgba(241, 6, 6, 0.81);
    background-color: rgba(220, 17, 1, 0.16);
    box-shadow: 0px 0px 2px #ff0303;
    color: #ff0303;
    text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
}

.alert-danger:hover
{
     background-color: rgba(220, 17, 1, 0.33);
  transition:0.5s;
}

.danger
{
      font-size: 18px;
    color: #ff0303;
    text-shadow: none;
}

.alert-simple.alert-primary
{
  border: 1px solid rgba(6, 241, 226, 0.81);
    background-color: rgba(1, 204, 220, 0.16);
    box-shadow: 0px 0px 2px #03fff5;
    color: #03d0ff;
    text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
}

.alert-primary:hover{
  background-color: rgba(1, 204, 220, 0.33);
   transition:0.5s;
}

.alertprimary
{
      font-size: 18px;
    color: #03d0ff;
    text-shadow: none;
}

.square_box {
    position: absolute;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top-left-radius: 45px;
    opacity: 0.302;
}

.square_box.box_three {
    background-image: -moz-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    background-image: -webkit-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    background-image: -ms-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    opacity: 0.059;
    left: -80px;
    top: -60px;
    width: 500px;
    height: 500px;
    border-radius: 45px;
}

.square_box.box_four {
    background-image: -moz-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    background-image: -webkit-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    background-image: -ms-linear-gradient(-90deg, #290a59 0%, #3d57f4 100%);
    opacity: 0.059;
    left: 150px;
    top: -25px;
    width: 550px;
    height: 550px;
    border-radius: 45px;
}

.alert:before {
    content: '';
    position: absolute;
    width: 0;
    height: calc(100% - 44px);
    border-left: 1px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
      height: 20px;
}

.fa-times
{
-webkit-animation: blink-1 2s infinite both;
          animation: blink-1 2s infinite both;
}


/**
 * ----------------------------------------
 * animation blink-1
 * ----------------------------------------
 */
@-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}




/*.alert>.start-icon {
    margin-right: 0;
    min-width: 20px;
    text-align: center;
}

.alert>.start-icon {
    margin-right: 5px;
}


.alert-simple.alert-warning
{
      border: 1px solid rgba(241, 142, 6, 0.81);
    background-color: rgba(220, 128, 1, 0.16);
    box-shadow: 0px 0px 2px #ffb103;
    color: var(--color-amarillo);
    text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
}

.alert-warning:hover{
  background-color: rgba(220, 128, 1, 0.33);
  transition:0.5s;
}*/

.warning
{
      font-size: 18px;
    color: var(--color-amarillo);
    text-shadow: none;
}


/* ============ ALERTA ============ */





/* ============ IDIOMAS ============ */

.btn-secondary {
    color: #fff;
    background-color: var(--color-negro);
    border-color: var(--color-blanco);
}

.dropdown-toggle {
    background-color: var(--color-negro)!important;
    border-color: var(--color-blanco)!important;
}

.dropdown-toggle:focus {
    box-shadow: 0;
}

.dropdown-item:hover {
    color: #16181b;
    background-color: var(--color-negro);

}


/* ============ IDIOMAS ============ */




.titulotext{
  width:100%;
  color: var(--color-blanco);
  font-size: 2.2rem;
  text-align: center;
  padding-bottom: 20px;
}

.parratext{
  color: var(--color-blanco);
}

.containertext {
/*  width: 80%;*/
  display: grid;
  margin: auto;
}

.content {
  margin-bottom: 4em;
  text-align: center;
}

.content p {
  display: inline;
  background-repeat: no-repeat;
  transition: all 500ms ease-in-out;
}

.v2 p {
  background-position: left;
  background-size: 0% 100%;
  background-image: linear-gradient(#f6e05e, #f6e05e);
}

.v2:hover p {
  background-size: 100% 100%;
  color: black;
}

.parraimg{
  width: 400px;
  margin: auto;
}

/* ============ IDIOMAS ============ */





/* ============ CARD GENERAL ============ */
.maincard{
    width: 90%;
    text-align: center;
    margin: 0 auto;
}



.btn {
  color: var(--color-negro);
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
  display: block;
  width: 100%;
  cursor: pointer;
  background: var(--color-blanco);
  padding: 0.8rem;
}

.btn:hover {
  background-color: var(--color-amarillo);
  color: var(--color-negro);

}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

  .cards_item {
width: 25%;
  }




/* ================== Estilos para dispositivos móviles ================== */
@media (max-width: 767px) {

  .cards_item {
  width: 46%;
  }

.cards{
  justify-content: center;
}

.btn {
  padding: 6px;
  margin: 0 auto;
  width: 100%;
}

.fuentecard{
  font-size: x-small;
}


}/* ================== Estilos para dispositivos móviles ================== */





/* ================== Estilos para tablets ================== */
@media (min-width: 768px) and (max-width: 1023px) {

.cards_item {
    width: 30%;
  }

.btn {
  padding: 6px;
  margin: 0 auto;
  width: 70%;
}

.fuentecard{
  font-size: smaller;
}


}
/* ================== Estilos para tablets ================== */


.cardddd {
/*  background-color: white;*/
  border-radius: 24px;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  padding: 1rem;
}

.card_title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}
.card_height_100 {
  height: 100px;
}

.card_height_60 {
  height: 60px;
}

.card_height_50 {
  height: 50px;
}

.card_height_40 {
  height: 40px;
}

.card_height_20 {
  height: 20px;
}

.card_height_30 {
  height: 30px;
}

.card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;    
  font-weight: 400;
}



/* ============ CARD GENERAL ============ */





/*/* ============ TV ONLINE ============ */



.channel-layout {
   display: flex;


/*   min-height: 100vh;*/
   margin: 0 auto;
   width: 90%;
}
 .channel-layout > * {
   flex-basis: 100%;
}
 .channel-list-wrapper {
   padding: var(--space-sm);
}
 .channel-list-wrapper h1 {
   font-size: 1.75rem;
}
 .channel {
   background: var(--color-blanco);
/*   display: grid;*/
   grid-template-columns: 3rem 11rem;
   gap: 1rem;
   margin: 12px 0;
   padding: 0.5rem;
   border-radius: 5px;
   transition: all 250ms;
/*   height: 100%;*/
   cursor: pointer;
   box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
}

.channel:hover{
background: var(--color-amarillo);
color: var(--color-negro);
}

.channel-poster{
  width: 50px;
  border-radius: 5px;
  float: left;
/*  background-color: var(--color-negro);*/
}

.channel-info{
  float: right;
  padding-left: 20px;
}

.play-channel {
   all: unset;
   cursor: pointer;
/*   height: 100%;*/
   display: flex;
justify-content: center;
  align-items: center;
}

.channel-title {
  color: var(--color-negro);
   font-weight: 800;
   white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    width: 200px; /*   CAMBIAR largo de titulo canal */
}

.channel-language {
   color: gray;
   font-size: 11px;
}

.label {
   color: var(--color-blanco);
   margin: 20px 0 0.25rem 0;
}

#channel-playing{
  color: var(--color-blanco);
  font-size: 20px;
  font-weight: 600;
}

.player-wrapper {
  padding: 20px;
}


 .sticky {
   position: sticky;
   top: var(--space-sm);
}

 .video-wrapper {
   aspect-ratio: 1.7777777778;
   border-radius: var(--border-radius);
   overflow: hidden;
}
 .video-wrapper video {
   height: 100%;
   width: 100%;
   object-fit: contain;
}

.channel-list-wrapper {
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;

}

.language-buttons {
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  width: 90%;
  margin: 0 auto;
  color: var(--color-blanco);
  font-weight: 500;

  scrollbar-width: none;
}




.language-buttons::-webkit-scrollbar {
  width: 0px;
}

.channel-list-wrapper::-webkit-scrollbar {
  width: 0px;
}

.language-buttons button:hover {
  color: var(--color-amarillo);
}


.language-button {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 8px;
  background-color: transparent;
}





/* ================== Estilos para dispositivos móviles ================== */
@media (max-width: 767px) {

.channel-layout {
   display: block;
}





}/* ================== Estilos para dispositivos móviles ================== */






/* ============ TV ONLINE ============ */







/* ============ CALENDARIO DEPORTIVO ============ */

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100px;
}

.text-down2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: break-spaces;
  max-width: 100px;
}

.namehome{
      text-align: right;
}


.nameaway{
      text-align: left;
}



    /* Estilos para mostrar/ocultar información */
    .match-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }


    .infomatch {
      display: none;
    }
    .show-more {
      display: block;
      margin: 0px auto;
      padding-bottom: 10px;
    }
    .show-less {
      display: none;
      margin: 0px auto;
      padding-bottom: 10px;
    }
    .match-content .show-buttons {
      width: 100%;
      text-align: center;
    }
    .match-content .show-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      text-align: center;
      margin-top: 10px;
    }
    .match-content .show-buttons .class-container {
      flex-basis: 100%;
    }
    /* Estilos para colocar infomatch debajo de Mostrar menos */
    .match-content .show-buttons .infomatch-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-top: 10px;
    }
    .match-content .show-buttons .infomatch-container .infomatch {
      width: 100%;
    }

    /* Estilos originales */
    img.iiimmmg {
      display: block;
    }

    .match {
      background-color: white;
      display: flex;
      flex-direction: column;
      width: 50%;
      border-radius: 30px;
      box-shadow: 0 0 2px 0 rgba(48, 48, 48, 0.1), 0 4px 4px 0 rgba(48, 48, 48, 0.1);
    }

@media (max-width: 767px) {
    .match {
      width: 95%;
    }

    .team-name {
    font-size: 13px!important;
    }

    .time {
    font-size: 17px!important;
    }


}


@media (min-width: 768px) and (max-width: 1023px) {
    .match {
      width: 60%;
    }
}

    

    .minywith{
    width: 11%!important;
    }

    .match-header {
      display: flex;
      padding: 14px;
    }

    .date-header{
      text-align: center;
      padding: 10px;
      padding: 20px 10px 5px;
    }

    .teammatch{
      border-bottom: 2px solid rgba(48, 48, 48, 0.1);
    }

  .time {
    font-family: 'Open Sans', sans-serif;
    color: gray;
    font-weight: 400;
    font-size: 23px;
    text-align: center;
    font-weight: bold;
  
  }

.matchrow{
  padding: 20px 5px;
  justify-content: center;
}



    .match-status {
      background-color: #d72641;
      color: #d72641;
      padding: 8px 12px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      display: flex;
      align-items: center;
      line-height: 1;
      margin-right: auto;
    }
    .match-status:before {
      content: "";
      display: block;
      width: 6px;
      height: 6px;
      background-color: currentColor;
      border-radius: 50%;
      margin-right: 8px;
    }

    .match-tournament {
      display: flex;
      align-items: center;
      font-weight: 600;
      margin: 0 auto;
    }
    .match-tournament img {
      width: 20px;
      margin-right: 12px;
    }

    .match-actions {
      display: flex;
      margin-left: auto;
    }

    .btn-icon {
      border: 0;
      background-color: transparent;
      color: #dbdade;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .match-content {
      display: flex;
      position: relative;
      padding: 0 20px 20px 20px;
      justify-content: center;
    }

    .column {
      padding: 30px;
      position: relative;

        }

    .team {
      display: flex;
      align-items: center;
    }

    .team-logo {
      width: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
     
    }
    .team-logo img {
      width: 40px;
    }

    .team-name {
      font-family: 'Open Sans', sans-serif;
      font-size: 17px;
      font-weight: 400;
      margin-block-end: 0;
    }

    .match-details {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .match-date,
    .match-referee {
      font-size: 12px;
      color: #8A8F98;
    }
    .match-date strong,
    .match-referee strong {
      color: #1c2a38;
    }

    .match-score {
      margin-top: 12px;
      display: flex;
      align-items: center;
    }

    .match-score-number {
      font-size: 48px;
      font-weight: 600;
      line-height: 1;
    }
    .match-score-number--leading {
      color: #623ce6;
    }

    .match-score-divider {
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
      color: #dbdade;
      margin-left: 10px;
      margin-right: 10px;
    }

    .match-time-lapsed {
      color: #DF9443;
      font-size: 14px;
      font-weight: 600;
      margin-top: 8px;
    }

    .match-referee {
      margin-top: 12px;
    }

    .match-bet-options {
      display: flex;
      margin-top: 0px;
      padding-bottom: 6px;
    }

    .match-bet-option {
      margin-left: 4px;
      margin-right: 4px;
      border: 1px solid #dbdade;
      background-color: #F9f9f9;
      border-radius: 2px;
      color: #8A8F98;
      font-size: 11px;
      font-weight: 600;
      padding: 1px 8px;
    }

    .match-bet-place {
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      border: 0;
      background-color: #623ce6;
      border-radius: 6px;
      padding: 10px 48px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      box-shadow: 0 4px 8px 0 rgba(48, 48, 48, 0.25);
    }

    .containerr2 {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 20px;
    }



    .match-content .date {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin: 10px 0;
    margin: 50%;
  }


/* ============ CALENDARIO DEPORTIVO ============ */





/* ============ BLOG ============ */


.blogpage{
  color: var(--color-blanco)!important;
  padding: 20px;
}

.text-secondary{
  color: var(--color-blanco)!important;
}

.titulo{
  line-height: 0px;
}
/* ============ BLOG ============ */







/* ============ PLANES USD ============ */
.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card-basic {
  margin: 0 2rem 3rem 0;
  padding: 0 0 0.5rem 0;
  width: 20rem;
  background: #fff;
  color: #444;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0.5rem 0.5rem 1rem rgba(51, 51, 51, 0.2);
  overflow: hidden;
  transition: all 0.1ms ease-in-out;
}


/* ================== Estilos para dispositivos móviles ================== */
@media (max-width: 767px) {

.card-basic {
  margin: 0 0 3rem 0!important;
}


}/* ================== Estilos para dispositivos móviles ================== */



.card-basic:hover {
  transform: scale(1.02);
}

.card-header {
  height: 5rem;
  color: #fff;
  clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
}

.opensans{
  text-transform: uppercase;
  font-weight: 700;
}


.basicsports {
  background: #06532c;
}

.basicpremium {
  background: #02216b;
}

.basicgomax {
  background: #b41111;
}


.card-body {
  padding: 0.5rem 0;
}
.card-body h2 {
  font-size: 2rem;
  font-weight: 700;
}

.card-element-container {
  color: #444;
  list-style: none;
  padding: 0rem;
}

.btncard {
  margin: 0.5rem 0;
  padding: 0.7rem 1rem;
  outline: none;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.1ms ease-in-out;
  width: 80%;
}

.btncard:hover {
  transform: scale(0.95);
}

.btncard:active {
  transform: scale(1);
}

.card-element-hidden {
  display: none;
}




/* ============ PLANES USD ============ */






html#ecwid_html body#ecwid_body a:hover {
    color: #FFD700 !important;
    /* Cambiar a color amarillo dorado al hacer hover */
}

html#ecwid_html body#ecwid_body h1 {
    color: white !important;
}

html#ecwid_html body#ecwid_body .ec-storefront-v2 {
    color: white !important;
}

html#ecwid_html body#ecwid_body .grid-product__title-inner {
    color: white !important;
}

html#ecwid_html body#ecwid_body .grid-product__title-inner:hover {
    color: #FFD700 !important;
    /* Cambiar a color amarillo dorado al hacer hover */
}

html#ecwid_html body#ecwid_body .grid-product__price-value.ec-price-item {
    color: #FF69B4 !important;
}

html#ecwid_html body#ecwid_body .product-details__sidebar {
    color: white !important;
}

html#ecwid_html body#ecwid_body button:hover {
    background-color: #FFD700 !important;
    color: black !important;
}

html#ecwid_html body#ecwid_body button {
    background-color: #00FF00 !important;
    color: black !important;
}

html#ecwid_html body#ecwid_body .form-control__button-text {
    color: black !important;
}

html#ecwid_html body#ecwid_body .details-product-price__value {
    color: #FF69B4 !important;
}

html#ecwid_html body#ecwid_body .ec-cart-item__option {
    color: white !important;
}

html#ecwid_html body#ecwid_body .ec-cart-next__text {
    color: white !important;
}

html#ecwid_html body#ecwid_body .ec-size .ec-store .ec-link, html#ecwid_html body#ecwid_body .ec-size .ec-store .ec-link:visited {
    color: #FFD700 !important;
    transition: color 0.12s ease-out 0s !important;
}

html#ecwid_html body#ecwid_body .ec-notice__text {
    color: white !important;
}

html#ecwid_html body#ecwid_body span {
    color: white !important;
}

html#ecwid_html body#ecwid_body .form-control__placeholder-inner {
    color: white !important;
}

html#ecwid_html body#ecwid_body .form-control__text {
    color: #00FF00 !important;
}

html#ecwid_html body#ecwid_body .form-control__textarea {
    color: white !important;
}

html#ecwid_html body#ecwid_body .ec-cart-step__text .ec-text-muted {
    color: white !important;
}

html#ecwid_html body#ecwid_body .ec-size .ec-store .ec-text-muted {
    color: white !important;
}
