/**
 * importer.less
 *
 * By default, new Sails projects are configured to compile this file
 * from LESS to CSS.  Unlike CSS files, LESS files are not compiled and
 * included automatically unless they are imported below.
 *
 * For more information see:
 *   https://sailsjs.com/anatomy/assets/styles/importer-less
 */
/**
 * Color Variables
 */
[v-cloak] {
  display: none;
}
html,
body {
  height: 100%;
  margin: 0;
}
[purpose='page-wrap'] {
  height: 100%;
  /* lesshint-disable */
  height: auto !important;
  /* lesshint-enable */
  min-height: 100%;
  position: relative;
}
[purpose='page-footer'] {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  height: 0;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
@media (max-width: 800px) {
  [purpose='page-wrap'] {
    padding-bottom: 75px;
  }
  [purpose='page-wrap'] [purpose='page-footer'] {
    height: 75px;
  }
  [purpose='page-wrap'] [purpose='page-footer'] [purpose='footer-copy'],
  [purpose='page-wrap'] [purpose='page-footer'] [purpose='footer-nav'] {
    width: 100%;
    display: block;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .navbar-toggler {
    margin-left: auto;
    /* Aligne le bouton burger à droite */
  }
  .navbar {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .navbar .navbar-brand img {
    width: 150px;
    /* Ajustez la taille du logo pour les petits écrans */
    height: auto;
  }
}
/**
 * <ajax-button>
 *
 * App-wide styles for our ajax buttons.
 */
[parasails-component='ajax-button'] .button-loader,
[parasails-component='ajax-button'] .button-loading {
  display: none;
  margin: auto;
}
[parasails-component='ajax-button'] .button-loader .loading-dot,
[parasails-component='ajax-button'] .button-loading .loading-dot {
  opacity: 0;
  display: inline;
  -moz-animation-name: fade-in;
  -webkit-animation-name: fade-in;
  -ms-animation-name: fade-in;
  -o-animation-name: fade-in;
  animation-name: fade-in;
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-direction: linear;
  -webkit-animation-direction: linear;
  -ms-animation-direction: linear;
  -o-animation-direction: linear;
  animation-direction: linear;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot1,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot1 {
  -moz-animation-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
  -ms-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot2,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot2 {
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot3,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot3 {
  -moz-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
[parasails-component='ajax-button'] .button-loader .loading-dot.dot4,
[parasails-component='ajax-button'] .button-loading .loading-dot.dot4 {
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
[parasails-component='ajax-button'].syncing .button-loader,
[parasails-component='ajax-button'].syncing .button-loading {
  display: inline-block;
}
[parasails-component='ajax-button'].syncing .button-text {
  display: none;
}
/**
 * <modal>
 *
 * App-wide styles for our modals.
 */
[parasails-component='modal'] {
  -webkit-overflow-scrolling: touch;
}
[parasails-component='modal'] [purpose='modal-dialog'] {
  z-index: 100;
  position: relative;
  max-width: 700px;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] {
  max-width: 700px;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button'] {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  opacity: 0.6;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button']:focus {
  border-image: none;
  outline: none;
}
[parasails-component='modal'] [purpose='modal-dialog'] [purpose='modal-content'] [purpose='modal-close-button']:hover {
  opacity: 1;
}
[parasails-component='modal'] .petticoat {
  position: fixed;
  width: 100%;
  height: 75px;
  z-index: 50;
  left: 0px;
  top: 0px;
  background-color: #fff;
}
[parasails-component='modal'] .modal-content {
  border-radius: 0px;
  border-color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
}
[parasails-component='modal'] .modal-content .modal-header {
  border-bottom: none;
  display: block;
  position: relative;
  text-align: center;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}
[parasails-component='modal'] .modal-content .modal-header .modal-title {
  font-weight: 700;
}
[parasails-component='modal'] .modal-content .modal-header .modal-intro {
  margin-left: auto;
  margin-right: auto;
  color: #999999;
  margin-bottom: 20px;
}
[parasails-component='modal'] .modal-content .modal-header hr {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: 100px;
  height: 2px;
  border-top: 2px solid #14acc2;
}
[parasails-component='modal'] .modal-content .modal-body {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
}
[parasails-component='modal'] .modal-content .modal-footer {
  padding-top: 25px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 10px;
}
.modal-backdrop {
  background-color: #fff;
}
.modal-backdrop.show {
  opacity: 0.95;
}
/**
 * <cloud-error>
 *
 * App-wide styles for our cloud-errors.
 */
html,
body {
  min-height: 100% !important;
  margin: 0 !important;
}
body {
  font-family: Cambria, calibri;
  height: 100% !important;
  text-align: justify !important;
}
body.p-80 {
  padding-top: 80px !important;
}
[purpose='page-wrap'] {
  height: 100% !important;
}
.bg-cover,
.jumbotron {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.bg-dark {
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.8) !important;
}
.bg-img {
  height: 200px !important;
  background-size: cover !important;
  background-position: center !important;
}
.bg-login {
  background-image: url(../images/bg/bg-login.jpg) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover;
}
.container-fluid.h-100 {
  min-height: 100% !important;
}
.blue-overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 69, 125, 0.4);
  /* Couleur de l'overlay noir transparent */
}
.dark-overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Couleur de l'overlay noir transparent */
}
.jumbotron {
  height: 500px !important;
}
.jumbotron .container * {
  z-index: 1;
  position: relative !important;
}
.jumbotron .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  /*  background-color: rgba(0, 0, 0, 0.4); */
}
