/**
 *	Versión 1.0.0
 */
@charset "utf-8";

/**
  *	Fonts
  */
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
/**
  *	Mobile
  */

:root {
    --neu-bg: linear-gradient(145deg, #f3f3f3, #cccccc);
    --neu-shadow: 20px 20px 40px #cccccc,
        -20px -20px 40px #fafafa;
    --shadow: #2e2e2e;
    --scrollbarBG: #eee;
    --thumbBG: #2e2e2e;
    --background-gradient: linear-gradient(30deg, #f39c12 30%, #f1c40f);
    --gray: #34495e;
    --darkgray: #282828;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    box-shadow: 0 -100vh 0 100vh var(--shadow), 0 0 15px 5px rgba(0, 0, 0, 0.157);
}

/**	General */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/**	Body */

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;


}

/**	Encabezados */


/**	Main */

.avisoArriba {
    position: absolute;
    width: 100%;
    text-align: center;
    background-color: #c2bfba;
}

.avisoArriba p {
    padding: 2px 0;
}

/* Banner */
#banner {
    height: 64vh;
    width: 100%;
    background: url(../img/people.png) no-repeat;
    background-size: 66vh;
    background-color: #dbd8d3;
    background-position: 80% 190%;
}

.lupa {
    overflow: hidden;
    background-image: url(../img/lupa.png);
    background-size: 25px;
    height: 25px;
    width: 25px;
    margin-left: 40px;
    scroll-behavior: smooth;
    background-repeat: no-repeat;
    transition: all .7s ease;
}

.carrito {
    overflow: hidden;
    background-image: url(../img/bolsa-compras.png);
    background-size: 28px;
    margin-top: -4px;
    height: 28px;
    width: 28px;
    scroll-behavior: smooth;
    background-repeat: no-repeat;
    transition: all .7s ease;
}

.lupa:hover .carrito:hover {
    transition: all .7s ease;
}

.lupa a,
.carrito a {
    height: 70px !important;
    width: 60px;
    padding: 30px 0 30px 150px;
    scroll-behavior: smooth;
}

.cargaNav {
    margin-top: -90px;
    margin-bottom: 90px;
}

.carga {
    margin-left: -85vh !important;
    transition: all .2s ease;
}

#banner h1 {
    transition: all .9s ease;
    padding-top: 27vh;
    padding-left: 25vh;
    font-size: 90px;
}

#banner p:nth-child(3) {
    margin-top: -10px;
    transition: all .9s ease;
    color: #5a5a5a;
    font-weight: 500;
    padding-left: 26vh;
    font-size: 19px;
}

.direccion_nav {
    position: absolute;
    padding-top: 14vh;
    color: rgb(159, 159, 159);
    margin-left: 60px;
    font-size: 18px;
    transition: all .7s ease;

}

.direccion_nav a {
    cursor: pointer;
    text-decoration: none;
    color: rgb(159, 159, 159);
}


.direccion_nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 33%;
    height: 2px;
    background-color: rgb(127, 127, 127);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease-in-out;
}

.direccion_nav a:hover::before {
    height: 2px;
    transform: scaleX(1);
    transform-origin: left;
}

.paginaActual {
    color: rgb(130, 130, 130);

}


.flechaAbajo a {
    height: 70px !important;
    width: 60px;
    padding: 30px 0 30px 150px;
    scroll-behavior: smooth;
}

.cargaFlecha {
    opacity: 0;
}

.flechaAbajo {
    overflow: hidden;
    margin: 2vh 0 0 27vh;
    background-image: url(../img/flecha-portada.png);
    background-size: 70px;
    height: 70px;
    width: 70px;
    scroll-behavior: smooth;
    background-repeat: no-repeat;
    transition: all .7s ease;
}

.flechaAbajo:hover {
    transform: rotate(90deg);
    margin: 4vh 0 0 27vh;
    transition: all .7s ease;
}

/* Fin Banner */

/* MINICARRITO */
#minicarrito {
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: rgb(232, 232, 232) 4px solid;
    padding: 0 200px;
}

#minicarrito p {
    color: rgb(48, 48, 48);
    font-size: 18px;
    transition: all .2s ease;
}

#pDetalles {
    width: 33%;
}

#minicarrito a {
    color: rgb(150, 150, 150);
    font-weight: bold;
    text-decoration: none;
    transition: all .2s ease;
}

#minicarrito a:hover {
    color: rgb(19, 19, 19);
    transition: all .2s ease;
}

.minicarritoAbrirCarrito {
    width: 150px;
    font-weight: bold;
    border: 0px;
    z-index: 999999;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
    color: #fff;
    cursor: pointer;

    padding: 0 1em;
    background-color: var(--darkgray);
    font-size: 16px;
}

#divFiltrar {
    width: 33%;
    text-align: center;
}

#divVerCarrito {
    width: 33%;
    text-align: right;
}

/* FIN MINICARRITO */


/**	Productos */

#productos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1em auto;
    width: 80%;
    padding: 1em;
    background: rgba(255, 255, 255, 0.25);
}

.producto {
    align-items: center;
}

#productos>div {
    display: flex;
    flex-direction: column;
    align-self: center;
    padding: 1em;
    height: 700px;
    margin-bottom: 70px;
}

@media screen and (width <=1550px) {
    #productos>div {
        height: 600px;
    }
}

@media screen and (width <=1200px) {
    #productos>div {
        height: 500px;
    }
}

