/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

img {
  height: auto;
  overflow: hidden;
  object-fit: contain;
  object-position: center;
}

/* Logos and avatars should maintain their aspect ratio and fill their containers */
.kslt-gen-logo img,
#kslt-hm-logo img,
.kslt-pop-image img,
.kslt-bs-author-img img,
.kslt-bs-book-author-avatar img,
.kslt-dtls-book-author-avatar img,
.kslt-mng-img img,
.kslt-mng-image img,
.avatar-image img,
.avatar-image-for-listing img,
.kslt-hm-header-circle img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.image-caption-on-white {
  text-align: center;
  font-size: 0.75rem;
  color: rgb(39, 37, 37);
}

.image-caption-on-black {
  text-align: center;
  font-size: 0.75rem;
  color: #eee;
}

.example {
  display: -ms-grid;
  display: grid;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    to(black)
  );
  background: -o-linear-gradient(top, white, black);
  background: linear-gradient(to bottom, white, black);
}
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ************************** CARTE DE MESSAGE PAR DEFAUT SI NON CONTENU **************** */

.kslt-gen-default-message {
  width: 80%;
  margin: auto;
  background: -o-linear-gradient(bottom right, #32373b, #4a5859);
  background: -webkit-gradient(
    linear,
    right bottom,
    left top,
    from(#32373b),
    to(#4a5859)
  );
  background: linear-gradient(to top left, #32373b, #4a5859);
  padding: 1rem 2rem;
  border-radius: 4px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  gap: 0.8rem;
}
.kslt-gen-default-message .imp {
  color: #f4b860;
}
.kslt-gen-default-message .icon svg {
  stroke: #fff;
}
.kslt-gen-default-message .kslt-gen-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-block: 0.5rem;
}
.kslt-gen-default-message .kslt-gen-btns .btn-action {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: #f4b860;
  border-radius: 2px;
  border: #4a5859 0.5px solid;
}
.kslt-gen-default-message .kslt-gen-btns .btn-action:hover,
.kslt-gen-default-message .kslt-gen-btns .btn-action:active {
  background-color: #4a5859;
}

/* ************************** END CARTE DE MESSAGE PAR DEFAUT SI NON CONTENU **************** */

/* ************************* TOAST MESSAGES *************************** */

.message__box {
  left: 4rem;
  top: 2rem;
  background-color: #181414;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.8rem;
  border-radius: 5px;
  padding: 0.6rem 0.8rem;
  color: white;
  -webkit-transform: translateY(-105%);
  -ms-transform: translateY(-105%);
  transform: translateY(-105%);
  opacity: 0;
  position: fixed;
  z-index: 10005;
}
.message__box span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
}
.message__box.error {
  background-color: #e32636;
}
.message__box.success {
  color: #66ff00;
  background-color: rgb(31, 28, 28);
}
.message__box.info svg {
  stroke: #fff;
}

.message__box__js {
  -webkit-transform: initial;
  -ms-transform: initial;
  transform: initial;
  opacity: 1;
}

/* *************************** END TOAST MESSAGES ********************** */

/* *********************** LE SPINNER *************************** */
:root {
  --spiner-border-width: 2px;
  --spiner-dims: 25px;
  --spinner-track-color: #f4b860;
  --spinner-ring-color: #32373b;
}

.loader {
  border: var(--spiner-border-width) solid var(--spinner-ring-color);
  border-top: var(--spiner-border-width) solid var(--spinner-track-color);
  border-radius: 50%;
  width: var(--spiner-dims);
  height: var(--spiner-dims);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.with-loader {
  background-color: #f7fafb !important;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ************************ FIN DU SPINNER ************************** */

/* ************************ CARROUSSEL ANIMATION ********************** */

.kslt-gen-scroller[data-animate="true"] {
  width: 98%;
  margin: auto;
  overflow: hidden;
  -webkit-mask: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(20%, #fff),
    color-stop(80%, #fff),
    to(transparent)
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    #fff 20%,
    #fff 80%,
    transparent
  );
  mask: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(20%, #fff),
    color-stop(80%, #fff),
    to(transparent)
  );
  mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}

.kslt-gen-scroller[data-animate="true"] .kslt-gen-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-animation: scroll 80s linear infinite;
  animation: scroll 80s linear infinite;
}

.kslt-gen-scroller[data-animate="true"] .kslt-gen-items .kslt-gen-card {
  width: 310px;
  height: 210px;
}

@-webkit-keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* *************************** END CARROUSSEL ANIMATION **************** */

/* ************************* TOPBAR ***********************************  */

.kslt-gen-header {
  background-color: #32373b;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed !important;
  width: 100vw;
  z-index: 1000;
  top: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  padding: 1rem;
  padding-right: 2rem;
  height: 72px;
}

.sticky-header {
  top: 0;
  width: 100vw;
}

.kslt-gen-header .kslt-gen-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 1rem;
}
.kslt-gen-header .kslt-gen-menu button {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
}

.kslt-gen-header .kslt-gen-menu button svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  stroke: #fff;
}
.kslt-gen-header .kslt-gen-menu .kslt-gen-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  height: 40px;
  width: 40px;
  border: 0.5px solid #4a5859;
  background-color: transparent;
  border-radius: 50%;
}
.kslt-gen-header .kslt-gen-menu .kslt-gen-circle svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.kslt-gen-header .kslt-gen-menu .kslt-gen-circle:hover {
  background-color: #f4b860;
  border: #f4b860;
}
.kslt-gen-header .kslt-gen-menu .kslt-gen-circle:hover svg {
  fill: #32373b;
}
.kslt-gen-header .kslt-gen-menu .kslt-gen-circle button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
}
.kslt-gen-header .kslt-gen-menu .kslt-hide-on-computer {
  display: none;
}
.kslt-gen-header .kslt-gen-logo {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50% !important;
  background-color: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  overflow: hidden;
}
.kslt-gen-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
.kslt-gen-header ul a:hover,
.kslt-gen-header ul a:active {
  color: #f4b860;
}
.kslt-gen-header .kslt-gen-icons {
  gap: 1rem;
}

/* **************************** END TOPBAR ***************************** */

/* ************************* ARTICLE CARD ****************************** */

.kslt-gen-card {
  background-color: #1e2124;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  -o-transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

.kslt-gen-card .kslt-gen-img {
  position: relative;
  height: auto;
  overflow: hidden;
}

.kslt-gen-card .kslt-gen-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

.kslt-gen-card .kslt-gen-img .kslt-gen-blur {
  height: 100%;
  width: 100%;
  position: absolute;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(30, 33, 36, 0.8)),
    color-stop(rgba(30, 33, 36, 0.2)),
    to(transparent)
  );
  background: -o-linear-gradient(
    bottom,
    rgba(30, 33, 36, 0.8),
    rgba(30, 33, 36, 0.2),
    transparent
  );
  background: linear-gradient(
    to top,
    rgba(30, 33, 36, 0.8),
    rgba(30, 33, 36, 0.2),
    transparent
  );
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  top: 0;
  left: 0;
}

