/* ----------- Variables ----------- */

:root {
    --light-color: #666;
    --white: #fff;
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    --border: .2rem solid rgba(0, 0, 0, .1);
    --outline: .1rem solid rgba(0, 0, 0, .1);
    --shadow: rgba(56, 55, 55, 0.61);
    --azuloscuro: #3a962ee7;
    --azulclaro: #90c27a;
    --colorscrollbody: #F5F5F5;
    --black: #ebebeb;
    --grisclaro: #eee;
}


/* ----------- Estilo Scrollbar body ------------ */

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--colorscrollbody);
}

body::-webkit-scrollbar {
    width: 8px;
    background-color: var(--colorscrollbody);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--azuloscuro);
}


/* -------------- Menu al hacer Scroll -------------- */

.abajo {
    top: 0 !important;
    z-index: 999;
    position: fixed !important;
    background: #212e36ec !important;
    color: #000;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
    box-shadow: 0px .5px 10px 0px black;
}

.abajo .container .navbar {
    padding: 5px;
}

.container .navbar .logo {
    margin-right: 5px;
}
.container .navbar .logo img {
    width: 40px;
    height: 40px;
}

.abajo .container .navbar .icons div {
    height: 1.9rem;
    width: 8.5rem;
    line-height: 1.9rem;
    font-size: 1rem;
}

#noti-btn i::after{
    content: '1';
    font-size: 6px;
    color: white;
    position: absolute;
    padding: 0px 4px;
    border-radius: 50%;
    height: 10px;
    background: red;
    margin-left: 10px;
    margin-top: -21px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abajo .shopping-cart {
    top: 112% !important;
    box-shadow: 2px 2px 2px 2px var(--shadow) !important;
}

.abajo .container .navbar .icons .search-form {
    border: .1px solid #0e0e0e;
}

.abajo .login-form {
    top: 112% !important;
    box-shadow: 2px 2px 2px 2px var(--shadow) !important;
}

.login-form form.active {
    display: block;
}

.login-form form {
    display: none;
}

.departamentos {
    text-align: right;
}

.displaynone{
    display: none;
}
.item_departamentos {
    margin-right: 25px;
    border-radius: 5px;
}

.item_departamentos a {
    color: white !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    cursor: pointer !important;
}

.item_departamentos:hover {
    background: var(--azuloscuro);
}

.item_departamentos:hover a {
    color: #192228 !important;
}


/* ------------- SUBMENU --------------- */

.submenu {
    position: absolute;
    visibility: hidden;
    top: 80%;
    list-style: none;
    height: 77vh;
    width: 80%;
    background-color: #f5f3f3;
    opacity: 1;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
    -o-transition: .4s ease all;
    left: 10%;
    padding: 10px 30px;
    overflow: auto;
}

.abajo nav ul li .submenu2::before {
    top: 14.9%;
    left: 5.5%;
}

#cat {
    cursor: pointer;
}

.submenu2 {
    position: absolute;
    top: 105%;
    width: 98%;
    border-radius: 0.5rem;
    visibility: visible;
    align-items: center;
    box-shadow: -1px 8px 10px 0px #9c9c9c;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    left: 1%;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
    -ms-transition: .4s ease all;
    -o-transition: .4s ease all;
    text-align: center;
}

.submenu li {
    padding: 5px 15px;
    margin: 10px 15px;
    text-align: left;
    margin-top: 10px;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    width: 22%;
}

.submenu li ul li {
    width: 100%;
}

.submenu li a {
    color: var(--black);
    font-weight: 400;
    font-size: 15px;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.submenu li ul li>.subsub {
    overflow: hidden;
    height: fit-content;
    margin-left: 25px;
    display: none;
    margin-top: 1px;
    margin-bottom: 5px;
}

.submenu li a:hover {
    background: rgb(41, 41, 41);
    color: rgb(255, 255, 255);
}

.headerf nav ul li a i {
    margin-left: 10px;
    margin-right: 5px;
}

.abajo .container .navbar nav ul li ul {
    top: 112% !important;
}

.submenu li ul {
    display: grid;
    margin-top: 10px;
    max-height: 30vh;
    height: fit-content;
    overflow: auto;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    opacity: 1;
}

.submenu>li {
    box-shadow: 1px 0px 8px 0px #ccc;
    height: 38vh;
    background-color: var(--white);
}

.submenu::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--colorscrollbody);
}

.submenu::-webkit-scrollbar {
    width: 5px;
    background-color: var(--colorscrollbody);
}

.submenu::-webkit-scrollbar-thumb {
    background-color: var(--azuloscuro);
    background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}

.submenu li ul li {
    margin: 0%;
    padding: 0%;
}

.submenu li ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--colorscrollbody);
}

.submenu li ul::-webkit-scrollbar {
    width: 4px;
    background-color: var(--colorscrollbody);
}

.submenu li ul::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}

.submenu li ul li:hover {
    background: rgb(41, 41, 41);
}

.submenu li ul li ul li:hover {
    background: #484848;
}

.submenu li ul li ul li a:hover {
    background: #484848;
}

.submenu>li>a {
    font-weight: bolder;
    font-size: 16px;
    font-family: sans-serif;
    cursor: pointer;
}

.submenu li ul li ul li:hover {
    color: var(--white);
}

.submenu li ul li .subsubmenu2 {
    display: grid !important;
    list-style: upper-latin;
}

.activesub {
    background: var(--black);
}

.activesub>ul {
    background: rgb(31, 31, 31);
}