@media screen and (width <=980px) {
    #productos>div {
        height: 670px;
    }
}

@media screen and (width <=600px) {
    #productos>div {
        height: 455px;
    }
}


.producto>img {
    width: 100%;
    background: var(--neu-bg);
    box-shadow: var(--neu-shadow);
    margin: 1em 5%;
    transition: all .2s ease;
}

.producto>img:hover {
    opacity: 0.8;
    background-color: white;
    transition: all .2s ease;
    cursor: pointer;
}

.productoNombre {
    font-size: 1.4em;
}

.productoCategoria {
    font-size: 1em;
    opacity: 0.75;
}

.productoDescripcion {
    font-size: 1em;
    margin-top: 8px;
    font-style: italic;
}

#productos .producto .divFlex {
    display: block;
    margin-top: 10px;
}

.productoPrecio {
    display: inline-block;
    font-size: 1.2em;
    width: 75%;
    padding: 16px 0;
    font-weight: 700;
}

.botonAgregar i {
    font-size: 1.4em;
}

.botonAgregar {
    display: inline-block;
    background: var(--neu-bg);
    outline: none;
    border: none;
    padding: 10px;
    width: 25%;
    padding: 16px;
    background: #efefef;
    border: none;
    border-radius: .5rem;
    color: #444;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .2rem;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: .2s ease-in-out;
    box-shadow: -6px -6px 14px rgba(255, 255, 255, .7),
        -6px -6px 10px rgba(255, 255, 255, .5),
        6px 6px 8px rgba(255, 255, 255, .075),
        6px 6px 10px rgba(0, 0, 0, .15);
}

.botonAgregar :hover {
    box-shadow: -2px -2px 6px rgba(255, 255, 255, .6),
        -2px -2px 4px rgba(255, 255, 255, .4),
        2px 2px 2px rgba(255, 255, 255, .05),
        2px 2px 4px rgba(0, 0, 0, .1);
}

.botonAgregar :active {
    box-shadow: inset -2px -2px 6px rgba(255, 255, 255, .7),
        inset -2px -2px 4px rgba(255, 255, 255, .5),
        inset 2px 2px 2px rgba(255, 255, 255, .075),
        inset 2px 2px 4px rgba(0, 0, 0, .15);
}

#modalDetalle div button {
    width: 100%;
    --animate-duration: 1s;
}

#productos div div {
    padding: 0;
    width: 100%;
}

.popupAdd {
    position: fixed;
    z-index: 999999999999999999999999999999999999;
    padding: 18px 25px;
    bottom: 15%;
    right: 5%;
    background: rgba(237, 237, 237, 0.555);
    opacity: 0.85;
    max-width: 380px;
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.popupAdd i {
    display: inline-block;
    margin-right: 25px;
}

.popupAdd p {
    display: inline-block;
}

.popupAdd span {
    font-weight: 700;
}


/* Fin Productos */

hr {
    margin: 1em 0%;
    width: 100%;
    height: 0.1em;
    --animate-duration: 1s;
}


/**	Overs */
p a:hover,
li a:hover {
    opacity: 0.8;
}

/* Modales */

#modalCarrito {
    position: fixed;
    z-index: 9999999999999999999999999999999999999999999999;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    padding: 2rem;
}

#modalCarritoBg {
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999999;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}

/* Modal Carrito */

#modalCarrito {
    align-items: end;
    padding: 0;
    transition: all .2s ease;
}

.modal {
    display: none;
}

#modalCarrito1 {
    width: 40%;
    padding: 2rem;
    height: 100vh;
    background-color: white;
}

#modalCarrito1 p {
    margin: 30px 0px 10px 0;
}

#modalCarrito1 ul li {
    font-size: 17px;
    color: rgb(28, 28, 28)
}

#modalCarrito1 ul li a {
    width: 50%;
    font-size: 17px;
    color: rgb(28, 28, 28)
}

.modal li span {
    font-size: 16px;
    width: 50%;
}

.spanProductoCarrito {
    width: 100% !important;
    text-align: left;
}

.spanCantidadProductoCarrito {
    width: 20% !important;

}

#modalCarrito1 p {
    font-size: 20px;
    color: #000000;
}

#modalCarrito1 h2 {
    font-size: 35px;
}

#vaciarCarrito {
    position: absolute;
    height: 45px;
    bottom: 0;
    margin: 0 0 70px 50px;
    width: 170px;
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: bold;
    border: 0px;
    border-radius: 30px;
    background-color: rgb(217, 217, 217);
    transition: all .2s ease;
}

#checkoutCarrito {
    position: absolute;
    height: 50px;
    bottom: 0;
    right: 0;
    margin: 0 50px 70px 0;
    width: 180px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: bold;
    border: 0px;
    border-radius: 30px;
    background-color: rgb(28, 28, 28);
    transition: all .2s ease;
}

#vaciarCarrito:hover {
    color: rgb(0, 0, 0);
    background-color: rgb(225, 225, 225);
}

.modal a {
    text-decoration: none;
    color: #000000;
}

.modal a.cerrar {
    position: fixed;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    right: 1em;
    border-radius: 2.5em;
    width: 2em;
    margin: 2px 0px 0 0;
    height: 2em;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 25px;
    text-align: center;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: all .2s ease;
}

.modal a.cerrar:hover {
    transition: all .2s ease;
    background-color: rgb(53, 53, 53);
    color: rgba(255, 255, 255, 0.9);
}