.kslt-gen-card .kslt-gen-img .kslt-gen-blur .kslt-gen-categ {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: #1e2124;
  background-color: #f4b860;
  cursor: default;
}

.kslt-gen-card .kslt-gen-content {
  padding: 1.2rem;
  color: white;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}

.kslt-gen-card .kslt-gen-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-meta-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.kslt-gen-card .kslt-gen-content .kslt-gen-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-info.author {
  color: #f4b860;
  font-weight: 500;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-text p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-action {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.kslt-gen-card .kslt-gen-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-action span {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-action span svg {
  fill: rgba(255, 255, 255, 0.7);
  width: 18px;
  height: 18px;
  -webkit-transition: fill 0.2s ease;
  -o-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-action span:hover {
  background-color: rgba(244, 184, 96, 0.2);
}

.kslt-gen-card .kslt-gen-content .kslt-gen-action span:hover svg {
  fill: #f4b860;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-action .kslt-gen-read {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e2124;
  background-color: #f4b860;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.kslt-gen-card .kslt-gen-content .kslt-gen-read:hover {
  opacity: 0.9;
}

.kslt-gen-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.2rem;
}

.kslt-stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.kslt-stat-item svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.4);
}

.kslt-btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 0;
}

.kslt-btn-icon:hover {
  background: rgba(244, 184, 96, 0.15);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.kslt-btn-icon svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.6);
  -webkit-transition: fill 0.2s ease;
  -o-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
}

.kslt-btn-icon:hover svg {
  fill: #f4b860;
}

/* *********************** END ARTICLE CARD ********************** */

/* ************************** SEARCH FORM ************************ */

