@charset "UTF-8";
header {
  z-index: 2;
}
header .site-logo {
  display: flex;
  justify-content: flex-end;
}
header .site-logo div {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
header .site-logo div img {
  height: 40px;
}
header .site-logo div small {
  font-size: 10px;
  color: #404040;
  display: inline-block;
  width: 80%;
  line-height: 10px;
}
header .top-bar {
  padding: 0;
  border: 0;
  border-bottom: solid 1px #E0E0E0;
}
header .top-bar .top-bar-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .top-bar .top-bar-content .nav {
  padding: 0;
}
header .top-bar .top-bar-content .nav > a {
  display: inline-block;
  padding: 5px 10px;
  color: #0c0e18;
  margin-right: 10px;
  font-size: 12px;
}
header .header-info-bar {
  padding: 0;
}
header .header-info-bar .row {
  display: flex;
  justify-content: space-between;
}
header .header-info-bar .main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header .header-info-bar .main-menu ul.main-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
header .header-info-bar .main-menu ul.main-menu .menu-item {
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
header .header-info-bar .main-menu ul.main-menu .menu-item > a {
  font-weight: bold;
  color: #221c0c;
  text-transform: uppercase;
  font-size: 0.85vw;
  line-height: 1vw;
  padding: 0px 20px;
  margin: 15px 0;
  position: relative;
  border-right: 3px #656363 dotted;
}
header .header-info-bar .main-menu ul.main-menu .menu-item .sub-menu {
  background-color: #181818;
  display: none;
  position: absolute;
  padding: 15px 0;
  top: 100%;
  left: 0;
  z-index: 999;
}
header .header-info-bar .main-menu ul.main-menu .menu-item .sub-menu li {
  padding: 8px 30px;
  border-right: 0;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  gap: 30px;
}
header .header-info-bar .main-menu ul.main-menu .menu-item .sub-menu li a {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  min-width: 150px;
}
header .header-info-bar .main-menu ul.main-menu .menu-item .sub-menu li a:hover {
  color: rgba(255, 255, 255, 0.6);
}
header .header-info-bar .main-menu ul.main-menu .menu-item .sub-menu li .fa {
  font-size: 12px;
  color: #FFF;
}
header .header-info-bar .main-menu ul.main-menu .menu-item .sub-menu li .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
}
header .header-info-bar .main-menu ul.main-menu .menu-item .sub-menu li:hover .sub-menu {
  display: block;
}
header .header-info-bar .main-menu ul.main-menu .menu-item .sub-menu li.active a {
  color: #f19924;
}
header .header-info-bar .main-menu ul.main-menu .menu-item > .sub-menu {
  min-width: 300px;
}
header .header-info-bar .main-menu ul.main-menu .menu-item:hover .sub-menu {
  display: block;
}
header .header-info-bar .main-menu ul.main-menu .menu-item.active > a, header .header-info-bar .main-menu ul.main-menu .menu-item:hover > a {
  color: #f19924;
}
header .header-info-bar .main-menu ul.main-menu .menu-item:last-child {
  border-right: 0;
}
header .header-info-bar .header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
}
header .header-info-bar .header-right .auth {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  column-gap: 10px;
}
header .header-info-bar .header-right .auth a, header .header-info-bar .header-right .auth span {
  text-transform: uppercase;
  font-size: 10px;
  padding: 8px 10px;
}
header .header-info-bar .header-right .user-space .profile-access {
  min-width: 180px;
}
header .header-info-bar .search-form {
  height: 62px;
}
header .header-info-bar .search-form .main-search {
  padding-top: 10px;
}
header .header-info-bar .search-form .main-search .form-control {
  padding: 0px 20px;
  height: 42px;
}
header .header-info-bar .search-form .main-search .input-group-text {
  padding: 0 10px;
  background-color: #EAA451;
  height: 42px;
  color: #FFFFFF;
}
header .header-info-bar .search-form .main-search .btn {
  height: 42px;
}
header .alert-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateY(0);
  opacity: 1;
}
header .alert-container.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
header .alert-container .alert {
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .main-big-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: -15px;
}
header .main-big-menu > li {
  padding: 28px 0;
}
header .main-big-menu > li span {
  padding: 8px 20px;
  font-size: 13px;
}
header .main-big-menu > li .big-menu-dropdown {
  position: absolute;
  display: none;
  top: 82px;
  left: 0;
  right: 0;
  height: 250px;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 0 0 15px 15px;
}
header .main-big-menu > li .big-menu-dropdown .columns h5 {
  color: #101010;
  font-size: 15px;
}
header .main-big-menu > li .big-menu-dropdown .columns ul li {
  font-size: 13px;
  margin: 8px 0;
  font-weight: lighter;
}
header .main-big-menu > li .big-menu-dropdown .columns ul li span {
  margin: 0;
  padding: 5px 10px 5px 0;
  color: #6a9a7e;
}
header .main-big-menu > li .big-menu-dropdown .columns ul li a:hover {
  text-decoration: underline;
}
header .main-big-menu > li .big-menu-dropdown .columns ul li ul {
  display: none;
  padding-left: 30px;
}
header .main-big-menu > li .big-menu-dropdown .columns ul li:hover ul {
  display: block;
}
header .main-big-menu > li:hover .big-menu-dropdown, header .main-big-menu > li:focus .big-menu-dropdown {
  display: block;
}

