/* =======================
   Slider
======================= */

.slider-viewport {
    overflow: hidden;
    width: 100%;
	touch-action: pan-y;
}

.slider-track {
    display: flex;
    gap: 38px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.slider-card {
    flex: 0 0 calc((100% - 76px) / 3);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-width: 0px;
}

.slider-arrow-left {
    left: -50px;
	background-color: rgba(0, 0, 0, 1);
}

.slider-arrow-right {
    right: -50px;
	background-color: rgba(0, 0, 0, 1);
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.slider-track {
    display: flex;
    gap: 40px;
    transition: transform 0.45s ease;
    will-change: transform;
}

/* =======================
   Desktop 1024-1199
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
    
    .slider-track {
        gap: 28px;
    }

    .slider-card {
        flex: 0 0 calc((100% - 56px) / 3);
    }
	
	.slider-arrow-left {
		left: 0px;
		background-color: rgba(0, 0, 0, 0.3);
	}

	.slider-arrow-right {
		right: 0px;
		background-color: rgba(0, 0, 0, 0.3);
	}
	
	.slider-arrow-left:hover,
    .slider-arrow-right:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

/* =======================
   Mobile <=1023
======================= */

@media only screen and (max-width: 1023px) {
    
    .slider-track {
        gap: 0px;
    }

    .slider-card {
        flex: 0 0 100%;
    }

	.slider-arrow-left {
		left: 0px;
		background-color: rgba(0, 0, 0, 0.3);
	}

	.slider-arrow-right {
		right: 0px;
		background-color: rgba(0, 0, 0, 0.3);
	}
	
	.slider-arrow-left:hover,
    .slider-arrow-right:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
}

