

/**
=======================================================================================================================
=======================================================================================================================
INPUT EFFECT
=======================================================================================================================
=======================================================================================================================
**/

*::-ms-clear {
         display: none;
}

::--ms-reveal {
      display: none;
}

#account_connection .input-wrap-effect{
    margin-top: 0;
}
.input-wrap-effect {
    position: relative;
    margin-top: 5px;
}

.input-wrap-effect .ok-or-no {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;  
    
    position: absolute;
    right: 20px;
    bottom: 0px;
    opacity: 0;
    pointer-events: none;
    top: 0;
    margin: auto;
    z-index: 17;
}

.input-wrap-effect input ,
.input-wrap-effect textarea {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;  
    
    text-indent: 0%;
    opacity: 1;
}

.input-wrap-effect.selected input ,
.input-wrap-effect.selected textarea {
    text-indent: 100%;
    opacity: 0;
}

.input-wrap-effect input.nofirst ,
.input-wrap-effect textarea.nofirst {
        -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -ms-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;    
    
    text-indent: 0;
    opacity: 1;
}

.input-wrap-effect .lines {
    position: absolute;
    background: #96C11F;
    z-index: 16;
    
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;  
}

.input-wrap-effect .line-up {
    top:0;
    height: 1px;
    width: 0%;
}


.input-wrap-effect.selected .line-up {
    width: 100%;
}

.input-wrap-effect .line-down {
    bottom:0;
    right:0;
    height: 1px;
    width: 0%;
}

.input-wrap-effect.selected .line-down {
    width: 100%;
}

.input-wrap-effect .line-left {
    left:0;
    bottom:0;
    height: 0%;
    width: 1px;
}

.input-wrap-effect.selected .line-left {
    height: 100%;
}

.input-wrap-effect .line-right {
    right:0;
    height: 0%;
    width: 1px;
}

.input-wrap-effect.selected .line-right {
    height: 100%;
}

.input-wrap-effect.selected .fake-cursor {
    height: 18px;
    background: black;
    width: 1px;
    position: absolute;
    left: 12px;
    z-index: 17;
    top: 7px;
    
    -webkit-animation: mymove 1s infinite; /* Safari 4.0 - 8.0 */
    animation: mymove 1s infinite;
}

.input-wrap-effect input.selected:not(.selectedWrong),
.input-wrap-effect select.selected:not(.selectedWrong),
.input-wrap-effect textarea.selected:not(.selectedWrong)  {
    border: 1px solid #076633 !important;
}

.input-wrap-effect input.selectedWrong ,
.input-wrap-effect textarea.selectedWrong {
    border: 1px solid red !important;
}

.input-wrap-effect.selected .fake-cursor.hidden,
.input.nofirst + .fake-cursor {
    display: none;
}

.input-wrap-effect .units {    
    position: absolute;
    height: 28px;
    line-height: 30px;
    right: 0;
    background: #33333373;
    width: 90px;
    padding-left: 10px;
    margin-right: 1px;
    margin-top: 1px;
    color: #000;
    z-index: 16;
    font-family: var(--font-regular);
    font-size: 14px;
}  

.input-wrap-effect.selected .units {    
    background: #94C11F;
    color: white;    
}   

.input-wrap-effect .seleft {
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; 
    
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 15px solid #C3C3C3;
    border-bottom: 10px solid transparent;
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 16;
    transform: rotateZ(0deg);
    pointer-events: none;	
}

.input-wrap-effect.selected .seleft {
	transform: rotateZ(-90deg);
    border-top: 10px solid transparent;
    border-right: 15px solid #94C11F;
    border-bottom: 10px solid transparent;   
}
    
/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
    0%   {opacity: 0;}
    25%  {opacity: 1;background: #88B724;}
    50%  {opacity: 0;}
    75% {opacity: 1;background: red;}
    100%  {opacity: 0;}
}

