@charset "UTF-8";
/* You can add global styles to this file, and also import other style files */
html,
body {
  height: 100%;
  margin: 0;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
html p,
body p {
  color: #5d5d5d !important;
}

:root {
  --cl-blue: #0336ff;
  --cl-blue-dark: #3700b3;
  --cl-green: #03dac5;
  --cl-red: #b00020;
  --cl-yellow: #ffde03;
}

/*------------------------------------
- COLOR primary
------------------------------------*/
.alert-primary {
  color: #073030;
  background-color: #90eded;
  border-color: #7eeaea;
}

.alert-primary hr {
  border-top-color: #68e7e7;
}

.alert-primary .alert-link {
  color: #000303;
}

.badge-primary {
  color: #fff;
  background-color: #189a9a;
}

.badge-primary[href]:hover,
.badge-primary[href]:focus {
  color: #fff;
  background-color: #116d6d;
}

.bg-primary {
  background-color: #189a9a !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #116d6d !important;
}

.border-primary {
  border-color: #189a9a !important;
}

.btn-primary {
  color: #fff;
  background-color: #189a9a;
  border-color: #189a9a;
}

.btn-primary:hover {
  color: #fff;
  background-color: #137b7b;
  border-color: #116d6d;
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 154, 154, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #189a9a;
  border-color: #189a9a;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #116d6d;
  border-color: #0f6060;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 154, 154, 0.5);
}

.btn-outline-primary {
  color: #189a9a;
  background-color: transparent;
  border-color: #189a9a;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #189a9a;
  border-color: #189a9a;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 154, 154, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #189a9a;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #189a9a;
  border-color: #189a9a;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 154, 154, 0.5);
}

.list-group-item-primary {
  color: #073030;
  background-color: #7eeaea;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #073030;
  background-color: #68e7e7;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #073030;
  border-color: #073030;
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #7eeaea;
}

.table-hover .table-primary:hover {
  background-color: #68e7e7;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #68e7e7;
}

.text-primary {
  color: #189a9a !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #116d6d !important;
}

section,
.section {
  padding: 5rem 0;
}
section .section_title,
.section .section_title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bs-primary);
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}
section .section_title span,
.section .section_title span {
  position: relative;
  z-index: 10;
}
section .section_title::after,
.section .section_title::after {
  content: "";
  position: absolute;
  height: 1rem;
  width: 100%;
  background-color: rgba(3, 218, 197, 0.3725490196);
  top: 100%;
  left: 0;
  transform: translateY(-15px);
  z-index: 1;
}
@media (max-width: 992px) {
  section .section_title,
  .section .section_title {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  section,
  .section {
    padding: 2rem 0;
  }
}

p {
  margin-bottom: 0.5rem;
}

blockquote,
.blockquote {
  padding: 1rem 1rem 1rem 3rem;
  background-color: var(--bs-light);
  border-left: 8px solid #116d6d;
}

.bg-gray {
  background-color: #e0e0e0;
}

@media (max-width: 992px) {
  .navbar-brand img {
    max-width: 60px;
    height: auto;
  }
}

.notification-dropdown {
  width: 400px;
  max-height: 600px;
  overflow-y: auto;
}
.notification-dropdown .notification-item {
  padding: 1rem;
}
.notification-dropdown .notification-item .title {
  word-wrap: nowrap;
}
@media (max-width: 765px) {
  .notification-dropdown {
    max-width: 350px;
    max-height: 450px;
  }
}
.notification-dropdown.other-dropdown .col-6:hover div {
  background-color: #f1fffe;
}

.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background-color: #fff;
  padding: 0.5rem;
  box-shadow: 0px 0px 10px #b2afaf;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav .nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
.mobile-nav .nav a,
.mobile-nav .nav .toggle-sub-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  width: 25%;
}
.mobile-nav .nav a .bi,
.mobile-nav .nav .toggle-sub-menu .bi {
  font-size: 18px;
  line-height: 18px;
  font-weight: 800;
}
.mobile-nav .nav .toggle-sub-menu {
  position: relative;
}
.mobile-nav .nav .toggle-sub-menu .toggler {
  width: 100%;
}
.mobile-nav .nav .toggle-sub-menu .sub-menu {
  position: absolute;
  bottom: 130%;
  right: 1rem;
  background-color: white;
  box-shadow: 0 0 6px #12121
  border: 1ps xolid lightgray;
  border-radius: 0.5rem;
  width: 300px;
  max-height: 500px;
  overflow-y: hidden;
  padding: 1rem;
}
.mobile-nav .nav .toggle-sub-menu .sub-menu span.bi {
  font-size: 1.5rem;
}
.mobile-nav .nav .toggle-sub-menu .sub-menu.hide {
  max-height: 0;
  padding: 0;
}
.mobile-nav .nav .toggle-sub-menu .sub-menu-item a {
  border: 1px solid lightgray;
  border-radius: 0.3rem;
  padding: 1rem 0;
}

