<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://fonts.bunny.net/css?family=darker-grotesque);
:root {
  --line-border-color: #006dd6;
  --disabled-line-border: #d1d2d4;
  --button-active-color: #830a48;
  --text-color: #868991;
}

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

html {
  font-size: 62.5%;
}

body {
  align-items: center;
  background-color: #eaeaea;
  display: flex;
  font-family: "darker grotesque", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  justify-content: center;
  min-height: 100vh;
}

.containerbarra {
  text-align: center;
  position: absolute; 
  top: 370px;
   z-index: 9999;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  width: 35rem;
  width: 500%;
   left: -200%;
}

.progress-container::before {
  background-color: var(--disabled-line-border);
  content: "";
  height: 0.4rem;
  left: 0;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}

.progress {
  background-color: var(--line-border-color);
  height: 0.4rem;
  left: 0;
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  transition: 0.4s ease;
  width: 0%;
  z-index: -1;
}

.circle {
  align-items: center;
  background-color: #fff;
  border: 3px solid var(--disabled-line-border);
  border-radius: 50%;
  color: var(--text-color);
  display: flex;
  height: 5rem;
  justify-content: center;
  transition: 0.4s ease;
  width: 5rem;
  font-size: 40px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.circle.active {
  border-color: var(--line-border-color);
  font-size: 40px;
}

.btn:disabled {
  background-color: var(--disabled-line-border);
  border-radius: 0.5rem;
  border: none;
  color: var(--text-color);
  cursor: not-allowed;
  font-size: 1.8rem;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
}

.btn {
  background-color: var(--line-border-color);
  border-radius: 0.5rem;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  transition: background-color 0.5s, transform 0.5s;
}

.btn:active {
  transform: scale(0.9);
  background-color: var(--button-active-color);
}

.btn:focus {
  outline: none;
}


.contenedor {
    background: #fff;
    border-radius: 12px;
    box-shadow: 19px 20px 8px -9px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 400px;
    position: absolute;
    left: 20%;
    top : 460px;
}
.cabecera {
    background: #13334c;
    color:azure;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 6px 40px;
}
#formulario {
    padding: 13px 20px;
}

.form-control {    
    margin-bottom: 7px;
    padding-bottom: 4px;
    position: relative;
}

.form-control label {
    display: inline-block;
    margin-bottom: 7px;
    font:weight 200px
}

.form-control input {
    border: none;
    background-color: #f0f0f0;
    display: block;
    font-family: inherit;
    font-size: 16px;
    padding: 12px;
    width: 100%;    
}
.form-control, input:focus {
    outline: none;
}

.form-control.ok input {
    border: 0.1px solid;
    border-color: #08ffc8;
}
.form-control.falla input {
    border: 0.1px solid;
    border-color: #fe5f55;
}

#formulario button {
    background: #006DD6;
    border:1px solid #006DD6;
    border-radius: 2px;
    color: #f6f6e9;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 18px;
}
.form-control p {
    visibility: hidden;
    position: absolute;
    font-size: small;
    font-weight: 500;
    text-align: right;
}

.form-control.falla p {
    visibility: visible;
    color:#e74c3c;
}
.tabla-res{
    top: 600px; left: 60%; position: absolute;
  }

  .res-styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1.1em;
    font-family: sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 500px;
    height: 120px;
}

.res-styled-table thead tr {
    background-color: #0c1c5c;
    color: #ffffff;
    text-align: left;
    font-size: 1.1em;
}

.res-styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.res-styled-table tbody tr {
    border-bottom: 1px solid white;
}

.res-styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.res-styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #006dd6;
}

.res-styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

.res-titulo-tabla{
    text-align: center; 
    color: #fefeff;
     font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-size: 40px;
      font-weight: bold;
      background-color: #0c1c5c;
      padding-bottom: 20px;
      border-radius: 10px;
  }
  
  .confirmar-compra {
    background-color: #0c1c5c;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    display: none;
}

.navbar {
  padding-top: 14px !important;
  padding-bottom: 25px !important;
}

.logos {
      position: relative;
      left: 60px;
      width: 80%;
      height: auto;
    }

    .container.home-intro-container.w-container {
      text-align: center;
    }

    .nav-menu {
      display: flex;
      align-items: center;
    }

    .left-section {
  display: flex;
  align-items: center;
  padding-top: 11;
   padding-bottom: 12;
     border-radius: 5px;
}

