﻿:root {
    --primary-color: #ea413a;
    --secondary-color: #142f60;
    --green: #264E04;
    --light-green: #23B400;
    --yellow: #ffd938;
    --purple: #69173B;
    --blue: #2f7bf3;
    --light-blue: #a1e9ff;
    --dark-blue: rgb(12,23,45);
    --red: rgb(238,46,46);
    --brown: #6d4c44;
}

@font-face {
    font-family: 'Proxima Nova Regular';
    src: url('fonts/Proxima Nova Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Proxima Nova Semibold';
    src: url('fonts/Proxima Nova Semibold.otf') format('opentype');
}

@font-face {
    font-family: 'Proxima Nova Bold';
    src: url('fonts/Proxima Nova Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Proxima Nova Extrabold';
    src: url('fonts/Proxima Nova Extrabold.otf') format('opentype');
}

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header {
    background: url('../Images/HeaderSite.png') top center no-repeat;
    /*background-size: cover;*/
    /*height: 120px;*/
    height: 150px;
}

@media screen and (max-width: 450px) {
    /* Styles pour les écrans de 768px ou moins */
    header {
        height: 110px;
    }
}

form {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    min-height: 100vh;
    background: var(--primary-color);
    font-family: 'Proxima Nova Regular';
    display: flex;
    flex-direction: column;
}

main {
    margin-top: -20px;
    flex: 1 0 auto;
}

h3 {
    font-weight: 200;
}

.divError {
    background: red;
    color: white;
    font-size: 0.9em;
    margin-top: 15px;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: -15px;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
}

.whiteBox {
    background: #fff;
    padding: 10px 0px;
    border-radius: 12px;
    max-width: 500px;
    margin: 10px auto;
}

.w-80 {
    width: 80%;
}

.btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
    cursor: pointer;
    border: 0px;
    max-width: 200px;
    -webkit-appearance: none; /*For Chrome*/
    -moz-appearance: none; /*For Mozilla*/
    appearance: none;
    user-select: none;
}

.flex-center {
    text-align: center;
}

.link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    margin: 15px;
}

    .link a:hover {
        text-decoration: none;
    }


    .link.text-white {
        color: #fff;
    }

    .link span {
        color: white;
        text-decoration: underline;
    }

        .link span:hover {
            text-decoration: none;
        }

.line-sep {
    border: 1px dashed #000;
    width: 80%;
    margin: 25px auto;
}

.btn-blue {
    background: var(--blue);
    font-size: 20px;
    color: #fff;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--blue);
    font-size: 20px;
}

.btn-brown {
    background: var(--brown);
    color: #fff;
    font-size: 16px;
}

.btn-red {
    background: var(--red);
    color: #fff;
    font-size: 20px;
}

.btn-darkBlue {
    background: var(--dark-blue);
    color: #fff;
    font-size: 20px;
}

.btn-lightgreen {
    background: var(--light-green);
    border: 1px solid #fff;
}

.btn-lightgreen-desactivated {
    background: grey;
    border: 1px solid #fff;
    cursor: not-allowed;
}

.btn-back {
    background: grey;
    color: #fff;
    margin-top: 10px;
    border: none;
    width: 40%;
    max-width: 250px;
}

.btn-cancel {
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 20px;
}

    .btn-cancel:hover {
        text-decoration: none;
    }

.text-center {
    text-align: center;
}

.text-bold {
}

.text-extra-bold {
    font-family: ProximaExtrabold;
}

.text-yellow {
    color: var(--yellow);
}

.text-blue {
    color: var(--blue);
}

.text-purple {
    color: var(--purple);
}

.text-red {
    color: var(--red);
}

.text-black {
    color: #000;
}

.text-white {
    color: #fff;
}

.title {
    font-weight: 700;
    text-align: center;
}

.purple-title {
    display: inline-block;
    background: #fff;
    color: var(--purple);
    text-transform: uppercase;
    padding: 5px;
    margin-bottom: 30px;
    font-size: clamp(1.5em, 3vw, 2em);
    text-align: center;
}

.darkBlue-title {
    display: inline-block;
    background: var(--dark-blue);
    color: #fff;
    text-transform: uppercase;
    padding: 8px;
    margin-bottom: 30px;
    font-size: clamp(1.5em, 3vw, 2em);
    text-align: center;
    font-weight: 800;
}

