/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #D10024
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Inputs
------ Sections
2 > HEADER
------ Top header
------ Logo
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
11 > FOOTER
12 > RESPONSIVE
------------------------------------*/

* {
    overflow-x: hidden;
}


/*=========================================================
	01 -> GENERAL
===========================================================*/


/*----------------------------*\
	Typography
\*----------------------------*/

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2B2D42;
    font-weight: 700;
    margin: 0 0 10px;
    overflow: hidden;
}

a {
    color: #2B2D42;
    font-weight: 500;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

a:hover,
a:focus {
    color: #D10024;
    text-decoration: none;
    outline: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none
}

.actividad {
    border: 2px #118393 solid;
    border-radius: 1%;
    padding: 2%;
}

.practica {
    background-color: rgba(88, 181, 231, 0.5);
    border: 3px rgba(102, 192, 240, 0.5) solid;
    border-radius: 1%;
    padding: 2%;
}

/*----------------------------*\
	Inputs
\*----------------------------*/


/*-- Text input --*/

.input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    width: 100%;
}

textarea.input {
    padding: 15px;
    min-height: 90px;
}


/*-- Number input --*/

.input-number {
    position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button,
.input-number input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-number input[type="number"] {
    -moz-appearance: textfield;
    height: 40px;
    width: 100%;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    padding: 0px 35px 0px 15px;
}

.input-number .qty-up,
.input-number .qty-down {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-number .qty-up {
    right: 0;
    top: 0;
    border-bottom: 0px;
}

.input-number .qty-down {
    right: 0;
    bottom: 0;
}

.input-number .qty-up:hover,
.input-number .qty-down:hover {
    background-color: #E4E7ED;
    color: #D10024;
}


/*-- Select input --*/

.input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
}


/*-- checkbox & radio input --*/

.input-radio,
.input-checkbox {
    position: relative;
    display: block;
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.input-radio label,
.input-checkbox label {
    font-weight: 500;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 5px;
    cursor: pointer;
}

.input-radio input[type="radio"]+label span,
.input-checkbox input[type="checkbox"]+label span {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 14px;
    height: 14px;
    border: 2px solid #E4E7ED;
    background: #FFF;
}

.input-radio input[type="radio"]+label span {
    border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    background-color: #FFF;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
    content: '✔';
    position: absolute;
    top: -2px;
    left: 1px;
    font-size: 10px;
    color: #FFF;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span,
.input-checkbox input[type="checkbox"]:checked+label span {
    background-color: #D10024;
    border-color: #D10024;
}

.input-radio input[type="radio"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.3s max-height;
    transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption,
.input-checkbox input[type="checkbox"]:checked~.caption {
    max-height: 800px;
}


/*----------------------------*\
	Section
\*----------------------------*/

.section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
}

.section-title .title {
    display: inline-block;
    text-transform: uppercase;
    margin: 0px;
}

.section-title .section-nav {
    float: right;
}

.section-title .section-nav .section-tab-nav {
    display: inline-block;
}

.section-tab-nav li {
    display: inline-block;
    margin-right: 15px;
}

.section-tab-nav li:last-child {
    margin-right: 0px;
}

.section-tab-nav li a {
    font-weight: 700;
    color: #8D99AE;
}

.section-tab-nav li a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.section-tab-nav li.active a {
    color: #D10024;
}

.section-tab-nav li a:hover:after,
.section-tab-nav li a:focus:after,
.section-tab-nav li.active a:after {
    width: 100%;
}

.section-title .section-nav .products-slick-nav {
    top: 0px;
    right: 0px;
}


/*=========================================================
	02 -> HEADER
===========================================================*/


/*----------------------------*\
	Logo
\*----------------------------*/

#header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: white;
}

.header-logo {
    position: relative;
    justify-content: center;
    align-items: center;
    float: left;
}

.hed {
    top: 30px;
    left: 28%;
}

.header-logo .logo img {
    display: block;
}


/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
    background: #BF0A2B;
    border-bottom: 2px solid #BF0A2B;
    border-top: 3px solid #BF0A2B;
    height: 20px;
}


/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
    margin-left: 30px
}