#modalCarrito img {
    height: 30%;
}

.modal h3,
.modal li {
    margin: 0;
    text-align: center;
}

.modal li {
    display: flex;
    margin: 0.45em auto;
    width: 99%;
}

/* Fin Modal Carrito */

/* Modal Detalle */

.divDetalleProducto {
    margin: auto;
}

#modalDetalle>div {
    display: flex;
}

.ImagenGrande {
    width: 470px;
    margin: 50px 50px 10px 50px;
    --animate-duration: 1s;
}

.divImagenesChicas {
    --corregirWidthImgChicas: 0;
    width: var(--corregirWidthImgChicas);
    margin: 0 50px 10px 50px;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-start;
}

.ImagenChica {
    width: 32%;
    margin: 1%;
    transition: all .2s ease;
    margin-bottom: 10px;
    --animate-duration: 1s;
}

.ImagenChica:first-child {
    margin-left: 0;
}

.ImagenChica:nth-child(3) {
    margin-right: 0;
}

.ImagenChica:nth-child(4) {
    margin-left: 0;

}


.ImagenChica:hover {
    opacity: 0.8;
    cursor: pointer;
    transition: all .2s ease;
}

.ImagenActiva {
    opacity: 0.5 !important;
}

#modalDetalle {
    position: fixed;
    z-index: 9999999999999999999999999999999999999999999999;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 1);
    --animate-duration: 0.2s;
}

.divInfoModalDetalle {
    margin: 70px 20px 50px 10px;
    width: 100%;

}

.divInfoModalDetalle h2 {
    font-size: 40px;
    --animate-duration: 1s;
}

.divInfoModalDetalle p:nth-child(1) {
    margin: 35px 0 0px 0;
    --animate-duration: 1s;
}

.divInfoModalDetalle p:nth-child(3) {
    font-size: 25px;
    margin: 20px 0 5px 0;
    --animate-duration: 1s;
}

.divInfoModalDetalle p:nth-child(4) {
    font-size: 13px;
    color: rgb(95, 95, 95);
    margin: 0px 0 14vh 0;
    --animate-duration: 1s;
}

.divInfoModalDetalle p:nth-child(7) {
    font-size: 18px;
    color: rgb(95, 95, 95);
    --animate-duration: 1s;
}

.detallesAgregarCarrito {
    display: block;
    outline: none;
    border: none;
    padding: 10px;
    width: 90%;
    padding: 16px;
    border: 2px solid rgb(30, 30, 30);
    border-radius: 0rem;
    color: #444;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .2rem;
    text-align: center;
    cursor: pointer;
    transition: .2s ease-in-out;
    box-shadow: none;
    margin-bottom: 20px;
}

.detallesAgregarCarrito:hover {
    color: rgb(29, 29, 29);
    box-shadow: 0px 0px 40px -10px #c9c9c9;
    transition: .2s ease-in-out;
}

.detallesComprarAhora {
    display: block;
    outline: none;
    border: none;
    padding: 10px;
    width: 90%;
    padding: 16px;
    border: 2px solid rgb(30, 30, 30);
    border-radius: 0rem;
    color: rgb(223, 223, 223);
    background-color: #252525;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .2rem;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: .2s ease-in-out;
    box-shadow: none;
    margin-bottom: 40px;
}

.detallesComprarAhora:hover {
    color: rgb(255, 255, 255);
    box-shadow: 0px 0px 40px -10px #c9c9c9;
    background-color: #343434;
    transition: .2s ease-in-out;
}

.divInfoModalDetalle {
    --animate-duration: 1s;
}

.divInfoModalDetalle a:hover {
    color: #343434;
}

/* Fin Modal Detalle */

#elegircategoria {
    appearance: none;
    text-align: center;
    outline: 0;
    border: 0;
    font-weight: bold;
    box-shadow: none;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
    color: #fff;
    padding: 10px 1em;
    background-color: var(--darkgray);
    font-size: 16px;
    background-image: none;
    cursor: pointer;
    transition: all .2s ease;
}

#elegircategoria:hover,
.minicarritoAbrirCarrito:hover {
    background: #606060;
}

#elegircategoria::-ms-expand {
    display: none;
}

/*Web*/
@media screen and (width > 960px) {
    #productos {
        flex-direction: row;
    }

    #productos>div {
        width: 25%;
    }

    /**	Footer */
    footer ul {
        flex-direction: row;
    }
}

.carritoCelu {
    display: none;
}


