.favorite-section {
    padding: 50px;
}

.favorite-section .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fav {
    color: var(--BLACK, #1F1A38);
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

/* Favorites */
.favorites {
    display: flex;
    width: 1276px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    row-gap: 42px;
    flex-wrap: wrap;
}

.favorite-book {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.favorite-book-img {
    width: 175.596px;
    height: 280.206px;
    flex-shrink: 0;
    aspect-ratio: 175.60/280.21;
    border-radius: 30px;
}

.fbook-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.fbook-info .head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.fbook-info .head h3 {
    color: var(--BLACK, #1F1A38);
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.fbook-views {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.fbook-views span {
    color: var(--Neutral-N100);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.fbook-info .bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.fbook-info .bottom h3 {
    color: var(--Neutral-N100);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.progress-div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-body {
    display: flex;
    width: 300px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border-radius: 50px;
    background: var(--Primary-P50);
}

.progress-fill {
    width: 120px;
    height: 12.034px;
    border-radius: 50px;
    background: var(--MAIN-2);
}

.progress-div span {
    color: var(--Neutral-N100);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

/* End Of Favorites */

/* No Favorites */
.no-favorites {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 57px;
    width: auto;
    padding: 100px;
}

.no-favorites .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 311px;
}

.no-favorites .header p {
    color: var(--Neutral-N400, #4A4A4A);
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}

.no-favorites .bottom {
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--MAIN-1);
    background: var(--WHITE);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: var(--MAIN-1);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

/* End Of No Favorites */


/* MOBILE RESPONSIVE  */
@media only screen and (max-width: 1122px) {
    .favorite-section {
        padding: 30px 0px;
    }

    .fav {
        font-size: 24px;
    }

    /* SHOW FAVORITES */
    .favorites {
        width: 100%;
    }

    .favorite-book {
        gap: 13px;
    }

    .favorite-book-img {
        width: 95.745px;
        height: 152.785px;
        aspect-ratio: 95.75/152.78;
        border-radius: 16.358px;
    }

    .fbook-info,
    .fbook-info .head,
    .fbook-info .bottom {
        gap: 5px;
    }

    .progress-body {
        width: 200px;
    }

    .progress-fill {
        width: 80px;
    }

    .progress-div span {
        font-size: 14px;
        line-height: 20px;
    }

    /* NO FAVORITES */
    .no-favorites {
        padding: 50px;
        gap: 32px;
    }

    .no-favorites .header {
        width: 100%;
    }

    .no-favorites .header p {
        font-size: 16px;
        line-height: 18px;
    }
}

@media only screen and (max-width: 620px) {}

/* END OF MOBILE RESPONSIVE  */