.main-bg {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 1rem;
    max-width: 830px;
    border: 1px solid #E5E5E5;
}

#product-description {
    background-color: #ffffff;
}

.box-product-title a {
    color: #808080;
    font-size: 14px;
}

.box-product-title a:hover {
    color: #3a3a3a;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    font-size: 1rem !important ;
}

.product-gallery {
    /* position: absolute;
    top: 0;
    left: 50%; */
    width: 130px;
    margin-right: 1rem;
    z-index: 160;
}

.product-gallery img {
    border: 1px solid var(--gray-100-color);
    cursor: pointer;
    margin: 0 0 20px 0;
}

.product-gallery img:hover {
    border: 1px solid var(--gray-200-color);
}

.product-gallery img.active {
    border: 1px solid var(--gray-400-color);
    box-shadow: 1px 1px 4px var(--gray-300-color);
    cursor: auto;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
}

.product-info {
    display: flex;
    font-size: var(--text-sm);
}

.product-price {
    font-size: var(--text-xl);
    font-weight: bold;
}

.product-price small {
    color: var(--gray-400-color);
    font-size: var(--text-sm);
    text-decoration: line-through;
    margin-right: 5px;
    font-weight: normal;
}

@media (max-width: 1580px) {
    .product-gallery img {
        margin: 0 0 12px 0;
    }
}

@media (max-width: 1140px) {
    .product-gallery {
        width: 80px;
    }
}

@media (max-width: 960px) {
    .product-gallery {
        width: 60px;
    }
}

@media (max-width: 767px) {
    .product-gallery {
        height: 95px;
        width: 100%;
        position: unset;
        display: flex;
    }

    .product-gallery img {
        width: 20%;
        margin: 12px 10px 12px 0;
    }
}