.header-2 {
  height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
  padding: 4rem 0;
}

@media (max-width: 992px) {
  .header-2 {
    height: 88vh;
  }
}
.header-2 h1,
.header-2 h2,
.header-2 p {
  text-align: center;
}

.header-2 .text-header {
  color: #323232;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 3rem);
  color: #323232 !important;
}

.header-2 .text-header img {
  width: 200px;
  max-width: 40%;
  animation: rotate 200s linear alternate infinite;
}

.header-2 .text-header .name {
  font-size: clamp(2rem, 4vw, 8rem);
  text-shadow: 4px 2px #7809dd, 6px 3px #ff00bd;
  font-weight: 700;
  text-transform: uppercase;
  font-family: system-ui;
  letter-spacing: 11px;
}

.header-2 h2 {
  font-size: clamp(1.5rem, 2vh, 4rem);
}

.header-2 a {
  text-decoration: none;
}

.avantages-page {
  position: relative;
  overflow: hidden;
}
.avantages-page .alaune {
  background-color: rgb(233, 15, 15);
  color: white;
  position: absolute;
  z-index: 9999;
  font-size: 1.3rem;
  padding: 1rem 5rem;
  transform: rotate(-37deg) translate(-85px, -22px);
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .avantages-page .alaune {
    background-color: rgb(233, 15, 15);
    color: white;
    position: absolute;
    z-index: 9999;
    font-size: 0.9rem;
    padding: 0.5rem 5rem;
    transform: rotate(-37deg) translate(-67px, -32px);
    text-transform: uppercase;
  }
}
.avantages-page .carousel-item {
  max-height: 60vh;
}
.avantages-page .carousel-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .avantages-page .carousel-item img {
    height: 30vh;
    max-height: unset;
  }
}
.avantages-page .carousel-item .carousel-caption {
  background-color: rgba(0, 0, 0, 0.757);
}
@media (max-width: 992px) {
  .avantages-page .carousel-item .carousel-caption h5 {
    font-size: 0.9rem;
  }
  .avantages-page .carousel-item .carousel-caption h2 {
    font-size: 1.1rem;
  }
}

.card-item.epuise {
  position: relative;
  cursor: not-allowed;
}
.card-item.epuise::after {
  content: "Epuisé";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%) rotate(-40deg);
  padding: 0.5rem 2rem;
  background-color: #ff0000;
  color: white;
  border-radius: 0.3rem;
  opacity: 1;
}
.card-item.card {
  text-decoration: none;
  border-radius: 0.5rem;
}
.card-item.card .card-image-top {
  height: 10rem;
  width: 100%;
  object-fit: cover;
  transition: 1s ease;
  overflow: hidden;
}
.card-item.card:hover .card-image-top {
  transition: 1s ease;
}
.card-item.card:hover .card-image-top img {
  transform: scale(1.05);
}
.card-item.card .card-body {
  padding: 0.5rem 1rem;
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: rgba(31, 31, 31, 0.3490196078);
}
.card-item.card .card-body .card-title {
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .card-item.card {
    flex-direction: row !important;
    height: unset;
  }
  .card-item.card .card-image-top {
    height: 10rem;
    width: 100%;
  }
  .card-item.card .card-image-top img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
  .card-item.card .card-body {
    padding: 0.5rem;
    display: flex;
    position: absolute;
    flex-direction: column;
    justify-content: center;
  }
  .card-item.card .card-body h5 {
    font-size: 0.9rem;
  }
  .card-item.card .card-body .text-muted {
    font-size: 0.8rem;
  }
}

