@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    background-color: rgb(233, 233, 233);
}
html{
    background-color: white;
}

.contenedor-catalogo{
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: #fff;
}
.contenido-interno{
    width: 100%;
}
img{
    width: 100%;
}
a{
    cursor: pointer;
}
.ablock{display: block;}
.block img{display: block;}
.juntar{
    display: flex;
    flex-direction: column;
}
.displey-flex{display: flex;}

#MenuToggle::after{
    content: url('../images/arrow-bott.svg');
    position: relative;
    padding-left: 10px;
}
.cat{
    display: flex;
    justify-content: space-between;
    background-color: #f6f6f6;
    width: 100%;
    height: 100%;
    max-width: 700px;
    justify-content: flex-end;
    align-items: center;
}
/* menu */
.menu-flotante.active{
    top: 100%;
}

#MenuToggle{
    cursor: pointer;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}
.contenido-nav{
    top: 0;
    position: fixed;
    height: 60px;
    display: flex;
    align-items: center;
    background: #f6f6f6 !important;
    width: 100%;
    z-index: 99;
    box-shadow: 0px 7px 36px -19px rgb(0 0 0 / 86%);
    -webkit-box-shadow: 0px 7px 36px -19px rgb(0 0 0 / 86%);
    -moz-box-shadow: 0px 7px 36px -19px rgba(0,0,0,0.86);
}
.content-a{
    display: contents;
}
.menu-flotante {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    top: 35px;
    right: 0;
}
.menu-flotante.active {
    position: absolute;
    visibility: visible;
    opacity: 1;
    right: 0;
    background: white;
    padding: 10px 25px;
    box-shadow: 2px 26px 50px -34px rgb(0 0 0 / 86%);
    -webkit-box-shadow: 2px 26px 50px -34px rgb(0 0 0 / 86%);
    -moz-box-shadow: 2px 26px 50px -34px rgba(0,0,0,0.86);
}
.menu-flotante ul {
    padding: 0;
    text-decoration: none;
    list-style: none;
    display: flex;
    flex-direction: column;
}
.menu-flotante ul li {
    font-family: 'Montserrat', sans-serif;
    height: 31px;
    padding: 1px 10px;
    display: inline-block;
    cursor: pointer;
}
.menu-flotante li a{
    text-decoration: none;
    color: black;
}
.owl-theme .owl-nav.disabled+.owl-dots{
    margin-top: 0 !important;
}

.aniversario {
    padding-top: 60px;
}

.carousel-sham .owl-item{
    padding: 0px 25px;
}

.owl-theme .owl-dots .owl-dot span{
    background-color: #2e2e2e !important;

    height: 15px !important;
    width: 15px !important;
}

.owl-theme .owl-dots .owl-dot.active span{
    background: #ffc400 !important;
    border-radius: 25px !important;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot{
    background: transparent !important;
    position: relative;
}

img.imagen-texto-categoria {
    width: 60%;
    padding: 3% 3%;
}
.owl-dots .owl-dot:nth-child(1)::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url(../images/izq.png);
    left: -20px;
    bottom: 20%;
    background-repeat: no-repeat;
    background-size: contain;
}

.owl-dots .owl-dot:last-child::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url(../images/der.png);
    right: -25px;
    bottom: 20%;
    background-repeat: no-repeat;
    background-size: contain;
}

.owl-dots{
    padding: 10px 0px;
}


.owl-nav{
    display: block;
    top: 45%;
}
.owl-prev{
    position: absolute !important;
    width: 35px;
    left: 0;
    top: 45%;
}
.owl-next{
    width: 35px;
    right: 0;
    top: 45%;
    position: absolute !important;
}

.no-dots .owl-dots{
    display: none;
}
.m-10{
    margin-top: 10px;
}
.no-nav .owl-nav{
    display: none;
}
.fondo-1{
    background-size: cover;
    background-image: url('../images/fondo_1.jpg');
}
.fondo-2{
    background-size: cover;
    background-image: url('../images/fondo_2.jpg');
}
.fondo-3{
    background-size: cover;
    background-image: url('../images/fondo_3.jpg');
}
.fondo-4{
    background-size: cover;
    background-image: url('../images/fondo_4.jpg');
}
.fondo-5{
    background-size: cover;
    background-image: url('../images/fondo_5.jpg');
}

.fondo-6{
    background-size: cover;
    background-image: url('../images/fondo_6.jpg');
}
.fondo-7{
    background-size: cover;
    background-image: url('../images/fondo_7.jpg');
}
.fondo-8{
    background-size: cover;
    background-image: url('../images/fondo_8.jpg');
}
.fondo-9{
    background-size: cover;
    background-image: url('../images/fondo_9.jpg');
}
.fondo-10{
    background-size: cover;
    background-image: url('../images/fondo_10.jpg');
}
.fondo-11{
    background-size: cover;
    background-image: url('../images/fondo_11.jpg');
}
.fondo-12{
    background-size: cover;
    background-image: url('../images/fondo_12.jpg');
}
.top-15{
    position: relative;
    top: -15px;
}


@media (max-width: 701px){
    .contenedor-catalogo {
        width: 100%;
    }
    .menu-flotante.active,
    .menu-flotante {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    #MenuToggle {
        padding-right: 25px;
    }
    .mt-40{
        margin-top: 40px;
    }
    .aniversario {
        padding-top: 20px;
    }
}


@media (max-width: 500px){
    .owl-theme .owl-dots .owl-dot span{
        width: 10px !important;
        height: 10px !important;
    }
    img.imagen-texto-categoria {
        width: 60%;
        padding: 3% 3%;
    }
    .owl-dots .owl-dot:nth-child(1)::before,
    .owl-dots .owl-dot:last-child::before{
        width: 10px;
        height: 10px;
        bottom: 25%;
    }
    .owl-prev,
    .owl-next{
        width: 25px;
    }
}
