.image_card {
}

.image_card .img_holder {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image_card .img_holder .product_image {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-out;
}

.image_card .img_holder:hover .product_image {
    overflow: hidden;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

/* modal class */
.img_modal {
}

.img_modal .modal-dialog {
}

.img_modal .modal-dialog .modal-content {
    position: relative;
    text-align: center;
    background: none;
    margin: 0px auto;
    width: 80%;
}

.img_modal .modal-header {
    border: none;
}

.img_modal .modal-dialog .modal-content .modal-body {
}

.img_modal .modal-dialog .modal-content .modal-body .prev-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    background: #a11a39;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    left: 5px;
}

.img_modal .modal-dialog .modal-content .modal-body .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    background: #a11a39;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    right: 5px;
}

.img_modal .modal-dialog .modal-content .modal-body .img_holder {
}

.img_modal .modal-dialog .modal-content .modal-body .img_holder img {
    width: 90%;
    height: 90%;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    object-position: center;
    background: #212529;
}
