* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sidebar-button {
    display: flex;
    padding: 0.5rem 1rem;
    color: black;
    margin-bottom: 0.5rem;
    align-items: center;
    text-decoration: none;
    background-color: white;
    border: 0 solid white;
}

a.sidebar-button:hover, a.sidebar-button.active {
    background-color: #F4F4F4;
    border-radius: 5px;
}

.text-300 {
    color: #959595;
}

.text-500 {
    color: #606060;
}

.schedule-card {
    display: flex;
}

a:hover > .schedule-card {
    background-color: #F4F4F4;
}

.trampoline-link {
    position: relative;
    width: 100%;
    display: block;
}

/* For screens greater than or equal to 576px (sm) */
@media (min-width: 576px) {
    .trampoline-link {
        width: 90%;
    }
}

/* For screens greater than or equal to 768px (md) */
@media (min-width: 768px) {
    .trampoline-link {
        width: 80%;
    }
}

/* For screens greater than or equal to 992px (lg) */
@media (min-width: 992px) {
    .trampoline-link {
        width: 70%;
    }
}

/* For screens greater than or equal to 1200px (xl) */
@media (min-width: 1200px) {
    .trampoline-link {
        width: 60%;
    }
}

/* For screens greater than or equal to 1400px (xxl) */
@media (min-width: 1400px) {
    .trampoline-link {
        width: 50%;
    }
}


a.trampoline-link:hover .trampoline-border, a.trampoline-link.active .trampoline-border {
    fill: #FF5FA2;
}

.seat-number {
    color: black;
}

a.trampoline-link:hover .seat-number, a.trampoline-link.active .seat-number {
    color: #FF5FA2;
}

.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 1.5rem;
    right: 1.5rem;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: block;
    transition: all 0.5s ease-in-out;
}

/* The aspect ratio container */
.aspect-ratio-box {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 75% = 3/4 = 4:3 aspect ratio */
    overflow: hidden;
}

/* Image styling */
.aspect-ratio-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Make image cover the entire container */
    object-position: center; /* Center the image horizontally and vertically */
}

.location-card {
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.location-card.active {
    border-color: #0d6efd;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.location-card:hover:not(.active) {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 20px;
    }
}

.steps-wrapper {
    height: 100vh;
}

.steps-content {
    display: flex;
    height: 100%;
    position: relative;
}

.steps-left {
    background-image: url('https://afiliate.culqi.com/nuxt/img/bg_sidebar.722c4df.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    max-width: 468px;
    width: 100%;
}

.steps-right {
    display: flex;
    flex: 1;
    height: 100%;
    justify-content: center;
    position: relative;
}

.steps-right__content {
    box-sizing: border-box;
    height: 100%;
    overflow: auto;
    padding: 64px 32px;
    width: 100%;
}

.steps-right__scroll {
    margin: 0 auto;
    max-width: 456px;
    width: 100%;
}

@media screen and (max-width: 940px) {
    .steps-left {
        display: none;
    }
}