.submenu li ul li:hover a {
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.submenu li ul li a {
    text-transform: capitalize;
    color: #333333;
    font-family: sans-serif;
    font-size: 12px !important;
    padding-left: 2px;
}

.submenu li ul li ul li a {
    font-size: 10.5px !important;
}

.cattitle {
    /* padding: 5px 23px; */
    border-bottom: 1px dotted;
}


/* ------------ menu ------------- */

.headerf .icons div {
    height: 2.5rem;
    width: 8.5rem;
    line-height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--azuloscuro);
    color: #fff;
    font-size: 1.2rem;
    margin-left: 0.3rem;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sesion-none{
    margin-left: 5px;
    text-transform: capitalize;
}

.icons {
    display: flex;
}

.headerf .icons div:hover {
    background: #192228;
    color: var(--azuloscuro);
    border: 1px solid var(--azuloscuro);
}

.headerf .search-form {
    width: 18rem;
    background: #192229;
    border-radius: 0.2rem;
    display: flex;
    align-items: center;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    -ms-border-radius: 0.2rem;
    -o-border-radius: 0.2rem;
}

.headerf .search-form input {
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1rem;
    color: #fff;
    padding: 0 1.5rem;
}

.headerf .search-form label {
    font-size: 1.1rem;
    padding-right: 0.5rem;
    color: var(--azuloscuro);
    cursor: pointer;
}

.headerf .search-form label:hover {
    color: var(--blue);
}

.headerf .shopping-cart {
    position: absolute;
    top: 105%;
    right: -1%;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow);
    max-height: 76vh;
    overflow-y: auto;
    width: 25rem;
    background: #384852f7;
    visibility: hidden;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.headerf .notiset {
    position: absolute;
    top: 88%;
    right: -1%;
    padding: 1rem;
    border-radius: 0.5rem;
    max-height: 76vh;
    overflow-y: auto;
    width: 25rem;
    visibility: hidden;
    background: transparent;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.noti-item{
    background: #212E36;
    box-shadow: 0 0 5px rgb(207 207 207 / 10%), 0 2px 3px rgb(151 151 151 / 10%);
    color: rgb(255, 255, 255);
    justify-content: space-between;
    padding: 5px 30px;
    padding-right: 25px;
    align-items: center;
    border-radius: 10px;
    border-left: 0.5rem solid #ecb604c7;
    margin-bottom: 2px;
}
.noti-item >div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.noti-item >p{
    color: rgb(216, 216, 216);
    font-weight: 300;
}

.logo {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.logo-nombre {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.shopping-cart::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--colorscrollbody);
}

.shopping-cart::-webkit-scrollbar {
    width: 5px;
    background-color: var(--colorscrollbody);
}

.shopping-cart::-webkit-scrollbar-thumb {
    background-color: var(--azuloscuro);
    background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}

.headerf .shopping-cart.active {
    right: 3rem;
    visibility: visible;
    z-index: 999;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
}

.headerf .notiset.active {
    right: 3rem;
    visibility: visible;
    z-index: 999;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
}

.headerf .shopping-cart .box {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    margin-bottom: 15px;
}

.headerf .shopping-cart .box .content {
    max-width: 48%;
}

.headerf .shopping-cart .box img {
    height: 6.4rem;
    width: 7rem;
    object-fit: cover;
}

.headerf .shopping-cart .box .fa-trash {
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    cursor: pointer;
    color: #ddd;
    transform: translateY(-50%);
}

.headerf .shopping-cart .box .fa-trash:hover {
    color: #fff;
}

.headerf .shopping-cart .box .content h3 {
    color: var(--black);
    padding-bottom: 1rem;
    font-size: 15px;
}

.headerf .shopping-cart .box .content span {
    color: #ddd;
}

.headerf .shopping-cart .box .content .quantity {
    padding-left: 1rem;
}

.headerf .shopping-cart .total {
    font-size: 1.5rem;
    padding: 1rem 0;
    text-align: center;
    color: var(--black);
}

.headerf .shopping-cart .btn {
    display: block;
    text-align: center;
    margin: 1rem;
}

.headerf .login-form {
    position: absolute;
    visibility: hidden;
    top: 105%;
    max-height: 68vh;
    overflow-y: auto;
    right: -1%;
    width: 20rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: .5rem;
    background: #384852f7;
    text-align: center;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.login-form::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--colorscrollbody);
}

.login-form::-webkit-scrollbar {
    width: 5px;
    background-color: var(--colorscrollbody);
}

.login-form::-webkit-scrollbar-thumb {
    background-color: var(--azuloscuro);
    background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
}

.headerf .login-form.active {
    right: 2rem;
    visibility: visible;
    z-index: 999;
    background: #384852f7;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
}

.headerf .notisec.active {
    right: 2rem;
    visibility: visible;
    z-index: 999;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
}

.iratra {
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

.headerf .login-form h3 {
    font-size: 1.17em;
    text-transform: uppercase;
    color: var(--black);
}

.headerf .login-form .box {
    width: 100%;
    margin: 0.3rem 0;
    background: #eee;
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
    color: var(--azuloscuro);
    text-transform: none;
    background: #192229;
}

.headerf .login-form p {
    font-size: .8rem;
    padding: .2rem 0;
    color: #d3d3d3;
}

.headerf .login-form p a {
    color: var(--azuloscuro);
    text-decoration: underline;
    font-weight: 400;
    text-transform: capitalize;
}

.btnlog {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #192229;
    color: #192229;
    cursor: pointer;
    background: var(--azuloscuro);
}

.btnlog:hover {
    background: var(--azuloscuro);
    font-weight: 600;
}

.btncar {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #192228;
    color: #192228;
    cursor: pointer;
    background: var(--azuloscuro);
    width: 100%;
    text-align: center;
}

.btncar:hover {
    background: var(--azuloscuro);
    color: #fff;
}

.cinta {
    width: 100%;
    background: var(--azuloscuro);
    align-items: center;
    border-top: 0.1px solid #FFF;
}

.container-cinta {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.sliderinfo {
    display: flex;
    align-items: center;
    padding: 10px 80px;
    justify-content: space-between;
}

.sliderinfo li .icon {
    font-size: 2em;
    color: var(--black);
    margin-right: .5em;
    margin-left: 1em;
}

.contenedorinfo {
    display: flex;
    width: 33.33%;
    padding: 0px 5px;
}

.titulocinta {
    text-transform: uppercase;
    color: var(--black);
}

.descripcioncinta {
    color: var(--black);
    font-size: .9em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
}

body {
    font-family: sans-serif;
    overflow-x: hidden;
    background-color: #ebebeb;
}

.abajo .bordesep::after {
    content: '';
    position: absolute;
    width: 100%;
    height: -0.1px;
    box-shadow: 0px .9px 7px .5px #acacac;
    background: transparent;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
}

nav {
    flex: 1;
    background: transparent;
    padding: .3em;
    padding-left: 2em;
}

nav ul {
    display: inline-block;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 55px;
    padding: 5px 10px;
}

.prsub:hover {
    background: #303030;
}

.prsub:hover>a {
    color: #fff;
}

nav ul .extras:hover {
    background: #303030;
}

nav ul .extras:hover a {
    color: white;
}

a {
    text-decoration: none;
    color: rgb(19, 19, 19);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9em;
}

p {
    color: #ffffff;
    font-size: small;
    text-transform: lowercase;
    font-weight: bold;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px;
}

@media only screen and (max-width: 750px) {
    .container {
        width: 98%;
        padding-left: 1%;
        padding-right: 1%;
    }
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-2 {
    flex-basis: 40%;
    min-width: 300px;
}

.col-2 img {
    max-width: 100%;
    padding: 35px 0;
    max-height: 450px;
}

.col-2 h1 {
    font-size: 30px;
    line-height: 36px;
    margin: 25px 0;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.col-2 h1 span {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: -2px;
}

.btn {
    display: inline-block;
    background: #1f1f1f;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: 0.5s ease all;
}

.btn:hover {
    background: var(--black);
    padding: 8px 40px;
}

.header {
    background-image: url(../images/ladilloblanco.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.headerf {
    background: #212e3659;
    position: absolute;
    width: 100%;
    z-index: 999;
    top: 0;
}

.header .row {
    margin-top: 30px;
}

@media (max-width: 1040px) {
    header {
        padding: 12px 20px;
    }
    section {
        padding: 100px 20px;
    }
    .home .media-icons {
        right: 15px;
    }
    header .navigation {
        display: none;
    }
    header .navigation.active {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
    }
    header .navigation .navigation-items a {
        color: #222;
        font-size: 1.2em;
        margin: 20px;
    }
    header .navigation .navigation-items a:before {
        background: #222;
        height: 5px;
    }
    header .navigation.active .navigation-items {
        background: #fff;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }
    .menu-btn {
        background: url(menu.png)no-repeat;
        background-size: 40px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -ms-transition: 0.3s ease;
        -o-transition: 0.3s ease;
    }
    .menu-btn.active {
        z-index: 999;
        background: url(close.png)no-repeat;
        background-size: 35px;
        background-position: center;
        transition: 0.3s ease;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -ms-transition: 0.3s ease;
        -o-transition: 0.3s ease;
    }
}

@media only screen and (max-width: 800px) {
    .header .row {
        margin-top: 0px;
    }
}

.headerf .row {
    margin-top: 0px;
}

.categories {
    margin: 70px 0;
}

.col-3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3 img {
    width: 100%;
}

.small-container {
    width: 90%;
    margin: 1% 5% 0% 5%;
}

.contbrands {
    padding: 0% 5%;
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
}

.col-4 {
    padding: 5px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
    max-height: 500px;
    background: #02020238;
    border-radius: 10px;
    flex-basis: 19%;
    height: 383px;
}

.prepor12 {
    font-weight: 300;
}

.prepor12s {
    background: red !important;
    font-weight: 300 !important;
    left: 0px;
    bottom: 7px;
    color: white !important;
    font-size: 11px !important;
    padding-right: 4px;
    padding-left: 4px;
    margin-top: 5px;
    clip-path: polygon(100% 0%, 98% 50%, 100% 100%, 0% 100%, 2% 50%, 0% 0%);
}

.prepor12ss {
    background: red !important;
    font-weight: 300 !important;
    left: 11px;
    bottom: 10px;
    color: white !important;
    font-size: 12px !important;
    padding-right: 6px;
    padding-left: 6px;
    margin-top: 5px;
    clip-path: polygon(100% 0%, 98% 50%, 100% 100%, 0% 100%, 2% 50%, 0% 0%);
    position: absolute;
}

.col-4 img {
    width: 100%;
    min-height: 250px;
    max-height: 250px;
    height: 55%;
    object-fit: cover;
}

.title {
    text-align: center;
    margin: 0px 15px 8px 15px;
    position: relative;
    line-height: 60px;
    color: #212E36;
}

.title::after {
    content: '';
    background: var(--azuloscuro);
    width: 80px;
    height: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

h4 {
    color: #C8CDD0;
    font-weight: normal;
    height: 50px;
    overflow: hidden;
}

.col-4 p {
    font-size: 14px;
}

.col-4 h3 {
    color: #EFF3F5;
}

.col-4:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}


/* -------------------- categorias --------------------- */

.categorias {
    padding: 1rem 4.5%;
}

.heading {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: .1rem;
    background: rgba(255, 255, 255, 0.801);
    z-index: -1;
}

.heading span {
    font-size: 1.8rem;
    padding: .2rem 1rem;
    color: var(--black);
    background: #212e36;
    border: #2a3b47;
    padding-right: 0;
}

.heading>span>p {
    background: var(--azuloscuro);
    color: #192229;
    display: inline-block;
    padding: .2rem 2rem;
    clip-path: polygon(100% 0, 100% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
    text-transform: uppercase;
    font-size: inherit;
}

@media only screen and (max-width: 750px) {
    .heading {
        margin-bottom: 1rem;
    }
    .heading span {
        font-size: 1rem;
    }
}

.featured-slider .box .icons {
    border-bottom: red;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1;
    transform: translateY(-105%);
}

.featured-slider .box .image {
    padding: 1rem;
    background: linear-gradient(15deg, #eee 30%, #fff 30.1%);
}

.featured-slider .box .image img {
    height: 25rem;
}

.featured-slider .box .content {
    background: #eee;
    padding: 1.5rem;
}

.featured-slider .box .content h3 {
    font-size: 2rem;
    color: var(--black);
}

.featured-slider .box .content .price {
    font-size: 2.2rem;
    color: var(--black);
    padding-top: 1rem;
}

.featured-slider .box .content .price span {
    font-size: 1.5rem;
    color: var(--light-color);
    text-decoration: line-through;
}

.btn1 {
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    border-radius: .5rem;
    color: #fff;
    background: var(--green);
    font-size: 1.7rem;
    cursor: pointer;
    font-weight: 500;
}


/* -------------- Oferta ---------------- */

.offer {
    margin: 0 4.5%;
    width: 91%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
}
.offer img {
    width: 100%;
    height: 100%;
}

.col-2 .offer-img {
    padding: 50px;
}

small {
    color: #555;
}

.ribbon::before {
    top: 0px;
    right: 15px;
}

.ribbon::after {
    bottom: 15px;
    left: 0px;
}

.ribbon span {
    position: absolute;
    transform: rotate(-42deg);
    left: -4px;
    top: 31px;
    width: 114px;
    background: #f02424;
    padding: 5px 15px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    z-index: 998;
    clip-path: polygon(70% 0%, 85% 50%, 102% 106%, -1% 100%, 11% 52%, 23% 0%);
}


/* ---------- Testimonios ----------- */

.testimonial {
    padding-top: 100px;
}

.testimonial .col-3 {
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
}

.testimonial .col-3 img {
    width: 50px;
    margin-top: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonial .col-3:hover {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.fa.fa-quote-left {
    font-size: 34px;
    color: #ff523b;
}

.col-3 p {
    font-size: 12px;
    margin: 12px 0;
    color: #777;
}

.testimonial .col-3 h3 {
    font-weight: 600;
    color: #555;
    font-size: 16px;
}


/* ---------------- Brands ---------------- */

.imgbrands {
    cursor: pointer;
    width: 200px;
    max-width: 200px;
    max-height: 100px;
    height: 100px;
    object-fit: cover;
    overflow: hidden;
    margin: 0 20px !important;
    background: transparent !important;
}

.imgbrands img {
    border-right: 1px solid #ccc;
    filter: opacity(0.5);
    width: 100%;
    height: 100%;
}

.imgbrands:hover img {
    filter: opacity(1);
}

.col-5 {
    width: 160px;
}

.col-5 img {
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.col-5 img:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}


/* --------------- Footer --------------- */

.footer {
    background: #212E36;
    padding: 0em 5em;
    padding-top: 0em;
    align-content: space-around;
    text-align: center;
    padding-top: 2em;
}

.footer .box-container {
    display: flex;
    width: 100%;
    max-height: 225px;
    height: 225px;
    text-align: center;
}

.footer .box {
    width: 33%;
}

.footer .box-container .box h3 {
    font-size: 1.7rem;
    color: var(--azuloscuro);
    padding: .5rem 0;
}

.footer .box-container .box img {
    width: 170px;
}

.footer .box-container .box p {
    line-height: 1.4;
    font-size: 1rem;
    color: #C8CDD0;
    padding: 1rem 0;
    text-transform: uppercase;
    font-weight: 600 !important;
}

.share {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .box-container .box .share a {
    height: 2.20rem;
    width: 3.50rem;
    border-radius: 0.5rem;
    font-size: 22px;
    color: var(--azuloscuro);
    margin-right: 0.2rem;
    background: #192229;
    border: 1px solid var(--azuloscuro);
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 2px 10px;
    padding: 5px;
}


/*
.mercadolibre {
    background-image: url(../images/mercadolibre.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 2.20rem !important;
    width: 3.50rem !important;
    cursor: pointer;
}
*/

.footer .credit {
    text-align: center;
    padding: 1rem;
    font-size: .8rem;
    color: var(--black);
    border-top: var(--border);
    margin-top: 2em;
}

.footer .credit a {
    color: var(--azuloscuro);
    text-transform: capitalize;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.footer .credit a:hover {
    border-bottom: 1px solid;
}

.footer .box-container .box h3 {
    font-size: 1.5rem;
    color: #EFF3F5;
    padding: 1rem 0;
}

.footer .box-container .box .links {
    display: block;
    font-size: .9rem;
    color: #C8CDD0;
    padding: .2rem 0;
    transition: .2s ease all;
    -webkit-transition: .2s ease all;
    -moz-transition: .2s ease all;
    -ms-transition: .2s ease all;
    -o-transition: .2s ease all;
}

.footer .box-container .box .links:hover {
    color: var(--azuloscuro);
    font-size: 1em;
}

.footer .box-container .box .links i {
    color: var(--azuloscuro);
    padding-right: 0.5rem;
}

@media only screen and (max-width: 810px) {
    .footer .box-container {
        display: block;
        width: 100%;
        max-height: 100%;
        height: auto;
    }
    .footer .box {
        width: 100%;
    }
}


/* ------------ Media Query para el menú---------------- */


/* @media only screen and (max-width: 800px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
        -webkit-transition: max-height 0.5s;
        -moz-transition: max-height 0.5s;
        -ms-transition: max-height 0.5s;
        -o-transition: max-height 0.5s;
    }
    nav ul li {
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a {
        color: #fff;
    }
    .menu-icon {
        display: block;
        cursor: pointer;
    }
} */


/* media for less than 600 screen size */

@media only screen and (max-width: 600px) {
    .row {
        text-align: center;
        min-height: 310px;
    }
    .col-2,
    .col-3,
    .col-4 {
        flex-basis: 48%;
    }
}

@media only screen and (max-width: 600px) {
    .logo-nombre {
       display: none;
    }
}


/* Slideshow container */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}


/* Hide the images by default */

.mySlides {
    display: none;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 999;
}

@media only screen and (max-width: 1200px) {
    .prev,
    .next {
        top: 70%;
        padding: 10px;
        font-size: 18px;
    }
}


/* Position the "next button" to the right */

.next {
    right: 0;
    margin-right: 40px;
}

.prev {
    left: 0;
    margin-left: 40px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: var(--grisclaro);
}


/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #9f9f9f;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    width: 16px;
    height: 16px;
}

.active,
.dot:hover {
    background-color: #384852;
}


/* Fading animation */

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
    padding-top: 5em;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


/* ------------ Carrusel de productos ------------- */

.Carousel {
    width: 90%;
    margin: 0px 5%;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 2%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column: 1/5;
}

.slick-descripcion {
    color: #EFF3F5;
    padding: 5px;
    line-height: 25px;
}

.slick-list {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    height: auto;
    padding: 10px 0px;
    width: 100%;
    overflow: hidden;
    grid-column: 1/5;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    transition: .5s ease-in-out;
}

.slick {
    position: relative;
    width: 250px;
    float: left;
    box-sizing: border-box;
    display: flex;
    height: 390px;
    background: #ffffff;
    margin: 5px;
}

.slicksimilar {
    display: grid;
    max-width: 91.5vw;
}

.slickcate {
    padding: 1rem 4vw;
}

.slick>div {
    margin: 5px;
    padding: 1px;
    width: 100%;
    transition: .3s ease all;
    cursor: pointer;
}

.slick div a div {
    right: 8%;
    position: absolute;
    width: 3.3em;
    height: 3.3em;
    top: 245px;
    border-radius: 50%;
}

.slick div a div::after {
    position: absolute;
    top: 0px;
    width: 2.30em;
    height: 2.30em;
    right: 0%;
    background: var(--azuloscuro);
    border-radius: 50%;
    text-align: center;
    align-items: center;
    line-height: 2.30em;
    color: #192228;
    font-size: 1.4em;
    font-family: sans-serif;
    font-weight: 900;
    content: "\f07a";
}

.slick div a div:hover::after {
    background: #192228;
    color: var(--azuloscuro);
    border: 1px solid var(--azuloscuro);
    line-height: 2.20em;
}

.slick>div:hover {
    margin: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 6px;
}

.slick a img {
    object-fit: cover;
    height: 250px;
    width: 100%;
    transition: .3s ease-in-out;
}

.slick a img:hover {
    opacity: .80;
}

.slick-arrow {
    border-radius: 30px;
    background-color: #2a3b47;
    position: absolute;
    z-index: 4;
    width: 48px;
    height: 48px;
    text-align: center;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .15);
    border: 0;
    cursor: pointer;
    margin-bottom: 1%;
}

.slick-arrowbrands {
    background: #1f1f1f;
}

.slick-arrowbrands:hover {
    background: var(--black) !important;
}

.slick-arrowbrands svg {
    color: rgb(255, 255, 255) !important;
}

.slick-arrow:hover {
    background: #192229;
}

.slick-arrow:focus {
    outline: 0;
}

.slick-arrow svg {
    width: 12px;
    height: 100%;
    color: #fff;
}

.slick-prev {
    left: 0px;
}

.slick-next {
    right: 0px;
}

.descri-art {
    color: #3a962ee7;
    font-family: sans-serif;
    font-size: 1em;
}

.etiqueta-precio{
    width: 100%;
}

.etiqueta-precio h4{
    color: #000;
    margin-bottom: 15px;
}

.rating {
    color: #0F4488;
}

.rating i {
    cursor: pointer;
}

.secr {
    display: flex;
    justify-content: space-between;
    color: var(--azuloscuro);
    align-items: baseline;
}

.dispo {
    color: green;
    font-weight: 500;
    text-transform: uppercase;
}

.botcar {
    width: 40px;
    height: 40px;
    background: #3a962ee7;
    font-size: 21px;
    text-align: center;
    border-radius: 10px;
    line-height: 40px;
    cursor: pointer;
    float: right;
}

.botcar:hover {
    background-color: #192229;
    border: 1px solid var(--azuloscuro);
}

.botcar>a {
    color: #192229;
}

.botcar:hover>a {
    color: var(--azuloscuro);
}


/*--------------- OFERTAS ------------------*/

.oferta-card {
    display: flex;
}

.oferta-card p {
    font-size: 18px;
    margin: 0 5px;
    font-weight: bold;
    color: #000;
}

.bannerprod-card {
    display: flex;
}

.bannerprod-card p {
    font-size: 15px;
    margin: 0 5px;
    padding-right: 15px;
    padding-left: 15px;
    font-weight: bold;
    color: #000;
    clip-path: polygon(100% 0%, 92% 50%, 100% 100%, 0% 100%, 8% 50%, 0% 0%);
    background: #afafaf;
}

.tachado {
    text-decoration: line-through;
}

.precio {
    margin-top: 5px;
    text-align: center;
}

.precio span {
    font-size: 22px;
    padding: 0.01rem 0.5rem;
    color: var(--black);
    background: #fff;
    border: var(--border);
    padding-right: 0;
}

.precio span p {
    background: var(--blue);
    color: #fff;
    display: inline-block;
    font-size: 22px;
    padding: 0.2em 0.9em;
    clip-path: polygon(100% 0, 100% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
    text-transform: uppercase;
}


/*CONSERVAR CLASE ABAJO PARA ALGUNAS SECCIONES*/

.abajo-section {
    top: 0 !important;
    z-index: 999;
    position: fixed !important;
    background: #f9f8ff !important;
    transition: .2s linear;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
    box-shadow: 0px .5px 10px 0px black;
}

.container .navbar {
    padding: 5px;
}

.container .navbar .logo img {
    width: 40px;
    height: 40px;
}

.abajo-section .container .navbar .icons div {
    height: 1.9rem;
    width: 1.9rem;
    line-height: 1.9rem;
    font-size: 1rem;
}

.abajo-section .shopping-cart {
    top: 112% !important;
    box-shadow: 2px 2px 2px 2px var(--shadow) !important;
}

.abajo-section .container .navbar .icons .search-form {
    border: .1px solid #0e0e0e;
}

.abajo-section .login-form {
    top: 112% !important;
    box-shadow: 2px 2px 2px 2px var(--shadow) !important;
}

.abajo-section nav ul li .submenu2::before {
    top: 14.9%;
    left: 5.5%;
}

.abajo-section .container .navbar nav ul li ul {
    top: 112% !important;
}

.mensaemerinfo {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 250px;
    position: absolute;
    bottom: 2%;
    right: 2%;
    padding: 10px;
    background: linear-gradient(to bottom, #3F4EBF, #3FB6BF);
    border-radius: 10px;
    opacity: 0.8;
    z-index: 999;
}

.mensaemerinfo:hover {
    opacity: 1;
}

.mensaemerinfo div {
    float: left;
    text-align: left;
    font: bold;
    font-size: 20px;
    padding: 5px;
    width: 190px;
    border-radius: 10px 10px 0px 0px;
    color: #fff;
}

.mensaemerinfo i {
    float: left;
    width: 50px;
    margin-top: 20px;
    font-size: 40px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font: bold;
}

.mensaemerinfo p {
    float: left;
    text-align: left;
    padding: 5px;
    color: #fff;
    font-size: 12px;
    width: 190px;
    margin: 0px;
}

.mensaemererror {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 250px;
    position: absolute;
    bottom: 2%;
    right: 2%;
    padding: 10px;
    background: linear-gradient(to bottom, #FA0A0E, #C43F42);
    border-radius: 10px;
    opacity: 0.8;
    z-index: 999;
}

.mensaemererror:hover {
    opacity: 1;
}

.mensaemererror div {
    float: left;
    text-align: left;
    font: bold;
    font-size: 20px;
    padding: 5px;
    width: 190px;
    border-radius: 10px 10px 0px 0px;
    color: #fff;
}

.mensaemererror i {
    float: left;
    width: 50px;
    margin-top: 20px;
    font-size: 40px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font: bold;
}

.mensaemererror p {
    float: left;
    text-align: left;
    padding: 5px;
    color: #fff;
    font-size: 12px;
    width: 190px;
    margin: 0px;
}

.mensaemerprecucion {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 250px;
    position: absolute;
    bottom: 2%;
    right: 2%;
    padding: 10px;
    background: linear-gradient(to bottom, #B7BE2E, #B7BE2E);
    border-radius: 10px;
    opacity: 0.9;
    z-index: 999;
}

.mensaemerprecucion:hover {
    opacity: 1;
}

.mensaemerprecucion div {
    float: left;
    text-align: left;
    font: bold;
    font-size: 20px;
    padding: 5px;
    width: 190px;
    border-radius: 10px 10px 0px 0px;
    color: #fff;
}

.mensaemerprecucion i {
    float: left;
    width: 50px;
    margin-top: 20px;
    font-size: 40px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font: bold;
}

.mensaemerprecucion p {
    float: left;
    text-align: left;
    padding: 5px;
    color: #fff;
    font-size: 12px;
    width: 190px;
    margin: 0px;
}

.mensaemerregistro {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 250px;
    position: absolute;
    top: 2%;
    right: 2%;
    padding: 10px;
    background: linear-gradient(to bottom, #2DB000, #259500);
    border-radius: 10px;
    opacity: 0.8;
    z-index: 999;
}

.mensaemerregistro:hover {
    opacity: 1;
    cursor: pointer;
}

.mensaemerregistro div {
    float: left;
    text-align: center;
    font: bold;
    font-size: 16px;
    padding: 5px;
    width: 190px;
    border-radius: 10px 10px 0px 0px;
    color: #fff;
}

.mensaemerregistro i {
    float: left;
    width: 50px;
    margin-top: 8px;
    font-size: 40px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font: bold;
}

.mensaemerregistro p {
    float: left;
    text-align: center;
    padding: 5px;
    color: #fff;
    font-size: 12px;
    width: 190px;
    margin: 0px;
}

.mensaemerpregunta {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 250px;
    height: 150px;
    position: absolute;
    bottom: 50%;
    right: 40%;
    background: linear-gradient(to bottom, #EEB504, #e6ca78);
    border-radius: 10px;
    z-index: 999;
}

@media only screen and (max-width: 800px) {
    .mensaemerpregunta {
        right: 35%;
        bottom: 40%;
    }
    .offer{
        margin: 0 4.5%;
        width: 91%;
        height: 300px;
        min-height: 300px;
        max-height: 300px;
        object-fit: cover;
    }    
}

@media only screen and (max-width: 500px) {
    .mensaemerpregunta {
        right: 25%;
        bottom: 40%;
    }
}

@media only screen and (max-width: 400px) {
    .mensaemerpregunta {
        right: 16%;
        bottom: 40%;
    }
}

.mensaemerpregunta div {
    text-align: center;
    font: bold;
    font-size: 16px;
    padding: 5px;
    border-radius: 10px 10px 0px 0px;
    color: #ffffff;
}

.mensaemerpregunta i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 34px;
    color: #fff;
    font: bold;
}

.mensaemerpregunta p {
    text-align: center;
    padding: 5px;
    color: #ffffff;
    font: bold;
    font-size: 12px;
    margin: 0px;
    text-transform: uppercase;
}

.botones-mensaemerpregunta span {
    padding: 5px;
    color: #ffffff;
    font: bold;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #fff;
    margin-left: 2%;
    background: #1F1F1F;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.botones-mensaemerpregunta span:hover {
    background: #999;
}

@media only screen and (max-width: 1250px) {
    .submenu {
        padding: 10px 0px;
    }
}

@media only screen and (max-width: 1200px) {
    .row {
        justify-content: space-between;
        text-align: center;
    }
}

@media only screen and (max-width: 1175px) {
    .submenu li {
        padding: 5px 5px;
        margin: 10px 10px;
    }
    .col-4 {
        flex-basis: 24%;
    }
    .headerf .search-form {
        width: 12rem;
    }
}

@media only screen and (max-width: 1050px) {
    .item_departamentos {
        margin-right: 5px;
    }
    nav {
        padding-left: 0;
    }
    .headerf .icons div {
        height: 2.1rem;
        width: 2.1rem;
        line-height: 2.1rem;
        font-size: 1rem;
    }
    .sesion-none{
        display: none;
    }
}

@media only screen and (max-width: 1080px) {
    .submenu li {
        width: 30%;
    }
    .slideshow-container {
        position: inherit;
    }
    .col-2 img {
        max-height: 413px;
    }
    .header {
        height: 100%;
    }
    .header .row {
        margin-top: 60px;
    }
    .sliderinfo {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 960px) {
    .col-4 {
        flex-basis: 31%;
    }
    nav ul li {
        margin-right: 20px;
    }
    .sliderinfo li .icon {
        margin-left: 0.5em;
    }
}

@media only screen and (max-width: 930px) {
    .cerrarbtn.active {
        display: block !important;
        position: absolute;
        top: 15px;
        right: 30px;
        font-size: 25px;
        cursor: pointer;
        width: 38px;
        color: #ffffffb5;
        background-color: #02020238;
    }
    .displaynone{
        display: block;
    }
    .departamentos.active .cerrarbtn:hover {
        background: #273144d4;
    }
    .departamentos {
        display: none;
    }
    .departamentos.active {
        display: flex;
        position: fixed;
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 0;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: #2b2d2ef3;
    }
    nav ul {
        display: grid;
        list-style-type: none;
        width: 80%;
        height: 80%;
        align-content: center;
    }
    .item_departamentos {
        height: 75px;
        width: 100%;
        line-height: 20px;
        cursor: pointer;
    }
    .item_departamentos:hover {
        background: #2b3446a6;
    }
    .item_departamentos:hover a {
        color: white !important;
    }
    #menu-btn {
        display: block !important;
    }
}

@media only screen and (max-width: 870px) {
    .headerf .search-form {
        width: 28rem;
    }
    .descripcioncinta {
        font-size: .7em;
    }
    .abajo nav {
        display: none;
    }
    .abajo-section nav {
        display: none;
    }
    .navhp.active {
        display: block;
    }
}

@media only screen and (max-width: 818px) {
    nav ul li {
        margin-right: 15px;
    }
    .headerf .search-form {
        width: 20rem;
    }
}

@media only screen and (max-width: 800px) {
    .navbar .logo img {
        width: 40px;
        height: 40px;
    }
    .abajo .container .navbar .icons div {
        height: 2.5rem;
        width: 2.5rem;
        line-height: 2.5rem;
        font-size: 1.2rem;
    }
    .submenu.active {
        visibility: visible;
        z-index: 999;
        position: fixed;
        top: 10%;
        width: 99%;
        left: .1%;
        height: 90%;
    }
    .abajo .submenu.active {
        visibility: visible;
        z-index: 999;
        position: fixed;
        top: 10%;
        width: 99%;
        left: .1%;
    }
    #MenuItems {
        visibility: hidden;
    }
}

@media only screen and (max-width: 750px) {
    .submenu li {
        height: auto;
    }
    .submenu>li>a {
        font-size: 13px;
    }
    .submenu li ul li a {
        font-size: 11px !important;
    }
    .col-4 {
        flex-basis: 48%;
    }
    .sliderinfo {
        padding: 2px;
        justify-content: center;
    }
    .contenedorinfo {
        width: 100%;
        display: block;
        text-align: center;
    }
}

@media only screen and (max-width: 670px) {
    .headerf .search-form {
        display: none;
    }
    .bnnp {
        display: none;
    }
    .submenu li {
        width: 46%;
    }
}

@media only screen and (max-width: 550px) {
    .sliderinfo {
        display: contents;
    }
    .cinta {
        padding: 10px 20px;
        padding-bottom: 18px;
    }
    .contenedorinfo::after {
        content: '';
        position: absolute;
        width: 20%;
        height: 1px;
        left: 40%;
        background-color: #ffffff;
    }
}

@media only screen and (max-width: 520px) {
    .headerf .shopping-cart.active {
        right: 1%;
    }
    .headerf .shopping-cart {
        width: 98%;
    }
    .headerf .login-form.active {
        right: 1%;
    }
    .headerf .login-form {
        width: 98%;
    }
    .header .row {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .col-4 {
        flex-basis: 49%;
        min-width: 49%;
        max-height: 345px;
        margin-bottom: 20px;
    }
    .col-4 img {
        min-height: 200px;
    }
    h4 {
        font-size: 14px;
        color: #C8CDD0;
        font-weight: normal;
        height: 43px;
        overflow: hidden;
    }
    .descri-art {
        font-size: 14px;
    }
    .small-container {
        width: 98%;
        margin: 1% 1%;
    }
    .abajo .container .navbar {
        padding: 5px 5px;
    }
    .submenu li {
        width: 96%;
    }
    .submenu>li>a {
        font-size: 16px;
    }
    .submenu li ul li a {
        font-size: 14px !important;
    }
    .submenu li ul li ul li a {
        font-size: 12.5px;
    }
}


/*VIDEOS DEL BANNER*/

.videohome {
    display: block;
}

.videotlfn {
    display: none;
}

@media only screen and (max-width: 900px) {
    .videohome {
        display: none;
    }
    .videotlfn {
        display: block;
        padding-top: 19%;
    }
}

/*BANNERS INDEX*/
.bannerhogarpc{
    display: block;
}
.bannerhogartlfn{
    display: none;
}
.bannercuponpc{
    display: block;
}
.bannercupontlfn{
    display: none;
}

@media only screen and (max-width: 900px) {
    .bannerhogarpc {
        display: none;
    }
    .bannerhogartlfn {
        display: block;
    }
    .bannercuponpc{
        display: none;
    }
    .bannercupontlfn{
        display: block;
    }
}

/*ESTILOS IMPORTADOS DE TUMEDICINA*/
.container-fluid{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row-tienda {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.d-flex {
    display: flex !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 50%;
    left: 0;
    border-top: 1px dashed #bec5cb;
    z-index: -1;
}

.position-relative {
    position: relative !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.bg-secondary {
    background-color: #212E36 !important;
    color: #eff3f5;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: gainsboro !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.col-lg-3,
.col-md-4,
.col-sm-6{
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

.text-decoration-none {
    text-decoration: none !important;
}

.h4,
h5,
h6 {
    font-weight: 500 !important;
}

.product-item {
    transition: .5s;
}

.product-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.bg-light {
    background-color: #FFFFFF !important;
}

.product-item .product-img img {
    transition: .5s;
    max-width: 100%;
    min-width: 100%;
    max-height: 250px;
    min-height: 250px;
    overflow: hidden;
    object-fit: cover;
}

.product-item:hover .product-img img {
    transform: scale(1.2);
}

.overflow-hidden {
    overflow: hidden !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.w-100 {
    width: 100% !important;
}

.product-action {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    display: none;
  }
  
  .product-action a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
  
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
    display: none;
  }
  
  .product-item:hover .product-action {
    background: rgba(255, 255, 255, 0.7);
    display: block;
    display: flex;
  }

.product-item:hover .product-action a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.product-item:hover .product-action a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.product-item:hover .product-action a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.product-item:hover .product-action a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.btn-tienda {
    display: inline-block;
    font-weight: 400;
    color: #6C757D;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-tienda:hover {
    color: #6C757D;
    text-decoration: none;
}

.btn-tienda:focus,
.btn-tienda.focus {
    outline: 0;
    box-shadow: none;
}

.btn-tienda.disabled,
.btn-tienda:disabled {
    opacity: 0.65;
}

.btn-tienda:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.btn-tienda.disabled,
fieldset:disabled a.btn-tienda {
    pointer-events: none;
}

.btn-outline-dark {
    color: #3D464D;
    border-color: #3D464D;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: var(--azulclaro);
    border-color: var(--azulclarohover);
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(61, 70, 77, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #3D464D;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #3D464D;
    border-color: #3D464D;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(61, 70, 77, 0.5);
}

.btn-square:hover .tooltip2::before {
    background: var(--azulclaro);
    color: #000;
}

.btn-square:hover .tooltip2 {
    top: 40px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    color: #000;
}

.btn-square:hover span {
    background: var(--azulclaro);
    color: var(--azuloscuro);
}

.btn-square {
    width: 40px;
    height: 40px;
    margin: 0 5px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooltip2 {
    position: absolute;
    top: 40px;
    font-size: 14px;
    width: 125px;
    background: var(--azulclaro);
    color: #000;
    padding: 4px 5px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tooltip2::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: var(--azulclaro);
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.text-center {
    text-align: center !important;
    padding: 0 2px;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.alturadedescrip{
    min-height: 40px;
}

@media (prefers-reduced-motion: reduce) {
    .btn-tienda  {
        transition: none;
    }
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .d-md-flex {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 20%;
    }
}

@media (min-width: 1200px) {
    .mx-xl-5 {
        margin-right: 3rem !important;
    }
    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }
    .px-xl-5 {
        padding-right: 3rem !important;
    }
    .px-xl-5 {
        padding-left: 3rem !important;
    }

}

@media (max-width: 700px) {
    
.col-lg-3, .col-md-4, .col-sm-6 {
    position: relative;
    width: 50%;
    padding-right: 10px;
    padding-left: 10px;
}
}

.limitarcaracteres a{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* numero de lineas para mostrar */
    line-clamp:2;
    overflow: hidden;
    margin: 10px 5px;
  }