.c-tabs {
    margin: 0 0 7px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
    box-sizing: border-box;
}



.c-tabs .c-tab--navigation {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    z-index: 10;
    width: 100%;
    border-bottom: 1px solid #dbdbdb;
    padding: 0;
    margin: 0;
}

.c-tabs .c-tab--navigation .c-tab--item {
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    max-height: 46px;
}

.c-tabs .c-tab--navigation .c-tab--item a {
    color: #5b5b5b;
    text-decoration: none;
    width: 100%;
    display: block;
    box-shadow: inset 0 0 0 #dbdbdb;
    padding: 1.25em;
    position: relative;
    overflow: hidden;
    transition: box-shadow 150ms ease-in-out;
}

.c-tabs .c-tab--navigation .c-tab--item a.tab--disabled {
    color: #ccc;
    pointer-events: none;
}

.c-tabs .c-tab--navigation .c-tab--item a.active {
	font-weight: 700;
	color: #0b79d4;
}

.c-tab--content {
    display: none;
}

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

.c-tab--scroll-left {
    padding: 1.25em;
    display: none;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
}

.c-tab--scroll-left.scroll-enabled {
    display: block;
}

.c-tab--scroll-right {
    padding: 1.25em;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0px;
    background: #f4f4f4;
    z-index: 10;

    
}

.c-tab--scroll-right.scroll-enabled {
    display: block;
}

.c-tab--slider {
    height: 5px;
    min-width: 5px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
}

.c-tab-indicator {
	min-height: 5px;
	min-width: 5px;
	background-color: #df3b2b;
	position: absolute;
	transition: all ease-out 0.3s;
	bottom: 0px;
}

.-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 1;
    height: 1em;
    width: 1em;
    pointer-events: none;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    top: 0;
    left: 0;
    -webkit-animation: rippleDrop .8s ease-out;
    animation: rippleDrop .8s ease-out;
}

@-webkit-keyframes rippleDrop {
    100% {
        -webkit-transform: scale(20);
        transform: scale(20);
        opacity: 0;
    }
}

@keyframes rippleDrop {
    100% {
        -webkit-transform: scale(20);
        transform: scale(20);
        opacity: 0;
    }
}



.tabs-container {
	display: flex;
	flex-direction: row;
	padding: 1em .75em;
}

.tab-slider--nav {
	width: 275px;
}

ul.tab-slider--tabs {
	list-style: none;
	padding: 0;
	margin: 0;
    margin-right: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0px 16px 24px 2px rgba(0, 0, 0, 0.05), 0px 6px 20px 0px rgba(0, 0, 0, 0.012), 0px 8px 10px -7px rgba(0, 0, 0, 0.05) !important;
}

ul.tab-slider--tabs li {
	padding: 1em;
	text-align: right;
	border-bottom: 1px solid #eee;
	color: #2e3145;
	font-weight: 500;
	cursor: pointer;
}

li.tab-slider--trigger.active {
	font-weight: 800;
	background: #f0f0f0;
}

.tab-slider--container {
	padding: 0 .25em;
	max-width: 80%;
	width: 100%;
}

.tab-slider--body {
	width: 100%;
}

.c-tabs {
    width: 70%;  /* Madhësia për desktop */
}

@media screen and (max-width: 768px) {
    .c-tabs {
        width: 100%;  /* Madhësia për mobile */
    }
}