@media screen and (width <=960px) {

    #menu-check:checked~.menu li:nth-child(4),
    #menu-check:checked~.menu li:nth-child(5) {
        display: none;
    }

    .menu {
        margin-top: 85px;
    }

    .carritoCelu {
        display: block;
        position: absolute;
        margin-top: -3px;
        right: 100px;
    }

    .lupaCelu {
        display: block;
        position: relative;
        margin-left: 2%;
        margin-top: -3px;
    }


    #banner {
        height: 64vh;
        width: 100%;
        background: url(../img/people.png) no-repeat;
        background-size: 65%;
        background-color: #dbd8d3;
        background-position: center bottom;
        margin-top: 90px;
    }

    #banner h1 {
        transition: all .9s ease;
        padding-top: 10vh;
        padding-left: 0vh;
        font-size: 90px;
        text-align: center;
        background: rgba(219, 216, 211, .65);
    }

    #banner p:nth-child(3) {
        color: #000;
        text-align: center;
        padding-left: 0vh;
        margin-top: -15px;
        font-size: 16px;
        background: rgb(241, 241, 241);
    }

    .flechaAbajo {
        display: none;
    }

    .direccion_nav {
        padding-top: 5vh;
        margin-left: 25px;
    }



    #divVerCarrito {
        display: none
    }



    #productos {
        flex-direction: row;
        width: 95%;
    }

    #productos div {
        width: 50%;
        margin: 0 0 100px 0;
    }

    footer .footercolumn {
        justify-content: center;
    }

    footer .sobre {
        justify-content: end;
        min-height: 10em;
    }

    #elegircategoria option {
        font-size: 15px;
        padding: 10px;
    }

    #modalCarrito1 {
        width: 100%;
    }

    #minicarrito {
        padding: 0 70px;
    }

    #pDetalles,
    #divFiltrar {
        width: 50%;
    }

    .divDetalleProducto {
        margin: 20px auto;
    }

    .ImagenGrande {
        width: 270px;
        margin: 0px 20px;
    }

    .divInfoModalDetalle {
        margin: 0px 20px 50px 10px;
    }

    .divImagenesChicas {
        margin: 0px 20px;

    }

    .divInfoModalDetalle h2 {
        font-size: 30px;
    }

    .divInfoModalDetalle p:nth-child(3) {
        font-size: 20px;
    }

    .detallesAgregarCarrito,
    .detallesComprarAhora {
        padding: 10px;
    }

    .divInfoModalDetalle p:nth-child(4) {
        margin: 0px 0 8vh 0;

    }
}

@media screen and (width <=480px) {
    header>div>p {
        background-image: url(../img/logo.png);
        background-size: 100px;
        height: 50px;
        width: 110px;
    }

    .carritoCelu {
        margin-left: 12%;
    }

    .lupaCelu {
        margin-left: 4%;
    }

    #banner {
        background-size: 78%;
    }

    #banner h1 {
        font-size: 55px;
    }

    #banner p:nth-child(3) {
        margin-top: -5px;
        font-size: 12px;
        background: rgb(241, 241, 241);
    }

    .direccion_nav {
        font-size: 12px;
    }


    #minicarrito p {
        color: rgb(48, 48, 48);
        font-size: 12px;
        padding-left: 10px;
    }

    #minicarrito {
        padding: 0 10px;
    }

    #elegircategoria {
        appearance: none;
        outline: 0;
        border: 0;
        box-shadow: none;
        height: 3em;
        border-radius: 0.25em;
        overflow: hidden;
        color: #fff;
        padding: 10px 1em;
        background-color: var(--darkgray);
        font-size: 12px;
        background-image: none;
        cursor: pointer;
        transition: .2s;
    }

    #divFiltrar {
        width: 50%;
        text-align: center;
    }

    #pDetalles {
        width: 50%;
        margin-left: 4px;

    }

    .botonAgregar i {
        font-size: 1.2em;
    }

    .productoNombre {
        font-size: 1.1em;
    }

    .productoCategoria {
        font-size: 0.8em;
        opacity: 0.75;
    }

    .productoPrecio {
        width: 50%;
    }

    .botonAgregar {
        width: 40%;
        padding: 11px;
    }


    #productos {
        flex-direction: row;
    }

    #productos div {
        width: 50%;
        margin: 0 0 15px 0;
    }



    footer .copyright p {
        font-size: 0.6em;
    }

    footer p {
        font-size: 0.8em;
    }

    .productoPrecio {
        font-size: 0.9em;
    }

    .popupAdd {
        position: fixed;
        z-index: 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;
        padding: 11px 25px;
        bottom: 5%;
        right: 5%;
        left: 5%;
        background: rgba(227, 227, 227, 0.555);
        opacity: 0.85;
        max-width: 380px;
        backdrop-filter: blur(10px);
        border-radius: 14px;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .popupAdd i {
        display: inline-block;
        margin-right: 25px;
    }

    .popupAdd p {
        display: inline-block;
        font-size: 12px;
    }

    .popupAdd span {
        font-weight: 700;
    }


    .modal li span {
        font-size: 12px;
    }

    #modalCarrito1 h2 {
        font-size: 25px;
    }

    .modal a.cerrar {
        margin: -7px 0px 0 0;
    }

    #modalCarrito1 p {
        font-size: 14px;
        color: #000000;
    }

    #modalCarrito1 ul li a {
        font-size: 13px;
    }

    #vaciarCarrito {
        position: absolute;
        height: 35px;
        bottom: 0;
        margin: 0px 0 30px -10px;
        width: 140px;
        color: rgb(0, 0, 0);
        font-size: 16px;
        font-weight: bold;
        border: 0px;
        border-radius: 30px;
        background-color: rgb(217, 217, 217);
        transition: all .2s ease;
    }

    #checkoutCarrito {
        position: absolute;
        height: 35px;
        bottom: 0;
        right: 0;
        margin: 0 22px 30px 0;
        width: 140px;
        color: rgb(255, 255, 255);
        font-size: 16px;
        font-weight: bold;
        border: 0px;
        border-radius: 30px;
        background-color: rgb(28, 28, 28);
        transition: all .2s ease;
    }

    #modalDetalle {
        padding: 1rem;
        text-align: center;
    }

    .divInfoModalDetalle p:nth-child(1) {
        margin: 0;
    }

    .divInfoModalDetalle {
        text-align: left;
    }

    .divImagenesChicas {
        margin: auto;
    }

    #modalDetalle>div {
        display: block;
    }

    .ImagenGrande {
        width: 270px;
        margin: 0 20px;
    }

    .ImagenChica {
        margin-bottom: 20px;
    }

    .divInfoModalDetalle h2 {
        font-size: 30px;
    }

    .divInfoModalDetalle p:nth-child(3) {
        font-size: 20px;
    }

    .divInfoModalDetalle p:nth-child(4) {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .detallesAgregarCarrito,
    .detallesComprarAhora {
        padding: 10px;
    }

    .divInfoModalDetalle {
        margin: 0;
    }
}