/* Standard syntax */
@keyframes mymove {
    0%   {opacity: 0;}
    25%  {opacity: 1;background: #88B724;}
    50%  {opacity: 0;}
    75% {opacity: 1;background: red;}
    100%  {opacity: 0;}
}

/**
=======================================================================================================================
=======================================================================================================================
BUTTON EFFECT
=======================================================================================================================
=======================================================================================================================
**/

.input-wrap-effect-hover {
    position: relative;
    cursor: pointer;
    box-shadow: inset 0 0 1px #c3c3c3;
    overflow: hidden;
}


.input-wrap-effect-hover .lines {
    position: absolute;
    background: #96C11F;
    z-index: 16;
    
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;  
}

.input-wrap-effect-hover .line-up {
    top:0;
    height: 1px;
    width: 0%;
}


.input-wrap-effect-hover:hover .line-up {
    width: 100%;
}

.input-wrap-effect-hover .line-down {
    bottom:0;
    right:0;
    height: 1px;
    width: 0%;
}

.input-wrap-effect-hover:hover .line-down {
    width: 100%;
}

.input-wrap-effect-hover .line-left {
    left:0;
    bottom:0;
    height: 0%;
    width: 1px;
}

.input-wrap-effect-hover:hover .line-left {
    height: 100%;
}

.input-wrap-effect-hover .line-right {
    right:0;
    height: 0%;
    width: 1px;
}

.input-wrap-effect-hover:hover .line-right {
    height: 100%;
}


.input-wrap-effect-hover .flash {
    height: 30px;
    background: #96C11F;
    width: 200px;
    position: absolute;
    transform: skewX(45deg);
    right: 150%;
    z-index:12;	    
    
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;  
    pointer-events: none;
}

.input-wrap-effect-hover:hover .flash {
    right: -50%;    
}

.input-wrap-effect-hover .flash-prez {
    height: 30px;
    background: #F1F1F1;
    width: 200px;
    position: absolute;
    transform: skewX(45deg);
    right: -50%; 
    z-index:11;   
    pointer-events: none;   
}
.w100 {
    width: 100%;
    float:left;
    padding: 10px;
    position:relative;
}

.w33 {
    width: 33.33%;
    float:left;
    padding: 10px;
    position:relative;
}
.w66 {
    width: 66.66%;
    float:left;
    padding: 10px;
    position:relative;
}

.w3 {
    width: 60%;
    float:left;
    padding: 10px;
    position:relative;
}

.w25 {
    width: 50%;
    float:left;
    padding: 10px;
    position:relative;
}

.w2 {
    width: 40%;
    float:left;
    padding: 10px;
    position:relative;
}

.w15 {
    width: 25%;
    float:left;
    padding: 10px;
    position:relative;
}

.w1 {
    width: 20%;
    float:left;
    padding: 10px;
    position:relative;
}

#content {
    clear:both;
    background:white;
    transition: fitler .3s ease;
}

body.menuactive #content {
    filter: blur(3px);
}

#content .c {
    min-height:500px;
    max-width: 1275px;
    padding: 0 10px;
    margin:auto;
}

h1 {    
    font-size:1.5em;
    padding:10px 0;
}

h2 {    
    font-size:1.3em;
    padding:7px 0;
}

h3 {
    font-size:1.1em;
    padding:5px 0;
}

ul.list {
    margin-top:10px;
    margin-bottom:10px;
}

ul.list li {
    list-style:disc;
    list-style-position:inside;
}

img {
    max-width: 100%;
    min-height: 1px;
}

a {
    color:#94c11f;
}

a:hover {
    text-decoration: underline;
}

a.disabled {
	background: #373737;
    text-decoration: none;
    pointer-events: none;
}

.gline {
  background: black; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(right, rgba(0,0,0,0), black , rgba(0,0,0,0)); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, rgba(0,0,0,0), black , rgba(0,0,0,0)); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, rgba(0,0,0,0), black , rgba(0,0,0,0)); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, rgba(0,0,0,0), black , rgba(0,0,0,0)); /* Standard syntax */
  height: 1px;
  width: 80%;
  padding: 0px !important;
  margin: 0px 10% !important;
  display: inline-block !important;
}

.gline2 {
    background: black;
    height: 1px;
    width: 98%;
    padding: 0px !important;
    margin: 2px 1% !important;
    display: inline-block !important;
}

/* **************************************************************************************************** */
/* TABLEAUX
/* **************************************************************************************************** */

table {
    width:100%;
    margin:10px 0;
}

table th , table td {
    text-align: center;
    border-collapse: collapse;
    padding:3px 10px;
    vertical-align: middle;
}

table th {
    background:#EEE;
}

table td {
}

table .th {
    display: none;
}

/* **************************************************************************************************** */
/* FORMULAIRES
/* **************************************************************************************************** */

.form {
}

.form > ul > li {
    padding-bottom: 7px;
    margin-bottom: 10px;
    border-bottom: 1px solid #B2B2B2;
}

.form > ul > li:last-child {
    border-bottom: none;
}

.form ul > li > label:first-child {
    display: inline-block;    
}

.form ul li .input {
    position: relative;
    font-family: "Mst Light";    
}

.form ul li .input.half {
    width:50%;
    float:left;
}

.form ul li .input.half {
    width:50%;
    float:left;
    padding-left:5px;
}

.form ul li .input.half.first {
    padding-left:0px;
    padding-right:5px;
}

