.imgbgchk:checked + label>.tick_container{
    opacity: 1;
}

.imgbgchk:checked + label>img{
    transform: scale(1.25);
    opacity: 0.3;
}
.tick_container {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
}
.tick {
    background-color: #4CAF50;
    color: white;
    font-size: 6px;
    border-radius: 100%;
}

.word-wrap {
    word-wrap: break-word;
}
.adobe-dc-view{
    height: 100vh;
}

/* admin_bat : masquer les colonnes secondaires sur petit écran */
/* Colonnes cachées sous 1200px : Ascensoriste(2), ETAT Eric(3), ETAT ADMIN(4), Boite Gest.(7), Adresse(9) */
@media (max-width: 1199px) {
    #bat-table th:nth-child(2), #bat-table td:nth-child(2),
    #bat-table th:nth-child(3), #bat-table td:nth-child(3),
    #bat-table th:nth-child(4), #bat-table td:nth-child(4),
    #bat-table th:nth-child(7), #bat-table td:nth-child(7),
    #bat-table th:nth-child(9), #bat-table td:nth-child(9) {
        display: none;
    }
}
/* Sous 768px : cacher aussi Gestionnaire(6), Missions(10), Asc(11) */
@media (max-width: 767px) {
    #bat-table th:nth-child(6),  #bat-table td:nth-child(6),
    #bat-table th:nth-child(10), #bat-table td:nth-child(10),
    #bat-table th:nth-child(11), #bat-table td:nth-child(11) {
        display: none;
    }
}