.br-10 {
    border-radius: 10px;
}

.zoom-img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.zoom-img img {
    width: 100%;
    transition: all .3s ease-in-out;
}

.zoom-img img:hover {
    transform: scale(1.2);
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #417394;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #023047;
}

.status-danger {
    color: #50607c;
}

.status-success {
    color: green;
}

.product-description {

    text-align: justify;

} 