/* GLOBAL */
.vtabs-container-31ba9577,
.vtabs-container-31ba9577 *{
    box-sizing:border-box;
}

/* MAIN WRAPPER */
.vtabs-container-31ba9577{
    display:flex;
    gap:80px;
    align-items:flex-start;
    width:100%;
    min-width:0;
    overflow:hidden;
}

/* LEFT COLUMN */
.vtabs-left-31ba9577{
    width:30%;
    min-width:220px;
    flex-shrink:0;

    display:flex;
    flex-direction:column;
}

/* RIGHT COLUMN */
.vtabs-right-31ba9577{
    flex:1;
    width:1%;
    min-width:0;
    overflow:hidden;
	padding-top:40px;
}

/* HEADER */
.vtabs-header-31ba9577{
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 500;
    color: rgba(60, 60, 67, 0.70);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* NAVIGATION */
.vtabs-nav-31ba9577{
    list-style:none;
    padding:0;
    margin:0 0 40px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.vtabs-nav-item-31ba9577{
    position:relative;
    display:inline-flex;
    align-self:flex-start;

    cursor:pointer;

    font-size:20px;
    font-weight:500;
    line-height:1.3;

    padding-bottom:6px;

    border-bottom:2px solid transparent;

    transition:all 0.3s ease;
}

.vtabs-nav-item-31ba9577.active{
    font-weight:600;
    border-bottom-color:#000;
}

/* MAP AREA */
.vtabs-maps-31ba9577{
    width:100%;
    min-width:0;
}

.vtabs-map-item-31ba9577{
    display:none;
    width:100%;
    min-width:0;

    animation:vtabsFade 0.35s ease;
}

.vtabs-map-item-31ba9577.active{
    display:block;
}

/* MAP IMAGE */
.vtabs-map-item-31ba9577 img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
}

/* CONTENT */
.vtabs-content-item-31ba9577{
    display:none;
    width:100%;
    min-width:0;

    animation:vtabsFade 0.35s ease;
}

.vtabs-content-item-31ba9577.active{
    display:block;
}

/* TEMPLATE CONTENT SAFETY */
.vtabs-content-item-31ba9577 .elementor,
.vtabs-content-item-31ba9577 .elementor-section,
.vtabs-content-item-31ba9577 .elementor-container,
.vtabs-content-item-31ba9577 .e-con,
.vtabs-content-item-31ba9577 .e-parent{
    max-width:100%;
    min-width:0;
}

/* SWIPER / LOOP CAROUSEL FIX */
.swiper,
.swiper-wrapper,
.swiper-slide,
.elementor-swiper,
.elementor-carousel-item,
.e-loop-item{
    min-width:0 !important;
}

/* ANIMATION */
@keyframes vtabsFade{

    from{
        opacity:0;
        transform:translateY(6px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* TABLET */
@media (max-width:1024px){

    .vtabs-container-31ba9577{
        gap:20px;
    }

    .vtabs-left-31ba9577{
        width:35%;
        min-width:180px;
    }

    .vtabs-nav-item-31ba9577{
        font-size:18px;
    }
}

/* MOBILE */
@media (max-width:767px){

    .vtabs-container-31ba9577{
        flex-direction:column;
        gap:30px;
    }

    .vtabs-left-31ba9577{
        width:100%;
        min-width:0;
    }

    .vtabs-right-31ba9577{
        width:100%;
    }

    .vtabs-nav-31ba9577{
        flex-direction:row;
        flex-wrap:wrap;
        gap:10px;

        margin-bottom:25px;
    }

    .vtabs-nav-item-31ba9577{
        font-size:16px;

        padding:10px 16px;

        border:1px solid #ddd;
        border-radius:100px;
    }

    .vtabs-nav-item-31ba9577.active{
        border-color:#000;
    }
}