.main-search {
  background-color: #383129;
  padding: 10px 0;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  border-radius: 4px;
}

.section-code {
  position: relative;
  background-color: rgba(16, 65, 28, 0.9);
  padding: 20px 0 !important;
}
.section-code .wrapper {
  position: relative;
  padding-top: 0 !important;
  z-index: 1;
}
.section-code .wrapper .section-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.section-code .wrapper .section-body .code {
  max-width: 280px;
  min-width: 280px;
  position: relative;
  background-color: #ffffff;
  border-radius: 2px 4px 1px 1px;
  border-bottom: solid 1px #E0E0E0;
  padding: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 0 -1px white, 0 4px 0 -2px white, 0 6px 0 -3px white, 0 8px 0 -4px white, 0 10px 0 -5px white;
}
.section-code .wrapper .section-body .code::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
  border-radius: 0 4px 4px 0;
}
.section-code .wrapper .section-body .code .cover {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-code .wrapper .section-body .code .cover a {
  display: flex;
  width: 100%;
  position: relative;
  aspect-ratio: 2/3;
  justify-content: center;
  align-items: center;
}
.section-code .wrapper .section-body .code .cover a img {
  object-fit: contain;
  position: absolute;
  width: 90%;
}

.list-filter li a {
  font-size: 14px;
  color: #404040;
  padding: 14px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.list-filter li a span.fa {
  font-size: 12px;
}
.code-container article.code-article {
  position: relative;
  background-color: rgba(240, 240, 240, 0.4);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}
.code-container article.code-article .actions {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
}
.code-container article.code-article:hover {
  background-color: rgba(240, 240, 240, 0.6);
}
.code-container article.code-article:hover .actions {
  display: block;
}
.code-container article.code-article.selected {
  background-color: #c2fabc;
}

.summary-container {
  height: 100vh;
  position: sticky;
  top: 150px;
  border-radius: 6px;
  background-color: #fff;
  padding: 20px;
}
.summary-container ul {
  margin-bottom: 20px;
}
.summary-container .summary-content {
  max-height: 100%;
  overflow-y: auto;
}
.summary-container .summary-code-content {
  overflow: hidden;
}
.summary-container .summary-code-content .grandepartie, .summary-container .summary-code-content .partie, .summary-container .summary-code-content .souspartie, .summary-container .summary-code-content .initiative, .summary-container .summary-code-content .preambule, .summary-container .summary-code-content .livre, .summary-container .summary-code-content .titre, .summary-container .summary-code-content .soustitre, .summary-container .summary-code-content .chapitre, .summary-container .summary-code-content .souschapitre, .summary-container .summary-code-content .section, .summary-container .summary-code-content .soussection, .summary-container .summary-code-content .paragraphe, .summary-container .summary-code-content .sousparagraphe, .summary-container .summary-code-content .annexes, .summary-container .summary-code-content .annexe {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  display: inline-block;
  margin: 10px 0;
  color: #86583b;
}
.summary-container .summary-code-content .article {
  font-size: 14px;
}
.summary-container .summary-code-content .accordion-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.books-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.books-wrapper .books-card {
  width: 150px;
}
.books-wrapper .books-card .book-cover div {
  height: 180px;
  width: 100%;
  background-size: cover;
  border-radius: 8px;
}
.books-wrapper .books-card h5.title {
  margin-top: 10px;
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
}

.code-article div {
  margin-bottom: 5px;
}

.splide__slide .back {
  height: 100%;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.5);
}
.splide__slide .slide-content {
  padding-top: 80px;
  padding-bottom: 80px;
}
.splide__slide .slide-content h2 {
  font-size: 3vw;
  color: #FFFFFF;
  line-height: 3.2vw;
  text-transform: uppercase;
  font-weight: bold;
}
.splide__slide .slide-content h4 {
  color: orange;
  font-size: 1.5vw;
}
.splide__slide .slide-content p {
  font-size: 1vw;
  color: rgba(255, 255, 255, 0.9);
}

.main-side-filter-container .filter-box {
  position: sticky;
  top: 164px;
}
.main-side-filter-container .filter-box .filter-box-content {
  max-height: 75vh;
  overflow: hidden; /* Cacher la barre de défilement */
  -ms-overflow-style: none; /* Pour Internet Explorer et Edge */
}
.main-side-filter-container .filter-box .filter-box-content:hover {
  overflow-y: scroll;
}
.main-side-filter-container .form-control {
  background-color: #fff;
}

button.btn.dropdown-toggle {
  border: solid 1px #E1E1E1 !important;
  border-radius: 6px !important;
}

.mobile-menu {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  padding: 20px;
  width: 100vw;
}
.mobile-menu .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: dotted 2px #C0C0C0;
  margin-bottom: 10px;
}
.mobile-menu .title h3 {
  font-size: 6vw;
  margin: 0;
}
.mobile-menu .title span {
  font-size: 22px;
  color: red;
}
.mobile-menu .main-menu {
  display: block !important;
  width: auto !important;
}
.mobile-menu .main-menu .menu-item {
  padding: 5px 0;
}
.mobile-menu .main-menu .menu-item a {
  color: #2a1f16;
}
.mobile-menu .main-menu .menu-item .sub-menu {
  background-color: #fff;
  width: 100% !important;
  margin: 0 !important;
  min-width: 100% !important;
}
.mobile-menu .main-menu .menu-item .sub-menu li {
  padding: 0 !important;
}
.mobile-menu .main-menu .menu-item.show .sub-menu {
  display: block;
}
.mobile-menu .main-menu > .menu-item > a {
  color: orange;
}
.mobile-menu .main-menu > .menu-item:first-child {
  display: none;
}
.mobile-menu .main-menu > .menu-item .sub-menu {
  margin-top: 10px;
  margin-left: 20px;
}
.mobile-menu .main-menu > .menu-item .sub-menu li {
  padding: 5px 0;
}
.mobile-menu .main-menu .fa-chevron-right {
  display: none;
}

