.swiper-container {
    transform: none;
}

.swiper-pagination-fraction {
    color: white;
    font-size: 13px;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: 400;
}

.swiper-button-disabled {
    display: none;
}

.swiper [class^="swiper-button-"]::after {
    font-size: 24px;
}

.tp-swiper-button-next {
    background-color: var(--color-light-grey);
    padding: 32px;
    border-radius: 100%;
    color: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.0828781);
    opacity: 0.7;
}

.tp-swiper-button-prev {
    background-color: var(--color-light-grey);
    padding: 32px;
    border-radius: 100%;
    color: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.0828781);
    opacity: 0.7;
}

/* Cinema Swiper */
.tp-cinema-swiper {
    position: relative;
    height: 225px;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.0828781);
}

.tp-cinema-swiper-slide-background {
    background-position: center center;
    background-size: cover !important;
    z-index: 0;
    width: 100%;
    height: 500px;
}

.tp-cinema-swiper-slide-content {
    position: fixed;
    top: 20px;
    margin-left: 30px;
    margin-right: 30px;
}

.tp-cinema-swiper-title {
    font-style: italic;
    color: white;
}

.tp-cinema-swiper-label {
    padding: 1px 8px;
    border-radius: 5px;
    border: solid 1px #FFFFFF;
    background-color: white;
    color: #333;
    mix-blend-mode: screen;
}

.tp-cinema-swiper-short-description {
    margin-top: 10px;
    line-height: 1.5;
    height: 45px;
    overflow: hidden; /* A túl hosszú szöveget elrejti */
    text-overflow: ellipsis; /* Az elrejtett szöveg végére 3 pontot jelenít meg */
    /* A következő 3 sor azért kell, hogy ha kilógna 2 sorból a szöveg, akkor vágja le és "..." legyen a végén. */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp-cinema-swiper-button-container {
    position: fixed;
    bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
}

/* Course Card Swiper */
.tp-course-card-swiper-wrapper {
    margin-left: -.6em; /* a .card tolja el jobbra, ezt kell kompenzálni itt. */
}


.tp-course-card-swiper-slide {
    width: 290px;
    padding-top: 3px;
}

.tp-course-card-explore-more-swiper-slide {
    width: 290px;
    height: auto;
    padding-bottom: 29px;
}

.tp-course-card-explore-more-panel {
    height: 100%;
    padding: 5px;
    cursor: pointer
}

.tp-course-card-explore-more-panel-inside {
    position: relative;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 246px;
    background-color: #f8f8f8;
    border-radius: 5px 5px 5px 5px;
}

.tp-course-card-explore-more-panel-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 16px;
}

/* Rating Swiper */
.tp-rating-swiper-slide {
    width: 40%;
    height: auto;
    padding-bottom: 29px;
}

/* Video Swiper */
.tp-video-swiper-slide {
    width: 214px;
}

@media (max-width: 767px) {
    .tp-cinema-swiper {
        height: 260px;
    }

    .tp-cinema-swiper-slide-content {
        top: 10px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .tp-cinema-swiper-short-description {
        height: 40px;
    }

    .tp-cinema-swiper-button-container {
        position: fixed;
        bottom: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .tp-video-swiper-slide {
        width: 128px;
    }

    .tp-rating-swiper-slide {
        width: 50%;
    }
}

@media (max-width: 540px) {
    .tp-cinema-swiper {
        height: 230px;
    }

    .tp-rating-swiper-slide {
        width: 75%;
    }
}