@media screen and (width <=350px) {
    #elegircategoria {
        padding: 5px;
        font-size: 10px;
    }
}

@media (max-width: 1100px) {
    .avisoArriba {
        display: none;
    }
}

/* Modal Checkout */
#checkoutModal {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    position: fixed;
    z-index: 999999999999;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 1);
    display: none;
    --animate-duration: 0.2s;
}

#checkoutModal h2 {
    font-size: 40px;
    margin-left: 16%;
    margin: 20px 0 20px 16%;
    --animate-duration: 0.5s;
}

#checkoutModal h2 span {
    color: rgb(89, 89, 89);
}

#checkoutModal p {
    margin: 30px 0px 10px 0;
}

#checkoutModal ul li {
    font-size: 17px;
    color: rgb(28, 28, 28)
}

#checkoutModal ul li a {
    width: 50%;
    font-size: 17px;
    color: rgb(28, 28, 28)
}

#checkoutModal h3,
#checkoutModal li {
    text-align: left;
}

.columnascheckout {
    display: flex;
    margin: 0 16%;
}


.ladoizq {
    display: inline-block;
    width: 60%;
    margin-right: 2%;
    --animate-duration: 0.75s;
}

.ladoder {
    display: inline-block;
    width: 40%;
    margin-left: 2%;
    --animate-duration: 1s;
}



.checkoutNombreProd {
    width: 100% !important;
}

.checkoutCantProd {
    width: 20% !important;
}

.checkoutcarrito {
    text-align: center;
}

.checkoutcarrito li {
    margin-bottom: 20px;
}

.checkoutcarrito li span {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.checkoutcarrito li img {
    width: 60px;
    margin-right: 20px;
}

.checkoutcarrito li>span:nth-child(2) {
    align-items: left;
    justify-content: left;
}

.checkoutcarrito li>span:nth-child(3) {
    align-items: center;
    justify-content: center;
}

.checkoutcarrito li>span:nth-child(4) {
    align-items: right;
    justify-content: right;
}

#formularioFacturacion>div h3 {
    font-weight: 200;
    margin-bottom: 20px;
    font-weight: bold;
}


#formularioFacturacion>div input {
    padding: 10px 10px;
    border: 1px solid rgb(40, 40, 40);
    margin-bottom: 20px;
    border-radius: 3px;
    color: rgb(0, 0, 0);
    display: block;
    width: 100%;
    background-color: rgb(253, 253, 253);
    font-size: 14px;
    outline: none;
    transition: all .2s ease;
    font-family: 'Poppins', sans-serif;
    border-color: #d9d9d9;
}

#formularioFacturacion>div input:hover {
    transition: all .2s ease;
    border: 1px solid #bdbdbd;
    background-color: rgb(250, 250, 250);
}

#formularioFacturacion>div input:focus-visible,
#detallesRetiro input {
    border: 1px solid #a4a4a4;
    color: #0b0b0b;
    outline: 0px;
    box-shadow: 0px 0px 15px -5px rgb(227, 227, 227) inset;
    transition: all .2s ease;
}



#FormatoEntregaDiv {
    margin-bottom: 30px;
}

#FormatoEntregaDiv>div>div>input {
    width: 10% !important;
    display: inline-block !important;
}

#FormatoEntregaDiv>div>div>input {
    opacity: 0;
    margin: -10px;
}

#FormatoEntregaDiv>div>div>label {
    display: inline-block;
    padding: 5px 10px 5px 45px;
    cursor: pointer;
    transition: all .3s ease;
}

#FormatoEntregaDiv>div>div>label:hover {
    background-color: #5a5a5a1c;
    transition: all .3s ease;
}

#FormatoEntregaDiv>div>div>label::before {
    content: "";
    width: 17px;
    height: 17px;
    display: inline-block;
    border: #242424 2px solid;
    position: absolute;
    margin-left: -34px;
    margin-top: 2px;
    border-radius: 10px;
    transition: all .2s ease;
}

#FormatoEntregaDiv>div>div>input:checked+label {
    padding: 5px 10px 5px 10px;
    color: white;
    background-image: linear-gradient(to right, #282828, #3c3c3c);
    transition: all .3s ease;
}

#FormatoEntregaDiv>div>div>input:checked+label::before {
    display: none;
    transition: all .2s ease;
}

#FormatoEntregaDiv>div {
    margin-left: -55px;
}

#FormatoEntregaDiv>div>div {
    margin: 10px 12px;
}

.botonContinuar {
    margin-top: 40px;
}