.fixed-simple,
.fixed,
.kslt-gen-search-form {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.fixed,
.kslt-gen-search-form {
  bottom: 0;
  width: 100%;
  height: 100vh;
}

.kslt-gen-search-form {
  opacity: 0;
  pointer-events: none;
  background-color: rgba(50, 55, 59, 0.5);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0;
}
.kslt-gen-search-form .kslt-gen-wrapper {
  width: 90%;
  margin: auto;
  border-radius: 4px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.kslt-gen-search-form .kslt-gen-wrapper input,
.kslt-gen-search-form .kslt-gen-wrapper button {
  height: 50px;
  padding: 10px 20px;
  font-size: 1.1rem;
  color: #000;
}

.kslt-gen-search-form .kslt-gen-wrapper button {
  cursor: pointer;
  background-color: #f4b860;
}
.kslt-gen-search-form .kslt-gen-wrapper input {
  width: 100%;
}

.kslt-gen-search-form .kslt-gen-close-search-form {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-color: #f4b860;
  color: #32373b;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.kslt-gen-with-form .kslt-gen-search-form {
  opacity: 1;
  pointer-events: all;
}

/* ************************** END SEARCH FORM ************************** */

/* ************************* FOOTER ******************************** */

.developper {
  display: inline-block;
  width: 100%;
  background-color: #0f1012;
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  border-top: 0.6px solid #000;
}

.developper a:hover {
  color: #f4b860;
}

.developper .imp-text {
  color: #f4b860;
}

.kslt-gen-footer {
  min-height: 50vh;
  background-color: #0f1012;
  position: relative;
}

/* .kslt-gen-footer .kslt-gen-newsletter-container {
    height: 70px;
    width: 100%;
    background-color: #0f1012;
    padding: .5rem 1rem;
    color: #fff;
  } */

.kslt-gen-footer .kslt-gen-wrapp-divs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: " one two three four";
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -moz-column-gap: 0;
  -webkit-column-gap: 0;
  column-gap: 0;
  row-gap: 0;
  gap: 1rem;
  -ms-flex-line-pack: center;
  align-content: center;
  height: 100%;
  padding: 2em 4rem;
}
.kslt-gen-footer .kslt-gen-wrapp-divs .kslt-gen-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
}

.first-div {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: one;
}

.second-div {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: two;
}

.third-div {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: three;
}

.fourth-div {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
  grid-area: four;
}

