@import "../../../../../../style/variables.scss";
@import "../../../../../../style/global.scss";

.recurrence-slider-box{
    background-color: $LightCream;
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 230px;
    margin: auto;
    font-family: 'Avenir Next';
    @media only screen and (min-width: 480px) {
        max-width: inherit;
        text-align: start;
    }
    @media only screen and (min-width: 640px) {
        padding: 20px 30px;
    }
    @media only screen and (min-width: 1200px) {
        padding: 20px;
    }
    .date-title{
        font-size: 18px;
        line-height: 1.2;
        font-weight: 500;
        margin-bottom: 14px;
        @media only screen and (min-width: 1024px) {
            font-size: 20px;
            line-height: 30px;
        }
    }
    .timing{
        font-size: 16px;
        line-height: 22px;
        display: block;
        @media only screen and (min-width: 640px) {
            font-size: 18px;
        }
    }
    .qty-group-wrapper{
        margin-top: 14px;
        gap: 10px;
        justify-content: center;
        @media only screen and (min-width: 480px) {
            justify-content: start;
        }
        .qty-text{
            font-size: 16px;
            line-height: 22px;
            font-weight: 500;
            margin: 0;
            @media only screen and (min-width: 1200px) {
                font-size: 18px;
            }
        }
        .qty-group{
            width: 70px;
            .count{
                font-weight: 500;
            }
        }
    }
    .recurrence-slide-btn{
        font-size: 14px;
        padding: 8px 20px;
        margin-top: 14px;
        @media only screen and (min-width: 1200px) {
            font-size: 16px;
        }
    }
}
.recurrence-inner-slider{
    position: relative;
    .swiper{
        position: static;
    }
    .swiper-button-prev{
        left: 16px;
        @media only screen and (min-width: 480px) {
            left: -8px;
        }
        @media only screen and (min-width: 640px) {
            left: -15px;
        }
        @media only screen and (min-width: 1200px) {
            left: -40px;
        }
    }
    .swiper-button-next{
        right: 16px;
        @media only screen and (min-width: 480px) {
            right: -8px;
        }
        @media only screen and (min-width: 640px) {
            right: -15px;
        }
        @media only screen and (min-width: 1200px) {
            right: -40px;
        }
    }
}
.recurrence-events-wrapper{
    font-family: 'Canto';
    .qty-text{
        font-family: 'Canto'; 
    }
    .event-title-wrapper{
        .title{
            font-family: 'Canto';
            text-transform: capitalize;
            font-weight: 400;
            color: $primary;
        }
    }
}