.botonContinuar a {
    text-decoration: none;
    margin-top: 50px !important;
    text-align: center;
    outline: 0;
    border: 0;
    font-weight: bold;
    box-shadow: none;
    border-radius: 0.25em;
    overflow: hidden;
    color: #fff !important;
    padding: 12px 1em;
    background-color: var(--darkgray);
    font-size: 16px;
    background-image: none;
    cursor: pointer;
    transition: all .2s ease;
    margin-top: 40px;
}

.botonContinuar a:hover {
    background: #606060;
}

.pais {
    margin-bottom: 20px;
    display: flex;
}

#detallesEnvia select {
    padding: 10px 16px;
    border: 1px solid #c3c3c3;
    border-left: 0px solid #c3c3c3;
    margin-bottom: 20px;
    border-radius: 0px 3px 3px 0;
    color: rgb(0, 0, 0);
    display: inline-block;
    width: 90%;
    background-color: rgb(230, 230, 230);
    font-size: 14px;
    outline: none;
    transition: all .2s ease;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

#detallesEnvia label {
    padding: 11px 21px;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
    border-radius: 3px 0 0 3px;
    border-right: 0px solid #c3c3c3;
    display: inline;
    width: 15%;
    margin: 0;
    background-color: rgb(250, 250, 250);
    font-size: 14px;
    outline: none;
    transition: all .2s ease;
    font-family: 'Poppins', sans-serif;
}

#metodoPago {
    margin-bottom: 30px;
}

#metodoPago>div>input {
    opacity: 0;
    margin: -10px;
}

#metodoPago>div>label {
    display: inline-block;
    padding: 5px 10px 5px 45px;
    cursor: pointer;
    transition: all .3s ease;

}

#metodoPago>div>label:hover {
    background-color: #6713131c;
    transition: all .3s ease;
}

#metodoPago>div>label::before {
    content: "";
    width: 17px;
    height: 17px;
    display: inline-block;
    border: #242424 2px solid;
    position: absolute;
    margin-left: -34px;
    margin-top: 2px;
    border-radius: 10px;
    transition: all .2s ease;
}

#metodoPago>div>input:checked+label {
    padding: 5px 10px 5px 10px;
    color: white;
    background-image: linear-gradient(to right, #282828, #3c3c3c);
    transition: all .3s ease;
}

#metodoPago>div>input:checked+label::before {
    display: none;
    transition: all .2s ease;
}

#metodoPago>div>label {
    margin: 10px 0;
}

#detallesRetiro p {
    border-radius: 0.25em;
    color: rgb(0, 0, 0);
    padding: 12px 1em;
    background-color: rgb(210, 210, 210);
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease;
    margin: 10px 0 40px 0;
}

#botonSubmit {
    text-align: center !important;
    outline: 0 !important;
    border: 0 !important;
    font-weight: bold !important;
    box-shadow: none !important;
    border-radius: 0.25em !important;
    overflow: hidden !important;
    color: #fff !important;
    padding: 12px 1em !important;
    background-color: var(--darkgray) !important;
    font-size: 16px !important;
    background-image: none !important;
    cursor: pointer !important;
    transition: all .2s ease !important;
    margin: 20px 0 40px 0 !important;
}

#botonSubmit:hover {
    color: rgb(255, 255, 255) !important;
    background-color: #606060 !important;
}

#terminosCondiciones {
    display: flex;
    margin-top: 40px;
}

.toggle *:before,
.toggle *:after {
    content: '';
    position: absolute;
}

.toggle input {
    height: 40px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 40px;
}

.toggle {
    position: relative;
    display: inline-block;
}

.toggle label.toggle-item {
    width: 50px;
    background: #a9a9a9;
    height: 26px;
    display: inline-block;
    border-radius: 50px;
    margin-right: 16px;
    position: relative;
    transition: all 0.3s ease;
    transform-origin: 20% center;
    cursor: pointer;
}

.toggle label.toggle-item:before {
    display: block;
    transition: all 0.2s ease;
    width: 10px;
    height: 10px;
    top: 5px;
    left: 5px;
    border-radius: 2em;
    border: 2px solid #cdcdcd;
    transition: 0.3s ease;
}

.normal label {
    background: #a8a8a8;
    border: 0.5px solid rgba(117, 117, 117, 0.31);
    box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.2), 0 -3px 4px rgba(0, 0, 0, 0.15);
}

.normal label:before {
    border: none;
    width: 2.5em;
    height: 2.5em;
    box-shadow: inset 0.5px -1px 1px rgba(0, 0, 0, 0.35);
    background: #fff;
    transform: rotate(-25deg);
}

.normal label:after {
    background: transparent;
    height: calc(100% + 8px);
    border-radius: 30px;
    top: -5px;
    width: calc(100% + 8px);
    left: -4px;
    z-index: 0;
    box-shadow: inset 0px 2px 4px -2px rgba(0, 0, 0, 0.2), 0px 1px 2px 0px rgba(151, 151, 151, 0.2);
}

#normal {
    width: auto !important;
}

#normal:checked+label {
    background: #464646;
}

#normal:checked+label:before {
    left: 30px;
}

.mesanocvv {
    display: flex;
    justify-content: space-between;
}

#cvv,
#expmonth,
#expyear {
    width: 32% !important;
    display: inline-block !important;
    margin: 0 !important;
}

.recorridoCompra {
    margin: 20px 0 20px 16%;
    --animate-duration: 0.3s;
}

.separarIcon {
    width: 26px;
    margin-right: 4px;
}

