﻿@import url(/assets/css/base-style.css);
@import url(/assets/css/style.css);
@import url(/assets/css/header.css);
@import url(/assets/css/footer.css);

.content-body {
    max-width: 1200px !important;
    margin-bottom: 2rem;
}

    .content-body img {
        width: 100%;
        max-height: 250px;
        object-fit: cover;
    }

.large-thumb {
    padding: 8px;
}

    .large-thumb img {
        min-height: 100% !important;
        max-height: 500px !important;
    }

.thumb {
    padding: 8px !important;
}

.baazar-ad {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .baazar-ad .links {
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        opacity: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 8px;
    }

        .baazar-ad .links button {
            background: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 12px 12px;
            width: 50px !important;
            min-width: 50px !important;
            max-width: 50px !important;
            height: 50px !important;
            min-height: 50px !important;
            max-height: 50px !important;
        }

    .baazar-ad button i,
    .baazar-ad i {
        color: #ffffff;
        font-size: 3rem;
        max-width: 50px !important;
        max-height: 50px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 12px;
        border: 2px solid #ffffff;
        border-radius: var(--border-radius-on-card);
        transition: opacity 0.5s;
    }

    .baazar-ad::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        opacity: 0;
        transition: opacity 0.5s;
    }

    .baazar-ad:hover .links,
    .baazar-ad:hover::before {
        opacity: 1;
    }


/* =========================== Responsive =========================== */

@media (max-width: 767.98px) {
    .content-body img {
        object-fit: contain;
        margin-bottom: 2rem;
    }

    .large-thumb img {
        max-height: 260px !important;
    }

    .large-thumb {
        padding: 2px !important;
    }

    .thumb {
        padding: 2px !important;
    }

    .baazar-ad .links {
        flex-direction: column;
    }

        .baazar-ad .links button {
            width: 30px !important;
            min-width: 30px !important;
            max-width: 30px !important;
            height: 30px !important;
            min-height: 30px !important;
            max-height: 30px !important;
        }

    .baazar-ad button i,
    .baazar-ad i {
        padding: 4px;
    }
}


.nothing-found {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    height: fit-content;
    padding: 2rem;
    width: 100%;
}

    .nothing-found .nothing-found-description {
        align-self: center;
    }

        .nothing-found .nothing-found-description h4 {
            display: block;
            font-size: 30px;
            margin-bottom: 2rem;
        }

        .nothing-found .nothing-found-description span {
            display: block;
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

            .nothing-found .nothing-found-description span i {
                position: relative;
                top: 5px;
                font-size: 23px;
                margin-bottom: 5px;
            }
