

/*//////////////////////////////////////////////////////////////////
[ utility ]*/

/*==================================================================
[ Text ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.4;
  color: #999999;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.4;
  color: #00ad5f;
}

.txt3 {
  font-family: Poppins-Regular;
  font-size: 15px;
  line-height: 1.4;
  color: #00ad5f;
  text-transform: uppercase;
}

/*==================================================================
[ Size ]*/
.size1 {
  width: 355px;
  max-width: 100%;
}

.size2 {
  width: calc(100% - 43px);
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: transparent;
}

.wrap-login100 {
  width: 1170px;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;

}

/*==================================================================
[ login more ]*/
.login100-more {
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
    background: #b9cd00;
  border-radius: 10px;
}

.login100-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
/*  background: rgba(0,0,0,0.3);*/
}



/*==================================================================
[ Form ]*/

.login100-form {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 303px 65px 300px 65px;
}

.login100-form-title {
  font-family: Poppins-Regular;
  font-size: 20px;
  color: #555555;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;

  width: 100%;
  display: block;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border: 1px solid #e6e6e6;
}

.rs1-wrap-input100,
.rs2-wrap-input100 {
  width: 50%;
}

.rs2-wrap-input100 {
  border-left: none;
}


.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-family: Poppins-Regular;
  font-size: 18px;
  color: #666666;
  line-height: 1.2;
  padding: 0 25px;
}

input.input100 {
  height: 55px;
}

/*---------------------------------------------*/

.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid #00ad5f;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  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: 3px;
  background: #242424;

  font-family: Montserrat-Bold;
  font-size: 12px;
  color: #fff;
  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;
}

.login100-form-btn:hover {
  background: #333333;
}

#first-name,#user-pass,#wp-submit {
  border: none;
}



/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .login100-form {
    width: 60%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .login100-more {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .login100-form {
    width: 100%;
  }

  .login100-more {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .login100-form {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 150px;
  }

  .rs1-wrap-input100,
  .rs2-wrap-input100 {
    width: 100%;
  }

  .rs2-wrap-input100 {
    border-left: 1px solid #e6e6e6;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


#powerTip {
  background-color: #429bf7;
  width: 20%;
}


.pins_animation.ihotspot_pulse {
  border: 2px solid rgba(63, 154, 247, 0.7) !important;
  opacity: 0;
  -webkit-animation: pulsate 3s ease-out infinite;
  animation: pulsate 3s ease-out infinite;
  width: 20px!important;
  height: 20px!important;
  top: 45%;
  left: 45%;
  position: absolute;
  margin: -.35em auto auto -.4em;
}


span.num-ber_O {
  display: inline-block;
  padding: .1em .5em;
  border-radius: 5px;
  color: #fff;
  background: #3f9af7;
}


div#produit_speciaux {
  width: 100%;
}


h4:not(.war_) > svg {
  font-size: .7em!important;
  color: #4597a7;
}


h4:not(.war_) {
 padding-left: 1em;
}


.ex_head {
  flex-basis: 100%!important;
}


span.gestion_line {
  display: inline-block;
  padding: .5em 1em;
  background: #ddd;
  border-radius: 5px;
  color: #6b6b6b;
}

.p_line {
  display: inline-block;
  padding: .1em .8em;
  background: #ddd;
  border-radius: 5px;
  color: #595959;
  border: 1px solid #d7d7d7;
}


.container.mtzhndbll h2 {
  color: #003f8b!important;
}


.container.mtzhndbll .nav ul li.active a {
  color: #003f8b!important;
}

.container.mtzhndbll .info_word {
    color: #003f8b;
}

.info_word {
    position: relative;
}

.info_word:after{
    content: 'i';
    width: 3px;
    height: 3px;
    position: absolute;
    top: 0;
    right: -3px;
    font-size: .6em;
}


.stylus {
    box-shadow: 0 5px 20px 0 rgba(7,25,60,.1);
    padding: 1em;
    border-radius: 5px;
    border: 1px solid rgba(221, 221, 221, 0.62);
}

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

ul {
  list-style: none;
  padding: 0;
}
ul .inner {
  padding-left: 1em;
  overflow: hidden;
  display: none;
}
ul .inner.show {
  /*display: block;*/
}
ul li {
  margin: 0.5em 0;
}
.container.mtzhndbll ul li a.toggle {
  width: 100%;
  display: block;
  background: rgb(245, 245, 245);
  color: #fefefe;
  padding: 0.75em;
  transition: background 0.3s ease;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
}
.container.mtzhndbll ul li a.toggle:hover {
  background: rgba(227, 227, 227, 0.8);
  text-decoration: none!important;
}

.container.mtzhndbll ul li a.toggle:hover h2.page-header{
  color: #00337f !important;
}


.hero.text-center.col-md-12 {
  border-radius: 5px;
}


.page-header svg {
  font-size: 28px;
  margin-right: .1em;
}


.vbox-overlay {
    z-index: 99999999999;
}


#footer {
    padding: 1em 0;
    background: #ddd;
    position: relative;
    bottom: 0;
    width: 100%;
}


.liste_eqp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

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

.linkpreview {
    top: 0;
    opacity: 0;
    transition: .2s;
    position: absolute;
    left: 100%;
    min-height: 100%;
    width: 10rem;
    margin-left: 2rem;
    font-style: italic;
    display: flex;
    flex-direction: column;
    font-size: .8rem;
    padding: .8rem;

}

.container.mtzhndbll .linkpreview {
    border-left: 6px solid #ddd;
}


.linkpreview img {
    border-radius: 50%;
    width: 80%;
    margin-bottom: 1rem;
}
article p a {
    color: currentColor;
}

.linkpreview img {
    width: 100%;
}
a[href="#"]:hover {
    color: #2F8BCA;
}
a:hover + .linkpreview {
    opacity: 1;
}
@media all and (max-width: 1100px) {
    .linkpreview { display: none; }
}


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


header.hero_{
    margin: 0; padding: 2em 5em 4em; color: #efefef;
    overflow:hidden;
    position: relative;
}

header.hero_::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    height: 100%;
    width:100%;
    transform: skewY(-4deg);
    transform-origin: bottom left;
    z-index: -1;
}



