@charset "UTF-8";
.offcanvas {
  min-height: 100vh;
}

.offcanvas .offcanvas-header {
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.15);
  padding: 13px;
}

.offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 179, 52, 0.25);
  outline: 0;
  opacity: 1;
}

.offcanvas .offcanvas-body ul {
  padding: 0px 0px;
}

.offcanvas .offcanvas-body ul hr {
  margin-top: .0rem;
  margin-bottom: .0rem;
  border: 0;
  border-top: 1px solid rgba(248, 179, 52, 0.8);
}

.offcanvas .offcanvas-body ul li {
  padding: 0 0 25px;
}

.offcanvas .offcanvas-body ul li a {
  text-decoration: none !important;
}

.offcanvas .offcanvas-body ul li a p {
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: orange;
  border-bottom: 1px solid #7b1fa2;
  padding: 10px 4px 5px;
  margin: 0;
}

.offcanvas .offcanvas-body ul li a p:after {
  font-family: 'Font Awesome 5 Free';
  content: '\f107';
  position: absolute;
  font-weight: 900;
  right: 0;
  padding: 2px 25px;
  transition: all 0.2s ease-out;
}

.offcanvas .offcanvas-body ul li a p.no-carret:after {
  display: none;
}

.offcanvas .offcanvas-body ul li a[aria-expanded="true"] p:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  transition: all 0.2s ease-out;
}

.offcanvas .offcanvas-body ul li ul {
  background: white;
  padding-top: 10px;
}

.offcanvas .offcanvas-body ul li ul li {
  padding: 8px 8px;
}

.offcanvas .offcanvas-body ul li ul li a {
  font-size: 1.1rem !important;
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  color: #973F7D;
  font-weight: 600;
  padding-left: 5px !important;
  text-decoration: none !important;
}
/*----ELEMENTS HTML and PERSO------*/
html, body {
  font-size: 0.85rem;
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
  background-color: #F1EFE6 !important;
}

html p, body p {
  font-size: 1.1rem;
}

body {
  padding-top: 90px;
  padding-bottom: 90px;
}

h1 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

.primary-color {
  color: #F8B334;
}

.secondary-color {
  color: #973F7D;
}

.text-dark {
  color: black;
}

.badge {
  background-color: #ddd;
  font-size: 1.5rem;
  color: black;
  margin: 5px;
}

.badge.primary {
  background-color: #F8B334;
  color: white;
}

.badge.secondary {
  background-color: #973F7D;
  color: white;
}

.big-badge {
  margin: 5px;
}

.big-badge.primary {
  font-size: 2.2rem;
  background-color: #F8B334;
  color: white;
}

.big-badge.secondary {
  font-size: 2.2rem;
  background-color: #973F7D;
  color: white;
}

.small-badge {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 5px 6px;
  margin: 5px;
}

.small-badge.primary {
  background-color: #F8B334;
  color: white;
}

.small-badge.secondary {
  background-color: #973F7D;
  color: white;
}

.small-badge.danger {
  background-color: #9e0f2e;
  color: white;
}

.bold {
  font-weight: 800;
}

/*----BTN------*/
.btn-outline-white {
  background-color: white;
  border: 1px solid #F8B334;
  color: #2899D1;
  font-weight: 700;
}

.btn-outline-white:hover {
  background-color: white;
  border: 1px solid #F8B334;
  color: #2899D1;
  font-weight: 700;
}

.btn-outline {
  background-color: white;
  border: 1px solid #F8B334;
  border-radius: 6px;
  color: #973F7D !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 7px;
  margin: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background-color: #F8B334;
  border: 1px solid #F8B334;
  color: #2899D1;
  font-weight: 700;
}

.btn-primary-custom {
  background-color: #F8B334;
  border: 1px solid #F8B334;
  border-radius: 6px;
  color: white !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 7px;
  margin: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background-color: white;
  border: 1px solid #F8B334;
  color: #F8B334 !important;
  font-weight: 700;
}