.main-nav>li>a {
    padding: 20px 0px;
}

.main-nav>li>a:hover,
.main-nav>li>a:focus,
.main-nav>li.active>a {
    color: #D10024;
    background-color: transparent;
}

.main-nav>li>a:after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #D10024;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.main-nav>li>a:hover:after,
.main-nav>li>a:focus:after,
.main-nav>li.active>a:after {
    width: 100%;
}

.header-ctn li.nav-toggle {
    display: none;
}


/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
    .header-ctn .menu-toggle {
        display: inline-block;
    }
}

*/
/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
}

.shop:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 60%;
    background: #D10024;
    opacity: 0.9;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}

.shop:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 100%;
    background: #D10024;
    opacity: 0.9;
    -webkit-transform: skewX(-45deg) translateX(-100%);
    -ms-transform: skewX(-45deg) translateX(-100%);
    transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
    position: relative;
    background-color: #E4E7ED;
    z-index: -1;
    overflow: hidden;
}

.shop .shop-img>img {
    width: 100%;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.shop:hover .shop-img>img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.shop .shop-body {
    position: absolute;
    top: 0;
    width: 75%;
    padding: 30px;
    z-index: 10;
}

.shop .shop-body h3 {
    color: #FFF;
}

.shop .shop-body .cta-btn {
    color: #FFF;
    text-transform: uppercase;
}


/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
    padding: 60px 0px;
    margin: 30px 0px;
    background-color: #E4E7ED;
    background-position: center;
    background-repeat: no-repeat;
}

.hot-deal {
    text-align: center;
}

.hot-deal .hot-deal-countdown {
    margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    background: #D10024e6;
    text-align: center;
    border-radius: 50%;
    margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
    color: #FFF;
    margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #FFF;
}

.hot-deal p {
    text-transform: uppercase;
    font-size: 24px;
}

.hot-deal .cta-btn {
    margin-top: 15px;
}


/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/


/*-- checkbox Filter --*/

.checkbox-filter>div+div {
    margin-top: 10px;
}

.checkbox-filter .input-radio label,
.checkbox-filter .input-checkbox label {
    font-size: 12px;
}

.checkbox-filter .input-radio label small,
.checkbox-filter .input-checkbox label small {
    color: #8D99AE;
}


/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
    background: #224455;
    color: #B9BABC;
}

#bottom-footer {
    background: #1E1F29;
}

.footer {
    margin: 30px 0px;
}

.footer-links li+li {
    margin-top: 15px;
}

.footer-links li a {
    color: #B9BABC;
}

.footer-links li i {
    margin-right: 15px;
    color: #D10024;
    width: 14px;
    text-align: center;
}

.footer-links li a:hover {
    color: #D10024;
}

.copyright {
    margin-top: 30px;
    display: block;
    font-size: 12px;
}


/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
    #top-header .header-links.pull-left {
        float: none !important;
    }
    #top-header .header-links.pull-right {
        float: none !important;
        margin-top: 5px;
    }
    .header-logo {
        float: none;
        text-align: center;
    }
    .header-logo .logo {
        display: inline-block;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .section-nav {
        float: none;
        margin-top: 10px;
    }
    .section-tab-nav li {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    [class*='col-xs'] {
        width: 100%;
    }
}

.cursor {
    cursor: pointer;
}

.logo1 {
    margin: 0px 15px 10px 15px;
    border-radius: 10px;
    padding: 5px;
    width: auto;
    height: 100px;
}

.logos:hover {
    background-color: rgb(42, 42, 42);
}

code {
    overflow: hidden;
    font-size: 1.2em;
}

.tam {
    font-size: 5em;
}

.chatbot {
    display: none;
    padding: 10px;
    color: #AA1012;
    font-size: 2.3em;
    cursor: pointer;
    position: fixed;
    bottom: 10%;
    right: 2%;
    border-radius: 80%;
    justify-content: center;
    align-items: center;
    border-color: #E4E7ED;
}


/* index style */

.modal_style {
    width: 800px;
}

.title_style {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.7em;
    text-align: center;
}


.title_style_left {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5em;
    text-align: left;
}

.title_style_modal {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    text-align: center;
}

.subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3em;
    text-align: left;
}