.form ul li .input input, .form ul li .input textarea {
    display: block;
    padding:7px 10px;
    background:white;
    border:1px solid #ECECEC;
    border-radius: 2px;    
    -webkit-border-radius: 2px;    
    -moz-border-radius: 2px;    
    width:100%;
    background-position: 150% 50% !important;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2) inset;
    font-size:16px;
}

.form ul li .input .fa {
    position: absolute;
    right:3px;
    top:5px;
    font-size:25px;
    width:30px;
    text-align: center;

}

.bcolor  {
    padding:5px 10px;
    background:#076633;
    font-family: "Mst Black";
    text-transform: uppercase;
    color:white;
    display:block;
    cursor:pointer;
    font-size:14px;
    border:1px solid rgba(0,0,0,0);
    border-radius: 5px;
    transition: all 0.5s ease;
}

.bcolor:hover {
    background:#373737;
    text-decoration: none;
}

.bcolor.active , .form input[type=submit].active {
    background:#444;
}

.bcenter {
    text-align: center;
}

.bcolor {
    display: inline-block;
}

.bcolor_big {
    font-size: 20px;
    padding-left:30px;
    padding-right:30px;
}

.bcolor .fa {
    font-size:2em;
    display: inline-block;
    margin-left:2px;
    vertical-align: middle;
}

.submits {
    text-align: center;
}
.submits input[type=submit] {
    display: inline-block;
    margin-left:10px;
    margin-right:10px;
}

/* **************************************************************************************************** */
/* PAGINTATION
/* **************************************************************************************************** */

.pagination {
    float:right;
    margin-top:20px;
}

.pagination-item {
    display:block;
    padding:4px 7px;
    background:#DBDBDB;
    color:white;
    float:left;
    margin-right:3px;
    border-radius:15px;
}

.pagination-item.current , .pagination-item:hover {
    cursor:pointer;
    background:#706F6F;
}

/* **************************************************************************************************** */
/* INFOS BULLE
/* **************************************************************************************************** */

.bulle {
    background: rgba( 199 , 0 , 106 , 0.1 );
    border-bottom: 2px solid red;
    padding:10px;
    margin:auto;
    margin-bottom: 7px;
    margin-top: 3px;
    overflow:hidden;
}
.bulle.message {
    background: #a6f8b7;
    border: 1px solid #49f160;
    padding:10px;
    margin-top: 10px;
}
.bulle.errors {
    background: #f36767;
    border: 1px solid #f14343;
    padding:10px;
    margin-top: 10px;
    color:white;
}

/* **************************************************************************************************** */
/* S_SELECT
/* **************************************************************************************************** */

.sSelect {
    display:inline-block;
}

.sSelect .sSelectbar {
    padding:7px 10px;
    cursor:pointer;
    display: inline-block;
    padding-right:30px;
    max-width:200px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2) inset;
    font-size:16px;
    position: relative;
    background:white;
    color:#AAA;
}

.sSelect .sSelectbar:after {
    content:"";
    display: block;
    width:15px;
    height:20px;
    position: absolute;
    right:2px;
    top:3px;
    background: url("../images/elements/arrowselect.png") no-repeat;
}

.sSelect .sSelectUl {
    background:white;
    cursor:pointer;
    min-width:100%;
    border: 1px solid #CCCCCC;
    position: absolute;
    top:30px;
    left:0;
    max-height: 200px;
    overflow: auto;
}

.sSelect .sSelectUl li {
    padding:7px 10px;
    font-size:16px;
    border-bottom: 1px solid #EEEEEE;
}

.sSelect .sSelectUl li:first-child {
}

.sSelect .sSelectUl li:hover {
    background:#EEEEEE;
}

.sSelect .sSelectInput {
    background:white!important;
    width:100%!important;
    border:none!important;
    outline:none!important;
    padding:0!important;
}

/* **************************************************************************************************** */
/* BREADCRUM
/* **************************************************************************************************** */

.breadcrumb {
    margin:10px 0;
    color:#666;
    font-size: 1.2em;
}

@media screen and (max-width: 600px) {

    #content {
        margin:0;
        clear:both;
    }

    #conteneurAvis{
        display: none;
    }

}

#conteneurAvis{
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
}

.aucunAvis i.fa{
    color: #ccc !important;
}

.no_elements_found {
    font-family: var(--font-semi);
    font-size: var(--font-size-s);
    color: var(--color-second-1);
    border: 1px solid var(--color-second-1);
    border-radius: 3px;
    width: max-content;
    padding: 16px 84px 16px 126px;
    margin: 0 auto;
    display: flex !important;
    align-items: center;
    gap: calc(var(--inner-spacing) / 2);
}