/*************************************** Fen�tres modales ****************************************/
.csrtModaleWrapper {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s linear;
}

.csrtModale {
    display: flex;
    flex-direction: column;
    background: #fff;
    max-width: 1000px;
    max-height: calc(100vh - 48px);
    margin: 0 auto;
    transform: translate3d(0, 32px, 0) scale(0.98);
    opacity: 0;
}

.csrtModaleAffichee {
    opacity: 1;
    visibility: visible;
}

.csrtModaleAffichee .csrtModale {
    transition: transform 0.3s ease, opacity 0.2s linear;
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.csrtModaleEntete {
    background: #000;
    display: flex;
    align-items: center;
    flex: none;
}

.csrtModaleTitre {
    margin: 0;
    padding: 32px 48px;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.csrtModaleFermer {
    position: relative;
    cursor: pointer;
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 32px 0 auto;
    padding: 16px;
    color: #999999;
    border: 0px;
    background-color: transparent;
}

.csrtModaleFermer:hover {
    color: #fff;
}

.csrtModaleFermer svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
}

.csrtModaleWrapperContenu {
    padding: 48px 48px 32px;
    overflow-y: auto;
}

.csrtContenuModale {
    visibility: hidden;
}

@media only screen and (max-width: 1300px) {
    .csrtModale {
        max-width: calc(100vw - 48px);
    }
}

/*************************************** Contenu des fenetres modales ****************************************/
.csrtModale h1,
.csrtModale h2,
.csrtModale h3,
.csrtModale h4 {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
}

.csrtModale p {
    margin: 0 0 16px;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px !important;
    color: #000;
}

.csrtModale p:last-child {
    margin: 0;
}

.csrtModale a,
.csrtModale a:link,
.csrtModale a:visited,
.csrtModale a:hover,
.csrtModale a:active {
    color: #0645ad;
    text-decoration: underline;
}

.csrtModale a:hover {
    color: #032357;
}

.csrtModale .modaleSousTitre {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.csrtModale .modaleSousSousTitre {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.csrtModale .modaleContenu {
    display: flex;
}

.csrtModale .modaleContenuGauche,
.csrtModale .modaleContenuDroite {
    width: 50%;
}

.csrtModale .modaleContenuGauche {
    margin-right: 16px;
}

.csrtModale .modaleContenuDroite {
    margin-left: 16px;
}

.csrtModale .modaleContenuBas {
    flex: none;
    margin: 32px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid #d7d7d7;
}

.csrtModale .modaleSousTitre + p,
.csrtModale .modaleSousTitre + h4 {
    margin-top: 16px;
}

.csrtModale .modaleSousSousTitre + p {
    margin-top: 4px;
}