.title_style_divs {
    padding-top: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em !important;
    text-align: center;
}

.paragraph_style_divs {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    text-align: center;
}

.paragraph_style ul li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
}

.paragraph_style {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.1em !important;
}

.subtitle_modal {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
}

.btn_modal {
    background-color: #224455;
    border-radius: 0.8em;
    color: white;
}

.btn_modal:hover {
    color: white;
}

.button-container {
    display: inline-block;
    position: relative;
}

.button-container a {
    position: absolute;
    bottom: 7.5em;
    left: 4em;
    background-color: #224455;
    border-radius: 1.5em;
    color: white;
    text-transform: uppercase;
    padding: 1em 1.5em;
}

.img_style {
    text-align: center;
}

.color_svg {
    color: #A61C35;
}

.color_svg1 {
    color: #F1C852;
}

.color_svg2 {
    color: #A61C35;
}

.color_svg3 {
    color: #224455;
}

.background_middle {
    padding-top: 20px;
    background-color: #fdfbfb;
    padding-bottom: 20px;
    padding-right: 50px;
    padding-left: 50px;
}

.letra_menu_inicial {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
}

.color-nav {
    padding-left: 40px;
}


/*modulos*/

.modulos_titulo {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.9em;
    text-align: center;
}

.linea_central {
    width: auto;
    height: 1px;
    background-color: #224455;
}

.font_submenu {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    font-weight: 500;
}

.backSection1 {
    padding-top: 20px;
    background-color: #F2F2F2;
    padding-bottom: 20px;
    padding-right: 50px;
    padding-left: 50px;
}

.backSection2 {
    padding-top: 70px;
    background-color: #F2F2F2;
    padding-bottom: 20px;
    padding-right: 50px;
    padding-left: 50px;
}

.videos {
    padding-top: 40px;
}

.section_color {
    background-color: #F2F2F2;
    padding-bottom: 40px;
}

.btn_siguiente {
    background-color: #A61C35;
    border-radius: 0.1em;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    width: 180px;
    height: 40px;
    font-weight: 500;
    border-color: #A61C35;
}


/*aqui va el contenedor*/

.contenido {
    overflow-y: scroll;
    width: 500px;
    height: 300px;
    padding-top: 200px;
    margin: 2rem auto;
    border: 1px solid #aaa;
    box-sizing: border-box;
    padding: 0 1rem;
    padding-bottom: 40px;
}

@media (min-width: 992px) and (max-width:1199px) {
    .contenido {
        overflow-y: scroll;
        width: auto;
        height: 500px;
        padding-top: 200px;
        margin: 2rem auto;
        border: 1px solid #aaa;
        box-sizing: border-box;
        padding: 0 1rem;
        padding-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .contenido {
        overflow-y: scroll;
        width: auto;
        height: 500px;
        padding-top: 200px;
        margin: 2rem auto;
        border: 1px solid #aaa;
        box-sizing: border-box;
        padding: 0 1rem;
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .contenido {
        overflow-y: scroll;
        width: auto;
        height: 500px;
        padding-top: 200px;
        margin: 2rem auto;
        border: 1px solid #aaa;
        box-sizing: border-box;
        padding: 0 1rem;
        padding-bottom: 40px;
    }
}


/* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/

.contenido::-webkit-scrollbar {
    -webkit-appearance: none;
}

.contenido::-webkit-scrollbar:vertical {
    width: 10px;
}

.contenido::-webkit-scrollbar-button:increment,
.contenido::-webkit-scrollbar-button {
    display: none;
}

.contenido::-webkit-scrollbar:horizontal {
    height: 10px;
}

.contenido::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.contenido::-webkit-scrollbar-track {
    border-radius: 10px;
}