.sub-header {
    margin-top: 0;
}

/* IMAGE SELECTION */

.image-selection-parent {
    height: auto;
}
.image-selection-parent > .row {
    display: flex;
    align-items: center;
    height: 100%;
}
.image-select img {
    height: 100px;
    width: 100%;
    cursor: pointer;
    transition: transform 1s;
    object-fit: cover;
}
.image-select label {
    overflow: hidden;
    position: relative;
}

.imgbgchk:checked + label > .tick_container {
    /* opacity: 0.5;
    width: 100%;
    height: 100%;
    background-color: black;
    display:flex;
    align-items: center;
    justify-content:center; */
    opacity: 1;
}
/*         aNIMATION */
.imgbgchk:checked + label > img {
    transform: scale(1.25);
    opacity: 0.3;
}
.tick_container {
    transition: 0.5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
}
.tick {
    background-color: #4caf50;
    color: white;
    font-size: 16px;
    padding: 6px 12px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
}
