@font-face
{
    font-family: 'Calibri';
    src: url('../lib/font/Calibri.ttf');
}

html,
body
{
    background-color: #D8D8D8;
    color: #474747;
    font-family: Calibri;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

#content
{
    padding: 41px 5px 5px 5px;
}

/* Loader */

#loader
{
    align-items: center;
    background-color: black;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0px;
    opacity: 0.7;
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 9;
}

#loader_anim
{
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.7s linear infinite;
}

@keyframes spin
{
    0%
    {
        transform: rotate(0deg);
    }

    100%
    {
        transform: rotate(360deg);
    }
}

/* img */

.imgFormPreview
{
    display: block;
    margin: auto;
    max-height: 150px;
    max-width: 150px;
}

/* texte */

p
{
    margin: 5px;
    margin-bottom: 10px;
}

strong
{
    font-weight: bold;
}

/* SMS */

.div_sms
{
    background-color: white;
    border-radius: 3px;
    padding: 3px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.div_sms h2
{
    display: block;
    float: left;
    font-weight: bold;
    margin-top: 5px;
}

.div_sms i
{
    display: block;
    float: right;
    margin-right: -5px;
    margin-top: 5px;
    height: 30px;
    width: 30px;
}

.div_sms p
{
    border: 1px dashed black;
    border-radius: 3px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 33px;
    padding: 5px;
}