/* Components */
.shadow-card {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
}

.borderR-8px {
    border-radius: 8px !important;
}

.book-image-main {
    height: 470px;
    width: 100%;
    object-fit: contain;
}

.book-image {
    height: 430px;
    width: 100%;
    object-fit: contain;
}

.container-book-image {
    position: relative;
    width: 100%;
}

.overlay-book-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 430px;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
}

.container-book-image:hover .overlay-book-image {
    opacity: 1;
}

.title-book-image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.title-book-image:hover {
    color: var(--white) !important;
}

.text-link-category.active {
    color: var(--primary) !important;
}

.text-link-category:hover {
    color: var(--primary) !important;
}

.mt-32px {
    margin-top: 32px !important;
}

.products-pagination {
    box-shadow: var(--shadow);
    width: fit-content;
    margin: 0 auto;
}

.products-pagination .page-link {
    border-left-color: var(--primary);
    border-right-color: var(--primary);
}

.products-pagination .active > .page-link {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.star.not {
    color: var(--grey);
}

/* Font */
.font-36px {
    font-family: var(--font-1);
    font-size: 36px;
    font-style: normal;
}

.font-16px {
    font-family: var(--font-2x);
    font-size: 16px;
    font-style: normal;
}

.font-14px {
    font-family: var(--font-2x);
    font-size: 14px;
    font-style: normal;
}
