
img.perview-img {
    cursor: pointer;
    height: 300px;
    width: 100%;
}
div.image-popup {
    display: none;
    height: 100vh;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    z-index: 20;
    overflow: hidden;
}
div.image-popup div.container {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
button#close-image-view {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 15;
}
img#image-view {
    height: 400px;
    width: auto;
    cursor: zoom-in;
    transition: 0.2s ease;
}
img#image-view.active {
    transition: 0.2s ease;
    transform: scale(1.5);
    cursor: zoom-out;
}
button.owl-prv {
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -5%;
    top: 45%;
    transform: translate(0%,-50%);
    outline: none;
    color: #5a189a;

}
button.owl-nxt {
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -5%;
    top: 45%;
    transform: translate(0%,-50%);
    outline: none;
    color: #5a189a;
}