.buto{
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: 900;
	font-variant: normal;
	text-transform: none;
	color: black;
	text-decoration: none;
	text-align: center;
	padding: 12px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
  background-color: white;
	height: auto;
	width: auto;
	border: thin solid WHITE;
	cursor: pointer;
	-webkit-transition: all 300ms ease-in 0ms;
	-moz-transition: all 300ms ease-in 0ms;
	-ms-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
	box-sizing: border-box;
	display:inline-block;
	border-radius: 8px;
}

.buto:hover{
	color: #0c1c5c;
	border: thin solid #00489F;
	-webkit-transition: all 300ms ease-in 0ms;
	-moz-transition: all 300ms ease-in 0ms;
	-ms-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
}

.telefono-inicio{
  text-decoration: none;
   margin-left: auto; 
    color:gray;
     font-family: Verdana, Geneva, Tahoma, sans-serif;
}


.button1{
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background-color: #006DD6;
	text-align: center;
	padding: 12px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	height: auto;
	width: auto;
	border: thin solid #006DD6;
	cursor: pointer;
	-webkit-transition: all 300ms ease-in 0ms;
	-moz-transition: all 300ms ease-in 0ms;
	-ms-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
	box-sizing: border-box;
	display:inline-block;
	border-radius: 8px;
}

.button1:hover{
	background-color: #00489F;
	border: thin solid #00489F;
	-webkit-transition: all 300ms ease-in 0ms;
	-moz-transition: all 300ms ease-in 0ms;
	-ms-transition: all 300ms ease-in 0ms;
	-o-transition: all 300ms ease-in 0ms;
	transition: all 300ms ease-in 0ms;
}

.right-section {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-top: 11;
   padding-bottom: 12;
     border-radius: 5px;
}
.separacion-barra{
    z-index: 9999;
    background-color: red;
    position: absolute;
    bottom: -550px;
    width: 100%;
    left: 0px;
  }

  .simple-white-footer {
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
    margin-right: auto;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.datos {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            color: black;
            z-index: 99999999;
        }
        .datos img {
            width: 30px;
        }
        .direccion-info {
            color: black;
            font-size: 18px;
            text-decoration: none;
        }

        .correo-info {
            color: black;
            font-size: 22px;
            text-decoration: none;
            margin: auto;
        }
        .iconos{
          width: 30px;;
        }
      
        .fondo-table{
  background-color: white;
}


.table-fin {
   
            border-collapse: collapse;
            width: 115%;
            height: 120px;
        }
        
  .table-fin th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
       .table-fin tr:hover {
            background-color: #f5f5f5;
        }

        .finalizar-compra {
    background-color: #0c1c5c;
    color: #ffffff;
    border: none;
    padding: 13px 16px;
    font-size: 1.1em;
    cursor: pointer;
    width: 115%;
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    display: block;
    font-size: 37px; text-decoration: none;
}

#contenido{
  display:none;
}

.contenido-tablas-fin{
    font-size: 20px;
}

