:root {
    --height: 1000px;
    --width: 1000px;
}

html {
    /*background: rgba(91, 161, 124, 0.75); version officielle */
    background: rgba(151, 206, 228, 0.9); /* version de test */
    /*position: fixed;
    top:0;
    left:0;
    width: var(--width);
    height: var(--height);
    overflow: hidden;*/
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 200;
    src: local('Source Sans Pro ExtraLight'), local('SourceSansPro-ExtraLight'), url(font1.ttf) format('truetype');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(font2.ttf) format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

body {
    /*position: relative;
    top: 0;
    left: 0;
    width: var(--width);
    height: var(--height);*/
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    font-weight: 600;
    overflow: hidden;
    /*display: flex;*/
}


body ::-webkit-input-placeholder {
    /* WebKit browsers */
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    font-weight: 300;
}

body :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    opacity: 1;
    font-weight: 300;
}

body ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    opacity: 1;
    font-weight: 300;
}

body :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    font-weight: 300;
}

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

#logo {
    position: relative;
    top: 10px;
    width: 200px;
    animation-name: logo_key;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    z-index: 2;
}

#logoN {
    position: relative;
    top: 10px;
    left: 0;
    width: 120px;
    animation-name: logo_key;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    z-index: 2;
}

@keyframes logo_key {
    0% {
        opacity: 0;
        /*width: 500px;*/
        top: 400px;
    }
    50% {
        opacity: 20%;
    }

    100% {
        opacity: 90%;
        /*width: 180px;*/
        top: 10px;
    }
}


.wrapper {
    /*background: rgba(91, 161, 124, 0.5);*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*margin-top: -25%;*/
    overflow: hidden;
}

.wrapper1 {
    position: absolute;
    top: 31%;
    left: 0;
    width: 100%;
    /*height: 500px;*/
    margin-top: -120px;
    overflow: hidden;

}

.wrapper.form-success .container h1 {
    -webkit-transform: translateY(85px);
    transform: translateY(85px);
}

.container {
    position: absolute;
    top: calc(30% - 225px);
    left: calc(50% - 200px);
    width: 400px;
    /*max-width: 600px;*/
    /*margin: 0 auto;*/
    padding: 20px 0;
    height: 500px;
    text-align: center;
}

.container1 {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px 0;
    /*height: 450px;*/
    text-align: center;

}

.container h1 {
    font-size: 40px;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    font-weight: 200;
}

form {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

form input, form textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;

    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.2);

    border-radius: 3px;
    padding: 10px 15px;
    margin: 10px auto 10px auto;
    display: block;
    text-align: center;
    font-size: 18px;
    color: #4996e1;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    font-weight: 300;
}

form input {
    height: 30px;
    width: 250px;
}

form textarea {
    height: 60px;
    width: 100%;
    font-size: 16px;
    resize: vertical;
}

#theFile {
    height: 40px;
}

form input:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

form input:focus {
    background-color: white;
    /*width: 300px;*/
    color: #094083;
}

form button, #theB {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    background-color: white;
    border: 0;
    padding: 10px 15px;
    color: #094083;
    border-radius: 3px;
    width: 250px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
}

form button:hover, #theB:hover {
    background-color: #f5f7f9;
}


#tdHeaderL {
    width: 25%;
}

#tdHeaderR {
    text-align: center;
    width: 75%;
}

/*************************************************/


form .inputN {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
    /*width: 400px;*/
    border-radius: 3px;
    padding: 10px 15px;
    margin: 0 auto 10px auto;
    display: block;
    text-align: center;
    font-size: 18px;
    color: white;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    font-weight: 300;
}

form .inputN1 {
    font-size: 14px;
    width: 100%;
}

form .inputN2 {
    font-size: 14px;
    width: 100%;
}

form .inputN3 {
    font-size: 14px;
    width: 100%;
}

form .inputN1:focus {
    background-color: white;
    width: 100%;
    color: #53e3a6;
}

form .inputN2:focus {
    background-color: white;
    width: 100%;
    color: #53e3a6;
}

form .inputN3:focus {
    background-color: white;
    width: 100%;
    color: #53e3a6;
}

.spanA {
    color: #2c2626;
    font-family: Geneva;
    font-weight: 400;
}