/**************************** BCK COLOR HEADER *******************************/

header.hero_ h1, header.hero_ h3 {
  color: #fff;
}

.container.mtzhndbll header.hero_::after{
    background: #00337f;
}
.container.destamnvll header.hero_::before{
    background: #1b3053;
}


header.hero_::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    height: 100%;
    width:100%;
    transform: skewY(8deg);
    transform-origin: bottom right;
    z-index: -1;
}


header.hero_{
    display: flex;
    flex-flow: column nowrap;
  border-radius: 5px;
}
header.hero_ > h3 {align-self: flex-end;}


.mat_t > i {
  font-size: 16px;
}
.mat_t {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 33px;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  color: #006dd2;
  font-size: .8em;
}



/*#slider_revolution .alert-info {
  color: #b7bbc0!important;
  background-color: #2a2c2f!important;
  border-color: #2a2c2f!important;
}*/

#slider_revolution ul li:not(.fd) {
color: #b7bbc0;
}

#slider_revolution .info_li {
  background: #35373a;
  padding: .8em;
  border-radius: 5px;

}

#slider_revolution .info_li li{
  margin: 0;
  margin-bottom: .3em;
  color: #b7bbc0!important;
}

h3#slider_revolution_presentation, h3#slider_revolution_modifier {
  color: #000!important;
}

.dropdown-toggle::after{
  vertical-align: 0.5em;
}

.dropdown-menu {
  background-color: #3c3c3c;
}

.dropdown-menu > a {
  color: #fff;
  text-align: center;
  display: block;
}


.dropdown-menu > a:hover {
  background: #006dd2!important;
  text-decoration: none;
}

span.e {
  display: inline-block;
  padding: .1em .6em;
  margin-right: .2em;
  border-radius: 3px;
  background: #a36f04;
  color: #fff3cd;
}


.container.gismic .text-left.war_ {
  color: #f88c24;
}


.container.umih .text-left.war_ {
  color: #83446e;
}

.pre_s {
  padding-top: .1em !important;
}

/*.drag_element.tips.pulse {
  display: block;
  position: absolute;
  top: 45%;
  left: 45%;
  width: 20px;
  height: 20px;
  margin: -1em auto auto -1em;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  border-radius: 50%;
  border: 1px solid #3f9af7;
  opacity: 0;
  -webkit-animation: pulsate 3s ease-out infinite;
  animation: pulsate 3s ease-out infinite;
}*/

/*==================================================================
/* Styles for dialog window */
#small-dialog {
  background: white;
  padding: 20px 30px;
  text-align: left;
  max-width: 650px;
  margin: 40px auto;
  position: relative;
  border-radius: 10px;
}

span.badge.badge-secondary {
  font-size: 1.1rem;
}
/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;

  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;



  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);

  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}



/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;

  -webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -moz-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  -o-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
  transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 );
  -moz-transform: translateY(0) perspective( 600px ) rotateX( 0 );
  -ms-transform: translateY(0) perspective( 600px ) rotateX( 0 );
  -o-transform: translateY(0) perspective( 600px ) rotateX( 0 );
  transform: translateY(0) perspective( 600px ) rotateX( 0 );
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;

  -webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
  -moz-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
  -ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
  -o-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
  transform: translateY(-10px) perspective( 600px ) rotateX( 10deg );
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;

  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-wrap.mfp-close-btn-in.mfp-auto-cursor.my-mfp-slide-bottom.mfp-ready {
  z-index: 99999999999999999999;
}



.media-wrapper video {
  position: relative;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
}
div.undering {
  padding: 1em;
  background: #ededed;
  margin-top: 1em;
  border-radius:5px;
  border: 1px solid #dfdfdf;
}
div.undering h3 {
  color: #636363;
  padding-top: 15px;
  border-bottom: 1px solid #bfbfbf;
}