.yellow-title {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    text-transform: uppercase;
    padding: 2px;
    margin: 10px;
    font-size: clamp(1.5em, 3vw, 2em);
    text-align: center;
    font-family: 'Proxima Nova Regular';
    font-weight: 800;
}

.subtitle {
    font-style: italic;
}

.whiteBkg {
    position: relative;
    padding: 35px;
    background: #fff;
    margin: 25px auto;
    box-shadow: rgba(0,0,0,0.5) 0 8px 8px;
    padding-top: 20px;
}

.radius-10 {
    border-radius: 10px;
}

.textbox {
    display: block;
    width: 90%;
    max-width: 1000px;
    margin: 10px auto;
    padding: 5px 10px;
    font-size: 15px;
    border-radius: 5px;
    padding: 10px;
    border: 0px solid #fff;
}

.ml-alcool {
    margin-bottom: 20px;
    text-align: center;
}

    .ml-alcool .ml-alcool_mod {
        text-transform: uppercase;
        font-size: 1.2em;
    }

    .ml-alcool .ml-alcool_min {
        font-size: 1em;
    }


/* Default page */
.whiteBox {
    background: #fff;
    padding: 10px 00px;
    border-radius: 12px;
    max-width: 500px;
    margin: 10px auto;
}

.login-bloc {
}

    .login-bloc p, .login-bloc h2 {
        text-align: center;
    }

    .login-bloc h2 {
        font-size: 1.4em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .login-bloc > p {
        font-size: 1em;
        margin-bottom: 20px;
    }
/* END Default page */

/* Register page */
.form-radios {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 25px auto;
    max-width: 320px;
}

    .form-radios label {
        margin-left: 5px;
    }

#eventAlert {
    text-align: center;
    margin-top: 3em;
    color: #fff;
}
/* END Register page */

/* Login page */
#loginTextbox {
    margin: 15px 0 30px;
}
/* END Login page */

/* Accueil page */
.picto {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -35px);
    font-size: 25px;
}

.btn-disconnect {
    display: inline-block;
    position: relative;
    color: #fff;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.8em;
    margin-top: 15px;
}

    .btn-disconnect:hover {
        text-decoration: none;
    }

    .btn-disconnect::before {
        content: "";
        position: absolute;
        width: 15px;
        height: 15px;
        background: url(../Images/logout.png);
        background-size: contain;
        transform: translate(-23px, -2px);
    }

#MainContent_noEventActive p {
    font-size: clamp(15px, 3vw, 25px);
}

#ddlGroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

.ddl {
    display: flex;
    flex-direction: column;
    margin: 10px 20px;
    width: 100%;
    min-width: 250px;
    max-width: 350px;
}

.ms-dd-option-content, .ms-dd-header, .option-selected {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.dropDown, .ms-dd, .ms-dd-header, .ms-list-option, .ms-header-middle-content, .ms-middle {
    height: 40px;
    width: 100% !important;
    text-align: center;
    border-radius: 8px;
}

.dropDown, .ms-dd {
    margin-top: 5px;
    border: 1px black solid;
    background-color: white;
}

.event-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #000000;
}

.event {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    width: 100%;
    max-width: 380px;
}

.event-infos, .event-register {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-infos {
    grid-column: 1;
    grid-row: 1;
}

.event-register {
    grid-column: 2;
    grid-row: 1;
}

.selected-event-infos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,1);
    width: 100%;
    max-width: 500px;
    margin: 0px auto 10px;
    padding: 15px;
}

