*{
    margin : 0;
    padding : 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/Presentacion.jpg);
    background-position: top left;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
.index{
    display: flex;
    padding: 1% 6%;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: fixed;
    width: -webkit-fill-available;
}
nav img{
    width: 250px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links-index ul li a{
    color: #000;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background-color: #339993;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #339993;
    background: #339993;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 920px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #005c8a;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;

    }
}
/*------- nosotros -------*/
.nosotros{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    justify-content: right;
}
.nosotros-desc{
    font-size: 16px;
    width: 90%;
    margin: auto;
    text-align: justify;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.nosotros-col{
    flex-basis: 31%;
    background: #f3feff;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.nosotros-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);

}
@media(max-width: 920px){
    .row{
        flex-direction: column;
    }
}
/*------- nuestrasMarcas-------*/
.nuestrasMarcas h1{
    margin-bottom: 35px;
}
.nuestrasMarcas{
    width: 50%;
    max-width: 70rem;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.nuestrasMarcas-col{
    flex-basis: 45%;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
}
.nuestrasMarcas-col div{
    display: inline-block;
    align-items: center;
    margin-bottom: 40px;
}
.nuestrasMarcas-col img{
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}
/*------- equipoMedico-------*/
.equipoMedico{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.equipo-medico{
    width: 80%;
    max-width: 70rem;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.equipoMedico-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;

}
.equipoMedico-col a{
    text-decoration: none;
}
.equipoMedico-col img{
    display: flex;
    width: 100%;

}
.equipoMedico-col h2{
    display: flex;
    width: 100%;
    font-size: 1.1rem;
    margin: 0;
    color: #005c8a;
    align-self: flex-start;
    justify-self: left;
}
.equipoMedico-col p{
    margin: 0;
    padding: 0 0 0.9rem 0;
    text-align: left;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: 0.5s;
}
.layer:hover{
    background: rgba(2, 156, 184, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 30%;
    opacity: 1;
}
.mostrar-btn{
    background-color:#037971;
    width: 60%;
    border-radius: 0.5rem;
}
.show-btn{
    align-self: center;
    z-index: 4;
    text-decoration: none;
    color: rgb(3, 25, 36);
    border: 1px solid rgb(3, 25, 36);
    border-radius: 3px;
    /* border: none; */
    padding: 3px 16px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.listado-productos{
    margin-top: 4rem;
    font-size: 60%;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.4rem;
    text-align: center;
}
.listado-productos li{
    display: flex;
    padding: 0.5rem;
    border: 1px solid #ddd;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
    align-items: center;
    justify-items: center;
    text-align: left;
    max-width: 20rem;
}
.listado-productos li:hover{
    border: 4px solid #0e9e92;
    
}
.listado-productos a{
    text-decoration: none;
    color: #037971;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    margin: auto;
    align-self: center;
}
.listado-productos a img{
    max-width: 100%;
    max-height: 10rem;
    object-fit: contain;
}
.listado-productos h2{
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.1;
}
.listado-productos p{
    margin: 0.3rem 0;
    line-height: 1.1;
    padding: 0;
}
select{
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
    outline: none;
    border: none;
    /* box-sizing: border-box; */
}
.select{
    margin: 1rem;
    position: relative;
    overflow: hidden;
    padding-left: 1rem;
    /* max-width: 10rem; */
}
select{
    color: #005c8a;
    width: 10rem;
    cursor: pointer;
    padding: 1rem;
}
.select::after{
    /* content: '\25BC'; adds the arrow */
    /* position: absolute; */
    background: #6ee4dc;
    top: 0;
    right: 0;
    padding: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}
.select:hover::after{
    background: white;
    color: #0e9e92;
}
select .filtrar-producto{
    min-width: 10rem;
}
/* .show-btn:hover{
    color: white;
    border: 1px solid #fff;
} */
/*----- servicioTecnico -----*/
.servicioTecnico{
    width: 80%;
    margin: auto;
    /* margin-top: 6rem; */
    text-align: center;
    margin-top: 100px;
}

.servicioTecnico-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.servicioTecnico-col img{
    width: 100%;
    border-radius: 10px;
}
.servicioTecnico-col p{
    padding: 0;
}
.servicioTecnico-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
/*----- testimonios -----*/
.testimonios{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.testimonios-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f3feff;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonios-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonios-col p{
    padding: 0;
}
.testimonios-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonios-col .fa{
    color: #005c8a;
}
@media(max-width: 920px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}
/*------- Call To Action -------*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/untitled-2291.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
@media(max-width: 920px){
    .cta h1{
        font-size: 24px;
    }
}
/*------- footer -------*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top:  20px;
    font-weight: 600;
}
.icons .fa{
    color: #037971;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.logos-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 80%;
    margin: auto;
}
.logos-row img{
    max-height: 6rem;
    max-width: 90%;
}
.footer-bottom{
    background-color: #f3feff;
    text-align: center;
    padding: 0.5rem;
}
/*------Quienes somos?-----*/
.sub-header{
    height: 45vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/IMG_3109e.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;

}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img{
    width: 100%;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}
.color-btn{
    border: 1px solid #005c8a;
    background: transparent;
    color: #005c8a;
}
.color-btn:hover{
    color: #fff;
}
/*-------blog-content-------*/
.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left{
    flex-basis: 65%;
}
.blog-left img{
    width:100%;
    border-radius: 20px;
}
.blog-left h2{
    color: rgb(29, 27, 27);
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p{
    color: rgba(59, 58, 58, 0.6);
    padding: 0;
    font-weight: 400;
    font-size: medium;
}
.blog-right{
    flex-basis: 32%;
}
.blog-right h3{
    background: #037971;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right h4{
    color: rgba(59, 58, 58, 0.6);
    padding: 7px 7px;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
    justify-content: right;
    font-style: italic;
}
.blog-right .fa{
    color: #005c8a;
}
.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(85, 85, 85);
    padding: 8px;
    box-sizing: border-box;
}
.comment-box{
    border: 1px solid rgb(204, 204, 204);
    margin: 50px 0;
    padding: 10px 20px;
}
.comment-box h3{
    text-align: left;
}
.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button{
    margin: 10px 0;
}
@media(max-width:700px){
    .sub-header h1{
        font-size: 24px;
    }
    .sub-header-catalogo h1{
        font-size: 24px;
    }
}
/*------ contact us page -------*/
.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;

}
.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div .fa{
    font-size: 28px;
    color: #037971;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: rgb(85, 85, 85);
    font-weight: 500;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid rgb(204, 204, 204);
    box-sizing: border-box;
}
/*---foto-locacion--*/
.foto-locacion{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/untitled-2317.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 200px 0;
}
.foto-locacion h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
.btn-wsp{
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #0df053;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index: 100;
}
.btn-wsp:hover{
    text-decoration: none;
    color: #0df053;
    background-color: #fff;
}
.btn-waze{
    position: fixed;
    width: 55px;
    height: 55px;
    line-height: 55px;
    bottom: 100px;
    right: 30px;
    background: #05c8f7;
    color: #000;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index: 100;
}
.btn-waze:hover{
    text-decoration: none;
    color: #05c8f7;
    background-color: #000;
}
.btn-waze iconify-icon{
    transform: translateY(10%);
}

/* ----- Catalogo productos------  */
.sub-header-catalogo{
    height: 35vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/IMG_3109e.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header-catalogo h1{
    margin: auto;

}
/* --------Despliegue de Catalogo-------- */
.catalogo{
    position: relative;
    width: 100%;
    min-width: 320px;
    min-height: 850px;
    padding: 0;
    margin: 0 !important;
    box-sizing: border-box;
    background: radial-gradient(#303d55, #2f3352);
}
.fondo-principal{
    width: 100%;
    min-height: 900px;
    background: url("./images/img/bgRectangl.png")left center no-repeat,
    url("./images/img/layer-3-copy-2.png") center center no-repeat,
    url("./images/img/mainBg.png")top center no-repeat;
    padding: 1rem 0;
}
.carta_producto{
    position: relative;
    margin: 3.5rem auto 0;
    background-color: white;
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem,1fr));
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem; */
    display: flex;
    width: 80%;
    max-width: 60rem;
    height: 65%;
    padding: 0.8rem;
    border-radius: 0.5rem;
}
.oculto{
    display: none;
}
.col-producto-izq{
    align-self: center;
    border-radius: 0.8rem;
    padding: 0.5rem;
    gap: 1rem;
    width: 50%;
    display: flex;
    flex-direction: column;
}
@media(max-width: 920px){
    .carta_producto{
        flex-direction: column;
    }
    .col-producto-izq{
        width: 100%;
    }
}
.marca-producto{
    width: 100%;
    height: 75px;
    position: relative;
    top: 0;
    left: 0;
    max-width: 184px;
    max-height: 75px;
    background-color: #ffffff;
    /* z-index: 2;  */
    display: flex;
    flex-direction: column;
}
.producto-imagen{
    display: flex;
    height: 100%;
    margin-top: 2rem;
}
.marca-producto-imagen img{
    position: absolute;
    display: block;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    border: none;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 1rem;
}

.producto-imagen img{
    width: 100%;
    height: 100%;
    border-radius: 0.8rem;
    object-fit: cover;
}

.banner{
    background-color: #0e9e92;
    color: white;
    display: flex;
    flex-direction: column;
    padding:0.5rem

}
.banner h3{
    align-self: flex-start;
}
.regalias{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.promo-prod{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.promo-prod h4{
    text-align: center;
}
.promo-prod p{
    color: whitesmoke;
    text-align: center;
    padding: 5pxs;
}
.precio{
    font-size: 1.5rem;
}


.col-producto-der{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0.5rem;
}
/*- Product Catalog step by step-*/
.main {
    height: auto;
    /* display: grid; */
    display: none;
    place-items: center;
}
.mainWrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    min-height: 1000px;
    padding: 0;
    margin: 0 !important;
    background: radial-gradient(#303d55, #2f3352); 
}
.mainBackground {
    width: 100%;
    min-height: 1000px;
    background: url("images/img/bgRectangl.png") top center no-repeat, 
    /* url("images/img/bgPhons.png") center center no-repeat,  */
    url("images/img/layer-3-copy-2.png") center center no-repeat, 
    url("images/img/mainBg.png") top center no-repeat;

    box-sizing: border-box;
    align-items: center;
    justify-self: auto;

}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table; 
}
.clearfix:after {
    clear: both; 
}
.row1{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 62.5rem;
    width: 100%;
}
.small-12 {
    width: 100%; 
}
.row1:before, .row1:after {
    content: " ";
    display: table; 
}
.row1:after {
    clear: both; 
}
.row1.collapse > .column,
.row1.collapse > .columns {
    padding-left: 0;
    padding-right: 0; 
}
.row1.collapse .row1 {
    margin-left: 0;
    margin-right: 0; 
}
.row1 .row1 {
    margin: 0 1rem;
    max-width: none;
    width: auto;
    padding-bottom: 2rem; 
}
.row1 .row1:before, .row1 .row1:after {
    content: " ";
    display: table; 
}
.row1 .row1:after {
    clear: both; 
}
.row1 .row1.collapse {
    margin: 0;
    max-width: none;
    width: auto; 
}
.row1 .row1.collapse:before, .row1 .row1.collapse:after {
    content: " ";
    display: table; 
}
.row1 .row1.collapse:after {
    clear: both; }

.column,
.columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left; 
}
.column + .column:last-child,
.columns + .column:last-child, .column +
.columns:last-child,
.columns +
.columns:last-child {
  float: right; 
}
.column + .column.end,
.columns + .column.end, .column +
.columns.end,
.columns +
.columns.end {
  float: left; 
}
@media only screen {
    .column.small-centered,
    .columns.small-centered {
        margin-left: auto;
        margin-right: auto;
        float: none; 
    }
    .column.small-centered:last-child,
    .columns.small-centered:last-child {
        float: none; 
    }
    .small-12 {
        width: 100%; 
    }
    .row1.small-collapse > .column,
    .row1.small-collapse > .columns {
      padding-left: 0;
      padding-right: 0; 
    }
    .row1.small-collapse .row1 {
      margin-left: 0;
      margin-right: 0; 
    }
}
@media only screen and (min-width: 40.0625em) {
    .column,
    .columns {
      position: relative;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      float: left; 
    }
}
@media only screen and (min-width: 64.0625em) {
    .column,
    .columns {
        position: relative;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        float: left; 
    }
    .large-6 {
        width: 50%; 
    }
    
}
.productCard_block {
    position: relative;
    margin: 4rem;
    max-width: 900px;
    min-height: 600px;
    box-shadow: 0 5px 21px rgba(0, 0, 0, 0.08);
    background-color: #fff; 
    align-self: center;
}
 /*-  Left Side  -*/
 .productCard_leftSide {
    position: relative;
    width: 100%;
    min-height: 600px; 
}
.productCard_brendBlock {
    width: 100%;
    height: 75px;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 184px;
    max-height: 75px;
    background-color: #ffffff;
    z-index: 2; 
}
.prodctCard_brendBlock_imageBlock {
    display: block;
    height: 100%;

}
.prodctCard_brendBlock_imageBlock img {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    height: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 1rem;
}
.sliderBlock {
    position: relative;
    height: 100%;
    margin-left: 1rem;
    margin-top: 6rem;
    margin-bottom: 4rem;
    overflow: hidden; 
}
.sliderBlock_items {
    position: relative;
    display: block;
    width: 100%;
    height: 26rem; 
}
.sliderBlock_items_itemPhoto {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    transition: opacity 10s; 
}
.sliderBlock_items_itemPhoto img{
    /* position: absolute; */
    /* display: block; */
    /* box-sizing: border-box; */
    /* height: auto; */
    max-width: 100%;
}
/* .sliderBlock_items:hover .sliderBlock_items_itemPhoto img{
    transform: scale(2);
    z-index: 50;
    
} */
.sliderBlock_items_showing {
    opacity: 1;
    z-index: 3; 
}
.sliderBlock_items:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("images/img/decorElements/DecorRectangle.png") 50% 50% no-repeat;
    opacity: 0.2;
    z-index: 4; 
}
.sliderBlock_controls {
    width: 100%; 
}
.sliderBlock_controls__navigatin {
    margin-top: 8px;
    width: 100%; 
}
.sliderBlock_controls__wrapper {
    margin: 1% auto;
    width: 110px;
    height: 20px; 
}
.sliderBlock_controls__arrow {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: 1px solid #536dfe;
    transition: 300ms all;
    background-color: #0d2660;
    border-radius: 50%; 
}
.sliderBlock_controls__arrow:hover {
    background-color: #536dfe; 
}
.sliderBlock_controls__arrow i {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    margin-left: -50%;
    margin-top: -50%;
    color: #fff;
    transition: 300ms all;
    font-weight: bold;
    text-align: center;
    font-size: 20px; 
}
.sliderBlock_controls__arrowBackward {
    float: left; 
}
.sliderBlock_controls__arrowForward {
    float: right; 
}
.sliderBlock_positionControls {
    display: block;
    width: 100%;
    height: 3px;
    margin: 30px auto 0; 
}
.sliderBlock_positionControls__paginatorItem {
    float: left;
    width: 18px;
    height: 10px;
    margin-left: 5px;
    background-color: #D7D7D7;
    cursor: pointer; 
}
.sliderBlock_positionControls__paginatorItem:first-child {
    margin-left: 31%; }
.sliderBlock_positionControls__active {
    background-color: #536dfe; 
}
/*   RIGHT SIDE */
.productCard_rightSide {
    position: relative;
    padding-top: 34px;
    padding-left: 10px;
    padding-right: 10px;
    /* padding-bottom: 2rem; */
    width: 96%;                /*controla ancho de tabla*/
    min-height: 600px; 
}
.block_specification {
    float: right;
    margin-top: 8px;
    cursor: pointer;
    color: #536dfe;
    transition: all 0.5s; 
}
.block_specification__button {
    display: inline-block;
    margin-right: 7px;
    height: 100%;
    font-size: 17px;
    text-transform: uppercase;
    transition: transform 0.5s;
    transform-origin: center center; 
}
.block_specification:hover .block_specification__button__rotate {
    transition: transform 0.5s;
    transform: rotate(1turn);
}
.block_specification:hover {
    color: #f1425d; 
}
.block_specification__text {
    width: 30px;
    height: 11px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase; 
}
.block_model {
    display: inline-block;
    color: #263238;
    font-size: 12px;
    opacity: 0.9; 
}
.block_name {
    width: 100%;
    color: #263238;
    font-weight: 400;
    line-height: 35px; 
}
.block_name__mainName {
    margin: 0;
    padding: 0;
    font-size: 29px; 
}
.block_name__addName {
    margin: 0;
    padding: 0;
    font-size: 24px; 
}
.block_product {
    position: relative;
    width: 100%; 
}
.block_product h3{
    position: relative;
    text-align: left;
}
.block_product li{
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #263238;
}
.block_product__advantagesProduct {
    width: 271px;
    height: 41px;
    margin-top: 14px;
    color: #646b6f;
    font-size: 17px;
    line-height: 24px; 
}
.block_product__link {
    line-height: 23px;
    color: #536dfe; 
}
.block_informationAboutDevice {
    position: relative;
    width: 100%;
    overflow: hidden; 
}
.block_descriptionCharacteristic {
    /*- by changing the position the table is visible or not-*/
    /* position: absolute;  */
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 30;
    transition: left, ease-out, 0.5s; 
}
.block_descriptionCharacteristic__active {
    left: 0; 
}
.block_descriptionInformation {
    width: auto;
    height: auto;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #263238; 
}
.block_specificationInformation_table {
    position: relative;
    height: 99.9%;
    background-color: #fff; 
}
.block_specificationInformation_table tr {
    border-collapse: collapse;
    border: 1px solid #000; 
}
.block_specificationInformation_table th {
    border: 1px solid #000;
    font-weight: bold; 
}
.block_specificationInformation_table td {
    border-collapse: collapse;
    text-align: center;
    border: 1px solid #000;
}
.block_rating {
    width: 100%;
    margin-top: 33px; 
}
fieldset, label {
    margin: 0;
    padding: 0; 
}
.block_rating__stars {
    border: none;
    float: left;
    width: auto;
    margin: 0;
    padding: 0; 
}
input[type="checkbox"] + label, input[type="radio"] + label {
    margin: 0; 
}
.block_rating__stars > input {
    display: none; 
}
.block_rating__stars > label:before {
    margin: 5px;
    font-size: 15px;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005"; 
}
.block_rating__stars > .half:before {
    content: "\f089";
    position: absolute; 
}
.block_rating__stars > label {
    color: #c9c9c9;
    float: right; 
}
/***** CSS Magic to Highlight Stars on Hover *****/
.block_rating__stars > input:checked ~ label,
.block_rating__stars:not(:checked) > label:hover,
.block_rating__stars:not(:checked) > label:hover ~ label {
  color: #fccf47; 
}
/* hover previous stars in list */
.block_rating__stars > input:checked + label:hover,
.block_rating__stars > input:checked ~ label:hover,
.block_rating__stars > label:hover ~ input:checked ~ label,
.block_rating__stars > input:checked ~ label:hover ~ label {
  color: #FFED85; 
}
.block_rating__avarage {
    margin-left: 31px;
    color: #f1425d;
    font-size: 15px;
    line-height: 35px; 
}  
.block_rating__reviews {
    margin-left: 6px;
    color: #656c6f;
    font-size: 13px; 
}
.block_price {
    margin-top: 29px;
    width: 100%; 
}
.block_price__currency {
    padding: 0;
    margin: 0;
    vertical-align: top;
    color: #f1425d;
    font-size: 26px;
    font-weight: 600; 
}
.block_price__shipping {
    padding: 0;
    margin: 0;
    color: #A2A9AD;
    font-size: 12px; 
}
.radio_button {
    position: absolute;
    opacity: 0; 
}
.block_goodColor {
    margin-top: 29px;
    width: 100%; 
}
.block_goodColor__allColors {
    width: 100%;
    margin-top: 14px; 
}
.block_goodColor__radio {
    display: inline-block;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    margin-left: 10% !important;
    background-color: #e8e6e3;
    cursor: pointer; 
}
.radio_button:checked + .block_goodColor__radio {
    width: 25px;
    height: 25px;
    box-shadow: 0 0 5px 3px rgba(83, 109, 254, 0.5);
    border: 2px solid #fff; 
}
.block_goodColor__black {
    background-color: #3c383a; 
} 
.block_goodColor__silver {
    background-color: silver; 
}  
.text_specification {
    padding: 0;
    color: #37474f;
    font-size: 13px; 
}
.block_quantity {
    position: relative;
    height: 46px;
    margin-top: 45px; 
}
.block_quantity span {
    display: inline-block;
    float: left;
    margin-top: 15px;
    margin-right: 10px; 
}
.block_quantity__chooseBlock {
    vertical-align: top;
    height: 100%;
    margin: 0;
    padding: 0; }
.block_quantity__number {
    display: inline-block;
    float: left;
    width: 52px;
    height: 46px;
    border: 1px solid #ddd;
    font-size: 18px; 
}
.block_quantity__number::-webkit-input-placeholder {
    color: #403f40;
    font-size: 18px;
    line-height: 35px; 
}
.block_quantity__number::-moz-placeholder {
    color: #403f40;
    font-size: 18px;
    line-height: 35px; 
}
.block_quantity__number:-ms-input-placeholder {
    color: #403f40;
    font-size: 18px;
    line-height: 35px; 
}
.block_quantity__number::placeholder {
    color: #403f40;
    font-size: 18px;
    line-height: 35px; 
}
.block_quantity__button {
    display: inline-block;
    position: relative;
    float: left;
    width: 20px;
    height: 50%;
    margin: 0;
    padding: 0;
    margin-left: 11px;
    font-size: 0; 
}
.block_quantity__button:hover, .block_quantity__button:focus {
    background-color: transparent; 
}
.block_quantity__button:hover:before, .block_quantity__button:focus:before {
    color: #536dfe; 
}
.block_quantity__up:before {
    content: "\f106";
    width: 11px;
    height: 6px;
    font-family: "FontAwesome";
    color: #37474f;
    font-size: 18px; 
}
.block_quantity__down:before {
    content: "\f107";
    width: 11px;
    height: 6px;
    font-family: "FontAwesome";
    color: #37474f;
    font-size: 18px; 
}
.button.button_addToCard {
    width: 147px;
    height: 46px;
    margin-top: 43px;
    margin-bottom: 0;
    padding: 0;
    color: #fff;
    background-color: #536dfe;
    font-size: 17px;
    transition: all 0.3s; 
}
.button.button_addToCard:hover {
    background-color: #0d2660; 

}