table {
    width: 100%;
    /*background-color: rgba(15,95,95,1);*/
}

tr {
    /*height: 30px;*/
    overflow: hidden;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.td1 {
    width: 100%;
}

.td2 {
    width: 50%;
}

.td3 {
    width: 33%;
}

.td4 {
    width: 25%;
}

.smallButton {
    position: relative;
    /*background-color: #1c3b1c;*/
    top: -5px;
    width: 10px;
    height: 10px;
    text-align: center;

}

#addT {
    /*background-color: #0e5f5d;*/
    /*height: 25px;*/
}

.spanX {
    color: #2c2626;
    font-family: sans-serif;
    font-size: 24px;
}

td img {
    width: 16px;
    opacity: 75%;
}

#selectedField {
    width: 75%;
    color: #77263d;
}

#unselectedField {
    width: 25%;
}


/****************************************************/

#theFile::-webkit-file-upload-button {
    /*visibility: hidden;*/
}

#theFile::before {
    /*content: 'Cliquer ici pour sélectionnez votre RIB';*/
    background: rgba(176, 205, 190, 0.75);
    border: 1px solid #43951c;
    font-weight: 700;
    font-size: 12pt;
    color: #2d602d;
}

.custom-file-input {

}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: 'Cliquer ici pour sélectionnez votre RIB';
    display: inline-block;
    background: rgba(176, 205, 190, 0.75);
    border: 1px solid #43951c;
    border-radius: 3px;
    padding: 0;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    /*text-shadow: 1px 1px #fff;*/
    font-weight: 700;
    font-size: 12pt;
    color: #2d602d;
    overflow: hidden;
}

.custom-file-input:hover::before {
    border-color: #374c34;
}

.custom-file-input:active::before {
    background: -webkit-linear-gradient(0deg, #e3e3e3, #fdfafa);
/ / background: -webkit-linear-gradient(top, #e3e3e3, #fdfafa);
}


/***** BUBBLES *****/
.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-bubbles li {
    position: absolute;
    list-style: none;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /*background-color: rgba(255, 255, 255, 0.15);*/
    background: radial-gradient(circle at 100px 100px, rgba(243, 247, 243, 0.1), rgba(73, 150, 225, 0.2));
    bottom: -10%;
    -webkit-animation: square 30s infinite;
    animation: square 30s infinite;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
    left: 24%;
}

.bg-bubbles li:nth-child(2) {
    left: 28%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 12s;
    animation-duration: 12s;
}

.bg-bubbles li:nth-child(3) {
    left: 33%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
    left: 44%;
    width: 40px;
    height: 40px;
    -webkit-animation-duration: 18s;
    animation-duration: 18s;
    /*background-color: rgba(255, 255, 255, 0.25);*/
}

.bg-bubbles li:nth-child(5) {
    left: 55%;
}

.bg-bubbles li:nth-child(6) {
    left: 65%;
    width: 60px;
    height: 60px;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    /*background-color: rgba(255, 255, 255, 0.2);*/
}

.bg-bubbles li:nth-child(7) {
    left: 42%;
    width: 80px;
    height: 80px;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
    left: 58%;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}

.bg-bubbles li:nth-child(9) {
    left: 28%;
    width: 10px;
    height: 10px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    /*background-color: rgba(255, 255, 255, 0.3);*/
}

.bg-bubbles li:nth-child(10) {
    left: 85%;
    width: 80px;
    height: 60px;
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}

.bg-bubbles li:nth-child(11) {
    left: 38%;
    width: 45px;
    height: 45px;
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

@-webkit-keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-700px) rotate(600deg);
        transform: translateY(-700px) rotate(600deg);
    }
}

@keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-700px) rotate(600deg);
        transform: translateY(-700px) rotate(600deg);
    }
}

#td_out_img {
    width: 30%;

}

#td_out_span {
    text-align: center;
    font-size: 20px;
    width: 70%;
}

#theD, #theE {
    margin: 0;
    padding: 0;
    font-size: 14px;
    height: 45px;
    color: rgba(56, 51, 51, 0.74);
}

#welcome {
    font-size: 30px;
}

.space1 {
    height: 10px;
}

#titleWin {
    font-size: 2.5em;
}

#login, #password {
    font-size: 1.4em;
    color: #094083;
}

