/* PARTIE GAUCHE */

#leftContainer::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-image: url(../IMG/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: contain;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

#leftContainer {
    height: 100vh;
    position: fixed;
}

#logo {
    margin-top: 3%;
}

#logo img {
    width: 50%;
    height: auto;
}

.video {
    min-height: 500px;
}

#leftText {
    position: absolute;
    width: 100%;
    top: 62vh;
    left: 0;
    text-align: center;
    background-color: #009787d5;
}

#leftMentions {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    background-color: #1c283366;
    padding: 2%;
}

.slashMentions {
    color: #009787;
    font-size: 120%;
}

.arrows {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: 100px;
    display: none;
}

.arrows path {
    stroke: #ffffff;
    fill: transparent;
    stroke-width: 3px;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
    cursor: pointer;
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    80% {
        opacity: 1;
        transform: translateY(50px)
    }

    100% {
        opacity: 0;
        transform: translateY(50px)
    }
}

@-webkit-keyframes arrow {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    80% {
        opacity: 1;
        transform: translateY(50px)
    }

    100% {
        opacity: 0;
        transform: translateY(50px)
    }
}

.arrows path.a1 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s;
    /* Safari and Chrome */
}

/* PARTIE DROITE */
#rightContainer {
    padding: 0 5% 5% 5%;
    margin-left: 50%;
}

#rightContainer .row {
    margin-bottom: 10px;
}

.donnees {
    margin-top: 3rem;
}

#mentionsText {
    margin-top: 3rem;
}

/* QUESTION */
.question {
    display: grid;
    margin-bottom: 5%;
}

.inputradio {
    width: 100%;
    float: left;
    text-align: center;
    background: #ededed94;
    font-size: 18px;
    color: #666666;
    padding: 1rem 0rem 1rem 1rem;
    margin: 0;
}

.actif {
    background: #009787;
    color: white;
}

.actifTrue {
    background: #6AC259;
    color: white;
}

.actifFalse {
    background: #F05228;
    color: white;
}

/* FORM */
.hidden {
    display: none;
}

.titleRight {
    width: 100%;
    display: block;
    font-size: 20px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 15px;
    margin: 5% 0 5% 0;
}

.titleRightList {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    color: #333333;
    line-height: 1.2;
    padding-bottom: 15px;
}

#ajoutParticipant, #suppressionParticipant{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7em 1.5em;
    border-radius: 2em;
    transition-duration: 0.5s;
    color: white;
    background-color: #555555;
}

#ajoutParticipant:hover, #suppressionParticipant:hover{
    cursor: pointer;
    background-color: #333333;
}

.label-inputform {
    font-size: 15px;
    color: #555555;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    float: left;
    text-align: center;
    min-height: 55px;
    border: 1px solid #e6e6e6;
    padding: 10px 0;
    margin-bottom: 0;
}

.inputform {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #ededed94;
    font-size: 18px;
    color: #666666;
    line-height: 1.2;
    padding: 1rem 1rem 1rem;
    border: 1px solid #e6e6e6;
}

.inputBox {
    background: #ededed94;
    font-size: 18px;
    color: #666666;
    line-height: 1.2;
    padding: 1rem 1rem 1rem;
    border: 1px solid #e6e6e6;
}

li.parsley-required {
    margin: 1rem;
    width: 100%;
    color: #ff0033;
    display: inline-block;
}

.checkbox {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
}

.textCheckbox {
    font-size: 1em;
    margin: 0;
    overflow: hidden;
}

.halfLeft {
    padding-right: 2.5%;
}

.halfRight {
    padding-left: 2.5%;
}

/*** CHECKBOXES ***/
input[type=checkbox] {
    zoom: 1.5;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    position: relative;
    outline: none;
    background-color: #f8fcfb;
    vertical-align: middle;
    margin-right: 3px;
    border: 0.5px solid #818080;
}

input[type=checkbox]:hover {
    cursor: pointer;
}

input[type='checkbox']:checked {
    background-color: #009787;
}