.mobile-menu-opener span {
  color: #f3a237;
  margin-left: 20px;
  cursor: pointer;
  font-size: 36px;
}
.mobile-menu-opener span:hover {
  color: #d07803;
}

.hide-md {
  display: block;
}

.show-md {
  display: none;
}

span.select2 {
  max-width: 100%;
  width: 100%;
  display: block;
}

.checkbox-selector .checker {
  background-color: #28211a;
  cursor: pointer;
}
.checkbox-selector .checker.active {
  background-color: #d9811c;
}
.checkbox-selector .checker:hover {
  color: #d2cd95;
}

.sidebar-right {
  min-height: 100%;
  position: relative;
  padding: 10px 0;
}
.sidebar-right .sidebar-right-content {
  position: sticky;
  top: 164px;
}
.sidebar-right .sidebar-right-content h4 {
  padding: 10px 0;
  border-bottom: solid 1px #D0D0D0;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  position: relative;
  z-index: 99;
}

.jorci {
  padding: 30px 15px;
  background-color: #E0E0E0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 10px;
}
.jorci .fa-newspaper {
  font-size: 40px;
}
.jorci a {
  font-size: 14px;
}

.book {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  /* Ombre extérieure pour donner l'effet de livre */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Effet de bordure pour simuler la tranche des pages */
.book::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -5px;
  width: 15px;
  height: 90%;
  background: repeating-linear-gradient(0deg, #eee, #eee 2px, #fff 2px, #fff 4px);
  border-radius: 4px 0 0 4px;
}

/* Ombre intérieure pour donner plus de profondeur */
.book::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.main-filter-container {
  border: solid 1px rgba(68, 68, 68, 0.1);
  background-color: rgba(255, 255, 255, 0.4);
  padding: 20px;
  border-radius: 6px;
}
.main-filter-container .main-search-wrapper {
  position: relative;
}
.main-filter-container .main-search-wrapper input {
  padding: 0 40px 0 20px;
  border-radius: 30px;
}
.main-filter-container .main-search-wrapper .fa {
  top: 16px;
  position: absolute;
}
.main-filter-container .main-search-wrapper .fa.fa-search {
  right: 20px;
}
.main-filter-container .main-ordering {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: right;
}

/* Styles d'animation */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #4299e1, #667eea);
  animation: loading-bar 1s ease-in-out infinite;
  z-index: 9999;
}