.btn-secondary-custom {
  background-color: #973F7D;
  border: 1px solid #973F7D;
  border-radius: 6px;
  color: white !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 7px;
  margin: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary-custom:hover {
  background-color: white;
  border: 1px solid #F8B334;
  color: #F8B334 !important;
  font-weight: 700;
}

.btn-danger-custom {
  background-color: #9e0f2e;
  border: 1px solid #9e0f2e;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 7px;
  margin: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-danger-custom:hover {
  background-color: white;
  border: 1px solid #F8B334;
  color: #F8B334;
  font-weight: 700;
}

/*----RADIO ------*/
label {
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}

input[type="radio"].demo6 {
  display: none;
}

input[type="radio"].demo6 + label {
  position: relative;
  padding-left: 1.6rem;
  margin-right: 8px;
}

input[type="radio"].demo6 + label::before,
input[type="radio"].demo6 + label::after {
  display: block;
  position: absolute;
  box-sizing: border-box;
  content: '';
  border-radius: 1rem;
}

input[type="radio"].demo6 + label::before {
  bottom: 0;
  left: 0;
  border: 1px solid #bbbbbb;
  background-color: #eee;
  width: 1.4rem;
  height: 1.4rem;
}
input[type="radio"].demo6 + label::after {
  bottom: 3px;
  left: 3px;
  width: calc(1.4rem - 6px);
  height: calc(1.4rem - 6px);
}

input[type="radio"].demo6:checked + label::after {
  background-color: #F8B334;
}

/*----CASE à COCHER------*/
input[type="checkbox"].demo2 {
  display: none;
}

input[type="checkbox"].demo2 + label {
  position: relative;
  padding-left: 1.6rem;
  margin-right: 8px;
}

input[type="checkbox"].demo2 + label::before,
input[type="checkbox"].demo2 + label::after {
  display: block;
  position: absolute;
  box-sizing: border-box;
  content: '';
}

input[type="checkbox"].demo2 + label::before {
  bottom: 1px;
  left: 0;
  border: 1px solid #bbbbbb;
  background-color: #eee;
  width: 1.4rem;
  height: 1.4rem;
}

input[type="checkbox"].demo2 + label::after {
  bottom: 4px;
  left: 3px;
  width: calc(1.4rem - 6px);
  height: calc(1.4rem - 6px);
}

input[type="checkbox"].demo2:checked + label::after {
  background-color: #F8B334;
}

/*----NAVBAR------*/
.navbar {
  padding: 2.5rem 1rem .5rem 1rem;
  background-color: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #b4b4b4;
  z-index: 10;
}

.navbar .back {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
}

.navbar .fas {
  padding-top: 3px;
  font-size: 1.55rem;
  padding-right: 5px;
  color: #F8B334;
}

.navbar .text {
  color: #F8B334;
}

.navbar a {
  text-decoration: none;
  font-weight: 700;
}

.btn-offcanvas {
  margin: 0;
  padding: 5px 10px 3px;
  border-radius: 6px;
  color: white;
  color: #F8B334;
}

.btn-offcanvas .fa-1x {
  font-size: 20px;
}

.btn-offcanvas:hover {
  color: #973F7D;
  border: none;
}

.btn-offcanvas:focus {
  border: 1px solid #F8B334;
}

.navbar-second {
  top: 81px;
  background-color: white;
  box-shadow: none;
  padding: 10px 0 5px;
  border-bottom: 1px solid #c7c7c7;
  z-index: 5;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.navbar-second a {
  text-decoration: none;
  color: #979797;
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
}

.navbar-second a.active:after {
  display: block;
  position: relative;
  bottom: -4px;
  content: "";
  height: 4px;
  width: 50px;
  background-color: #973F7D;
  left: 50%;
  right: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*----FOOTER NAVBAR------*/
.footer-nav {
  background-color: #F8B334;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  min-height: 65px;
  padding: 5px 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-family: "Quicksand", Arial, Helvetica, sans-serif;
}

.footer-nav .dropdown-menu {
  background-color: #F8B334;
}

.footer-nav .btn-offcanvas-footer {
  margin: 0;
  padding: 10px 10px 5px 10px;
  border-radius: 6px;
  border: 1px solid white;
  color: white;
  background-color: #973F7D;
}

.footer-nav .btn-offcanvas-footer .fa-1x {
  font-size: 20px;
}

.footer-nav .btn-offcanvas-footer:hover {
  color: white;
  background-color: #F8B334;
  border: 1px solid white;
}

.footer-nav .btn-offcanvas-footer:focus {
  border: 1px solid #F8B334;
}

/*----TAB PAGINATION------*/
.pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination li:first-child a {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination li:last-child a {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination li a {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination .active a {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #F8B334;
  border-color: #337ab7;
}

/*----TABLE------*/
table.footable > tbody > tr.footable-empty > td,
table.footable > tbody > tr.footable-empty > th,
table.footable > tbody > tr.footable-detail-row > td,
table.footable > tbody > tr.footable-detail-row > th {
  display: table-cell;
  padding: 0;
}

/*----CARD ALL------*/
.card {
  box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.2);
}

.card .card-header {
  background: transparent !important;
  padding: 10px 10px;
}

.card .card-header h3 {
  font-weight: 700;
}

.card .card-body .card-texte a {
  color: #F8B334;
}

.card .card-body .card-texte a:hover {
  color: black !important;
}

.card .card-footer {
  background-color: transparent;
}

.card .list-puce ul {
  padding-left: 0px;
}

.card .list-puce ul li {
  font-size: 1.1rem;
  line-height: 1.4rem;
  list-style-type: none;
  /* on annule la puce par défaut */
  background-image: url(../../assets/img/puce-liste.png);
  /* on affiche l'image souhaitée */
  background-repeat: no-repeat;
  /* on annule la répétition par défaut */
  background-position: left top 7px;
  /* on positionne où l'on veut */
  padding-left: 15px;
  /* pour éviter la superposition du contenu */
  padding-bottom: 10px;
}

/*----CARD ANNUAIRE------*/
.card-annuaire {
  box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.2);
}

.card-annuaire .card-header {
  background: white !important;
  padding: 10px 10px;
}

.card-annuaire .card-header .btn-annuaire {
  display: -ms-flexbox;
  display: flex;
}

.card-annuaire .card-header h3 {
  font-weight: 700;
}

.card-annuaire .card-header img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.card-annuaire .card-body .card-texte a {
  color: #F8B334;
}

.card-annuaire .card-body .card-texte a:hover {
  color: black !important;
}

.card-annuaire .card-footer {
  background-color: transparent;
}

.card-annuaire .list-puce ul {
  padding-left: 0px;
}

.card-annuaire .list-puce ul li {
  font-size: 1.1rem;
  line-height: 1.4rem;
  list-style-type: none;
  /* on annule la puce par défaut */
  background-image: url(../../assets/img/puce-liste.png);
  /* on affiche l'image souhaitée */
  background-repeat: no-repeat;
  /* on annule la répétition par défaut */
  background-position: left top 7px;
  /* on positionne où l'on veut */
  padding-left: 15px;
  /* pour éviter la superposition du contenu */
  padding-bottom: 10px;
}

/*----ACCORDION ANNUAIRE------*/
.annuaire h2 {
  color: #9b9b9b;
  margin-left: 15px;
  margin-top: 0;
}

.annuaire h2 span {
  color: #973F7D;
  font-weight: 700;
}

.accordion .accordion-item .accordion-header {
  border-top: 1px solid #F8B334;
  border-bottom: 1px solid #F8B334;
}

.accordion .accordion-item .accordion-header .accordion-button img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.accordion .accordion-item .accordion-header .accordion-button h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.accordion .accordion-item .accordion-header .accordion-button h5 {
  font-weight: 500;
  color: #F8B334;
}

.accordion .accordion-item .accordion-header .entreprise {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}

.accordion .accordion-body p {
  margin: 6px 0 6px;
}

.accordion .accordion-body a {
  color: #F8B334;
}

.accordion .accordion-body .badge-but {
  background-color: #F8B334;
  color: white;
  text-decoration: none;
  padding: 3px 5px;
  border-radius: 4px;
}

.accordion .accordion-body .logo img {
  max-height: 100px;
  max-width: 200px;
}

/*----CAROUSEL------*/
.owl-carousel .owl-stage-outer {
  overflow: hidden !important;
}

#carousel-card .owl-carousel .item {
  height: auto;
  background: transparent;
  border-radius: 5px;
}

.owl-carousel-card .card {
  box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.2);
  margin: 5px 5px 10px;
}

.owl-carousel-card .card .card-header {
  background-color: transparent !important;
}

.owl-carousel-card .card .card-body .badge {
  background-color: #973F7D !important;
  color: white;
  font-size: 1.2rem;
}

.owl-carousel-card .card .card-body li {
  padding: 5px 10px 5px 10px;
}

.owl-carousel-card .card .card-body li .badge {
  background-color: white !important;
  color: #F8B334;
  border: 1px solid #F8B334;
  font-size: 0.7rem;
}

.owl-carousel-card .card .card-footer {
  background-color: transparent !important;
}

.owl-carousel-card .card .card-footer a {
  text-decoration: none;
  width: 100%;
  color: #979797;
  font-size: 1rem;
}

.owl-carousel-card .card .card-footer ul {
  color: #F8B334;
  padding-left: 0.8rem;
  padding-top: 10px;
}

.owl-carousel-card .card .card-footer ul li {
  padding: 3px 0;
}

/*# sourceMappingURL=custom-style.css.map */
