@font-face {
    font-family: Agbalumo;
    src: url("fonts/Agbalumo-Regular.ttf");
}

@font-face {
    font-family: Kedmote;
    src: url("fonts/Kedmote\ Script.otf");
}

@font-face {
    font-family: Khodijah;
    src: url("fonts/Khodijah/Khodijah\ Free.otf");
    src: url("fonts/Khodijah/Khodijah\ Free.ttf");
}

@font-face {
    font-family: BerkshireSwash;
    src: url(fonts/BerkshireSwash-Regular.ttf);
}

@font-face {
    font-family: IndieFlower;
    src: url("fonts/IndieFlower-Regular.ttf");
}

@font-face {
    font-family: Acme;
    src: url("fonts/Acme-Regular.ttf");
}

@font-face {
    font-family: Maconbo;
    src: url("fonts/Macondo-Regular.ttf");
}

@font-face {
    font-family: KaushanScript;
    src: url("fonts/KaushanScript-Regular.ttf");
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-300%);
    }
}


* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body{
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

.main-header {
    z-index: 1;
}

.container {
    min-width: 350px !important;
}

.not-scroll {
    overflow-y: hidden;
    height: 100vh;
}

.flex {
    display: flex !important;
}

.hidden {
    visibility: hidden;
    position: absolute;
}

.none{
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
    font-family: Maconbo;
}


p {
    text-align: justify;
}

button {
    cursor: pointer;
}

.swiper{
    padding: 15px 0px !important;
}

.swal2-cancel {
    background-color: rgb(45, 40, 36) !important; 
    border: none !important;
}

.swal2-confirm {
    background-color: rgb(200, 0, 0) !important;
    border: none !important;
}

.banner{

    width: 100%;
    background: rgb(150, 0, 0);
    padding: 9px 20px;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    overflow: hidden;
}

.banner p{
    text-align: left;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}


.navbar {
    display: flex;
    justify-content: space-between;
    padding: 0px 0px 0px 5px;
    background-color: rgb(45, 40, 36);
}

.navbar>a {
    max-width: 10em;
    display: flex;
}

.navbar>a>img {
    width: 100%;
}

.navbar>div {
    display: flex;
}

.navbar>div>a {
    display: flex;
    align-items: center;
    text-decoration: none;
}



.navbar>div>a i {
    position: relative;
    font-size: 2em;
    color: white;
}

.navbar>div>a i>span{
    position: absolute;
    top: -8px;
    right: -11px;
    font-size: 0.6em;
    padding: 2px 7px;
    color: rgb(45, 40, 36);
    border-radius: 100%;
    background-color: white;
}

.navbar>div button {
    position: relative;
    z-index: 2;
}


.navbar nav {
    display: none;
    flex-direction: column;
    font-size: 30px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.navbar nav a {
    margin: 15px 0px;
    text-decoration: none;
    color: black;
    position: relative;
}

.navbar nav a::before {
    position: absolute;
    content: "";
    top: 5px;
    left: 50%;
    transform: translate(-50%);
    width: 0%;
    height: 100%;
    border-bottom: 2px solid black;
    transition: 200ms;
}

.navbar nav a:hover::before, .navbar nav a.active::before  {
    width: calc(100% + 15px);
}

.uicons-white {
    color: white;
    transition: 200ms;
}

.uicons-white:hover {
    opacity: 0.7;
}

.uicons-black {
    color: black;
    transition: 200ms;
    cursor: pointer;
}

.uicons-black:hover {
    opacity: 0.7;
}

.hamburger-white,
.hamburger-white::before,
.hamburger-white::after {
    background-color: white;
}

.hamburger-black,
.hamburger-black::before,
.hamburger-black::after {
    background-color: black !important;
}


.button {
    text-decoration: none;
    color: black;
    background-color: rgb(255, 237, 219);
    padding: 15px 15px;
    border-radius: 10px 10px 10px 10px;
    text-align: center;
    margin: 10px;
    font-weight: bold;
    box-sizing: border-box;
    transition: transform 240ms;
    border: solid 1px transparent;
    cursor: pointer;
}
.button:focus,
.button:hover {
    transform: translate(0px, -1px);
    border-color: rgba(0, 0, 0, );
    background-color: rgb(255, 241, 220);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.button:active {
    background-color: rgb(204, 189, 175);
    box-shadow: 0px;
    transform: translate(0px, 0px);
}

.button.oscuro {
    background-color: rgb(45, 40, 36);
    color: white;
}

.button:active.oscuro {
    background-color: black;
}

main#main {
    position: relative;
    z-index: 0;
}



.producto-info {
    position: relative;
    padding: 12px 15px 40px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    border-radius: 25px;
    box-shadow: 0px 0px 23px 5px rgb(238, 238, 238);
    background-color: white;
    transition: transform .3s;
}

.producto-info:hover {
    transform: translate(0px, -7px);
}


.producto-info figure {
    display: flex;
    align-items: center;
    width: 15em;
    height: 15em;
    padding: 20px;
    overflow: hidden;
    margin: 10px 0px;
}

.producto-info button {
    background-color: transparent;
    border: none;
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 15px;
    cursor: pointer;
    font-size: 1.7em;

}

.producto-info figure i {
    font-size: 2em;
}

.producto-info img,
.producto-info figure a {
    width: 100%;
}

.producto-info span.title {
    font-weight: bold;
    font-size: 1.3em;
    margin: 10px 0px;
}

.producto-info span.desc {
    text-align: justify;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.producto-info span.price {
    font-size: 1.2em;
    margin-top: auto;
}

.producto .cantidad {
    border: solid 2px black;
}

.producto .cantidad>* {
    display: inline-block;
    width: 1em;
    text-align: center;
    background-color: transparent;
    border: none;
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);
}

.producto .cantidad .disminuir,
.producto .cantidad .aumentar {
    cursor: pointer;
}

.producto .cantidad span {
    width: 2em;
}

.producto h1 {
    width: 100%;

}

.form-group {
    position: relative;
    margin-bottom: 10px;
    padding: 10px 20px;
}

.form-group input {
    width: 100%;
    padding: 30px 10px 10px 15px;
    border: none;
    background-color: rgb(255, 245, 234);
    border-radius: 13px 13px 13px 13px;
    font-size: 1.1em;
}


.form-group label {
    position: absolute;
    left: 35px;
    top: 31px;
    transition: all 0.2s ease-out;
}

.form-group label i{
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.form-group.password button{
    font-size: 1.2em !important;
    position: absolute;
    right: 35px;
    top: 32px;
    background-color: transparent;
    border: none;
}

.form-group.password input{
    padding: 30px 50px 10px 15px;
}

.form-group.required label::after{
    content: "*";
    color: red;
    position: absolute;
    margin-left: 5px;
}


.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: 15px;
    left: 25px;
    transform: scale(0.85);
    color: gray;
}

.form-group input.error{
    background-color: rgb(255, 187, 187);
}

form>label.error{
    position: absolute;
    padding-left: 20px;
    margin-top: -15px;
}



.informacion-importante p{
    background-color: rgb(255, 187, 187);
    border: solid 1px red;
    width: fit-content;
    padding: 30px;
    border-radius: 20px 20px 20px 20px;
    margin:20px;
}

#main-footer {
    background-color: rgb(45, 40, 36);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}

#main-footer .links {
    border-bottom: 1px solid white;
    padding: 15px 10px;
}