.filters-loading {
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}

.input-loading {
  position: relative;
  overflow: hidden;
}

.input-loading::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: input-loading 1.5s infinite;
}

.result-card {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.results-loading .result-card {
  opacity: 0.6;
  transform: translateY(5px);
}

.pagination-loading {
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.recap-payment h2 {
  margin-bottom: 20px;
}
.recap-payment h4 {
  font-size: 18px;
}
.recap-payment ul {
  margin: 15px 0;
}
.recap-payment ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recap-payment ul li span {
  font-weight: lighter;
  font-size: 13px;
}
.recap-payment ul li strong {
  font-weight: bolder;
  color: #202020;
}

/* Conteneur du skeleton */
.skeleton-container {
  width: 100%;
  padding: 30px;
}
.skeleton-container .skeleton-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.skeleton-container .skeleton-item .skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: fadePulse 1.5s infinite linear;
  border-radius: 5px;
}
.skeleton-container .skeleton-item .skeleton-avatar {
  width: 90px;
  height: 130px;
  margin-bottom: 15px;
}
.skeleton-container .skeleton-item .skeleton-text-wrapper {
  width: 100%;
  height: 130px;
  margin-bottom: 15px;
}
.skeleton-container .skeleton-item {
  /* Titre */
}
.skeleton-container .skeleton-item .skeleton-title {
  width: 70%;
  height: 22px;
  margin-bottom: 20px;
}
.skeleton-container .skeleton-item {
  /* Lignes de texte */
}
.skeleton-container .skeleton-item .skeleton-text {
  width: 100%;
  height: 12px;
  margin-bottom: 8px;
}
.skeleton-container .skeleton-item .skeleton-text:last-child {
  width: 80%;
}

.payment_mode_selectors_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.payment_mode_selectors_wrapper .payment_mode_selector {
  padding: 20px 4px;
  border: solid 4px #a1a1a1;
  display: inline-block;
  min-width: 300px;
  text-align: center;
}
.payment_mode_selectors_wrapper .payment_mode_selector.selected {
  border-color: #28cb9a;
}

.card-table.current {
  border-color: #007bff !important; /* Bordure bleue */
  background-color: #f8f9fa; /* Fond légèrement gris */
}

.reader-wrapper {
  background-color: #3a3939;
  border-radius: 4px;
  padding: 2rem;
  overflow: hidden;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reader-wrapper .turn-book-reader {
  overflow: hidden;
}
.reader-wrapper .turn-book-reader .page {
  background-color: #f8f2e8;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.reader-wrapper .turn-book-reader .page:nth-child(even), .reader-wrapper .turn-book-reader .page:nth-child(odd) {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1), inset -10px 0 15px -6px rgba(0, 0, 0, 0.15), inset -20px 0 25px -10px rgba(0, 0, 0, 0.1);
}
.reader-wrapper .turn-book-reader .page .page-content {
  padding: 0 40px 0 20px;
  margin: 20px 0 40px 0;
  overflow: hidden;
  transition: font-size 0.3s ease;
}
.reader-wrapper .turn-book-reader .page .page-content * {
  transition: font-size 0.3s ease, line-height 0.3s ease;
}
.reader-wrapper .turn-book-reader .page .page-content h1 {
  font-size: 2em;
}
.reader-wrapper .turn-book-reader .page .page-content h2 {
  font-size: 1.7em;
}
.reader-wrapper .turn-book-reader .page .page-content h3 {
  font-size: 1.4em;
}
.reader-wrapper .turn-book-reader .page .page-content h4 {
  font-size: 1.1em;
}
.reader-wrapper .turn-book-reader .page .page-content p, .reader-wrapper .turn-book-reader .page .page-content li, .reader-wrapper .turn-book-reader .page .page-content span, .reader-wrapper .turn-book-reader .page .page-content div {
  font-size: 0.7em;
}
.reader-wrapper .book-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 10px;
  border-radius: 4px;
  width: 350px !important;
  margin-bottom: 20px;
}
.reader-wrapper .book-controls .control-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 6px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.reader-wrapper .book-controls .control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.reader-wrapper .book-controls .control-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.reader-wrapper .book-controls .control-btn i {
  font-size: 16px;
}
.reader-wrapper .book-controls #zoom-level {
  color: white;
  font-size: 14px;
  min-width: 50px;
  text-align: center;
}
.reader-wrapper.fullscreen-mode {
  padding: 0;
  background: #000;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reader-wrapper.fullscreen-mode .book-controls {
  top: 30px;
  right: 30px;
}
.reader-wrapper.fullscreen-mode .turn-book-reader {
  margin: 0 !important;
}
@media (max-width: 1200px) {
  .reader-wrapper {
    padding: 2rem 8rem;
  }
}
@media (max-width: 992px) {
  .reader-wrapper {
    padding: 2rem 4rem;
  }
}
@media (max-width: 768px) {
  .reader-wrapper {
    padding: 1rem 2rem;
  }
  .reader-wrapper .book-controls {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
  }
  .reader-wrapper .book-controls .control-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  .reader-wrapper .book-controls #zoom-level {
    font-size: 12px;
    min-width: 40px;
  }
  .reader-wrapper .turn-book-reader {
    max-width: 95vw;
  }
  .reader-wrapper .turn-book-reader .page {
    padding: 15px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .reader-wrapper {
    padding: 1rem;
  }
  .reader-wrapper .turn-book-reader {
    width: 100%;
  }
  .reader-wrapper .turn-book-reader .page {
    padding: 15px;
    font-size: 14px;
  }
}

@keyframes fadePulse {
  0% {
    background-position: -200% 0;
    opacity: 0.6;
  }
  50% {
    background-position: 200% 0;
    opacity: 1;
  }
  100% {
    background-position: -200% 0;
    opacity: 0.6;
  }
}
@keyframes loading-bar {
  0% {
    width: 0;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@keyframes input-loading {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@media (max-width: 1020px) {
  .hide-md {
    display: none;
  }
  .show-md {
    display: block;
  }
}
@media (max-width: 400px) {
  .splide__slide .slide-content h2 {
    font-size: 6vw;
    line-height: 6vw;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: bold;
  }
  .splide__slide .slide-content h4 {
    color: orange;
    font-size: 4vw;
  }
  .splide__slide .slide-content p {
    font-size: 3vw;
    color: rgba(255, 255, 255, 0.9);
  }
}
@media (min-width: 385px) {
  .main-side-filter-container {
    height: 100%;
  }
}

/*# sourceMappingURL=library.css.map */