.kslt-gen-footer .kslt-gen-social-medias {
  padding: 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.kslt-gen-footer .kslt-gen-social-medias .facebook,
.kslt-gen-footer .kslt-gen-social-medias .instagram,
.kslt-gen-footer .kslt-gen-social-medias .whatsapp,
.kslt-gen-footer .kslt-gen-social-medias .gear,
.kslt-gen-footer .kslt-gen-social-medias .youtube {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
}
.kslt-gen-footer .kslt-gen-social-medias .facebook:hover,
.kslt-gen-footer .kslt-gen-social-medias .facebook:active,
.kslt-gen-footer .kslt-gen-social-medias .instagram:hover,
.kslt-gen-footer .kslt-gen-social-medias .instagram:active,
.kslt-gen-footer .kslt-gen-social-medias .whatsapp:hover,
.kslt-gen-footer .kslt-gen-social-medias .whatsapp:active,
.kslt-gen-footer .kslt-gen-social-medias .youtube:hover,
.kslt-gen-footer .kslt-gen-social-medias .youtube:active,
.kslt-gen-footer .kslt-gen-social-medias .gear:hover,
.kslt-gen-footer .kslt-gen-social-medias .gear:active {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.kslt-gen-footer .kslt-gen-social-medias .facebook {
  background-color: #0165e1;
}

.kslt-gen-footer .kslt-gen-social-medias .facebook svg,
.kslt-gen-footer .kslt-gen-social-medias .whatsapp svg,
.kslt-gen-footer .kslt-gen-social-medias .youtube svg {
  fill: #fff;
}
.kslt-gen-footer .kslt-gen-social-medias .instagram {
  background: -o-linear-gradient(bottom right, pink, violet, blue);
  background: -webkit-gradient(
    linear,
    right bottom,
    left top,
    from(pink),
    color-stop(violet),
    to(blue)
  );
  background: linear-gradient(to top left, pink, violet, blue);
}
.kslt-gen-footer .kslt-gen-social-medias .whatsapp {
  background-color: #4fce5d;
}
.kslt-gen-footer .kslt-gen-social-medias .youtube {
  background-color: #ff0000;
}
.kslt-gen-footer .kslt-gen-social-medias .gear {
  background-color: #fff;
}
.kslt-gen-footer h2 {
  font-size: 3rem;
  color: #f4b860;
}
.kslt-gen-footer h2::after {
  content: "";
  display: block;
  width: 100px;
  padding-top: 8px;
  border-bottom: 4px solid #f4b860;
  -webkit-transition: 0.4s ease-out;
  -o-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.kslt-gen-footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1em;
}
.kslt-gen-footer ul a {
  color: white;
}
.kslt-gen-footer ul a:hover,
.kslt-gen-footer ul a:active {
  color: #f4b860;
}

.kslt-gen-contains-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.kslt-gen-count-booked {
  display: inline-block;
  padding: 0.3em;
  border-radius: 0.2em;
  color: #f2ad48;
  background-color: rgba(244, 184, 96, 0.1);
  text-align: center;
  padding: 0.5em 0.8em;
  font-size: 0.8em;
  margin-top: 1em;
  margin-right: 1em;
}
/* ************************ END FOOTER ****************************** */

/* ************************ ARROW TO TOP ****************************** */

.gen-arrow-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #f4b860;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
}
.gen-arrow-to-top svg {
  fill: #32373b;
}

.gen-arrow-to-top-js {
  -webkit-transform: initial;
  -ms-transform: initial;
  transform: initial;
  opacity: 1;
}

/* *********************** END ARROW TO TOP ********************** */

/* ************************** MEDIA QUERIES ************************* */
@media only all and (max-width: 1055px) {
  .kslt-gen-footer .kslt-gen-wrapp-divs {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr) [2];
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
      "one two"
      "three four";
  }
  .first-div {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .second-div {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .third-div {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .fourth-div {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}

@media only all and (max-width: 768px) {
  .kslt-gen-default-message {
    display: block;
  }
  .kslt-gen-default-message .icon {
    padding-bottom: 0.3rem;
  }
  .kslt-gen-default-message .icon svg {
    position: static;
  }
}

@media only all and (max-width: 600px) {
  ul.kslt-gen-links {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    top: 0;
    background-color: #262a2d;
    padding: 4rem 1rem 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    gap: 1rem;
  }
  ul.kslt-gen-links a {
    display: inline-block;
    padding: 1rem;
    width: 100%;
    border-radius: 4px;
  }
  ul.kslt-gen-links a:hover {
    background-color: #4a5859;
    color: #fff;
  }

  .kslt-gen-header .kslt-gen-menu .kslt-hide-on-computer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .kslt-gen-header .kslt-gen-menu .kslt-gen-hide-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
  .kslt-gen-header .kslt-gen-icons {
    gap: 1rem;
  }

  ul.kslt-gen-links-js {
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
  }

  .kslt-gen-footer .kslt-gen-wrapp-divs {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-template-areas:
      "one"
      "two"
      "three"
      "four";
    /* gap:2rem; */
  }

  .first-div {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .second-div {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  .third-div {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .fourth-div {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
}

@media only all and (max-height: 550px) {
  .message__box {
    top: 0.5rem;
  }
}

@media only all and (max-width: 530px) {
  .message__box {
    left: 1rem;
  }
}

@media only all and (max-width: 425px) {
  .message__box {
    left: 1rem;
  }

  .kslt-gen-search-form .kslt-gen-wrapper input {
    font-size: 0.9rem;
  }
}

@media only all and (max-width: 375px) {
  .gen-arrow-to-top {
    bottom: 1rem;
    right: 1rem;
    height: 35px;
    width: 35px;
  }

  .gen-arrow-to-top svg {
    height: 25px;
    width: 25px;
  }

  .kslt-gen-footer .kslt-gen-wrapp-divs {
    padding: 2rem;
  }

  .message__box {
    font-size: 0.85rem;
  }

  /* .kslt-gen-card .kslt-gen-content .kslt-gen-info:nth-of-type(2) {
    display: none;
  } */

  .kslt-gen-header .kslt-gen-menu a.kslt-gen-cart svg {
    height: 24px;
    width: 24px;
  }

  .kslt-gen-default-message {
    font-size: 0.85rem;
    padding: 1rem;
  }
}

@media only all and (max-width: 320px) {
  .kslt-gen-header {
    padding: 1rem 1rem;
    height: 60px;
  }
  .kslt-gen-header .kslt-gen-menu button svg {
    width: 25px !important;
    height: 25px !important;
    fill: #fff;
    stroke: #fff;
  }
  .kslt-gen-header .kslt-gen-menu .kslt-gen-circle {
    height: 35px;
    width: 35px;
  }
  .kslt-gen-header .kslt-gen-logo {
    height: 35px;
    width: 35px;
  }
  .kslt-gen-footer ul a {
    font-size: 0.9rem;
  }
  .kslt-gen-card .kslt-gen-content .kslt-gen-text * {
    font-size: 0.9rem !important;
  }

  .kslt-gen-default-message {
    width: 90%;
  }
}
