:root {
    --color-white-100: hsl(206, 5%, 98%);
    --color-white-200: hsl(206, 5%, 90%);
    --color-white-300: hsl(206, 5%, 80%);
    --color-white-400: hsl(206, 5%, 65%);
    --color-white-500: hsl(206, 5%, 50%);
    --color-black-100: hsl(213, 23%, 8%);
    --color-black-200: hsl(214, 21%, 6%);
    --color-black-300: hsl(210, 21%, 6%);
    --color-black-400: hsl(216, 22%, 4%);
    --color-black-500: hsl(220, 18%, 3%);
    --color-pink-100: hsl(326, 85%, 90%);
    --color-pink-200: hsl(327, 87%, 80%);
    --color-pink-300: hsl(329, 86%, 70%);
    --color-pink-400: hsl(330, 81%, 60%);
    --color-pink-500: hsl(333, 71%, 50%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}



*,
*::before,
*::after {
    /* padding: 0;
    margin: 0; */


    list-style: none;
    list-style-type: none;
    text-decoration: none;
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility; */
}


html {
    font-size: 100%;

    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    margin: 0;
    /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    height: -webkit-fill-available;
    color: var(--color-black-500);
    background-color: var(--color-white-100); */
}

/* a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
} */

/* img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
} */


.container-nav {
    max-width: 100%;
    height: auto;
    /* margin: 0 auto; */
    /* padding: 0 1.25rem; */
    background-color: #ffffff;
}

.navbar_smart {
    margin-left: auto;
    margin-right: auto;
}

.brand {
    font-family: inherit;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-pink-500);
}

.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    border: none;
    border-radius: 0.25rem;
    text-transform: unset;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-darken {
    padding: 0.75rem 2rem;
    color: var(--color-white-100);
    background-color: var(--color-black-200);
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
}

.btn-neutral {
    padding: 0.75rem 2rem;
    color: var(--color-black-500);
    background-color: var(--color-white-100);
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
}

.header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
    background-color: #eaeaea;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 5.5rem;
    margin: 0 auto;
}

.busqueda {

    display: block;
    padding: .375rem .75rem;
    /* font-size: 1rem; */
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.busqueda:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    /* box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); */
}


.input-busqueda {
    display: none;
}


.logo_movil {
    margin-left: 10px;
    display: none;
}

.carrito {
    display: none;
}


@media screen and (max-width: 992px) {
    .container-nav {
        background-color: white;
    }

    .wrapper {
        height: 4.5rem;
    }

    .logo_movil {
        display: block;
    }

    .input-busqueda {
        display: flex;
    }

    .carrito {
        display: block;
    }

    .navbar_smart {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;

        -webkit-box-shadow: var(--shadow-medium);
        box-shadow: var(--shadow-medium);
        background-color: var(--color-white-100);
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        background-color: #ffffff;
    }






    .navbar_smart.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
}

.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 1.5rem;
}

.menu-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.25rem;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    font-family: Lato;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: rgb(0, 0, 0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}

.menu-link:hover {
    outline: none;
    color: #f7790a;
    font-family: Lato-Bold;
}

@media only screen and (min-width: 993px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media only screen and (max-width: 992px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }

    .menu-item {
        display: block;
        margin: 0 auto;
    }

    .menu-link {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
    }
}

.submenu {
    /*  */


    position: absolute;
    top: 35px;
    left: -2rem;
    min-width: 40rem;
    height: auto;
    padding: 0 1rem 0 1rem;
    background-color: #ffffff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;

}

.menu {
    margin-top: 10px;
    padding: 20px 0;
}



.submenu .content .rows {
    /* width: calc(25% - 30px); */
    line-height: 45px;
    /* display: inline-block; */
}

.submenu .content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.rows span {
    color: #454545;
    font-size: 20px;
    font-weight: 500;
    padding: 0px 15px;

}

.submenu-item {

    padding: 0;


}

.submenu-item a {


    font-family: Lato;

}

.submenu-link {

    /* width: 100%; */
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 0px 15px;
    /* border-radius: 5px; */
    transition: all 0.3s ease;
    font-family: Lato;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* background-color: #EFBA43; */

}


.submenu-link:hover {
    background: #f7790a;

    color: black;
    text-decoration: none;
    font-family: Lato-Bold;
}

@media only screen and (max-width: 992px) {
    .submenu {
        position: relative;
        top: -0.5rem;
        left: 2.5rem;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-box-shadow: none;
        box-shadow: none;
        background: transparent;
    }
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 2.75rem;
    margin-right: 10px;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border: none;
    outline: none;
    background: black;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

@media only screen and (max-width: 992px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .submenu {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin: 0;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .submenu .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
        z-index: 999;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 992px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}