.group-follower {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.textbox-follower {
    width: 100%;
    max-width: 300px;
    margin: 5px 10px;
}

.label-textbox {
    display: block;
    margin: auto;
    text-align:left;
}

.low-textbox, .label-textbox {
    width: 100%;
}

.low-textbox {
    font-size: 15px;
    padding: 10px;
}

.buttons-validate-event {
    margin-top: 25px;
}

.event-name {
    text-transform: uppercase;
    font-size: 1.2em;
    color: var(--yellow);
}

    .event-name.big-size {
        font-size: clamp(25px, 3vw,30px);
    }

.event-type {
    font-size: 1.1em;
    color: var(--yellow);
}

    .event-type.big-size {
        font-size: 25px;
    }

.event-date {
    margin-top: 5px;
}

.event-date, .event-horaire {
    font-size: 0.9em;
}

    .event-date.big-size, .event-horaire.big-size {
        font-size: 20px;
    }


.event-place {
    font-size: 0.9em;
    margin: 10px 0;
}

    .event-place.big-size {
        font-size: 20px;
    }

.white-line {
    border: 1px solid #fff;
    margin: 5px 0;
    width: 60%;
    max-width: 80px;
}

    .white-line.big-size {
        margin: 15px 0;
    }

.yellow-dashed-line {
    border: 1px dashed var(--yellow);
    margin: 20px auto;
    width: 60%;
}

.black-dashed-line {
    border: 1px dashed #000;
    margin: 20px auto;
    width: 100%;
}

.followers-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

    .followers-info .follower-title {
        font-size: clamp(15px, 3vw, 20px);
    }

    .followers-info .follower-name {
        font-size: clamp(15px, 3vw, 20px);
        margin-top: 5px;
        display: table;
        margin: 0 auto;
    }

.no-creneau {
    display: flex;
    justify-content: center;
}

    .no-creneau p {
        display: inline;
        padding: 5px 10px;
        background: red;
        border-radius: 5px;
        text-align: center;
        font-size: clamp(15px, 3vw, 25px);
    }
/* END Accueil page */
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    animation: backdrop .5s ease normal;
}

.modal-content {
    margin: auto;
    position: relative;
    background-color: #fefefe;
    overflow-y: auto;
    padding: 20px 10px;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: calc(100vh - 100px);
    animation: scale .5s ease normal;
}

.close {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.btnModal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.modal .btnPink, .modal .btnBorderPink {
    min-width: 60%;
    padding: 10px 15px;
    margin-top: 10px;
}

/* END Modal */

/* Spinner */
.spinner {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

    .spinner div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid var(--secondary-color);
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: var(--secondary-color) transparent transparent transparent;
    }

        .spinner div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .spinner div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .spinner div:nth-child(3) {
            animation-delay: -0.15s;
        }

.captcha-credit {
    color: #fff;
    font-size: clamp(10px, 2vw, 12px);
    text-align: center;
}

    .captcha-credit a {
        color: var(--yellow);
    }

.grecaptcha-badge {
}
/*footer Style*/
footer {
    /*color: #000;*/
    font-size: clamp(10px, 2vw, 15px);
    /*padding: 0 10px;*/
    /*margin: 10px auto;
    margin-bottom: 10px;*/
    bottom: 0px;
    /*background: #ffffff;*/
    /*font-weight: 600;*/
    /*position: fixed;*/
    /*left: 50%;*/
    /*transform: translate(-50%);*/
    width: 100%;
    display:flex;
    flex-direction:column;
}
    footer .text-center {
        color: #000000;
        background: #ffffff;
    }

    footer a {
        color: #000000;
        /*margin: 3px;*/
        text-decoration: none;
    }

    footer p {
        /*margin-top: 5px;*/
    }

.encartImage {
    /*position: fixed;*/
    overflow: visible;
    width: 100%;
    bottom: 85px;
    z-index: -1;
}

.footerImage {
    /*position: relative;
    text-align: center;*/
    text-align: center;
    position: fixed;
    bottom: 0%;
    z-index: -99;
    align-self: center;
}

    .footerImage img {
        /*max-width: 500px;
        width: 100%;*/
        /*bottom: 20px;*/
        /*position: fixed;
        height: 220px;
        left: 50%;
        transform: translate(-50%);*/
        position: relative;
        height: 220px;
    }
/*gend footer style*/
#creditModal .content-code {
    padding: 0 20px;
}

.content-container{
    flex:1;
}

#creditModal h1 {
    text-align: center;
    margin: auto;
    font-size: 60px;
    font-family: ProximaExtrabold;
}

#creditModal h2 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
}

#creditModal p {
    font-size: 15px;
    color: #000;
}

#creditModal .btnCreditModal {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #000;
    border-radius: 10px;
    margin: 25px auto 0;
    cursor: pointer;
}

    #creditModal .btnCreditModal p {
        color: #fff;
    }

.titleAddPage {
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: #fff;
}

    .titleAddPage .btn {
        margin: 50px auto;
        width: 60%;
        max-width: 300px;
        border-radius: 10px;
    }

/*@media screen and (min-width: 640px) {
    header {
        height: 150px;
    }
}

@media screen and (min-width:1400px) {
    header {
        height: 200px;
    }
}*/

