/*
organisation des styles :
    en haut :   tout ce qui concerne en premier lieu une balises (ex div; div > .class; div:nth-child(); etc...)
    au milieu : tout ce qui concerne en premier lieu une classe (ex .class; .class > div ; .class:focus; etc...)
    en bas :    tout ce qui concerne en premier lieu un  id (ex #id; #id > .class > div ; #id:hover; etc...)
    en fin :    tout ce qui concerne en premier lieu les media queries (ex @keyframes; @media-print; etc...)
tout ceci sera classé ensuite par Ordre alphabétique
*/

:root {
    --use-main-color: rgb(var(--main-color));
    --use-main-color-2: rgb(var(--main-color-2));
    --use-light-main-color: rgb(197, 206, 64);
    --use-main-gray: rgb(73, 80, 87);
    --neoleasy_old_green2: #179b8c;
    --neoleasy_gray: #495057;
    --white: white;
    --main_border_radius: 2vh;
    --navBar_width: 2.8vw;
    --navBar_height_mobile: 8vh;
    --placeholder_color: #707070;
    --sizeH_input: 30px;
    --monitoringPDF_height: 90vh;
    --monitoringPDF_angle: 10;
}

html {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
}

body {
  font-family: "Open Sans", sans-serif;
  /*background-image: url("../../IMG/others/cool-background.png");*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  background: rgb(var(--login-bg));
}

svg {
  font-family: "Varela Round", sans-serif;
  color: white;
}

/*##########################################################################################################################################
##############################################    fin balise : debut class   ##############################################################
############################################################################################################################################*/

/*#region alert info styles*/
.alertContainer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}

.warningAlertTop {
  min-height: 50px;
  min-width: 200px;
  z-index: 2000;
  animation: displayConfirm forwards 5s;
  -webkit-animation: displayConfirm 5s forwards;
  padding: 10px;
  pointer-events: none;
  border-left: none !important;
  border-right: none !important;
}

.warningAlertBorder {
  padding: 1em;
  margin-bottom: 2em;
  border-radius: 25px;
}

.confirmationAlert,
.refusAlert,
.warningAlert {
  position: fixed;
  margin: auto;
  border-radius: 20px;
  min-height: 50px;
  min-width: 200px;
  z-index: 2000;
  animation: displayConfirm forwards 5s;
  -webkit-animation: displayConfirm 5s forwards;
  padding: 10px;
  pointer-events: none;
}

.confirmationAlertNotif,
.refusAlertNotif,
.warningAlertNotif {
  position: absolute;
  bottom: 10px;
  right: 0;
  border-radius: 20px;
  min-height: 50px;
  min-width: 200px;
  z-index: 2000;
  animation: displayNotif forwards 5s;
  -webkit-animation: displayNotif 5s forwards;
  padding: 10px;
  pointer-events: none;
}

.confirmationAlert.extended,
.refusAlert.extended,
.warningAlert.extended {
  animation: displayConfirmExtended forwards 10s;
  -webkit-animation: displayConfirmExtended 10s forwards;
}

.confirmationAlertNotif.extended,
.refusAlertNotif.extended,
.warningAlertNotif.extended {
  animation: displayNotifExtended forwards 10s;
  -webkit-animation: displayNotifExtended 10s forwards;
}

.confirmationAlert,
.confirmationAlertNotif {
  background: #a5dbd4;
  border: none;
  color: var(--white);
}

.refusAlert,
.refusAlertNotif {
  background: indianred;
  border: red 3px ridge;
}

.warningAlert,
.warningAlertNotif,
.warningAlertTop,
.warningAlertBorder {
  background: orange;
  border: darkorange 3px ridge;
  animation: none;
  pointer-events: all;
}

/*#endregion*/

.field-icon {
  float: right;
  margin-left: -25px;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}

.fieldFilled {
  background-color: rgba(100, 100, 255, 0.2) !important;
}

.inputCorrect {
  background-color: rgba(100, 255, 100, 0.2) !important;
  /*border: #7cfc00 2px groove !important;*/
}

.inputIncorrect {
  outline: none;
  background-color: rgba(255, 100, 100, 0.2) !important;
  /*border: #ff4500 2px groove !important;*/
}

/*#region login elt*/
.login {
  max-width: 400px;
  margin: 16px auto;
  font-size: 16px;
  padding: 10px;
  /*margin-top: 50px;*/
  background: white;
  border-radius: 20px;
  height: auto;
}

.login a {
  color: black;
  text-decoration: none;
  transition: all .3s ease;
}

.login a:hover {
  color: rgb(var(--main-color));
}

.login hr {
  background: rgb(var(--main-color));
  padding: 4px;
  width: 70px;
  border-radius: 20px;
}

.login label {
  color: white;
  /*#ced643;*/
  font-weight: 800;
}

.login input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border-width: 1px;
  border-radius: 100px;
  border-style: solid;
  padding: 16px;
  outline: 0;
  font-family: inherit;
  font-size: 0.95em;
  height: 4vh;
}

.login input[type="email"],
.login input[type="password"] {
  background: #fff;
  border-color: #bbb;
  color: #555;
}

/* Text fields' focus effect */
.login input[type="email"]:focus,
.login input[type="password"]:focus {
  border-color: #888;
}

/*#region submit */
.login input[type="submit"] {
  background: rgb(var(--main-color));
  /*#35bb85; */
  border-color: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1.2em;
  font-weight: 800;
  padding: 10px 30px;
  width: auto;
  line-height: 0;
}

.login input[type="submit"]:disabled {
  background: rgba(var(--main-color), .2) !important;
  /*#bee0db !important;*/
  cursor: default !important;
}

.login input[type="submit"]:hover {
  background: rgb(var(--main-color-2));
  /*rgb(75, 209, 72);*/
}

/* Buttons' focus effect */
.login input[type="submit"]:focus {
  background: rgb(var(--main-color-2));
  /*rgb(75, 209, 72);*/
}

/*#endregion*/
/*#endregion*/

.login-container {
  padding: 12px;
}

.login-header {
  color: rgb(var(--main-color));
  font-size: 1.2em;
}

.login-header h2 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 900;
}

.login-header .logo {
  width: 50%;
  height: auto;
  max-width: 384px;
  margin: 10px;
}

/*##########################################################################################################################################
##############################################    fin class : debut id   ##############################################################
############################################################################################################################################*/

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

@keyframes displayConfirm {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  10% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  20% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  80% {
    opacity: 1;
  }

  100% {
    display: none;
    opacity: 0;
  }
}









/*#region flex*/

.flexAlignEnd {
  display: flex;
  align-items: flex-end !important;
}

.flexAlignCenter {
  display: flex;
  align-items: center !important;
}

.flexAlignStart {
  display: flex;
  align-items: flex-start !important;
}

.flexAlignBaseline {
  display: flex;
  align-items: baseline !important;
}

.flexAround {
  display: flex;
  justify-content: space-around !important;
  align-items: center;
}

.flexAroundS {
  display: flex;
  justify-content: space-around !important;
  align-items: flex-start !important;
}

.flexBetween {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
}

.flexCenter {
  display: flex;
  justify-content: center !important;
  align-items: center;
}

.flexEvenly {
  display: flex;
  justify-content: space-evenly !important;
  align-items: center;
}

.flexChild>* {
  flex: 1 1;
}

.flexChild4>* {
  flex: 4 1 20% !important;
}

.flexColumn {
  display: flex;
  flex-direction: column !important;
}

.flexRow {
  display: flex;
  flex-direction: row !important;
}

.flexEnd {
  display: flex;
  justify-content: flex-end !important;
  align-items: center;
}

.flexEndS {
  display: flex;
  justify-content: flex-end !important;
  align-items: flex-end;
}

/*not used*/
.flexJustifyEnd {
  display: flex;
  justify-content: flex-end !important;
}

.flexStart {
  display: flex;
  justify-content: flex-start !important;
  align-items: center;
}

.flexStartS {
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start;
}

.flexRowReverse {
  display: flex;
  flex-direction: row-reverse !important;
}

.flexWrap {
  display: flex;
  flex-wrap: wrap !important;
}

.flexWrapReverse {
  display: flex;
  flex-wrap: wrap-reverse !important;
}

.flexNoWrap {
  display: flex;
  flex-wrap: nowrap !important;
}

.flexStretch {
  display: flex;
  align-items: stretch !important;
}

/*#endregion flex*/

/*#region space child*/
.spaceChild,
.spaceChild5,
.spaceChild10,
.spaceChildNotFlex,
.spaceChild5NotFlex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.spaceChild>*:last-child,
.spaceChild5>*:last-child,
.spaceChild10>*:last-child,
.spaceChildNotFlex>*:last-child,
.spaceChild5NotFlex>*:last-child {
  margin-right: 0;
}

.spaceChild:not(.row-in-it)>*:first-child,
.spaceChild5:not(.row-in-it)>*:first-child,
.spaceChild10:not(.row-in-it)>*:first-child,
.spaceChildNotFlex:not(.row-in-it)>*:first-child,
.spaceChild5NotFlex:not(.row-in-it)>*:first-child {
  margin-left: 0;
}

.spaceChild>*,
.spaceChildNotFlex>* {
  margin: 0 15px;
}

.spaceChild10>* {
  margin: 0 10px;
}

.spaceChild5>*,
.spaceChild5NotFlex>* {
  margin: 0 5px;
}

.spaceChild>*,
.spaceChild5>*,
.spaceChild10>* {
  flex: 1 1;
}

/*#endregion space child*/


/*#region Margin/Padding*/
.m0 {
  margin: 0;
}