#main-footer .links nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

#main-footer .links nav a {
    color: white;
    margin: 5px 0px;
    text-decoration: none;
    position: relative;
}

#main-footer .links nav a::before {
    position: absolute;
    display: block;
    content: "";
    top: 2px;
    left: 0px;
    width: 0%;
    height: 100%;
    border-bottom: white solid 1px;
    transition: 200ms;

}



#main-footer .links nav a:hover::before{
    width: calc(100% + 10px);
}

#main-footer .logos {
    display: inline-flex;
    padding: 15px 10px;
    border-bottom: 1px solid white;
}

#main-footer .logos a {
    display: block;
    height: 3em;
    width: 3em;
    margin-right: 10px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: brightness(100%) saturate(0%);
    transition: filter 200ms;
}

#main-footer .logos a:hover {
    filter: none;
}

#enlace-facebook {
    background-image: url("../images/Facebook_Logo_Primary.png");
}

#enlace-instagram {
    background-image: url("../images/Instagram.svg");
}

#enlace-whatsapp {
    background-image: url("../images/Whatsapp.svg");
}

#main-footer .tlfn-mail {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    border-bottom: 1px solid white;
}

#main-footer .tlfn-mail a {
    color: white;
    text-decoration: none;
    margin: 5px 20px 5px 0px;
    display: flex;
    align-items: center;
}

#main-footer .tlfn-mail a i {
    font-size: 1.2em;
    margin-right: 10px;
    margin-top: 3px;
}


#main-footer .copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(200, 200, 200);
}


#main-footer .copy img {
    width: 100%;
}

#main-footer .copy figure {
    display: flex;
    align-items: center;
    width: 10em;
    margin: 15px 0px;
}

#main-footer .copy a {
    color: white
}


@media screen and (min-width: 768px) {
    @keyframes marquee {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-150%);
        }
    }

    html {
        font-size: 1.1em;
    }

    .producto-info {
        width: 47%;
        padding: 12px 25px 40px 25px;
    }


    #main-footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    #main-footer .links,
    #main-footer .logos {
        width: 50%;
        justify-content: center;
    }

    #main-footer .logos a {
        margin-top: auto;
        margin-bottom: auto;
    }


    #main-footer .links nav {
        width: fit-content;
        margin: 10px 100px;
    }

    #main-footer .tlfn-mail {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .swiper {
        max-width: 740px !important;
    }

}

@media screen and (min-width: 1200px) {
    @keyframes marquee {
        0% {

        }
    }

    .banner p{
        text-align: center;
    }

    .navbar nav {
        display: flex;
        flex-direction: row;
        height: auto;
        position: relative;
        right: auto;
        background-color: transparent;
        order: -1;
        margin-right: 15px;
    }

    .navbar nav a {
        color: white;
        margin: 0px 10px;
    }

    .navbar nav a::before {
        border-color: white;
    }

    #abrirCerrarMenu {
        display: none;
    }

    .navbar>div>a {
        margin-right: 15px;
    }

    .not-scroll {
        height: auto;
        overflow: auto;
    }

    .producto-info {
        width: 23%;
    }


    #main-footer>section {
        width: 33% !important;
    }

}