:root {

  /* Principal Color Pallete */
  --midnight-Blue: #145DA0;
  --dark-Blue: #0C2D48;
  --blue: #2E8BC0;
  --baby-Blue: #B1D4E0;

  /* Background Color Pallete */
  --bg-sol-ligth: #ffffff;
  --bg-sol-dark: #212529;
  --bg-wave: #edecf2;
  --bg-grey-ligth: #dfdfdf;

  /* Transparent Background Pallete */
  --bg-tra-dark: rgba(20, 12, 0, 0.45);
  --bg_tra_ligth: rgba(255, 255, 255, 0.2);

  /* Font Color Pallete */
  --text-principal: #000000;
  --text-primary: #0275d8;
  --text-success: #5cb85c;
  --text-danger: #d9534f;
  --text-warning: #f0ad4e;
  --text-info: #5bc0de;
  --text-dark: #292b2c;
  --text-muted: #777777;
  --text-white: #f7f7f7;

}

/* NOTEBOOK */
@media only screen and (min-width:716px) and (max-width:5000px) {

  body {
    background-color: #f3f3f3;
    overflow-x: hidden;
  }

  header {
    background-color: var(--bg-wave);
  }

  .container {
    width: 95%;
    max-width: 1300px;
    margin: auto;
  }

  /* HEADER */
  .contenedor_header {
    width: 100%;
    height: calc(100vh - 146px);
  }

  .menufilter {
    height: calc(100vh - 145px);
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .menufilter img {
    width: 100%;
    height: 100%;
  }

  .top_header {
    background: var(--bg-wave);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

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

  .top_header_left span {
    color: var(--text-principal);
  }

  .top_header_rigth {
    height: 40px;
    padding: 0px 10px;
    background: var(--text-danger);
    display: flex;
    align-items: center;
  }

  .top_header_rigth span {
    padding-right: 10px;
  }

  .novedades {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .info_cortes {
    border: 1px solid #f7f7f7;
    padding: 10px;
    border-radius: 10px;
    background: #fbfbfb;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
  }

  .fono_emergencia {
    color: #FF0000;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    letter-spacing: 1.4;
    align-items: center;
    font-weight: bold;
  }


  .header {
    background-color: var(--bg-sol-ligth);
  }

  .header>.container {
    height: 105px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo img {
    height: 100px;
  }

  .header .contenedor_botones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .header .form_acceso {
    width: 290px;
    height: 200px;
    background-color: #d5dee7;
    position: absolute;
    z-index: 9;
    top: 20px;
    right: -10px;
    border-radius: 5px;
    display: none;
  }

  .contendor_formulario_ov {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .contendor_formulario_ov form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .slogan {
    width: 100%;
    position: absolute;
    top: 45%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 46px;
    font-weight: bold;
    color: var(--text-principal);
    text-transform: uppercase;
  }

  /* MENSAJE PRINCIPAL */
  .contenedor_mensaje_principal {
    width: 100%;
    background: var(--bg-wave);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contenedor_mensaje_principal img {
    width: 200px;
    margin: 40px 0px;
  }

  .titulo {
    color: var(--text-principal);
    font-size: 36px;
    padding-bottom: 15px;
    font-style: italic;
  }

  .contenedor_mensaje_principal span {
    width: 80%;
    margin: auto;
    color: var(--text-principal);
    font-size: 20px;
    font-style: italic;
  }

  .contenedor_utilidad_publica {
    background: var(--bg-wave);
  }

  /* ACCESO MODULOS */

  .contenedor_accesomodulos {
    width: 100%;
    background: var(--bg-wave);
    padding: 40px 0;
  }

  .contenedor_accesomodulos .items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: auto;
  }

  /* MENSAJES DE CORTE */
  .contenedor_cortes {
    height: 80px;
    background: var(--bg-wave);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contenedor_cortes .marquesina {
    width: 100%;
    animation: scrolling 20s linear infinite;
  }

  .marquesina span {
    color: var(--text-principal);
    font-size: 15px;
  }

  @keyframes scrolling {
    0% {
      transform: translateX(120%)
    }

    100% {
      transform: translateX(-100%)
    }
  }

  /* IDEA FUERZA TOP */
  .contenedor_fuerza_top {
    width: 100%;
    height: 200px;
    padding: 70px 0px;
    background-color: var(--bg-grey-ligth);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--text-dark)
  }

  .contenedor_fuerza_top .fuerza_titulo {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1.2px;
    padding: 20px 0px;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.7);
  }

  .contenedor_fuerza_top span {
    font-style: oblique;
    font-size: 22px;
    padding: 0px 70px;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.7);
  }

  /* CONOCE TU BOLETA */
  .contenedor_boleta {
    height: 300px;
  }

  .contenedor_imagen {
    width: 40%;
    position: relative;
  }

  .modalboleta {
    width: 1000px; 
    background: white; 
    padding: 20px; 
    border-radius: 10px; 
    position: relative; 
    top: -150px; 
    left: calc(50% - 500px); 
    z-index: 99999;
  }

  .modalboletashow {
    display: block;
  }

  .modalboletahide {
    display: none;
  }

  #closemodal {
    float: right;
    font-weight: bold;
    font-size: 12px;
    color: white;
    background: var(--bg-wave);
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
  }

  .contenedor_boleta .card {
    display: flex;
    background-color: #0093E9;
    background-image: linear-gradient(30deg, #0093E9 0%, #c3f2ee 100%);
    box-sizing: border-box;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    border-radius: 5px;
    padding: 10px;
    position: relative;
    top: -400px
  }

  .contenedor_imagen img {
    width: 300px;
    position: relative;
    top: -55px;
    z-index: 999;
    filter: drop-shadow(0 0 5px rgb(0 0 0 / 10%));
    transform: rotate(10deg);
  }

  .contenedor_boleta .contenedor_texto {
    width: 100%;
    height: 300px;
    margin-left: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .contenedor_texto span {
    font-size: 40px;
    color: var(--text-principal);
    font-style: italic;
  }


  .btn_conoce_boleta {
    border: 0px solid black;
    width: 300px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--text-danger);
    color: var(--text-white);
    margin: 10px;
    cursor: pointer;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
  }





  /* IDEA FUERZA MIDDLE */

  .contenedor_fuerza_middle {
    margin-top: 50px;
    z-index: 9999;
  }

  .contenedor_fuerza_middle .card {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;

    box-sizing: border-box;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    border-radius: 5px;
    padding: 10px;
    overflow: hidden;
  }


  /* IDEA FUERZA BOTTOM */
  .contenedor_fuerza_buttom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .contenedor_fuerza_buttom span {
    font-size: 22px;
    color: var(--text-principal);
    font-style: italic;
    letter-spacing: 1.4px;
    text-align: center;
    margin: 80px 0px;
  }



  /* FOOTERS */
  /* FOOTER CLIENTE */
  .contendor_footer_cliente {
    background: var(--dark-Blue);
    padding: 40px;
  }

  .contendor_footer_cliente .container {
    display: flex;
    justify-content: space-around;
  }

  .cols {
    width: 33%;
    display: flex;
    flex-direction: column;
  }

  .cols:nth-child(1),
  .cols:nth-child(2) {
    border-right: 1px var(--blue) dotted;
    padding-left: 10px;
  }

  .cols:nth-child(3) {
    padding-left: 10px;
  }

  .col1 a,
  .col1 span,
  .col2 a,
  .col2 span,
  .col3 a,
  .col3 span {
    font-size: 12px;
    color: var(--text-white);
    letter-spacing: 1.5px;
    padding-bottom: 3px;
    text-decoration: none;
  }

  /* FOOTER ASESORA */
  .contendor_footer_asesora {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--bg-sol-dark);
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 30px;
  }

  .contendor_footer_asesora img {
    padding: 5px 0 2 0;
    height: 50px;
  }

  .contenedor_interior_header {
    height: calc(100vh - 146px);
    display: flex;
    align-items: center;
  }

  .titulo_pagina_interior {
    width: 100%;
    padding: 20px 0px 20px 120px;
    background: var(--bg-tra-dark);
    font-size: 38px;
    color: var(--text-white);
    position: absolute;
    top: 55%;
  }

  .titulo_pagina_middle_interior {
    width: 100%;
    height: 100%;
    padding: 20px 0px 20px 120px;
    background: var(--bg-tra-dark);
    font-size: 38px;
    color: var(--text-principal);
    position: absolute;
    top: 55%;
  }

  .contenedor_interior_contenido {
    width: 100%;
    min-height: 200px;
    background: var(--bg-sol-ligth);
    padding: 50px;
    box-sizing: border-box;
    text-align: justify;
  }

  .contenedor_middle_header {
    height: 50vh;
  }

  .contenedor_middle_header div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--text-white);
    background: var(--bg-tra-dark);
  }

  .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--text-principal);
    background-color: var(--bg-wave);
  }

  /* CONTACTO */
  .contacto_width {
    width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contenedor_mensaje {

  }

  .contenedor_horario {
    background: #ffffff;
    border: 1px solid #f7f7f7;
    color: var(--bg-wave);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
  }

  .citar_open {
    width: 60px;
    rotate: 90°;
    transform: rotate(180deg);
    position: relative;
    top: 30px;
    left: -30px;
  }

  .citar_close {
    width: 60px;
    float: right;
    position: relative;
    top: -30px;
    right: -30px;
  }

  .contacto_slogan {
    background: #ffffff;
    border: 1px solid #f7f7f7;
    color: var(--bg-wave);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    text-shadow: 1px 0px 2px var(--text-principal);
  }

  .contacto_datos {
    width: 100%;
    background: #f5f5f5;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: space-around;
    gap:10px;
  }

  .item_contacto {
    width: 25%;
    height: 120px;
    padding: 10px;
    border-radius: 5px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 0px 10px 1px rgba(90, 90, 90, 0.2);
  }

  .contacto_datos .material-symbols-outlined {
    width: 45px;
    height: 45px;
    background: var(--bg-wave);
    color: var(--text-principal);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    
  }

  .contacto_datos .datos_texto {
    color: var(--bg-wave);
    font-size: 14px;
    font-weight: bold;
  }

  .contacto_formulario {
    width: 100%;
    background: #f5f5f5;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
  }

  .contacto_formulario div {
    margin-bottom: 10px;
  }

  .contacto_formulario label {
    background: var(--bg-wave);
    color: var(--text-principal);
    font-size: 11px;
    text-transform: uppercase;
    position: relative;
    left: 10px;
    top: 5px;
    padding: 2px 20px;
    border-radius: 20px;
  }

  .contacto_formulario input {
    border-radius: 20px;
    border: 0px;
    height: 30px;
    width: 100%;
    padding-left: 15px;
  }

  .contacto_formulario textarea {
    border-radius: 10px;
    border: 0px;
    width: 100%;
    padding-left: 15px;
  }

  .btn_formulario {
    width: 200px !important;
    background: var(--bg-wave);
    color: var(--text-principal);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
  }

  .contenedor_politicas {
    padding: 10px 0px;
  }
  
  .contenedor_politicas a {
    text-decoration: none;
    color: white;
    font-size: 10px;
  }

  .contenedor_webpay {
    display: flex;
    gap: 10px;
  }

  .ayuda_video {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .ayuda_video img {
    width: 70px;
    height: 40px;
    position: relative;
    left: -20px;
  }

  .video_webpay_mobile {
    display: none !important;
  }
  
  .modal_video .close {
    display: flex;
    justify-content:space-between;
    text-align: center;
    width: 100%;
    color: white
  }

  .modal_video {
    border-radius: 5px;
    width: 570px;
    height: 370px;
    background-color: #000000ba;
    position: absolute;
    z-index: 99999;
    top: calc(50% - 172px);
    left: calc(50% - 210px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 4px;
  }
}