/*
    Theme Name: theme_invitro
    Theme URI:
    Description: Tema para la web
    Author: INVITRO AGENCIA DIGITAL
    Version: 1.0
    License: GNU General Public License v2 or Later
    Tags: Wordpress
*/

*{margin: 0;padding: 0;box-sizing: border-box;}

/* Estilos para las flechas personalizadas */
.custom-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.custom-arrow {
    position: absolute;
    width: 35px;
    height: 35px;
    background: #fff;
    border: 1px solid var(--color-2);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-arrow svg {
    fill: var(--color-2);
    width: 20px;
    height: 20px;
}

.custom-arrow--prev {
    left: -1.5rem;
    transform: rotate(180deg);
}

.custom-arrow--next {
    right: -1.5rem;
}

.custom-arrow:hover {
    background: var(--color-2);
}

.custom-arrow:hover svg {
    fill: #fff;
}

@media (max-width: 768px) {
    .custom-arrow--prev {
        left: 0;
    }
    .custom-arrow--next {
        right: 0;
    }
}