#conteneur-formations
{
display:flex;
justify-content:space-around;
flex-flow: row wrap;
width:100%;
margin-top:20px;
font-weight:normal;
}


.contenant-formation-detail
{
width:550px;
border:ridge 1px black;
margin-bottom:35px;	
cursor:pointer;
-webkit-backface-visibility:hidden;	 	 
}


.conteneur_inputP
{
height:51px;
}


.divnomprenom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}



	.inputPdiv {
    color: #5f6368;
    background-color: #fff;

    opacity: 1;
    margin-left: 4px;
    padding: 0 4px 0 4px;
    -webkit-transform: translateY(-26px);
    -ms-transform: translateY(-26px);
    transform: translateY(-26px);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    pointer-events: none;
    z-index: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}













.inputP {
    height: 30px;
    color: black;
    padding: 0 10px;
    z-index: 1;
    position: static;
    font-size: revert;
    width: 82%;
    font-weight: 300;
}
.inputP:focus::-webkit-input-placeholder {
    opacity: 0;
}
.inputP:focus::-moz-placeholder {
    opacity: 0;
}
.inputP:focus:-ms-input-placeholder {
    opacity: 0;
}
.inputP:focus::-ms-input-placeholder {
    opacity: 0;
}
.inputP:focus::placeholder {
    opacity: 0;
}

.inputP:focus,
.conteneur_inputP textarea:focus {
    outline-color: black;
}

.inputP:focus + .inputPdiv {
	background-color:white;
    -webkit-transform: translateY(-42px);
    -ms-transform: translateY(-42px);
    transform: translateY(-42px);
    font-size: 12px;
    -webkit-transition: font-size 0.5s ease, -webkit-transform 0.5s ease;
    transition: font-size 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease, font-size 0.5s ease;
    transition: transform 0.5s ease, font-size 0.5s ease;
    transition: transform 0.5s ease, font-size 0.5s ease,
        -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, font-size 0.5s ease,
        -webkit-transform 0.5s ease;
}
.conteneur_inputP textarea {
    width: 100%;
    resize: none;
    font-size: 13px;
    height: 60px;
    font-weight: 300;
}
.inputTextarea {
    color: #5f6368;
    background-color: #fff;

    opacity: 1;
    margin-left: 4px;
    padding: 0 4px 0 4px;
    -webkit-transform: translateY(-48px);
    -ms-transform: translateY(-48px);
    transform: translateY(-48px);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    pointer-events: none;
    z-index: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.conteneur_inputP textarea:focus + .inputTextarea {
    -webkit-transform: translateY(-77px);
    -ms-transform: translateY(-77px);
    transform: translateY(-77px);
    font-size: 12px;
    -webkit-transition: font-size 0.5s ease, -webkit-transform 0.5s ease;
    transition: font-size 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease, font-size 0.5s ease;
    transition: transform 0.5s ease, font-size 0.5s ease;
    transition: transform 0.5s ease, font-size 0.5s ease,
        -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, font-size 0.5s ease,
        -webkit-transform 0.5s ease;
}







/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
}
  .custom-select-wrapper select {
    display: none;
  }
  .custom-select {
    position: relative;
    display: inline-block;
  }
    .custom-select-trigger {
      position: relative;
      display: block;
      width: 100%;
      padding: 0 84px 0 22px;
      font-size: 15px;
      font-weight: 300;
      color: #fff;
      line-height: 45px;
      background: #5c9cd8;
      border-radius: 4px;
      cursor: pointer;
    }
      .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px; height: 10px;
        top: 50%; right: 25px;
        margin-top: -3px;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
      }
      .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
      }
  .custom-options {
    position: absolute;
    display: block;
    top: 100%; left: 0; right: 0;
    min-width: 100%;
    margin: 15px 0;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0,0,0,.07);
    background: #fff;
    transition: all .4s ease-in-out;
    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
  }
  .custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }
    .custom-options:before {
      position: absolute;
      display: block;
      content: '';
      bottom: 100%; right: 25px;
      width: 7px; height: 7px;
      margin-bottom: -4px;
      border-top: 1px solid #b5b5b5;
      border-left: 1px solid #b5b5b5;
      background: #fff;
      transform: rotate(45deg);
      transition: all .4s ease-in-out;
    }
    .option-hover:before {
      background: #f9f9f9;
    }
    .custom-option {
      position: relative;
      display: block;
      padding: 0 22px;
      border-bottom: 1px solid #b5b5b5;
      font-size: 14px;
      font-weight: 600;
      color: #b5b5b5;
      line-height: 47px;
      cursor: pointer;
      transition: all .4s ease-in-out;
    }
    .custom-option:first-of-type {
      border-radius: 4px 4px 0 0;
    }
    .custom-option:last-of-type {
      border-bottom: 0;
      border-radius: 0 0 4px 4px;
    }
    .custom-option:hover,
    .custom-option.selection {
      background: #f9f9f9;
    }




