/* ****************************** */
/* Custom Vertical Slider */
/* ****************************** */
.custom-vertical-slider {
    height: 550px;
    overflow: hidden;
}

/* Example: Change background for screens 1024px or smaller */
@media screen and (max-width: 1024px) {
	.custom-vertical-slider {
		height: auto !important;
	}
}

.custom-vertical-slider .swiper-slide {
    height: 80px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 2px solid transparent;
	overflow: hidden;
}

.custom-vertical-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	cursor: pointer;
}

/* ACTIVE SLIDE */
.custom-vertical-slider .swiper-slide img.active {
    border: 2px solid #000;
}









/* ****************************** */
/* Product Review slider */
/* ****************************** */
.codex-review-card {
    background: #FFFFFF;
    padding: 32px;
    height: 100%;
}

.codex-review-stars img {
    max-width: 16px !important;
	width: 100%;
}

.codex-review-card p.codex-review-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #4B5563;
    margin-top: 32px !important;
    font-style: italic;
}

.codex-review-author h4 {
	font-family: Inter;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0%;
	margin-top: 32px;
}