.titulo-tablas-fin{
    font-size: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.payment-methods {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 0 auto;
  background-color: white;
  border-radius: 5px;
  width: 300px;
  height: 400px;
}

.payment-methods h2 {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.whatsapp-icon {
      position: fixed;
      bottom: 35px;
      right: 25px;
      z-index: 999;
      width: 80px;
      height: auto;

    }

    .facebook-icon {
      position: fixed;
      bottom: 130px;
      right: 25px;
      z-index: 999;
      width: 80px;
      height: auto;

    }

    .prepago {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 300px;
  margin-top: 570px;
  display: none;
  position: absolute;
}

.prepago-table{
  position: absolute;
  width:50%; 
  height:50; 
  border:0; 
  text-align:center; margin:0 auto;
}

.td-inicio{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #000;
    text-decoration: none;
    box-sizing: border-box;
    z-index: 9999;
}

.h3-inicio{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 32px;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #FFF;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
    z-index: 9999;
}

.h5-inicio{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 25px;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #FFF;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
    z-index: 9999;
}

.adquiere{
  margin-top:-520px;
   align-items: center;
    text-align: center;
     justify-content: center;
      width: 100%;
       z-index:9999;
}

.fin-compra{
  position: absolute;
   top: 530px;
    left: 10%;
     display: none;
}

.fin-compra h2{
  color: black;
   font-weight: bolder;
    font-size: 40px;
}

.fin-compra p{
  text-align: center;
   color: black;
   font-size: 25px;
}

.seleccionametodo{
  position: absolute;
   top: 500px;
    left: 20%;
     display:none; 
     text-align: center;
      justify-content: center;
}

.seleccionametodoh2{
  align-items: center;
   justify-content: center;
    text-align: center;
}




.sobresaliente-tabla{
  width: 50%;
  height: 40%;
  position: absolute; 
  left: 100px; 
  top:750px; 
  z-index:9999;
}

.sobresaliente-tabla td{
  width: 607;
  valign: middle;
  text-align: center;
  align-items: center;
  justify-content: center;

}

.sobresaliente-imagenes{
  width:100px;
  height:auto;
}

.sobresaliente-texto{
  color: black;
    font-size: 22px;
}











@media only screen and (max-width: 1000px) and (max-height: 1400px) {
  .contenedor {
    background: #fff;
    border-radius: 12px;
    box-shadow: 19px 20px 8px -9px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 400px;
    position: absolute;
    left: 0px;
    top : 760px;
    margin-top: 100px;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  width: 35rem;
  width: 140%;
   left: -40px;
}




    .whatsapp-icon {
      position: fixed;
      bottom: 35px;
      right: 25px;
      z-index: 999;
      width: 50px;
      height: 50;
    }
  

    .facebook-icon {
      position: fixed;
      bottom: 90px;
      right: 25px;
      z-index: 999;
      width: 50px;
      height: 50;
    }

  .inferior-logo {
  position: absolute;
  bottom: 60;
  left: -1200px;
}
.adquiere{
  margin-top: -300px;
   align-items: center;
    text-align: center;
     justify-content: center;
      width: 100%;
       z-index:9999;
}

.containerbarra {
  text-align: center;
  position: absolute; 
  top: 470px;
   z-index: 9999;
}

.tabla-res{
    top: 520px; right: 0px; position: absolute;
  }


  .simple-white-footer {
    text-align: center;
    padding-left: 25px;
    padding-right: 108px;
    margin-top: -30;
}

.bottom-footer-paragraph
{
    font-size: 1px;
    text-align: center;
    font-size: 14px;
     text-align: center;
}

.datos {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      background-color: white;
      color: black;
    }

    .datos img {
      width: 30px;
    }
    

    .datos {
        flex-wrap: wrap;
      }

      .datos a {
        flex-basis: 100%;
        margin-bottom: 10px;
      }

      .direccion-info {
      color: black;
      font-size: 10px;
      text-align: center;
      text-decoration: none;
    }
    .correo-info {
      color: black;
      font-size: 10px;
      text-align: center;
      text-decoration: none;
    }

    .separacion-barra{
    z-index: 9999;
    background-color: red;
    position: absolute;
    bottom: -1100px;
    width: 100%;
    left: 0px;
  }

  .res-styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.7em;
    font-family: sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 120px;
}

.res-titulo-tabla{
    text-align: center; 
    color: #fefeff;
     font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-size: 25px;
      font-weight: bold;
      background-color: #0c1c5c;
      padding-bottom: 20px;
      border-radius: 10px;
  }

  .tabla-res{
    top: 520px; left: 0px; position: absolute;
  }
  .logos{
    left: 0px;
  }

  .circle {
    align-items: center;
    background-color: #fff;
    border: 3px
 solid var(--disabled-line-border);
    border-radius: 50%;
    color: var(--text-color);
    display: flex;
    height: 4rem;
    justify-content: center;
    transition: 0.4s ease;
    width: 4rem;
    font-size: 28px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.h3-inicio{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 27px;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #FFF;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
    z-index: 9999;
}

.h5-inicio{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #FFF;
    text-decoration: none;
    margin: 0px;
    padding: 0px;
    z-index: 9999;
}
.fin-compra{
  position: absolute;
   top:850px;
    left: 0%;
     display: none;
}

.table-fin {
   
   border-collapse: collapse;
   width: 100%;
   height: 120px;
}

.fin-compra h2{
  color: black;
   font-weight: bolder;
    font-size: 30px;
}

.fin-compra p{
  text-align: center;
   color: black;
   font-size: 17px;
}

.titulo-tablas-fin{
    font-size: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.contenido-tablas-fin{
    font-size: 11px;
}

.finalizar-compra {
    background-color: #0c1c5c;
    color: #ffffff;
    border: none;
    padding: 13px 16px;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    border-radius: 10px;
    display: block;
    font-size: 37px; text-decoration: none;
}

.circle.active {
  border-color: var(--line-border-color);
  font-size: 22px;
}

.seleccionametodo{
  position: absolute;
   top: 784px;
    left: 10%;
     display:none; 
     text-align: center;
      justify-content: center;
}

.div-sobresaliente{
    display: block;
    top: 307px;
    position: absolute;
    left: -25px;
}

.prepago {
  width: 139%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 300px;
  margin-top: 1152px;
  display: none;
  position: absolute;
}



}


    

    &lt;/style&gt;

    &lt;style type="text/css"&gt;
#select{
  display: block;
}
    &lt;/style&gt;
&lt;/head&gt;

&lt;style&gt;
  @media only screen and (max-width: 1750px) and (max-height: 1295px) {
  .right-section {
    display: flex;
    align-items: center;
    margin-right: 5%;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
}

.left-section {
    display: flex;
    align-items: center;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
    margin-left: 7%;
}
}

@media only screen and (max-width: 1550px) and (max-height: 1295px) {
  .right-section {
    display: flex;
    align-items: center;
    margin-right: 10%;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
}

.left-section {
    display: flex;
    align-items: center;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
    margin-left: 11%;
}
}

@media only screen and (max-width: 1476px) and (max-height: 1295px) {
  .nav-menu {
    z-index: 1;
    border-radius: 4px;
    margin-top: -57px;
}
}


@media only screen and (max-width: 1476px) and (max-height: 1295px) {
.nav-menu {
  height: 60px;
   width: 100%;
    right: 3%; 
}
}

@media only screen and (max-width: 1402px) and (max-height: 1295) {
.nav-menu {
  height: 60px !important;
   width: 132% !important;
    margin-right: -250px !important;
}
}

@media only screen and (max-width: 1296px) and (max-height: 1295px) {
.nav-menu {
  height: 60px !important;
   width: 122% !important;
    margin-right: -166px !important;
}
}

@media only screen and (max-width: 1230px) and (max-height: 1295px) {
.nav-menu {
  height: 60px !important;
   width: 111% !important;
    margin-right: -122px !important;
}

.logos{
  left: 23px;
}

.left-section{
  margin-left: 9%;
}

.nav-link.dropdown-toggle.light {
    padding-right: 12px !important;
}
}


@media only screen and (max-width: 1240px) and (max-height: 1295px) {
  .nav-link.light {
    color: #fff;
    margin-right: -23px !important;
    padding-top: 12px;
    padding-left: 12px;
    padding-right: 12px;
}
.left-section {
    display: flex;
    align-items: center;
    padding-top: 11;
    padding-bottom: 12;
    border-radius: 5px;
    margin-left: 13%;
}
}

@media only screen and (max-width: 1081px) and (max-height: 1295px) {
  .logos {
    position: relative;
    left: -960px;
    width: 80%;
    height: auto;
}

.nav-menu {
    height: 60px;
    width: 121%;
    margin-right: -87px;
}
}

.nav-menu {
  height: 60px;
   width:160%; 
   margin-right: -400px;
}

@media only screen and (max-width: 1000px) and (max-height: 1400px) {
  .datos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: white;
    color: black;
  }

  .datos img {
    width: 30px;
  }
  

  .datos {
      flex-wrap: wrap;
    }

    .datos a {
      flex-basis: 100%;
      margin-bottom: 10px;
    }

    .direccion-info,
    .correo-info {
      margin-right: 0;
    }


    .whatsapp-icon {
    position: fixed;
    bottom: 35px;
    right: 25px;
    z-index: 999;
    width: 50;
    height: 50;
  }


  .facebook-icon {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 999;
    width: 50;
    height: 50;
  }
  .telefono-info {
    color: black;
    font-size: 10px;
    text-decoration: none;
    text-align: center;
  }
  .direccion-info {
    color: black;
    font-size: 10px;
    text-align: center;
    text-decoration: none;
  }

  .correo-info {
    color: black;
    font-size: 10px;
    text-align: center;
    text-decoration: none;
  }

  .logos{
    left: 0px;
  }

  .nav-link {
  padding: 1px 16px !important;
}

.right-section {
display: block;
align-items: center;
margin-left: auto;
padding-top: 11;
 padding-bottom: 12;
  background-color: #0c1c5c;
   border-radius: 5px;
}
.left-section {
display: block;
align-items: center;
padding-top: 55px;
 padding-bottom: 12;
  background-color: #0c1c5c;
   border-radius: 5px;
   margin-left: 0%;
}

.telefono-inicio{
  display: none;
}

body{
  background-color: #eaeaea !important;
}


}



@media only screen and (max-width: 1101px) and (max-height: 1400px) {
  .tabla-res{
    margin-left: -15%;
  }

  .contenedor{
    left: 1%;
  }
}</pre></body></html>