.article-card {
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  border-radius: 0.5rem;
}
.article-card:hover img {
  transform: scale(1.05);
}
.article-card:hover .card-body {
  transform: translateY(0);
}
.article-card .card-img-top {
  overflow: hidden;
  height: 13rem;
  object-fit: cover;
  width: 100%;
}
.article-card .card-body {
  width: 100%;
  position: absolute;
  bottom: 0;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.829);
}
.article-card .card-body .card-title {
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .article-card .card-body {
    transform: translateY(0);
  }
}

.top {
  position: relative;
}
.top .title {
  position: absolute;
  width: 100%;
  height: 100%;
  color: white;
  background-color: rgba(0, 0, 0, 0.304);
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 5rem);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top .item-image {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .top .item-image {
    height: 40vh;
  }
}

.details {
  /*background-color: #d1fcff;*/
}

.about-cse img {
  max-height: 60vh;
  object-fit: cover;
}

.membre-cse-item {
  border-bottom: 5px solid var(--bs-dark);
}
.membre-cse-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .membre-cse-item img {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 992px) {
  .membre-cse-item .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .membre-cse-item .wrapper .details {
    background: #ffffff;
  }
  .membre-cse-item .wrapper .details * {
    text-align: center;
  }
}

.annonces-tri li button:hover {
  background-color: var(--bs-primary);
  color: white;
}

.card-annonce-item.card {
  position: relative;
}
.card-annonce-item.card img {
  max-width: 100%;
  object-fit: cover;
  height: 12rem;
}
.card-annonce-item.card .delete-annonce-button {
  position: absolute;
  top: 0;
  right: 0;
}
.card-annonce-item.card .delete-annonce-button .text {
  display: none;
}
.card-annonce-item.card .delete-annonce-button:hover .text {
  display: unset;
}
.card-annonce-item.card .card-img-top {
  height: 12rem;
  object-fit: cover;
}
.card-annonce-item .annonce-type {
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: var(--bs-primary);
  padding: 0.2rem 1rem;
  color: white;
}

.annonce-images-wrapper {
  display: flex;
}
.annonce-images-wrapper .card-image {
  height: 20rem;
  max-width: 100%;
  object-fit: cover;
}

.carousel-item {
  height: 80vh;
  width: 100%;
  text-align: center;
}
.carousel-item img {
  height: 100%;
  object-fit: contain;
}

.annonce-add-image {
  position: relative;
}
.annonce-add-image span {
  position: absolute;
  top: 0;
  right: 0;
}
.annonce-add-image label {
  display: block;
  max-width: 100%;
}
.annonce-add-image label img {
  max-width: 100%;
}

.chat-area {
  height: calc(100vh - 250px);
  border: 1px solid #e5e5e5;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 3px;
  overflow-y: auto;
}
.chat-area .text-muted {
  font-size: 0.85rem;
}

.chatWrapper {
  display: flex;
}
.chatWrapper .left,
.chatWrapper .right {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .chatWrapper .left,
  .chatWrapper .right {
    flex-basis: 80%;
    width: 80%;
  }
}
.chatWrapper .left {
  align-items: flex-start;
  align-self: flex-start;
}
.chatWrapper .right {
  align-items: flex-end;
  align-self: flex-end;
  background-color: #f2fefc;
}

.account-page {
  min-height: 100vh;
}

#span_add_to_cart {
  padding: 0.3rem;
  border: 1px solid gray;
  display: inline-block;
  text-align: center;
}

.navabr-cart-show {
  position: relative;
}
.navabr-cart-show .cart-count {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  width: 15px;
  height: 15px;
  background-color: #b00020;
  border-radius: 50%;
  color: #fff;
  right: 0;
}

.vertical-align-center {
  vertical-align: middle;
}

