.hide{
  display:none;
}
.h1-title{
  text-transform: uppercase;
  color:var(--primary);
}
.error-border{
    border:1px solid red;
}
.relative{
  position: relative;
}
.check_password{
  position: absolute;
  font-size: 18px;
  right:20px;
  top:34px;
}


.form-control.is-invalid{
    border: 1px solid #FF4C41 !important;
}
.auth-form .dashed{
    border-bottom: 1px dotted var(--primary);
    width: 100%;
    height: 10px;
    line-height: 10px;
}
.auth-form .dashed_text{
    text-transform: uppercase;
}
.auth-form .btn.btn-reseaux{
    width:100% !important;
}
.auth-form .btn.btn-reseaux i{
    margin-right:10px;
}





/* CSS CHECKBOX IN SWITCH */
.switch-site {
  position: relative;
  display: inline-block;
  width:50px;
  height: 20px;
  top:10px;
}
.switch-site input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-site {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider-site:before {
  position: absolute;
  content: "";
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  height: 20px;
  width:20px;
  left:2px;
  bottom:0;
}
.slider-site.round-site {
  border-radius: 34px;
}
.slider-site.round-site:before {
  border-radius: 50%;
}
input:checked + .slider-site {
    background-color: #eb8153 !important;
}
input:focus + .slider-site {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider-site:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}  

/* RIBBON BETA WEB-FACTURATOR */
.ribbon-text {
  position: absolute;
  right: -5px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.ribbon-text span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#eb8153 0%, #E66025 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px; right: -21px;
}
.ribbon-text span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid #E66025;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #E66025;
}
.ribbon-text span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #E66025;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #E66025;
}


.btn-primary-reverse{
    background:#fff;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-primary-reverse:hover{
    background:#fff;
    color: var(--primary);
    border: 1px solid var(--primary);
}
