/*
    Created on : 4 sep. 2025, 14:42:11
    Author     : Cristian Rodriguez <crodriguez@akelita.com>
*/
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    font-family: "Lexend", sans-serif !important;

}
.inputlargearea {
    background: #FFF;
    border-radius: 30px;
    padding-left: 30px;
}

.inputlargearea .uil{
    margin: 10px 5px;
}
.inputlargearea input,.inputlargearea select {
    border: none;
    margin: 7px auto;
}

.inputlargearea button {
    background: #00A21E;
    color: #FFF;
    border: none;
    border-radius: 30px;
}
.text-green {
    color: #00A21E !important;
}
.btn-green, .bg-green{
    background-color:  #00A21E !important;
}
.bg-dark{
    background-color:  #000 !important;
}
.formBooking-shark:after {
    content: "";
    background: url('/assets/img/shark-icon-white.png');
    background-repeat: no-repeat;
    position: absolute;
    bottom: -1px;
    width: 30%;
    height: 150px;
    background-size: contain;
    z-index: 1;
    background-position: center bottom;
}

.shark-yellow:after {
    content: "";
    background: url('/assets/img/shark-icon-yellow.png');
    background-repeat: no-repeat;
    position: absolute;
    bottom: -2px;
    width: 70%;
    height: 80%;
    background-size: contain;
    z-index: 0;
    background-position: center bottom;
}
.shark-white:after {
    content: "";
    background: url('/assets/img/shark-icon-white.png');
    background-repeat: no-repeat;
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60%;
    height: 80%;
    background-size: contain;
    z-index: 0;
    background-position: center bottom;
}
.shark-dark:after {
    content: "";
    background: url('/assets/img/shark-icon-black.png');
    background-repeat: no-repeat;
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60%;
    height: 80%;
    background-size: contain;
    z-index: 0;
    background-position: center bottom;
}

.formBooking, .shark-yellow, .shark-white, .shark-dark{
    position: relative;
}
.formBooking, .shark-yellow .container, .shark-white .container, .shark-dark .container{
    position: relative;
    z-index: 1;
}
.rounded-shark {
    border-radius: 50px;
}
.vertical-form .input-group-text {
    background: #FFF;
    line-height: 0;
    min-width: 61px;
    padding: 12px;
    height: 49.7px;
    margin-top: 1px;
}
body {
    background-color: #E9E9E9; /* Color de fondo gris claro */

}

/* Círculo que contiene la flecha */
.arrow-circle {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #f2f2f2;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
}
ul.imgZoneSelector {
    padding: 0;
    margin-left: 5rem;
    max-width: 252px;
}

ul.imgZoneSelector li {
    list-style: none;
    font-size: 1rem;
}

ul.imgZoneSelector li:hover {
    background: #fab758;
    cursor: pointer;
}
.shark-avatar {
    border: 0.5rem solid #FFF;
}
.z-n1 {
    z-index: -1 !important;
}

.z-0 {
    z-index: 0 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-2 {
    z-index: 2 !important;
}

.z-3 {
    z-index: 3 !important;
}
.z-4 {
    z-index: 4 !important;
}
.z-5 {
    z-index: 5 !important;
}
.z-6 {
    z-index: 6 !important;
}

.overlap-grid-2 .item:nth-child(2){
    margin-top:-60%;
}

.check-fake {
    background: #00A21E1A;
    padding: 0.7rem;
    margin-top: 11px;
    width: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.check-fake:before {
    content: "";
    background: #00A21E;
    border-radius: 50%;
    padding: 0.4rem;
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
}
.roof-back img {
    width: 35px;
    transform: rotate(140deg);
}

.roof-back {
    float: inline-end;
    margin-top: 0px;
    margin-right: 53px;
}

.roof-back + img {
    margin-top: -39px;
}

.roof-back >span {
    font-size: x-large;
    width: 13px;
    white-space: break-spaces;
    display: inline-block;
    line-height: 20px;
    margin-left: 9px;
    vertical-align: middle;
}
.shark-roof {
    background: url(/assets/img/rack.png);
    background-repeat: no-repeat;
    background-position: bottom;
}

/* 1. Define la animación de desplazamiento */
@keyframes desplazarFondo {
    from {
        /* La imagen comienza fuera de la vista a la derecha, o en su posición inicial si es más ancha */
        background-position: -200% center; /* O un valor negativo si la imagen es más ancha que el contenedor */
    }
    to {
        /* Se mueve hacia la izquierda */
        background-position: 100% center; /* Esto mueve la imagen un ancho completo a la izquierda */
    }
}

/* 2. Aplica la animación a tu pseudo-elemento */
.aroma-menu:before {
    content: "";
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute ;
    top: 0;
    left: 0;
    background-image: url('/assets/img/aroma.png');
    background-size: auto 100%; /* Ajusta el tamaño para que quepa verticalmente y se desplace horizontalmente */
    background-repeat: repeat-x; /* Es crucial para que se "repita" al desplazarse */
    background-position: 0% center; /* Posición inicial */

    /* Aquí se añade la animación de desplazamiento */
    animation: desplazarFondo 40s linear infinite; /* 15s es la duración, ajusta según la velocidad deseada */
}

.aroma-menu {
    position: relative;

    overflow: hidden; /* Importante para que la imagen no se desborde visualmente */

}
.five-stars svg {
    width: 40px;
}
.btn-muted-video-shark {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
}
.ac-panel {
    position: absolute !important;
    max-width: 400px;
    z-index: 10000 !important;
    width: 100%;
}
.ac-panel:before {
    content: "";
    background: url(/assets/img/shark-icon-white.png);
    background-repeat: no-repeat;
    position: absolute !important;
    top: -17px;
    width: 18px;
    height: 18px;
    background-size: contain;
    z-index: 1;
    background-position: center bottom;
    left: 2rem;
}
.ac-panel ul {
    padding: 0 20px;
}
.ac-panel li{
    list-style:  none;
    cursor: pointer;
}
.sombra {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, #000000, transparent);
    z-index: 2;
}
.navbar-shark {
    background-color: #272727;
}

.navbar-shark .nav-link {
    color: #FFF;
    font-weight: 300;
}
.navbar-shark
.nav-link.active {
    color: #FFAE00;
}