/* Fonts */

@font-face {
    font-family: "sansSerif";
    src: url("../fonts/Proxima_Nova_Regular.otf") format('opentype');
}

@font-face {
    font-family: "sansSerif";
    src: url("../fonts/Proxima_Nova_Bold.otf") format("opentype");
}

@font-face {
    font-family: "ProximaExtrabold";
    src: url("../fonts/Proxima_Nova_Extrabold.otf") format("opentype");
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounceAlpha {
    0% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }

    25% {
        opacity: 0;
        transform: translateX(10px) scale(0.9);
    }

    26% {
        opacity: 0;
        transform: translateX(-10px) scale(0.9);
    }

    55% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

@keyframes scale {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes backdrop {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logo {
    display: flex;
    justify-content: center;
    margin: 15px auto;
}

.logo__item {
    width: 100%;
    max-width: 500px;
    margin: 0 15px;
}

.logo__item--little {
    max-width: 70px;
}

.medium {
    font-weight: 600;
}

.small {
    font-weight: 400;
}

.big {
    line-height: 25px;
    font-size: large;
    font-weight: 900;
    font-family: 'Proxima Nova Regular';
}

.bigger {
    font-size: x-large;
    font-weight: 900;
}

.margin-15 {
    margin: 15px;
}

.line-height-1 {
    line-height: 17px;
}

.imgBasPage {
    text-align: center;
}

    .imgBasPage img {
        max-width: 300px;
    }

.borderWhite {
    border: 2px solid #fff;
}

.noBorder {
    border: 0px solid #fff;
}

.borderGrey {
    border: 2px solid grey;
}

/* Connection page */
.flexLogin {
    display: flex;
    flex-direction: column;
}

    .flexLogin .btnMain, .flexLogin .btnMain2 {
        text-align: center;
        width: 90%;
        max-width: 250px;
        border-radius: 10px;
        font-size: 15px;
        padding: 15px;
        margin: 5px auto;
    }

.btnMain p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    font-family: 'Proxima Nova Bold';
}

#loginForm {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: auto;
    width: 95%;
    max-width: 800px;
    border-radius: 20px;
    padding: 10px 0;
}

    #loginForm h1 {
        word-spacing: 0px;
        font-size: 1.5em;
        font-weight: 900;
        text-align: center;
        color: #6f4e44;
        margin-top: 10px;
    }

.divTextbox {
    margin: 10px 25px;
    width: 100%;
    text-align: center;
}

#textGameEnd {
    margin-top: 20px !important;
    margin: 25px auto;
    text-align: center;
    color: #fff;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1;
}

.mt-2 {
    margin-top: 20px;
}

#MainContent_tbCode, #MainContent_tbNumCarte, #MainContent_tbNaissance {
    width: 100%;
}

#MainContent {
    z-index: 2;
}

.tbInfo {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

    .tbInfo .textErrorCode {
        width: 100%;
        margin: 20px auto 10px;
        color: #fff;
    }

    .tbInfo .textbox-container {
        position: relative;
        width: 100%;
        max-width: 80%;
        margin-left: 22px;
    }

    .tbInfo i {
        position: absolute;
        cursor: pointer;
        transform: translate(-30px, 10px);
    }

.btnLoginModal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.link-connection {
    width: 100%;
    text-align: center;
    padding: 15px 0;
}

    .link-connection p {
        margin: 5px auto;
    }

        .link-connection p a {
            color: #fff;
            font-size: 0.9em;
        }

#codeModal .content-code, #fidModal .content-code {
    padding: 0 30px;
}

    #codeModal .content-code > h1, #fidModal .content-code > h1 {
        text-align: center;
        margin-bottom: 20px;
        font-size: clamp(20px, 4vw, 35px);
    }

    #codeModal .content-code p, #fidModal .content-code p {
        font-size: clamp(14px, 3vw, 20px);
    }

    #codeModal .content-code .pictoModal, #fidModal .content-code .pictoModal {
        display: block;
        width: 80px;
        margin: auto;
    }

    #codeModal .content-code li, #fidModal .content-code li {
        margin-bottom: 10px;
        font-size: clamp(14px, 3vw, 20px);
    }

.li-img {
    list-style: none;
}

    .li-img img {
        display: block;
        width: 150px;
        margin: auto;
    }