.commande-card .card {
  background: rgba(2, 255, 210, 0.2196078431);
  position: relative;
}
.commande-card .card .statuts {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.commande-card .card .card-content .commande-total {
  color: var(--bs-primary);
}

.reduction {
  display: inline-flex;
  position: absolute;
  width: 37px;
  height: 22px;
  background-color: var(--bs-danger);
  color: white;
  justify-content: center;
  align-items: center;
  /* border-radius: 17%; */
  font-weight: 600;
  font-size: .8rem;
  top: 3px;
  right: 13px;
  z-index: 99;
}

.image-wrapper {
  position: relative;
}
.image-wrapper .reduction {
  transform: translate(14px, -14px) scale(1.2);
}

.billet-item-wrapper {
  position: relative;
}
.billet-item-wrapper .reduction {
  transform: translate(38%, -14%);
}

.footer .credit {
  color: #4d4d4d !important;
  padding: 0 1rem 1rem;
}

.ck-150 .ck-editor__editable {
  height: 150px !important;
}
.ck-150 .ck-editor__editable .ck-editor__editable_inline p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.text-muted p,
.text-muted li {
  font-size: 0.9rem;
  line-height: 1.1;
}

.comment-list {
  max-height: 70vh;
  overflow-y: auto;
}
.comment-list p {
  word-break: break-all;
  margin-bottom: 0;
}

.post_comment .comment-details {
  margin-bottom: 0.5rem;
}
.post_comment .comment-details strong {
  margin-bottom: -0.5rem;
}
.post_comment .comment-details small {
  font-size: 0.8rem;
  color: #073030 !important;
}
.post_comment .comment-replay {
  padding-left: 2rem;
}

.list_posts {
  min-height: 60vh;
}
.list_posts .post {
  width: 100%;
  display: block;
}
.list_posts .post .title h6 {
  margin-bottom: 0;
}
.list_posts .post .post_content {
  overflow-y: hidden;
  width: 100%;
}
.list_posts .post .post_content * {
  padding-left: 1rem;
  padding-right: 1rem;
}
.list_posts .post .post_content p, .list_posts .post .post_content li {
  font-size: 0.9rem;
  line-height: 1.1;
}
.list_posts .post .post_content figure, .list_posts .post .post_content img {
  display: inline-block;
  max-width: 100% !important;
  padding-left: 0;
  padding-right: 0;
}
.list_posts .post .post_footer span {
  font-size: 1.2rem;
}

.post-content img,
.post-content figure img {
  max-width: 100% !important;
}

.post_image .item-image {
  /*max-height: 21vh;*/
  object-fit: cover;
}
.post_image .show-image {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: rgba(71, 71, 71, 0.6431372549);
  width: 100%;
  height: 100%;
  z-index: 99999;
  vertical-align: middle;
}
.post_image .show-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: cover;
}

.email-help {
  font-size: 0.7rem;
}

.card-comment div {
  margin-bottom: -5px;
}
.card-comment small, .card-comment .small {
  font-size: 0.7rem;
}
.card-comment P {
  margin-bottom: 0;
}

.ck-editor__editable {
  background-color: #fff;
  height: 15vh;
}

@media (maw-width: 992px) {
  .x-small {
    font-size: 0.5rem !important;
  }
}
.trajet-card {
  /*.flesh::before, .flesh::after {
      position: absolute;
      content: '';
      width: 10px;
      height: 10px;
      background-color: var(--bs-primary);
      border-radius: 50%;
      top: -1rem;
      left: -50%;
  }

  .flesh::after {
      top: unset;
      bottom: -1rem;
  } */
}
.trajet-card .steps {
  border-left: 3px solid var(--bs-success);
  margin-left: 1px;
}
@media (maw-width: 992px) {
  .trajet-card .md-small, .trajet-card .bi {
    font-size: 0.8rem;
  }
  .trajet-card .steps-side {
    max-width: 35%;
    margin-right: 1rem;
  }
}
.trajet-card .place {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid gray; */
  /* border-radius: 50%; */
  /* background-color: var(--bs-success); */
  color: #40bb19;
}
.trajet-card .place.hide {
  color: rgb(134, 134, 134);
}
.trajet-card .trajet-card {
  position: relative;
  text-decoration: none;
}
.trajet-card .trajet-card:hover {
  background-color: #f9f9f9;
}
.trajet-card .offre h5 {
  position: absolute;
  right: 0rem;
  top: 0;
  padding: 0.3rem 1rem;
  border-radius: 0 0.3rem 0 0;
  font-weight: 700;
}

.flashes .alert {
  position: fixed;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  background-color: #fff !important;
  max-width: 500px;
  box-shadow: 0 0 25px rgb(108, 108, 108);
}

.confirm-wrapper {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgba(64, 64, 64, 0.568627451);
}
.confirm-wrapper .confirm {
  background-color: #fff;
}
.confirm-wrapper .confirm .buttons-wrapper {
  margin: 1rem auto;
}
.confirm-wrapper .confirm .buttons-wrapper .btn {
  margin: 0 0.5rem;
}

.billet-item-wrapper.card {
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */
