@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
*   {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
html body {
  font-family: "Fira Sans", sans-serif;
  font-variant-ligatures: none;
  margin: 0;
}
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
  margin: 0;
}
html body h1 {
  color: #001c61;
}
html body h2 {
  color: #003594;
}
html body figure {
  margin: 0;
}
html body ul,
html body li {
  margin: 0;
  padding: 0;
}
html body p {
  margin: 0;
}
html body a {
  color: inherit;
  text-decoration: none;
}
html body label,
html body address {
  margin-bottom: 0;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.uc-first {
  text-transform: lowercase;
}
.uc-first:first-letter {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.s0 {
  font-size: 7.2rem;
  line-height: 9.6rem;
}

.s1 {
  font-size: 5.6rem;
  line-height: 7.2rem;
}

.s2 {
  font-size: 4.8rem;
  line-height: 4rem;
}

.s3 {
  font-size: 3.2rem;
  line-height: 4.8rem;
}

.s4 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}

.s5 {
  font-size: 2rem;
  line-height: 3.2rem;
}

.s6 {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

.text-regular {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.text-medium {
  font-size: 1.4rem;
  line-height: 2rem;
}

.text-small {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.hidden {
  display: none;
}

.visibility-hidden {
  visibility: hidden;
}

.flex-vcenter {
  display: flex;
  align-items: center;
}

.alert-danger {
  color: #e20d0d;
}

.helper {
  display: flex;
  align-items: center;
}
.helper .uil {
  margin-right: 0.4rem;
}
.helper * {
  color: #70747c;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

button[class^=button] {
  border-color: transparent;
  border-radius: 0.8rem;
  cursor: pointer;
}
button[class^=button]:disabled {
  opacity: 0.24;
  cursor: default;
}

.button-classic {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid;
  border-color: transparent;
  background-color: #ec6629;
  transition: background-color 0.15s, color 0.15s, border 0.15s, box-shadow 0.15s;
  padding: 1rem 1.6rem;
  height: 4rem;
  border-radius: 0.8rem;
  color: #fff;
  background-color: #ec6629;
}
.button-classic .uil,
.button-classic .label {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.button-classic .uil {
  height: 1.6rem;
  width: 1.6rem;
  margin-right: 0.8rem;
}
.button-classic .label {
  white-space: nowrap;
}
.button-classic:disabled {
  pointer-events: none;
}
.button-classic:hover {
  text-decoration: none;
  background-color: #ec6629;
  color: #fff;
  box-shadow: 0px 0px 0px 0.5px rgba(0, 28, 97, 0.08), 0px 4px 4px rgba(0, 28, 97, 0.08), 0px 8px 16px 4px rgba(0, 28, 97, 0.16), inset 0px -4px 4px rgba(0, 28, 97, 0.16), inset 0px 4px 4px rgba(255, 255, 255, 0.16);
}
.button-classic.primary {
  color: #003594;
  background-color: transparent;
  border-color: #003594;
}
.button-classic.primary:hover {
  color: #0057d8;
  background-color: #f5f7fb;
  border-color: #0057d8;
  box-shadow: none;
}

.custom-modal {
  z-index: 10;
  display: flex;
  flex-direction: column;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 53, 148, 0.08);
  background-color: #fff;
  box-shadow: 0px 16px 32px rgba(0, 28, 97, 0.2), 0px 64px 128px rgba(0, 28, 97, 0.2);
  padding: 0 1.6rem;
  min-width: 32rem;
  max-width: 80rem;
}
.custom-modal > *:not(:last-child) {
  margin-bottom: 1.6rem;
}
.custom-modal > *:last-child {
  margin-bottom: 3.2rem;
}
.custom-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem;
  border-bottom: 1px solid #f5f7fb;
}
.custom-modal .title-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2.4rem;
}
.custom-modal .title-container::before {
  position: absolute;
  left: 0;
  content: "";
  min-width: 0.4rem;
  height: 100%;
  background-color: #ec6629;
  border-radius: 0.4rem;
}
.custom-modal .title-container h1 {
  color: #ec6629;
}
.custom-modal .title-container h2 {
  margin-top: 0.8rem;
  color: #383c44;
  font-weight: normal;
}
.custom-modal .modal-body {
  padding: 0.8rem 4rem 1.6rem;
  margin-bottom: 2rem;
}
.custom-modal .modal-body > *:not(:last-child) {
  margin-bottom: 1.6rem;
}
.custom-modal .modal-footer {
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.input-classic label {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 53, 148, 0.4);
  border-radius: 0.8rem;
  padding: 0.8rem;
  color: #70747c;
}
.input-classic label .input-container {
  width: 100%;
  color: #bcc0c8;
}
.input-classic label:focus-within {
  background-color: #fff;
  border-color: #0057d8;
  box-shadow: 0px 0px 4px rgba(0, 87, 216, 0.48), 0px 0px 16px rgba(0, 87, 216, 0.24), inset 0px 0px 8px rgba(0, 28, 97, 0.56);
}
.input-classic label:focus-within .input-container {
  width: 100%;
  outline: none;
  color: #70747c;
}
.input-classic label:focus-within .input {
  outline: none;
}
.input-classic label.filled .label-container {
  color: #70747c;
}
.input-classic label.filled .input-container {
  color: #003594;
}
.input-classic label.filled:not(:focus-within):not(.disabled):not(.locked) {
  background-color: #f5f7fb;
  border-color: rgba(0, 53, 148, 0.24);
  box-shadow: none;
}
.input-classic label.filled:not(:focus-within):not(.disabled):not(.locked).valid {
  border-color: #2dcc70;
}
.input-classic label.filled:not(:focus-within):not(.disabled):not(.locked).valid .status-icon {
  color: #2dcc70;
}
.input-classic label.filled:not(:focus-within):not(.disabled):not(.locked).warning {
  border-color: #ff9900;
}
.input-classic label.filled:not(:focus-within):not(.disabled):not(.locked).warning .status-icon {
  color: #ff9900;
}
.input-classic label.filled:not(:focus-within):not(.disabled):not(.locked).error {
  border-color: #e20d0d;
}
.input-classic label.filled:not(:focus-within):not(.disabled):not(.locked).error .status-icon {
  color: #e20d0d;
}
.input-classic label.required .status-icon {
  color: #ff9900;
}
.input-classic label.disabled, .input-classic label.locked {
  background-color: rgba(255, 255, 255, 0.48);
  border-color: rgba(0, 53, 148, 0.08);
}
.input-classic label.disabled:not(.locked) > * {
  opacity: 0.24;
}
.input-classic label .label-container {
  display: flex;
  align-items: center;
  color: #003594;
  margin-bottom: 0.4rem;
}
.input-classic label .label-container .uil {
  margin-right: 0.8rem;
}
.input-classic label .label-text {
  flex-grow: 1;
}
.input-classic label .label-text.no-icon {
  margin-left: 0;
}
.input-classic label .input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.input-classic label .input-container .uil {
  margin-left: 0.8rem;
  color: #70747c;
}
.input-classic label .input {
  border: none;
  background-color: inherit;
  border-radius: inherit;
  color: inherit;
  width: 100%;
  -moz-appearance: textfield;
}
.input-classic label .input::-moz-placeholder {
  color: inherit;
  font-style: italic;
}
.input-classic label .input::placeholder {
  color: inherit;
  font-style: italic;
}
.input-classic .passwd-type-toggle {
  background-color: transparent;
}

.select {
  position: relative;
  width: 100%;
}
.select .btn-select {
  background-color: transparent;
  width: 100%;
}
.select .btn-select span {
  display: flex;
  justify-content: space-between;
}
.select .popover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem;
  background-color: #fff;
  box-shadow: 0px 16px 32px rgba(0, 28, 97, 0.2), 0px 64px 128px rgba(0, 28, 97, 0.2);
  border-radius: 0.4rem;
}
.select .options-list {
  list-style-type: none;
  font-size: 1.4rem;
}
.select .options-list-item-btn {
  justify-content: space-between;
}
.select .options-list-item {
  color: #70747c;
}
.select .options-list-item.active {
  color: #0057d8;
  background: linear-gradient(0deg, rgba(0, 53, 148, 0.08), rgba(0, 53, 148, 0.08)), #fff;
}
.select .options-list-item-btn {
  width: 100%;
  padding: 1rem 0.8rem;
  color: inherit;
  border: none;
  background: none;
  text-align: left;
}
.select .options-list-item-btn:hover, .select .options-list-item-btn:focus {
  color: #0057d8;
  background: linear-gradient(0deg, rgba(0, 53, 148, 0.08), rgba(0, 53, 148, 0.08)), #fff;
  border-radius: 0.4rem;
}
.select .options-list-item-btn.has-icon {
  display: flex;
  align-items: center;
}
.select .options-list-item-btn.has-icon .icon {
  margin-right: 0.4rem;
  max-width: 1.4rem;
  max-height: 1.4rem;
}

#app {
  height: 100vh;
  position: relative;
  background-color: #f5f7fb;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 4.4rem 0 4.5rem;
}
header * {
  z-index: 10;
}

.header-right {
  color: #003594;
}
.header-right > *:not(:last-child) {
  margin-right: 0.8rem;
}

.footer {
  justify-content: space-between;
  color: #fff;
  background-color: #0057d8;
  padding: 2.4rem 1.6rem;
}
.footer a {
  text-decoration: underline;
}
.footer div > *:not(:last-child) {
  margin-right: 1.6rem;
}

.only-toast-page {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: center/cover no-repeat url("media/img/bg-password-reset.png"), linear-gradient(180deg, #0057D8 0%, #003594 100%);
  background-blend-mode: overlay;
}
.only-toast-page .upper-title {
  justify-content: space-between;
}
.only-toast-page .upper-title .uil {
  color: #70747c;
}
.only-toast-page form > *:not(:last-child) {
  margin-bottom: 1.6rem;
}

#login {
  height: 100%;
  position: relative;
}
#login::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: center/cover no-repeat url("media/img/bg-login.png"), linear-gradient(180deg, #0057D8 0%, #003594 100%);
  background-blend-mode: overlay;
}
#login .inside {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 3.2rem;
  align-items: center;
  padding: 0 4.4rem 0 4.5rem;
  height: 100%;
}
#login .left-text {
  grid-column: span 4;
  max-width: 32rem;
  color: #fff;
}
#login .custom-modal {
  grid-column: span 4;
}
#login .about-link > * {
  color: #003594;
}
#login .body-title {
  color: #001c61;
}
#login .form-signin > .input-classic:not(:last-of-type):not(.hidden) {
  margin-bottom: 1.6rem;
}
#login .informations {
  text-align: center;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#login .informations p {
  font-size: 1.2rem;
}

.success .modal-header {
  justify-content: space-between;
}
.success .title-container {
  margin-right: 2.4rem;
}
.success .title-container h1 {
  color: #2dcc70;
}
.success .title-container::before {
  background-color: #2dcc70;
}
.success .custom-modal > *:last-child {
  margin: 0;
}
.success .uil {
  color: #70747c;
}

#services {
  height: 100%;
}
#services .container {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: center/cover no-repeat url("media/img/bg-login.png"), linear-gradient(180deg, #0057D8 0%, #003594 100%);
  background-blend-mode: overlay;
  height: 100%;
  color: #fff;
}
#services .container h1 {
  color: #fff;
}
#services .service {
  display: table;
  width: 100%;
  height: 100px;
  line-height: 100px;
  border-bottom: 1px solid #cdcdcd;
  text-align: left;
  vertical-align: middle;
  font-weight: bold;
  font-size: 20px;
  color: #444;
}
#services .service:last-child {
  border-bottom: none;
}
#services .service:hover {
  cursor: pointer;
  background-color: #ddd;
}
#services .service:hover, #services .service:focus, #services .service:visited {
  color: #444;
  text-decoration: none;
}
#services .service .gauche,
#services .service .droite {
  display: table-cell;
}
#services .service .droite {
  width: 30px;
}
#services .service img {
  margin: 0px 10px 0 20px;
}
#services .service i {
  border: solid #444;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin: 0 20px;
  transform: rotate(315deg);
}
#services .service p {
  margin: -10px 10px 30px;
  font-weight: normal;
  font-size: 13px;
  line-height: 20px;
}
#services .support {
  position: absolute;
  top: 10px;
  right: 10px;
}
#services .support .clipboard {
  cursor: copy;
  float: right;
}
#services .support .button {
  text-align: right;
}
#services .support .info {
  display: none;
  box-shadow: 0 2px 2px grey;
  text-align: center;
  border: 1px solid #888888;
  border-radius: 5px;
  background-color: white;
  margin: 1em 0;
  padding: 0.5em;
}
#services .support .info.active {
  display: block !important;
}
#services .support .info .titre {
  margin: 0 0 1em;
}
#services .support .info .detail {
  margin-bottom: 0.5em;
  width: 100%;
}
#services .support .info .detail-input {
  border: none;
  min-width: 100%;
  text-align: center;
  clear: both;
}
#services .support .info label {
  border-bottom: 1px solid #888888;
  display: block;
  margin: 1em;
  text-align: center;
}
#services .support .info .msg_copy {
  color: #005c00;
}/*# sourceMappingURL=styles.css.map */