.m10 {
  margin: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mr0 {
  margin-right: 0;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.ml0 {
  margin-left: 0;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.mx10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx40 {
  margin-right: 40px;
  margin-left: 40px;
}

.my10 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.my20 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.my30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.my40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.mtr10 {
  margin-right: 10px;
  margin-top: 10px;
}

.mtr20 {
  margin-right: 20px;
  margin-top: 20px;
}

.mtr30 {
  margin-right: 30px;
  margin-top: 30px;
}

.mtr40 {
  margin-right: 40px;
  margin-top: 40px;
}

.mtl10 {
  margin-left: 10px;
  margin-top: 10px;
}

.mtl20 {
  margin-left: 20px;
  margin-top: 20px;
}

.mtl30 {
  margin-left: 30px;
  margin-top: 30px;
}

.mtl40 {
  margin-left: 40px;
  margin-top: 40px;
}

.marginLR10 {
  margin: 0 10px;
}

.marginLR15 {
  margin: 0 15px;
}

.m0-child>* {
  margin: 0;
}

.mx5-child>* {
  margin: 0 5px;
}

.mx15-child>* {
  margin: 0 15px;
}

.marginRimChild>*:last-child {
  margin-right: 0;
}

.marginRimChild>*:first-child {
  margin-left: 0;
}

.p5-child>* {
  padding: 5px;
}

.paddingRimChild>*:last-child {
  padding-right: 0;
}

.paddingRimChild>*:first-child {
  padding-left: 0;
}

.p0-all-child * {
  padding: 0;
}

.py0-all-child * {
  padding-top: 0;
  padding-bottom: 0;
}

.px0-all-child * {
  padding-left: 0;
  padding-right: 0;
}

.p0 {
  padding: 0;
}

.p10 {
  padding: 10px;
}

.pr0 {
  padding-right: 0px;
}

.pr10 {
  padding-right: 10px;
}

.pl10 {
  padding-left: 10px;
}

/*#endregion*/

.txCenter{
  text-align: center;
}

.width100{
  width: 100%;
}

/*alert*/
.confirmationAlert,
.refusAlert,
.warningAlert {
    position: fixed;
    margin: auto;
    border-radius: 20px;
    min-height: 50px;
    min-width: 200px;
    z-index: 20;
    animation: displayConfirm forwards 5s;
    -webkit-animation: displayConfirm 5s forwards;
    padding: 10px;
    pointer-events: none;
}

.confirmationAlert {
    background: mediumseagreen;
    border: green 3px ridge;
}
.refusAlert {
    background: indianred;
    border: red 3px ridge;
}
.warningAlert {
    background: orange;
    border: darkorange 3px ridge;
    animation: none;
    pointer-events: all;
}


  /*#region alert info styles*/
  .alertContainer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
  }

  .alertContainerCenter {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    pointer-events: none;
    width: 100vw;
  }

  [class*="Alert"] {
    padding: 1em;
    min-height: 50px;
    z-index: 2000;
    pointer-events: none;
    border-radius: 1.5em;
  }

  [class*="Alert"] button.close {
    border: none;
    background-color: transparent;
    width: 1.2em;
  }

  .confirmationAlert,
  .refusAlert,
  .warningAlert {
    position: fixed;
    margin: auto;
    min-width: 200px;
    animation: displayConfirm forwards 5s;
    -webkit-animation: displayConfirm 5s forwards;
  }

  .confirmationAlertNotif,
  .refusAlertNotif,
  .warningAlertNotif {
    position: absolute;
    min-width: 200px;
    animation: displayNotif forwards 5s;
    -webkit-animation: displayNotif 5s forwards;
  }

  .warningAlertTop {
    border-radius: unset;
    border-left: none !important;
    border-right: none !important;
  }

  .warningAlertBorder {
    margin-bottom: 2em;
  }

  .confirmationAlert.extended,
  .refusAlert.extended,
  .warningAlert.extended {
    animation: displayConfirmExtended forwards 10s;
    -webkit-animation: displayConfirmExtended 10s forwards;
  }

  .confirmationAlertNotif.extended,
  .refusAlertNotif.extended,
  .warningAlertNotif.extended {
    animation: displayNotifExtended forwards 10s;
    -webkit-animation: displayNotifExtended 10s forwards;
  }

  .confirmationAlert,
  .confirmationAlertNotif {
    background: #a5dbd4;
    border: none;
    color: var(--white);
  }

  .refusAlert,
  .refusAlertNotif {
    background: indianred;
    border: red 3px ridge;
  }

  .warningAlert,
  .warningAlertNotif,
  .warningAlertTop,
  .warningAlertBorder {
    background: orange;
    border: darkorange 3px ridge;
    animation: none;
    pointer-events: all;
  }

  /*#endregion*/
/*alert*/

#blockContact{
      border-radius: 20px;
    background: #284e92;
    padding: 10px;
    margin-top: 3em;
}
.homeSection{
    background: #305aa5;
    border-radius: 15px;
    border: 1px #2664d3 solid;
    box-shadow: 1px 1px 5px 1px #3c3b3b99;
    padding: 10px 30px;
    width: 75%;
    font-size: 2em;
    text-shadow: 1px 1px 5px black;
    color: white;
}


.inputRound:not(.dark){
    border-radius: 10px;
    outline: none;
    border-color: #cecece;
    border-style: solid;
    box-shadow: 1px 2px 5px 2px rgba(187, 195, 197, 0.6);
    height: var(--sizeH_input);
    background: var(--white);
}
.inputRound:not(.dark){
    border-radius: 10px;
    outline: none;
    border-color: #cecece;
    border-style: solid;
    box-shadow: 1px 2px 5px 2px rgba(187, 195, 197, 0.6);
    height: var(--sizeH_input);
    background: var(--white);
}
textarea.inputRound:not(.dark){
  height: auto;
}

body{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

