/* MODALE
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

  #modale {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0008;
    opacity: 0;
    transition: opacity 0.2s ease-in-out 0s;
}

#modale.opened {
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.2s ease-in-out 0s;
}

#modale #modale-container {
    background-color: #fff;
    border-radius: 7px;
    margin: 0 auto;
    position: relative;
    box-shadow: #1118 0px 0px 5px;
}

#modale:not(.custom-style) #modale-container {
    width: 60%;
    height: 80%;
    top: 10%;
}

#modale #modale-container #modale-content {

}

#modale:not(.custom-style) #modale-container #modale-content {
    height: 100%;
}

#modale #modale-container #modale-content #modale-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease-in-out 0s;
}

#modale #modale-container #modale-content #modale-close:hover {
    transform: scale(1.15);
    color: var(--twc-red-700);
}

#modale label {
    font-size: 16px;
}

#modale button.saving > span {
    display: none;
}

#modale button.saving .loading-gif {
    width: 20px;
    height: 20px;
}

#modale button:not(.saving) .loading-gif {
    display: none;
}