#infosModal a {
    color: black;
    display: block;
    margin: 20px auto;
}

#infosModal .content-code {
    text-align: center;
}

    #infosModal .content-code img {
        width: 100px;
        top: -30px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

#infosModal .title-infos {
    position: relative;
    margin-top: 30px;
    z-index: 10;
    padding: 0;
}

    #infosModal .title-infos p {
        background: #005AC6;
        padding: 15px;
    }


#codeModal .content-code a {
    text-decoration: none;
    color: #E5007D;
}

    #codeModal .content-code a:hover {
        text-decoration: underline;
    }

#codeModal .content-code span, #fidModal .content-code span {
    font-weight: 800;
}

.content-code .btnMain, content-code .btnMain2 {
    width: auto;
}

#not-activated {
    text-align: center;
    margin: 30px auto 10px;
}

.champs-obligatoire {
    color: #fff;
    width: fit-content;
    position: relative;
    left: 100%;
    transform: translateX(-130%);
    font-size: 12px;
}
/* END Connection page */


.btnMain, .btnSecondary {
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none; /*For Chrome*/
    -moz-appearance: none; /*For Mozilla*/
    appearance: none;
    user-select: none;
    max-width: 250px;
    margin: auto;
}

.btnMain {
    background: var(--secondary-color);
    color: #ffffff;
    padding: 12px;
    /*border: solid 3px #fff;*/
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);*/
}

    .btnMain p a {
        color: #ffffff;
        text-decoration: none;
    }

    .btnMain a {
        color: #ffffff;
        text-decoration: none;
    }

.btnSecondary {
    background: #c3c5cf;
    color: #fff;
    border: 2px solid #c3c5cf;
}

.btn-optin {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.text-reglement {
    font-size: 0.8em;
    margin: 10px 0px;
}

    .text-reglement a {
        color: #fff;
    }

.noEventActive {
    padding: 10px;
    font-size: 1.2em;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    text-align: center;
    font-weight: 700;
}

.whiteContainerNoEventActive {
    border-radius: 7px;
    margin: 10px;
    background: #fff;
    padding: 10px;
    font-family: 'Proxima Nova Bold'
}

    .whiteContainerNoEventActive .date {
        max-width: 200px;
        /*color: #fff;*/
        width: 100%;
        padding: 2px;
        left: 50%;
        position: relative;
        transform: translateX(-50%)
    }

.noEventActive .link {
    font-size: 0.85rem;
    font-family: 'Proxima Nova Regular';
    font-weight:400;
}

    .noEventActive .link a {
        font-size: 0.85rem;
        font-family: 'Proxima Nova Regular';
    }

.info_Inscription {
    display: flex;
    max-width: 400px;
    margin: 10px auto;
}

.sendchoice {
    max-width: 500px;
    text-align: center;
    display: flex;
    margin: 25px auto;
}

    .sendchoice .radioButtons {
        width: 100%;
        margin: 20px auto;
        font-size: 18px;
    }


    .sendchoice .titre {
        font-weight: 900;
        font-size: 20px;
        background: var(--brown);
        color: #fff;
        padding: 10px;
    }

    .sendchoice #MainContent_helloName {
        margin-bottom: 10px;
    }

.contactTbx {
    margin: 20px;
}

    .contactTbx p {
        color: #ffffff;
        width: fit-content;
        position: relative;
        left: 100%;
        transform: translateX(-125%);
        font-size: 12px;
    }

.sendchoice .radioButtons label {
    margin-left: 5px;
}

.sendchoice .radioButtons input {
    margin-left: 10px;
}

.annonceLogin {
    font-size: 1.2em;
    font-family: 'Proxima Nova Bold';
}

    .annonceLogin .VeryBig {
        /*width: max-content;*/
        margin: auto;
        font-weight: 900;
        font-size: 30px;
        font-family: 'Proxima Nova Extrabold';
    }

    .annonceLogin .inverseTitle {
        background: #fff;
        color: var(--brown);
        padding: 0px 10px;
        width: fit-content;
        margin: 0 auto;
        height: 35px;
    }

    .annonceLogin .detail {
        font-weight: 100;
        font-size: 12px;
    }

@media screen and (max-width:420px) {
    .annonceLogin .VeryBig {
        font-size: 25px;
    }
}

.white-border {
    border: 2px solid #fff;
}

.whiteClr {
    color: #fff;
}
