.containter-check p{
    font-size: 12px;
    font-weight: bolder;
    margin-top: 2px;
}

.containter-check img{
    height:100px;
    width: 100%;
    cursor: pointer;
    transition: transform 1s;
    object-fit: cover;
}
.containter-check label{
    overflow: hidden;
    position: relative;
}
.imgbgchk:checked + label>.tick_container{
    opacity: 1;
}
/*         aNIMATION */
.imgbgchk:checked + label>img{
    transform: scale(1.25);
    opacity: 0.3;
}
.tick_container {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
}
.tick {
    background-color: #dc3545;
    color: white;
    font-size: 10px;
    line-height: 20px;
    height: 20px;
    width: 20px;
    border-radius: 100%;
}
.tick-green{
    background-color: #198754;
}
