.loop-tabs {
    display: flex;
    flex-direction: column;
}

.tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #2F84DB #f0f0f0;
    padding-bottom: 10px; 
    position: relative;
}
.tabs::after {
    content: "";
    display: block;
    height: 10px;
}

.tabs::-webkit-scrollbar {
    height: 6px;
}

.tabs::-webkit-scrollbar-thumb {
    background: #2F84DB;
    border-radius: 6px;
}

.tabs::-webkit-scrollbar-track {
    background: #f0f0f0;
    margin-bottom: 6px; 
}

.tabs li {
    cursor: pointer;
    padding: 12px;
    background: #2F84DB;
	border: 2px solid white;
	border-radius: 6px;
    margin-right: 5px;
    transition: background 0.3s;
	font-weight: 600;
	text-align: center;
 	flex-grow: 1; 
    min-width: max-content; 
	color: white;
}
@media (max-width: 767px) { 
    .tabs li {
        min-width: max-content;
		
    }
}

.tabs li:hover, .tabs li.active {
    background: transparent;
	border: 2px solid black;
	color: black;
}

.tab-content {
    display: none;
    
    
}

.tab-content.active {
    display: block;
}