.infoResumen .separarIcon {
    width: 14px;
}

.recorridoCompra button {
    padding: 5px 20px;
    outline: 0;
    border: 0;
    background: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin: 0 70px 0 5px;
}

.recorridoCompra button[disabled] {
    opacity: 0.5;
}

.recorridoCompra button[disabled]:hover {
    cursor: inherit;
}

.recorridoCompra .etapaPasada {
    cursor: pointer;
}

.recorridoCompra .etapaFutura {
    color: rgb(212, 212, 212);
}

.recorridoCompraBoton::before {
    content: "";
    position: absolute;
    margin-left: -25px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.recorridoCompraBotonNumero2::before {
    content: "2";
}

.recorridoCompra button:nth-child(3)::before {
    content: "3";
}

.recorridoCompra button:nth-child(4)::before {
    content: "4";
}

.recorridoCompra button:nth-child(5)::before {
    content: "5";
}

.recorridoCompra .etapaPasada::before {
    content: '' !important;
    background-image: url(../img/tick.png);
    background-size: 20px;
    width: 20px;
    height: 20px;
}

.recorridoCompra .etapaActual::before {
    border: 2px solid #72AD56;
    width: 17px;
    color: #72AD56;
    height: 17px;
    margin-top: -1px;
}

.recorridoCompra .etapaFutura::before {
    border: 2px solid rgb(212, 212, 212);
    width: 17px;
    height: 17px;
    margin-top: -1px;
}


.recorridoCompra button::after {
    content: "";
    width: 70px;
    height: 5px;
    position: absolute;
    margin: 7px 0 0 10px;
    border-radius: 4px;
}

.recorridoCompra .etapaPasada::after {
    background-image: linear-gradient(to left, #72AD56, #84ca64);
}

.recorridoCompra .etapaActual::after {
    background-color: rgb(212, 212, 212);
}

.recorridoCompra .etapaFutura::after {
    background-color: rgb(212, 212, 212);
}

.recorridoCompra .ultimoBotonRecorridoCompra::after {
    width: 0px;
    height: 0px;
}

.errorValidacionBorde {
    border: 2px solid rgb(255 0 0) !important;
}

.errorValidacionColor {
    color: rgb(255 0 0) !important;
    margin-top: -10px !important;
    font-size: 12px;
}

.corregirValidacion {
    position: absolute;
    margin: 0 !important;
    margin-top: 50px !important;
    width: var(--corregirWidth) !important;
}

.corregirValidacion2 {
    --corregirWidth2: 0;
    width: var(--corregirWidth2) !important;
    margin-left: var(--corregirMarginLeft) !important;
}

.corregirValidacion3 {
    --corregirWidth3: 0;
    width: var(--corregirWidth3) !important;
    --corregirMarginLeft2: 0;
    margin-left: var(--corregirMarginLeft2) !important;
}

.corregirValidacion4 {
    position: absolute;
    --corregirMarginTop: 0;
    margin-top: var(--corregirMarginTop) !important;
}

.correctaValidacionBorde {
    border: 2px solid rgb(66, 164, 0) !important;
}

@media screen and (width <=1400px) {
    #detallesEnvia select {
        width: 80%;
    }

    #detallesEnvia label {
        width: 20%;
    }
}

@media screen and (width <=980px) {
    .ladoder {
        position: absolute;
        width: 50%;
        margin: 0;
    }

    #aclaracionDescuento {
        text-align: left !important;
    }

    #checkoutModal h2 {
        margin: 20px 0 20px 0%;
        text-align: center;
    }

    .ladoizq {
        width: 100%;
        --heightCarrito: 0px;
        margin-top: var(--heightCarrito);
    }

    #terminosCondiciones {
        align-items: center;
    }
}

@media screen and (width <=500px) {
    .columnascheckout {
        display: flex;
        margin: 0 0%;
    }

    .ladoder {
        width: 80%;
    }

    #FormatoEntregaDiv>div {
        margin-left: -30px;
    }
}

.subtotal p {
    display: flex;
    justify-content: space-between;
    margin: 2px 0 !important;
}

.subtotal p:last-child {
    font-weight: 700;
    margin: 8px 0 !important;
}

.mensajeContinuarPago {
    display: none;
}

.mensajeContinuarPago p {
    border-radius: 0.25em;
    color: rgb(0, 0, 0);
    padding: 12px 1em;
    background-color: rgb(210, 210, 210);
    font-size: 16px;
    transition: all .2s ease;
    margin: 10px 0 10px 0 !important;

}