#login-button {
    font-size: 1.4em;
    color: #094083;
}

#login-button:hover {
    background-color: #418ed8;
    border: 1px solid #fbfbfb;
    color: white;
    font-weight: 200;
}

#theC:hover {
    background-color: #418ed8;
    border: 1px solid #fbfbfb;
    color: white;
    font-weight: 200;
}





/**************************BEPREP*****************************/
.elementor-392 .elementor-element.elementor-element-96fa144 {
    --display: flex;
    --flex-direction: column;
    --container-widget-width: 100%;
    --container-widget-height: initial;
    --container-widget-flex-grow: 0;
    --container-widget-align-self: initial;
    --flex-wrap-mobile: wrap;
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher > .jet-switcher__content-wrapper {
    background-color: #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0px 0px 30px -5px rgba(0, 0, 0, 0.5);
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher > .jet-switcher__control-wrapper > .jet-switcher__control-instance {
    width: 300px;
    height: 60px;
    box-shadow: 0px 0px 30px -5px rgba(0, 0, 0, 0.5);
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher > .jet-switcher__control-wrapper {
    margin: 0px 0px 050px 0px;
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher > .jet-switcher__control-wrapper > .jet-switcher__control-instance .jet-switcher__control-handler span {
    margin: 5px;
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher > .jet-switcher__control-wrapper .jet-switcher__label-text {
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-weight: var(--e-global-typography-accent-font-weight);
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher.jet-switcher--disable > .jet-switcher__control-wrapper .jet-switcher__control-instance {
    background-color: #EDEDFF;
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher.jet-switcher--disable > .jet-switcher__control-wrapper .jet-switcher__control-handler span {
    background-color: #517AB6;
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher.jet-switcher--enable > .jet-switcher__control-wrapper .jet-switcher__control-instance {
    background-color: #EDEDFF;
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher.jet-switcher--enable > .jet-switcher__control-wrapper .jet-switcher__control-handler span {
    background-color: #517AB6;
}

.elementor-392 .elementor-element.elementor-element-ca66b04 .jet-switcher > .jet-switcher__content-wrapper > .jet-switcher__content {
    padding: 10px 10px 10px 10px;
}

.elementor-392 .elementor-element.elementor-element-5fdcce8 {
    --display: flex;
    --flex-direction: column;
    --container-widget-width: 100%;
    --container-widget-height: initial;
    --container-widget-flex-grow: 0;
    --container-widget-align-self: initial;
    --flex-wrap-mobile: wrap;
}

.jet-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items:stretch
}

.jet-switcher__control-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items:center
}

.jet-switcher__control-instance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    background-color: #f7f7fb;
    border-radius: 50px;
    -webkit-transition: background-color .3s cubic-bezier(0.44, 0.95, 0.57, 0.97);
    transition:background-color .3s cubic-bezier(0.44, 0.95, 0.57, 0.97)
}

.jet-switcher__control-handler {
    position: absolute;
    border-radius: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    top: 0;
    z-index:1
}

.jet-switcher__control-handler span {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 3px;
    -webkit-transition: all .3s cubic-bezier(0.44, 0.95, 0.57, 0.97);
    transition: all .3s cubic-bezier(0.44, 0.95, 0.57, 0.97);
    border-radius:inherit
}

.jet-switcher__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    pointer-events: none;
    z-index: 2;
    text-align: center;
    -webkit-transition: all .3s cubic-bezier(0.44, 0.95, 0.57, 0.97);
    transition:all .3s cubic-bezier(0.44, 0.95, 0.57, 0.97)
}

.jet-switcher__control:focus-visible {
    outline:auto
}

.jet-switcher__label-text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select:none
}

.jet-switcher__content-wrapper {
    width: 100%;
    position: relative;
    -webkit-transition: height .25s cubic-bezier(0.44, 0.96, 0.5, 0.98);
    transition: height .25s cubic-bezier(0.44, 0.96, 0.5, 0.98);
    overflow:hidden
}

.jet-switcher__content {
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    pointer-events:none
}

.jet-switcher__content > .elementor > .elementor-inner {
    margin:0
}

.jet-switcher__content.active-content {
    position: relative;
    pointer-events: auto;
    opacity: 1;
    z-index:1
}
/**************************BEPREP*****************************/