/* Police Montserrat pour tout le site */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

*,
*::before,
*::after {
    font-family: "Montserrat", sans-serif !important;
    box-sizing: border-box;
    list-style: none;
}

*.hidden{
    display: none;
}

body {
    margin: 0;
    padding: 0;
    background: #FFFFFF;
    overflow-X: hidden;
}

a{
    text-decoration: none;
    color: inherit;
}

h1,h2,h3,h4, button{
    font-family: "Space Grotesk", sans-serif;
}

/* Classes prédéfinies */

.hidden{
    display: none;
}
.allGray{
    width: 100%;
    height: 100%;
    background: #EBEEEF;
}
.italic{
    font-style: italic;
}
.copy{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    height: 35px;
    width: 35px;
    font-size: 20px;
    background: #F33428;
    color: #FFFFFF;
    cursor: pointer;
    margin: 0 0 0 15px;
    border: 1px solid #F33428;
    transition: all .3s linear;
}
.copy:hover{
    background: transparent;
    color: #F33428;
}
    /* Textes */
.text_NoWrap{
    text-wrap: nowrap;
    display: inline-flex;
    align-items: center;
}
.text_NoWrap img{
    height: 200px;
    margin: 0 0 0 30px;
}
.red{
    color: #F33428;
}
.bold{
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
}
.succed{
    color: green;
    text-align: center;
}
.title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin: 10px auto;
    width: 80%;
    text-transform: capitalize;
}

.subtitle{
    display: block;
    width: 80%;
    font-weight: normal;
    text-align: center;
    margin: 15px auto;
    font-size: 20px;
    color: #acacac;
}

.error {
    color: #F33428;
    font-weight: bold;
    font-family: "Space Grotesk", sans-serif;
    transition: all 0.3s linear;
    width: max-content;
    border-radius: 5px;
    display: block;
}

.cursor{
    cursor: pointer;
}

.infos{
    display: inline-flex;
    height: 20px;
    width: 20px;
    background: #b8b8b8;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
}

.no_click{
    pointer-events: none;
    cursor: not-allowed;
}

    /* Popup */
.popup{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 900000;
}
.popup.hidden{
     display: none;
 }
.popup_content{
    background: #FFFFFF;
    padding: 40px;
    max-width: 90vw;
}
.popup_content p {
    font-family: "Space Grotesk",sans-serif;
}

    /* Liens / bouttons */
.button{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    min-width: 100px;
    padding: 0 10px;
    border-radius: 5px;
    background: transparent;
    border: 2px solid #F33428;
    color: #F33428;
    font-weight: bold;
    transition: all 0.4s;
    cursor: pointer;
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
}

.button:hover{
    background: #F33428;
    color: #fff;
}

.link{
    color: #2d68e6;
    cursor: pointer;
    word-break: break-all;
    font-weight: normal;
}
.link:hover{
    text-decoration: underline;
}

    /* Formulaires */

/* Barre de recherche */
.searchBar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 30px 0;
    background: #EBEEEF;
    width: 400px;
    height: 45px;
}
.searchBar input{
    background: transparent;
    border: none;
    outline: none !important;
    height: 40px;
    font-size: 16px;
    width: 350px;
    padding: 0 10px;
}

.searchBar button{
    background: #F33428;
    color: #FFFFFF;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: all .3s ease-in-out;
    border: 1px solid #F33428;
}
.searchBar button:hover{
    background: transparent;
    color: #F33428;
}

input[type=file] {
    width: 350px;
    max-width: 100%;
    color: #222245;
    padding: 8px;
    background-color: #fff;
    border: 1px solid #F33428;
}

input[type=file]:focus {
    outline: 2px dashed #F33428;
    outline-offset: 2px;
}

input[type=file]::file-selector-button {
    margin-right: 8px;
    border: none;
    background: #F33428;
    padding: 8px 12px;
    color: #fff;
    cursor: pointer;
}

input[type=file]::file-selector-button:hover {
    background: #4747b8;
}


.form{
    width: 1100px;
    margin: 0 auto;
}
.form.form_left{
    margin: 0;
}
.form.form_auto_size{
    width: 100%;
}

.form_row{
    width: 100%;
    margin: 20px 0;
}

.form label{
    display: block;
    margin: 5px 0;
}

.form input[type=text],
.form input[type=email],
.form textarea,
.form select,
.form_row_password input{
    width: 100%;
    background: transparent;
    border: 1px solid #D1CDC5;
    height: 40px;
    border-radius: 5px;
    padding: 0 15px;
    cursor: pointer;
    transition: background .3s linear;
}

.form_row_password{
    display: flex;
    border: 1px solid #D1CDC5;
    border-radius: 5px;
    width: 100%;
}

.form_row_password input{
    width: calc(100% - 50px);
    border: none;
}
.form_row_password span{
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form textarea{
    width: 1100px;
    max-width: 1100px;
    min-width: 1100px;
    min-height: 300px;
    padding: 15px;
}

.form input[type=text]:hover,
.form input[type=email]:hover,
.form textarea:hover,
.form select:hover{
    background: #efefef;
}
.form input[type=text]:focus,
.form input[type=email]:focus,
.form textarea:focus,
.form select:focus,
.form_row_password input:focus{
    outline: none;
    background: transparent;
    border: 1px solid #F33428;
}

.form .button{
    display: block;
    margin: 0 auto;
    cursor: pointer;
    font-size: 18px;
}

.form .button.valid {
    background: transparent;
    display: inline-block;
    color: #47a59c;
    border-radius: 5px;
    border: 1px solid #47a59c;
    text-decoration: none;
    text-align: center;
    align-content: center;
    padding: 0 10px;
    transition: all .2s linear;
    font-size: 12px;
    cursor: pointer;
    font-weight: normal;
    width: 105px;
    height: 25px;
}
.form .button.valid:hover {
    color: #FFFFFF;
    background: #47a59c;
}
.form_error{
    color: #F33428;
    margin: 0 0 30px 0;
}
.form_error ul{
    padding-inline-start: 0;
    margin: 0;
}
.form_error ul li{
    color: #F33428;
}

.form_in_error input[type=text],
.form_in_error input[type=email],
.form_in_error textarea{
    border: 1px solid #F33428;
}
.form_check_container{
    margin: 20px 0 0 0;
}
.form_check_container label{
    cursor: pointer;
    font-size: 18px;
    user-select: none;
}
.form_check_container input[type="checkbox"]{
    cursor: pointer;
}
.form_check_section{
    margin: 0 0 0 20px;
}
.textareaExtendable{
    resize: both !important;
    min-width: 400px;
}
@media screen and (max-width: 500px){
    .textareaExtendable{
        min-width: 50px;
        width: 100%;
    }
}
    /* Motion */

.rotate180{
    transform: rotate(180deg);
}

.transitionBase{
    transition: all .3s linear;
}

    /* Classes diverses */

.no_marg{
    margin: 0 !important;
}

.square{
    display: block;
    height: 15px;
    width: 15px;
    background: #F33428;
}

@media screen and (max-width: 1160px){
    .disable{
        display: none !important;
    }
    .enable{
        display: block !important;
    }
    .enable_f{
        display: flex !important;
    }
}


.selector{
    min-height: 38px;
    max-width: 300px;
    width: 300px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.ts-control{
    border: none !important;
}