.oferta {
    position: fixed;
    z-index: 99999999999;
    top: 120px;
    left: 80px;
    background: rgba(211, 211, 211, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    height: 170px;
    width: 600px;
    border-radius: 20px;
    border-top-right-radius: 0;
    padding: 20px;
    color: #000;
    display: flex;
    justify-content: space-evenly;
}

.oferta h2 {
    font-size: 22px;
}

.precioTachado {
    text-decoration: line-through;
    color: rgb(64, 64, 64);
    font-weight: 400;
}

.ofertaizq {
    display: inline-block;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    backdrop-filter: blur(0px);
}

.ofertader {
    display: inline-block;
    text-align: right;
}

.ofertader img {
    height: 130px;
    border-radius: 10px;
}

.ofertaContador {
    padding: 5px 12px;
    background: rgba(211, 211, 211, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(6px);
    align-self: flex-start;
    position: absolute;
    top: 0;
    right: -40px;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 40px;
    text-align: center;
    backdrop-filter: blur(6px);
    font-weight: 700;
    color: #000;
    font-size: 20px;
}


.divGracias {
    text-align: center;
}

.pBenito {
    color: rgb(195, 195, 195);
    font-weight: bold;
}

.pMail {
    margin-bottom: 50px !important;
    margin-top: 5px !important;
    color: rgb(133, 133, 133);
}

.pGracias {
    font-size: 35px;
    text-align: center;
    font-weight: bold;
    margin-top: 60px !important;
    margin-bottom: 5px !important;
}

.divGracias a {
    transition: all .4s ease;
    padding: 10px 15px;
    width: 150px;
    font-weight: bold;
    border: 0px;
    height: 3em;
    border-radius: 0.25em;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    background-color: var(--darkgray);
    font-size: 16px;
}

.divGracias a:hover {
    background: #606060;
    transition: all .4s ease;
}

.ofertaAlerta1 {
    animation: parpadeoAlerta 1s infinite;
}

.ofertaAlerta2 {
    animation: parpadeoAlerta 0.75s infinite;
}

.ofertaAlerta3 {
    animation: parpadeoAlerta .35s infinite;
}

.cta {
    display: flex;
    padding: 10px 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: white;
    background: #616161;
    transition: 1s;
    box-shadow: 6px 6px 0 rgb(84, 84, 84);
    transform: skewX(-15deg);
    border-radius: 4px;
    outline: none;
    border: none;
}

.cta:focus {
    outline: none;
}

.cta:hover {
    transition: 0.5s;
    cursor: pointer;
    box-shadow: 10px 10px 0 #f0f0f0;
}

.cta span:nth-child(2) {
    transition: 0.5s;
    margin-right: 0px;
}

.cta:hover span:nth-child(2) {
    transition: 0.5s;
    margin-right: 45px;
}

.cta span {
    transform: skewX(15deg)
}

.cta span:nth-child(2) {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 12%;
}

.flechas {
    display: flex;
}

.flechaDos,
.flechaTres {
    opacity: 0;
}

.flechaDos {
    transition: 0.2s;
}

.flechaTres {
    transition: 0.4s;
}

.cta:hover .flechaUno {
    animation: color_anim 1s infinite 0.2s;
}

.cta:hover .flechaDos {
    opacity: 1;
    animation: color_anim 1s infinite 0.4s;
}

.cta:hover .flechaTres {
    opacity: 1;
    animation: color_anim 1s infinite 0.6s;
}

@keyframes color_anim {
    0% {
        color: white;
    }

    50% {
        color: rgb(175, 175, 175);
    }

    100% {
        color: white;
    }
}

@keyframes parpadeoAlerta {
    0% {
        color: #000;
    }

    50% {
        color: rgba(0, 0, 0, 0.221);
    }

    100% {
        color: #000;
    }
}

@media screen and (width <=780px) {

    .oferta {
        width: auto;
        left: 10px;
    }

    .oferta h2 {
        font-size: 16px;
    }

    .cta {
        font-size: 14px;
    }

    .ofertader {
        margin-left: 20px;
    }
}

@media screen and (width <=480px) {
    .oferta {
        left: 0;
        right: 0;
        width: 280px;
        margin: auto;
        max-width: 100%;
        height: 300px;
        border-radius: 20px;
    }

    .oferta h2 {
        display: none;
    }

    .ofertader {
        position: absolute;
        margin-left: 0;
    }

    .ofertaizq {
        margin-top: 130px;
    }

    .flechaDos,
    .flechaTres {
        opacity: 1;
    }

    .flechaUno {
        animation: color_anim 1s infinite 0.2s;
    }

    .flechaDos {
        opacity: 1;
        animation: color_anim 1s infinite 0.4s;
    }

    .flechaTres {
        opacity: 1;
        animation: color_anim 1s infinite 0.6s;
    }

    .cta {
        padding: 10px 30px 10px 15px;
        font-size: 16px;
    }


    .cta span:nth-child(2) {
        margin-left: 10px;
    }

    .precioTachado {
        color: rgb(210, 210, 210);
    }

    .ofertaContador {
        right: 0;
        background: none;
        box-shadow: none;
        backdrop-filter: blur(0px)
    }
}


/* Dejar abajo de todo */

.infotarjeta {
    display: none;
    margin-bottom: 40px;
}

.ocultar {
    display: none;
}

.mostrarFlex {
    display: flex;
}

.mostrarBlock {
    display: block !important;
}

#divPedidoCompletado .resumen div {
    margin-bottom: 20px;
}

#divPedidoCompletado .resumen div p {
    margin: 6px 0;
}

#divPedidoCompletado .resumen div h3 {

    margin-top: 40px;
    margin-bottom: 10px;
}

#divPedidoCompletado .resumen div h4 {
    margin-top: 3px;
}

.infoResumen {
    margin: 2px;
    font-size: 12px;
    color: #3c3c3c;
}

#aclaracionDescuento {
    text-align: center;
    margin: 20px 0 0 0 !important;
    font-size: 12px;
    color: #3c3c3c;
    display: block !important;
}

#aclaracionDescuento i {
    margin-right: 4px;
}

.MetodoPagoh3InfoPago {
    margin-bottom: 0px !important;
}

.primerH3InfoFacturacion {
    margin-top: 0pc !important;
}