
.date-slider-container {
    padding-inline: 100px;
    position: relative;
}

.swiper-slide-active .date-slider-item-content {
    background: #E68F49;
    color: white;
}

.date-slider-item {
    cursor: pointer;
}

.date-slider-item-content {
    text-align: center;
    padding: 7px 0;
    border-radius: 16px;
    background: transparent;
    color: black;
    transition: all 0.3s ease;
}

.date-slider-item-content .day-name {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 5px;
    white-space: nowrap;
}

.date-slider-item-content .day-number {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
}

.date-slider-container .swiper-button-next {
    width: 44px;
    height: 44px;
    top: 50%;
    background-image: url('../img/prev-icon.svg');
    transform: rotate(180deg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.date-slider-container .swiper-button-prev {
    width: 44px;
    height: 44px;
    top: 50%;
    background-image: url('../img/prev-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* disable .swiper-button-next default styles */
.swiper-button-next:after,
.swiper-button-prev:after {
    content: none !important;
}

/* Class schedule */

.class-schedule-container {
    padding-block: 60px;
    width: calc(100% - 32px);
    margin-inline: auto;
}

.class-schedule-container .no-classes,
.class-schedule-container .loading {
    text-align: center;
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
}

.class-schedule-container .pilate-class-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
    padding: 17px 24px;
    background: #E4E4E4;
    border-radius: 16px;
    gap: 24px;
}

.class-schedule-container .pilate-class-item-image {
    width: 186px;
    height: 141px;
    object-fit: cover;
    border-radius: 9999px;
    overflow: hidden;
}

.pilate-class-item-title {
    font-family: Inter;
    font-weight: 600;
    font-size: 19px;
    line-height: 37px;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.pilate-class-item-trainer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 37px;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.pilate-class-item-trainer::before {
    content: url('../img/user-icon.png');
    display: inline-block;
    height: 28px;
}

.pilate-class-item-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Inter;
    font-weight: 600;
    font-size: 17px;
    line-height: 37px;
    letter-spacing: 0%;
}

.pilate-class-item-time::before {
    content: url('../img/calendar-icon.png');
    display: inline-block;
    height: 28px;
}

.pilate-class-item-slot {
    font-family: Inter;
    font-weight: 400;
    font-size: 21px;
    line-height: 37px;
    letter-spacing: 0%;
    flex-grow: 1;
    text-align: center;
    padding-inline: 16px;
}

.pilate-class-item-slot p {
    margin-bottom: 0;
}

.pilate-class-item .class-actions {
    margin-left: auto;
}

.pilate-class-item .book-class-btn {
    width: 116px;
    height: 61px;
    padding: 12px 24px;
    border-radius: 13px;
    font-family: Inter;
    font-weight: 400;
    font-size: 19px;
    line-height: 37px;
    letter-spacing: 0%;
    background: #E68F49;
    color: black;
    text-decoration: none !important;
}

@media screen and (max-width: 430px) {
    .pilate-class-item-trainer {
        font-size: 18px;
    }

    .class-schedule-container {
        padding-block: 32px;
    }

    .class-schedule-container .no-classes, .class-schedule-container .loading {
        font-size: 16px;
    }

    .pilate-class-item-slot p {
        font-size: 18px;
    }

    .date-slider-container {
        padding-inline: 65px;
    }

    .date-slider-item-content .day-name {
        font-size: 20px;
        line-height: 28px;
    }
    
    .date-slider-item-content .day-number {
        font-size: 16px;
        line-height: 24px;
    }
}