input[type='checkbox']:checked:after {
    content: "";
    /* this is your text. You can also use UTF-8 character codes as I do here */
    width: 15px;
    height: 15px;
    position: absolute;
    font-size: 20px;
    background-image: url('../../assets/IMG/check.png');
    background-size: cover;
    background-position: left;
    color: #017b8f;
    ;
    display: inline-block;
    visibility: visible;
}

input[type="checkbox"]:focus {
    border: 0.5px solid #14bbb0;
}

/************* RADIOS ***********************/
input[type=radio] {
    zoom: 1.5;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    position: relative;
    outline: none;
    background-color: #f8fcfb;
    vertical-align: middle;
    margin-right: 5px;
    border: 0.5px solid #818080;
    border-radius: 50%;
}

input[type=radio]:hover {
    cursor: pointer;
}

input[type='radio']:checked {
    background-color: #009787;
}

input[type='radio']:checked:after {
    content: "";
    /* this is your text. You can also use UTF-8 character codes as I do here */
    width: 13px;
    height: 13px;
    position: absolute;
    font-size: 20px;
    background-size: cover;
    background-position: center;
    color: #017b8f;
    display: inline-block;
    visibility: visible;
}

input[type="radio"]:focus {
    border: 0.5px solid #14bbb0;
}

.answer {
    margin-bottom: 10%;
}

.btnValidForm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #009787;
    border: none;
    text-decoration: none;
}

.btnValidForm:hover {
    background-color: #005e54;
    text-decoration: none;
}

svg.btn_ml_on,
svg.btn_ml_off,
svg.btn_ml {
    height: 15px;
    position: relative;
    top: 2px;
}

.btn-3 {
    display: block;
    background: #ffffff;
    color: #323232;
    border: solid #323232;
    -webkit-transition: none;
    -moz-transition: none;
    width: 60%;
    text-align: center;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 5px;
}

.spinner-border {
    width: 80px;
    height: 80px;
    margin-left: 43%;
    margin-top: 5%;
}

/* TEXT */
@font-face {
    font-family: Montserrat-Regular;
    src: url('../../assets/FONTS/Montserrat/Montserrat-Light.ttf');
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url('../../assets/FONTS/Montserrat/Montserrat-SemiBold.ttf');
}

@font-face {
    font-family: 'MinionPro-Regular';
    src: url('../../assets/FONTS/MinionPro-Regular.ttf');
}

@font-face {
    font-family: 'Korolev Bold';
    src: url('../../assets/FONTS/Korolev-Bold.ttf');
}

@font-face {
    font-family: Korolev Medium;
    src: url('../../assets/FONTS/Korolev-Medium.ttf');
}

@font-face {
    font-family: 'Korolev Light';
    src: url('../../assets/FONTS/Korolev-Light.ttf');
}

body,
html {
    font-family: 'Korolev Medium';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

#logo im h2 {
    color: white;
    text-transform: uppercase;
    font-size: 2.5rem;
    text-align: center;
}

h3 {
    color: white;
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
}

h4 {
    color: white;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-align: center;
}

h5 {
    color: white;
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
}

p {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

#leftMentions p,
#leftMention a {
    font-size: 15px;
    text-decoration: none;
    line-height: 1.6;
    color: #fff;
}

.link {
    text-decoration: none;
    color: white;
}

.link:hover {
    transition-duration: 0.5s;
    color: #007bff;
    text-decoration: none;
}

@media (max-width: 1200px) {
    #logo img {
        width: 70%;
    }
}

@media (max-width: 768px) {
    #leftContainer {
        height: 100vh;
        position: relative;
    }

    #rightContainer {
        padding: 5%;
        margin-left: 0%;
    }

    #logo img {
        width: 90%;
    }

    .arrows {
        display: block;
    }

    h2 {
        color: white;
        text-transform: uppercase;
        font-size: 2.1rem;
        text-align: center;
    }

    h3 {
        color: white;
        text-transform: uppercase;
        font-size: 1.6rem;
        text-align: center;
    }

    h4 {
        color: white;
        text-transform: uppercase;
        font-size: 1.1rem;
        text-align: center;
    }

    h5 {
        color: white;
        text-transform: uppercase;
        font-size: 0.4rem;
        text-align: center;
    }

    .video {
        min-height: 300px;
    }
}