﻿.hover-zoom-effect {
    transform: scale(1);
    transition: 0.15s cubic-bezier(0.6, 0.03, 0.28, 0.98), box-shadow .3s;
}

    .hover-zoom-effect:hover {
        transform: scale(1.03);
        transition: 0.15s cubic-bezier(0.6, 0.03, 0.28, 0.98), box-shadow .3s;
        box-shadow: 0 0 11px rgba(33,33,33,.2);
        z-index: 1;
    }

.cursor-pointer {
    cursor: pointer;
}

.fs-7 {
    font-size: .8rem !important;
}

.list-group-item.list-group-item-action.active .text-muted {
    color: #fff !important;
}

.inner-shadow {
    box-shadow: inset 0px 0px 10rem 20px #000000
}