
@media (min-width: 576px) {
    .grid > div {
        margin: 4px;
        width: 100%;
    }

        .grid > div > * {
            width: 100%;
        }
}

@media (min-width: 70px) {
    .grid > div {
        margin: 4px;
        width: 100%;
    }

        .grid > div > * {
            width: 100%;
        }
}

.hideMeAfter3Seconds {
    animation: hideAnimation 0s ease-in 3s linear;
 /*   animation-fill-mode: forwards;*/
}

@keyframes hideAnimation {

    to {
        transition: opacity 200ms, display 200ms;
        display: none;
        opacity: 0;
    }
}

.alert {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 10px;
    right: 10px;
    min-height: 50px;
    border-radius: 12px;
    padding: 8px 8px;
    align-items: center;
    max-height: 100px;
    justify-content: center;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    z-index:2;
}


.alert-erreur {
        background: red;
        color: black;
    }

.alert-success {
    background: green;
    color: black;
}

.alert-close {
    display: flex;
    width: 20px;
    height: 20px;
    align-self: self-start;
    justify-content: center;
    border: black 1px solid;
    align-items: flex-end;
    border-radius: 15px;
}

.alert-message{
    display:flex;
    align-content:flex-start;
    flex-grow :1;
}

.alert-close:hover{
    cursor:pointer;
}




article > header > h3{
    margin-bottom:0px;
}


h6{
    width:100%;
    text-align:center;
}

.ck-editor__editable {
    min-height: 400px;
}

.imagesDansGallerie{
    width:100%;
    display:flex;
    flex-wrap: wrap;
}

.dvimggallerie {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex: 1 1 150px;
    padding: 5px;
    border: solid 1px whitesmoke;
    border-radius: 5px;
}

.titleimgallerie {
    display: flex;
    flex-direction: row;
    font-size: 12px;
    word-break: break-all;
}

.imgloaded {
    margin-top: 5px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 5px;
}

.btndeleteimggallerie {
    width: 35px;
    height: 25px;
    background: white;
    color: red;
    border: 1px solid red;
    text-align: center;
    font-size: 10px;
    border-radius: 10px;
    margin: 0px;
    padding: 0px;
    font-weight: 900;
}

    .btndeleteimggallerie:hover {      
        background: red;
        color: white;
      
    }


.OuiNon {
    background-color: red !important;
    border-color: red !important;
}



    .OuiNon:checked {
        background-color: green !important;
        border-color: green !important;
    }

.btnAccessEdit {
    padding: 4px;
}

.btnAccessDelete {
    padding: 4px;
    background-color: red;
    border-color: red;
    display: inline-block;
    width: initial;
    margin: unset;
}


.field-validation-error {
    color: red;
}



