@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
/* font-family: 'Poppins', sans-serif; */

body {
    font-family: 'Poppins', sans-serif;
}

.card-body > a:hover {
    border: 0.5px solid #eeeeee;
    height: auto;
    display: block;
    /* border-radius: 18px; */
    border-radius: var(--bs-border-radius-xl)!important;
}

.card-body > a:hover > img {
    opacity: 0.5;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.menu-wrapper {
    height: 100vh;
    background-color: #F4F6FA;
}

.gallery-wrapper {
    margin-left: 70px;
}

.nav-pills.nav-type .nav-link.active, .nav-pills.nav-type .show>.nav-link {
    color: #000000 !important;
    background-color: #00F78C !important;
    border-color: #00F78C !important;
    padding: 0.4rem 1rem !important;
    border-radius: 10rem;
}

.nav-pills.nav-type .nav-link.active, .nav-pills.nav-type .show>.nav-link:hover {
    color: #FFFFFF !important;
    background-color: #00e481 !important;
    border-color: #07DD87 !important;
}

.nav-pills.nav-type .nav-link {
    font-size: 0.86rem;
    color: black;
    padding: 0.4rem 1rem !important;
    border-radius: 10rem;
    margin-right: 4px;
}

.nav-pills.nav-type .nav-link:hover {
    color: #FFFFFF !important;
    background-color: #00e481 !important;
    border-color: #07DD87 !important;
}

.logo {
    padding: 14.5px 15px!important;
}

.menu-wrapper .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #dee2e6;
}

.categories img {
    width: 40px;
}

@media (max-width: 480px) {
    li.nav-item {
        width: 100%!important;
        margin-bottom: 5px!important;
    }
}

/* Estilos CSS para la pantalla de precarga */
.preload {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    animation: fadein 1s;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #00F78C; /* Cambia el color a tu preferencia */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadein {
    from { opacity: 1; }
    to   { opacity: 1; }
}

@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}