/* Minification failed. Returning unminified contents.
(110,32): run-time error CSS1039: Token not allowed after unary operator: '-green-color'
(130,17): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(134,17): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(135,37): run-time error CSS1039: Token not allowed after unary operator: '-white-color'
(144,37): run-time error CSS1039: Token not allowed after unary operator: '-green-color'
 */
.swiper-slide {
    height: auto;
}

.card {
    background: #fff;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-img-top {
    height: 200px;
    object-fit: contain;
    padding: 10px;
}

.card-body {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    flex: 1;
}

.book-actions {
    margin-top: auto;
}

.line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.banner-container {
    height: 600px;
    margin-top: 94px;
}

@media (max-width: 768px) {
    .banner-container {
        height: 400px;
        margin-top: 70px;
    }

    .swiper-slide {
        width: 250px;
    }
}

@media (max-width: 576px) {
    .banner-container {
        height: 300px;
    }

    .swiper-slide {
        width: 200px;
    }
}

.lazy-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.45s ease;
}

    .lazy-card.show {
        opacity: 1;
        transform: translateY(0);
    }

.page-loading {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

    .page-loading.show {
        opacity: 1;
        visibility: visible;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.custom-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #eee;
    border-top: 4px solid var(--green-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.home__banner__overlay__title {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 60px;
    justify-content: end;
    align-items: start;
}

.home__banner__overlay__title h1 {
    font-size: clamp(3vw, 500%, 6vw);
    margin-bottom: 25px;
}

.home__banner__overlay__title h1,
.home__banner__overlay__title h3 {
    color: var(--white-color);
}

.home__banner__overlay__title > div > a {
    color: var(--white-color);
    border-bottom: 2.5px solid var(--white-color);
    padding: 2px 0;
    font-weight: 600;
    font-size: clamp(1vw, 100%, 3vw);
    text-align: left;
}

.home__banner__overlay__title > div > a:hover {
    color: #5cd799 !important;
    border-bottom: 2.5px solid var(--green-color);
}
