@charset "UTF-8";
/*
Theme Name: Boimela
Author: pixel-plus
Author URI: https://themeforest.net/user/pixel-plus
Description: Boimela - Books Library ECommerce Store Theme Html Template 
Version: 1.0.0
*/
/*  CSS Index Here  

01. Mixins
02. Variables
03. Buttons
04. Typography
05. About
06. Animation
07. Contact
08. Cta
09. Faq
10. Feature
11. Footer
12. Header
13. Helping
14. Hero
15. MeanMenu
16. News
17 Preloader
18. Section
19. Shop
20. Team
21. Testimonial   

/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Moon+Dance&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Faustina:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --body: #fff;
  --black: #0A1037;
  --white: #fff;
  --theme: #2B3992;
  --header: #11112C;
  --text: #797979;
  --border: #E5E9EF;
  --border-2: #D4DCED;
  --border-3: #D0E1E7;
  --paragraph: #314158;
  --bg: #FFEFEF;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --grey-color: #98A0AB;
}

.theme-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
  padding: 15px 20px;
  border-radius: 100px;
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn:before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--theme);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}

.theme-btn:hover {
  color: var(--white);
  box-shadow: none;
}

.theme-btn:hover::before {
  width: 100%;
}

.theme-btn.style-2::before {
  background-color: var(--header);
}

.theme-btn.header-bg {
  background-color: var(--header);
}

.theme-btn.header-bg::before {
  background-color: var(--theme);
}

.theme-btn.white-bg {
  background-color: var(--white);
  color: var(--text);
}

.theme-btn.white-bg::before {
  background-color: var(--theme);
}

.theme-btn.white-bg:hover {
  color: var(--white);
}

.theme-btn.transparent-btn {
  background-color: transparent;
  color: var(--text);
  border: 1px solid rgba(92, 112, 126, 0.3);
}

.theme-btn.transparent-btn::before {
  background-color: var(--theme);
}

.theme-btn.transparent-btn:hover {
  color: var(--white);
}

@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}

@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.theme-btn-2 {
  font-size: 16px;
  display: inline-block;
  font-weight: 700;
  color: var(--theme);
  text-transform: capitalize;
}

.theme-btn-2 i {
  margin-left: 10px;
}

.theme-btn-2:hover {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.body-bg {
  background-image: url('./../images/backgroud/background.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
}


ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--header);
  outline: none;
}

input {
  color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-size: 40px;
  line-height: 145%;
  font-weight: 700;
}

@media (max-width: 767px) {
  h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 145%;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

a:hover {
  color: var(--theme);
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.about-wrapper .about-image {
  max-width: 728px;
  position: relative;
}

.about-wrapper .about-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-wrapper .about-image .video-box .video-btn {
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 16px;
  height: 90px;
  width: 90px;
  line-height: 90px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
}

@media (max-width: 575px) {
  .about-wrapper .about-image .video-box .video-btn {
    width: 70px;
    height: 70px;
    font-size: 16px;
    line-height: 70px;
  }
}

.about-wrapper .about-image .video-box .ripple::before,
.about-wrapper .about-image .video-box .ripple::after {
  height: 90px;
  width: 90px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
}

@media (max-width: 575px) {

  .about-wrapper .about-image .video-box .ripple::before,
  .about-wrapper .about-image .video-box .ripple::after {
    width: 70px;
    height: 70px;
  }
}

.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}

.about-wrapper .about-content .link-btn {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  color: var(--theme);
  text-transform: capitalize;
  text-decoration: underline;
  margin-top: 25px;
}

.about-wrapper .about-content .link-btn i {
  transform: rotate(-40deg);
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.about-wrapper .about-content .link-btn:hover i {
  transform: rotate(0);
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.contact-wrapper .contact-left-items .contact-info-area-2 {
  padding: 40px;
  background-color: var(--theme);
  border-radius: 16px 16px 0px 0px;
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items {
    flex-wrap: wrap;
  }
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: relative;
  border: 2px dotted var(--white);
  border-radius: 50%;
  font-size: 30px;
  color: var(--white);
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items .content h3 {
  font-size: 24px;
  color: var(--white);
  text-transform: initial;
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items .content h3 a {
  color: var(--white);
}

.contact-wrapper .contact-left-items .contact-info-area-2 .contact-info-items.border-none {
  border: none !important;
}

.contact-wrapper .contact-left-items .video-image {
  position: relative;
}

.contact-wrapper .contact-left-items .video-image img {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 16px 16px;
}

.contact-wrapper .contact-left-items .video-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.contact-wrapper .contact-left-items .video-image .video-box .video-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
  background-color: var(--white);
}

.contact-wrapper .contact-left-items .video-image .video-box .ripple::before,
.contact-wrapper .contact-left-items .video-image .video-box .ripple::after {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
}

.contact-wrapper .contact-content {
  margin-left: 40px;
}

@media (max-width: 991px) {
  .contact-wrapper .contact-content {
    margin-left: 0;
  }
}

.contact-wrapper .contact-content h2 {
  margin-bottom: 10px;
}

.contact-wrapper .contact-content .contact-form-items {
  margin-top: 30px;
}

.contact-wrapper .contact-content .contact-form-items .form-clt {
  display: grid;
  gap: 16px;
}

.contact-wrapper .contact-content .contact-form-items .form-clt span {
  color: var(--header);
  font-weight: 600;
  text-transform: capitalize;
}

.contact-wrapper .contact-content .contact-form-items .form-clt input,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
  border: 1px solid #E5E5E5;
  color: var(--text);
  padding: 18px 20px;
  border-radius: 8px;
  outline: none;
  font-weight: 500;
}

.contact-wrapper .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
  font-weight: 500;
}

.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}

.map-items .googpemap iframe {
  width: 100%;
  height: 710px;
}

@media (max-width: 767px) {
  .map-items .googpemap iframe {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 400px;
  }
}

.common-newsletter-modal {
  border-radius: 0;
}

.common-newsletter-modal .close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
}

.common-newsletter-modal .modal-content {
  border: 0;
  border-radius: 10px;
}

.common-newsletter-modal .modal-content .offer-modal-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.common-newsletter-modal .offer-modal-right {
  text-align: center;
  padding: 30px 30px 20px 0;
}

@media (max-width: 500px) {
  .common-newsletter-modal .offer-modal-right {
    padding-right: 0;
  }
}

.common-newsletter-modal .offer-modal-right h3 {
  color: var(--black);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

@media (max-width: 500px) {
  .common-newsletter-modal .offer-modal-right h3 {
    font-size: 30px;
  }
}

.common-newsletter-modal .offer-modal-right p {
  line-height: 150%;
  padding: 14px 8px 30px 0;
}

@media (max-width: 500px) {
  .common-newsletter-modal .offer-modal-right p {
    padding: 8px 0px 20px 0;
  }
}

.common-newsletter-modal .offer-modal-right p span {
  color: var(--theme);
}

.common-newsletter-modal .offer-modal-right .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  border-top-left-radius: 0;
  border-radius: 0 !important;
}

.common-newsletter-modal .offer-modal-right .input-group .form-control {
  height: 47px;
  border-radius: 10px !important;
}

.common-newsletter-modal .offer-modal-right .input-group .input-group-append {
  position: absolute;
  right: 4px;
  bottom: 4px;
}

.common-newsletter-modal .offer-modal-right .input-group .input-group-append .theme-btn {
  padding: 12px 40px;
  border-radius: 8px;
}

.common-newsletter-modal .offer-modal-right .check-boxed-modal {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 500px) {
  .common-newsletter-modal .offer-modal-right .check-boxed-modal {
    margin-top: 30px;
  }
}

.cta-banner-wrapper {
  background-attachment: fixed;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner-wrapper .book-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper .book-shape img {
    width: 250px;
  }
}

@media (max-width: 991px) {
  .cta-banner-wrapper .book-shape {
    display: none;
  }
}

.cta-banner-wrapper .book-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper .book-shape-2 img {
    width: 250px;
  }
}

@media (max-width: 991px) {
  .cta-banner-wrapper .book-shape-2 {
    display: none;
  }
}

.cta-banner-wrapper .cta-content span {
  position: relative;
  color: var(--white);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 991px) {
  .cta-banner-wrapper .cta-content span {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper .cta-content span {
    font-size: 20px;
  }

  .cta-banner-wrapper .cta-content span img {
    width: 80px;
  }
}

.cta-banner-wrapper .cta-content span img {
  position: absolute;
  bottom: -10px;
  left: 0;
}

.cta-banner-wrapper .cta-content h2 {
  margin-top: 10px;
  color: var(--white);
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .cta-banner-wrapper .cta-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .cta-banner-wrapper .cta-content h2 {
    font-size: 25px;
  }

  .cta-banner-wrapper .cta-content h2 br {
    display: block;
  }
}

.cta-banner-wrapper .cta-content .theme-btn {
  background-color: var(--white);
  color: var(--header);
  border: 1px solid transparent;
}

.cta-banner-wrapper .cta-content .theme-btn::before {
  background-color: var(--header);
}

.cta-banner-wrapper .cta-content .theme-btn:hover {
  border-color: var(--white);
  color: var(--white);
}

.cta-banner-wrapper-2 {
  background-attachment: fixed;
  border-radius: 20px;
}

.cta-banner-wrapper-2 .cta-content-wrappers {
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .cta-banner-wrapper-2 .cta-content-wrappers {
    padding: 0;
    flex-direction: column;
    text-align: center;
  }
}

.cta-banner-wrapper-2 .cta-content-wrappers .cta-texts span {
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .cta-banner-wrapper-2 .cta-content-wrappers .cta-texts h2 br {
    display: block;
  }
}

.cta-banner-wrapper-2 .cta-content-wrappers .ctx-btn .theme-btn {
  color: var(--header);
}

.cta-banner-wrapper-2 .cta-content-wrappers .ctx-btn .theme-btn:hover {
  color: var(--white);
}

.faq-left .nav {
  display: grid;
}

@media (max-width: 991px) {
  .faq-left .nav {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }
}

.faq-left .nav .nav-link {
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--header);
}

.faq-left .nav .nav-link.active {
  color: var(--theme);
}

/* .faq-content .accordion-item {
  border: 0;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
} */

.faq-content .accordion-item .accordion-header .accordion-button::after {
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  background-image: url(../../assets/img/chevron-right.svg);
  color: var(--theme);
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(../../assets/img/chevron-down.svg);
  font-weight: 500;
  color: var(--theme);
  transform: rotate(0);
}

.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  /* background-color: transparent; */
  padding: 25px 30px;
  color: var(--header);
  background: none;
}

@media (max-width: 1399px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
  }
}

.feature-wrapper {
  background-color: var(--bg);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media (max-width: 1399px) {
  .feature-wrapper {
    flex-wrap: wrap;
    gap: 25px;
    padding: 45px 25px;
  }
}

.feature-wrapper .feature-box-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-wrapper .feature-box-items:not(:last-child) {
  border-right: 1px solid #DFDCDC;
  padding-right: 60px;
}

@media (max-width: 1600px) {
  .feature-wrapper .feature-box-items:not(:last-child) {
    border: none !important;
    padding: 0;
  }
}

.feature-wrapper .feature-box-items .content h3 {
  font-size: 20px;
}

.feature-wrapper .feature-box-items .content p {
  font-weight: 500;
}

.feature-wrapper .feature-box-items .icon {
  width: 84px;
  height: 84px;
  background-color: var(--theme);
  border-radius: 8px;
  font-size: 50px;
  line-height: 95px;
  text-align: center;
  color: var(--white);
}


.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list {
  margin-top: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li {
  font-size: 18px;
  font-weight: 400;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li:not(.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li:last-child) {
  margin-bottom: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li i {
  color: var(--header);
  margin-right: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li a {
  color: #525252;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li a:hover {
  color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li:hover i {
  animation: icon-bounce 0.8s 1;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 10px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input input {
  background: #FFF;
  box-shadow: 0px 1px 2px 0px rgba(1, 15, 28, 0.1);
  border: none;
  outline: none;
  width: 100%;
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 5px;
  color: #7D7F82;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: #7D7F82;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  color: var(--white);
  width: 100px;
  height: 50px;
  border-radius: 5px;
  background-color: var(--theme);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn:hover {
  background-color: var(--header);
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-item {
  margin-top: 30px;
}


@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget .footer-content .social-item .social-icon {
    margin-top: 20px;
  }
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-item .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .list-items li {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  font-weight: 400;
}

.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .footer-bottom {
    text-align: center;
  }

  .footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
    margin-bottom: 0px;
  }
}

.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.footer-bottom .footer-wrapper p {
  color: #7E7F81;
  text-transform: capitalize;
}

.footer-bottom .footer-wrapper p span {
  color: var(--theme);
}

.footer-bottom .footer-wrapper .bottom-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.header-top-section {
  position: relative;
  z-index: 9;
  background: var(--white);
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}

.header-top-section .container-fluid {
  padding: 0 100px;
}

@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 60px;
  }
}

@media (max-width: 991px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 575px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-top-wrapper .contact-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-wrapper .contact-list li {
  color: var(--header);
  font-size: 15px;
}

.header-top-wrapper .contact-list li i {
  color: var(--theme);
  margin-right: 10px;
}

.header-top-wrapper .contact-list li:not(:last-child) {
  border-right: 1px solid rgba(1, 15, 28, 0.1);
  padding-right: 20px;
}

.header-top-wrapper .contact-list li a {
  color: var(--header);
}

.header-top-wrapper .flag-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-wrapper .flag-wrapper .content button.account-text {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--header);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  line-height: 1;
  gap: 30px
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  padding: 15px 0;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 12px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  width: 100%;
}

.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
  margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -100px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  line-height: initial;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before,
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
  display: none;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .header-right {
  gap: 40px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .search-icon {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .header-main .header-right .search-icon {
    display: none;
  }
}

@media (max-width: 575px) {
  .header-main .header-right .search-icon {
    display: initial;
  }
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: static;
  background: transparent;
  z-index: 9999;
}

.header-1 .container-fluid {
  padding: 0 90px;
}

@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 500px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 500px) {
  .header-1 .header-main .logo .headero-logo img {
    width: 135px;
  }
}

.header-1 .header-main .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.header-1 .header-main .header-right .search-widget {
  width: 100%;
}

@media (max-width: 500px) {
  .header-1 .header-main .header-right {
    gap: 10px;
  }
}

.header-1 .header-main .header-right .search-widget form {
  width: 100%;
  position: relative;
}

.header-1 .header-main .header-right .search-widget form input {
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px 10px 37px;
  width: 100%;
  width: 320px;
  border: none;
  color: rgb(118, 122, 125);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 100%
}

.header-1 .header-main .header-right .search-widget form input::placeholder {
  color: rgba(152, 160, 171, 1);
}

.header-1 .header-main .header-right .search-widget form button {
  position: absolute;
  left: 14px;
  top: 0;
  height: 100%;
  color: rgba(85, 88, 91, 0.5);
}

@media (max-width: 1399px) {
  .header-1 .header-main .header-right .search-widget {
    display: none;
  }
}

.header-1 .header-main .header-right .search-icon.style-2 {
  display: none;
}

.header-1 .header-main .header-right .search-icon.style-2 i {
  font-size: 20px;
}

@media (max-width: 575px) {
  .header-1 .header-main .header-right .search-icon.style-2 {
    display: initial;
  }
}

.header-1 .header-main .header-right .header-icon {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1399px) {
  .header-1 .header-main .header-right .header-icon {
    display: none;
  }
}

.header-1 .header-main .header-right .header-icon li a {
  color: var(--header);
  position: relative;
}

.header-1 .header-main .header-right .header-icon li a i {
  font-size: 20px;
}

.header-1 .header-main .header-right .header-icon li a .number {
  position: absolute;
  top: -9px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  line-height: 18px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 10px;
  font-weight: 400;
}

.header-1 .header-main .header-right .menu-cart {
  position: relative;
}

@media (max-width: 1199px) {
  .header-1 .header-main .header-right .menu-cart {
    display: none;
  }
}

@media (max-width: 575px) {
  .header-1 .header-main .header-right .menu-cart {
    display: initial;
  }
}

.header-1 .header-main .header-right .menu-cart .cart-box {
  background: var(--white) none repeat scroll 0 0;
  box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
  padding: 5px 20px 0px;
  position: absolute;
  left: -250px;
  top: 200%;
  transform: rotateX(90deg);
  transform-origin: center top 0;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  width: 340px;
  border-radius: 10px;
  z-index: 9999;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li img {
  width: 90px;
  height: 90px;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product .cart-ctx {
  width: 90%;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product .cart-ctx a {
  padding: 0;
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product .cart-ctx span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-top: 10px;
}

.header-1 .header-main .header-right .menu-cart .cart-box ul li .cart-product i {
  display: inline-block;
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 30px;
  background-color: var(--theme);
  text-align: center;
}

.header-1 .header-main .header-right .menu-cart .cart-box .shopping-items {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-1 .header-main .header-right .menu-cart .cart-box .shopping-items span {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  text-transform: capitalize;
}

.header-1 .header-main .header-right .menu-cart .cart-box .cart-button {
  margin-top: 20px;
}

.header-1 .header-main .header-right .menu-cart .cart-box .cart-button .theme-btn {
  padding: 14px 28px;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid var(--header);
  color: var(--header);
}

.header-1 .header-main .header-right .menu-cart .cart-box .cart-button .theme-btn::before {
  background-color: var(--theme);
}

.header-1 .header-main .header-right .menu-cart .cart-box .cart-button .theme-btn:hover {
  color: var(--white);
  border-color: transparent;
}

.header-1 .header-main .header-right .menu-cart .cart-icon {
  position: relative;
}


.header-1 .header-main .header-right .menu-cart:hover .cart-box {
  transform: rotateX(0deg);
  visibility: visible;
}

.header-1 .header-main .sidebar__toggle {
  color: var(--header);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1 .header-main .logo .header-logo-3 {
  display: none;
}

.sticky.header-1 .header-main .header-right .contact-items .content span {
  color: var(--text);
}

.sticky.header-1 .header-main .header-right .contact-items .content h6 a {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select span {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select .list li {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .flag-wrap .nice-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}

.sticky.header-1 .header-main .header-right .social-icon {
  gap: 10px;
}

.sticky.header-1 .header-main .header-right .social-icon span {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .social-icon a {
  color: var(--header);
}

.sticky.header-1 .header-main .header-right .social-icon a:hover {
  color: var(--theme);
}

.sticky.header-1 .header-main .header-right .search-icon {
  color: var(--header);
}

.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}

.sticky.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.sticky.header-1 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.sticky.header-1 .header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.sticky.header-1 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.sticky.header-1 .header-main .sidebar__toggle {
  color: var(--header);
}

.sticky.header-1 .header-logo {
  display: none !important;
}

.sticky.header-1 .header-logo-2 {
  display: block !important;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 80px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__wrapper .theme-btn {
  width: 100%;
  padding: 12px 16px;
}

.offcanvas__wrapper .theme-btn i {
  margin-left: 30px;
}

.offcanvas__wrapper .theme-btn:hover span {
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

/* .authentification-section {
  position: fixed;
  top: 0;
  right: 0px;
  width: 420px;
  height: 100%;
  background-color: var(--white);
  padding: 40px;
  padding-top: 25px;
  transition: all 0.3s ease-in-out;
  box-shadow: var(--box-shadow);
  z-index: 99999;
  overflow-y: scroll;
} */


.authentification-section_hidden {
  visibility: hidden;
  opacity: 0;
  right: -30px;
}

.error-items {
  text-align: center;
}

.error-items .error-image {
  max-width: 690px;
  margin: 0 auto;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.error-items h2 {
  margin-top: 30px;
  font-size: 60px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .error-items h2 {
    font-size: 44px;
    line-height: 125%;
  }
}

@media (max-width: 575px) {
  .error-items h2 {
    font-size: 34px;
    line-height: 120%;
  }
}

.error-items h2 span {
  font-weight: 400;
  color: var(--theme);
}

.error-items p {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  margin-bottom: 40px;
}

.banner {
  padding: 173px 0;
}

@media (max-width: 1199px) {
  .banner {
    padding: 150px 0;
  }
}

@media (max-width: 991px) {
  .banner {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .banner {
    padding: 70px 0;
  }
}

.banner .page-heading h1 {
  color: var(--header);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .banner .page-heading h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .banner .page-heading h1 {
    font-size: 36px;
  }
}

.banner .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* @media (max-width: 575px) {
  .banner .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
} */
.banner .page-heading .breadcrumb-items li {
  color: var(--theme);
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.banner .page-heading .breadcrumb-items li a {
  color: var(--header);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.banner .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}

.banner .page-heading .breadcrumb-items li i {
  color: var(--header);
  font-size: 12px;
}

.error-items {
  text-align: center;
}

.error-items .error-image {
  max-width: 690px;
  margin: 0 auto;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.error-items h2 {
  margin-top: 30px;
  font-size: 60px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .error-items h2 {
    font-size: 44px;
    line-height: 125%;
  }
}

@media (max-width: 575px) {
  .error-items h2 {
    font-size: 34px;
    line-height: 120%;
  }
}

.error-items h2 span {
  font-weight: 400;
  color: var(--theme);
}

.error-items p {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  margin-bottom: 40px;
}

.bd-header__category-nav .category__items-2 {
  position: absolute;
  left: 0;
  width: 98%;
  z-index: 10;
  max-width: 350px;
  background-color: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: 0 0 8px 8px;
}

.bd-category__click {
  height: 60px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: var(--theme);
  width: 200px;
  border: 1px solid #E5E5E5;
  text-transform: capitalize;
  font-size: 18px;
  position: relative;
  gap: 15px;
  cursor: pointer;
}

.bd-category__click.items-open:before {
  transform: rotate(180deg);
}

.bd-category__click:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  right: 20px;
}

.bd-category__click span {
  font-weight: 600;
}

.bd-category__click span i {
  margin-right: 10px;
}

.bd-category__click.style-2,
.bd-category__click.style-3,
.bd-category__click.style-4 {
  background-color: var(--white);
}

.category-item ul li:not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
}

.category-item ul li a {
  display: flex;
  color: var(--header);
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  line-height: 1;
  font-weight: 400;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.category-item ul li:hover {
  background-color: var(--theme);
  color: var(--white);
}

.category-item ul li:hover a {
  color: var(--white);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-50 {
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 75, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.array-button .array-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  border: 2px solid var(--white);
}

.array-button .array-prev:hover {
  background-color: var(--header);
  color: var(--white);
}

.array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  border: 2px solid var(--white);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.array-button .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

.mt-10 {
  margin-top: 10px;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

.mt-60 {
  margin-top: 55px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.nice-select {
  background-color: transparent;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.nice-select .current {
  margin-right: 12px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--grey-color);
}

.nice-select.open .list {
  background: var(--white);
  margin-top: 16px;
  width: 100px;
  text-transform: uppercase;
  color: var(--paragraph);
  border: 1px solid var(--border);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.nice-select .option.selected.focus {
  background: var(--white);
  outline: none;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  border: none;
}

.nice-select .option {
  border: none;
}

.nice-select .option:hover {
  background: transparent;
}

.page-nav-wrap {
  margin-top: 50px;
}

.page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .page-nav-wrap ul {
    flex-wrap: wrap;
  }
}

.page-nav-wrap ul li .previous {
  padding: 12px 16px;
  background-color: transparent;
  font-weight: 600;
  color: var(--header);
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .previous:hover {
  background-color: var(--theme);
  color: var(--white);
}

.page-nav-wrap ul li .next {
  padding: 12px 16px;
  background-color: var(--theme);
  font-weight: 600;
  color: var(--white);
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .next:hover {
  background-color: var(--bg);
  color: var(--header);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  padding: 8px 19px;
  background: var(--bg);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  color: var(--header);
  border-radius: 4px;
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 0px;
    width: 50px;
    height: 50px;
    line-height: 35px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

.form-check-input:checked {
  background-color: var(--theme) !important;
  border-color: var(--theme) !important;
}

.mb-40 {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .mb-40 {
    margin-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .mb-40 {
    margin-bottom: 25px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-145 {
  padding-bottom: 145px;
}

@media (max-width: 991px) {
  .pb-145 {
    padding-bottom: 80px;
  }
}

.footer-bg {
  background-color: var(--header);
}

.margin-bottom-30 {
  margin-bottom: -30px;
}

.section-bg {
  background-color: var(--bg);
}

/* .cursor-follower {
  position: fixed;
  background: var(--theme);
  border: 1px solid var(--theme);
  width: 15px;
  height: 15px;
  border-radius: 100%;
  z-index: 999999;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  transform: translate(2px, 2px);
  opacity: 0.7;
  mix-blend-mode: multiply;
} */


@media (max-width: 1199px) {
  .hero-1 {
    padding: 100px 0 0;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    padding: 80px 0 0;
  }
}

.hero-1 .book-shape {
  position: absolute;
  left: 8.5%;
  bottom: -30px;
}

@media (max-width: 1199px) {
  .hero-1 .book-shape {
    display: none;
  }
}

.hero-1 .book-shape-2 {
  position: absolute;
  top: 26%;
  right: 2%;
}

@media (max-width: 1199px) {
  .hero-1 .book-shape-2 {
    display: none;
  }
}

@media (max-width: 1600px) {
  .hero-1 .girl-img {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .hero-1 .girl-img {
    position: static;
  }
}

.hero-1 .hero-main-wrapper .hero-content h4 {
  color: var(--theme);
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .hero-1 .hero-main-wrapper .hero-content h4 {
    font-size: 18px;
  }
}

.hero-1 .hero-main-wrapper .hero-content h4 span {
  background-color: var(--header);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
}

@media (max-width: 575px) {
  .hero-1 .hero-main-wrapper .hero-content h4 span {
    margin-left: 5px;
    font-size: 10px;
  }
}

.hero-1 .hero-main-wrapper .hero-content h1 .line-shape {
  position: relative;
  color: var(--theme);
}

.hero-1 .hero-main-wrapper .hero-content h1 .line-shape img {
  position: absolute;
  width: 95%;
  bottom: -30px;
  left: 10px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-main-wrapper .hero-content h1 .line-shape img {
    bottom: -20px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-main-wrapper .hero-content h1 {
    font-size: 65px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-main-wrapper .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-main-wrapper .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-main-wrapper .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-main-wrapper .hero-content h1 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-main-wrapper .hero-content p {
    max-width: 500px;
  }

  .hero-1 .hero-main-wrapper .hero-content p br {
    display: none;
  }
}

.hero-1 .hero-main-wrapper .hero-btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-main-wrapper .hero-btn {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn {
  background-color: var(--white);
  padding: 15px 20px;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn:hover {
  color: var(--white);
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--white);
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn.style-2::before {
  background-color: var(--white);
}

.hero-1 .hero-main-wrapper .hero-btn .theme-btn.style-2:hover {
  color: var(--header);
}

.hero-2 {
  position: relative;
  background-color: var(--bg);
}

.hero-2 .book-shape,
.hero-2 .bg-shape1,
.hero-2 .book-shape-2 {
  position: absolute;
}

.hero-2 .book-shape {
  left: 0;
  bottom: -30px;
}

@media (max-width: 1199px) {
  .hero-2 .book-shape {
    display: none;
  }
}

.hero-2 .book-shape-2 {
  top: 23%;
  right: 33.5%;
  z-index: 9;
}

@media (max-width: 1199px) {
  .hero-2 .book-shape-2 {
    display: none;
  }
}

.hero-2 .bg-shape1 {
  bottom: 0;
  right: 0;
}

@media (max-width: 1600px) {
  .hero-2 .bg-shape1 {
    right: -9.6%;
  }
}

@media (max-width: 1199px) {
  .hero-2 .bg-shape1 {
    display: none;
  }
}

.hero-2 .hero-items .hero-content {
  padding-top: 190px;
  padding-bottom: 250px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-items .hero-content {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-items .hero-content {
    padding: 80px 0;
  }
}

.hero-2 .girl-image {
  position: absolute;
  bottom: 0;
}

.hero-2 .girl-image img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .hero-2 .girl-image {
    position: static;
  }
}

.hero-2 .hero-content h6 {
  color: var(--theme);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.hero-2 .hero-content h1 {
  position: relative;
  color: var(--header);
  font-family: "Inter", sans-serif;
  font-size: 74px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
  z-index: 2;
}

.hero-2 .hero-content h1 span {
  color: var(--theme);
  position: relative;
}

.hero-2 .hero-content h1 span img {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 35px;
  }
}

.hero-2 .hero-content p {
  margin: 40px 0;
}

.hero-2 .hero-content .form-clt {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content .form-clt {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.hero-2 .hero-content .form-clt .theme-btn {
  padding: 15px 20px;
  background-color: var(--white);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.hero-2 .hero-content .form-clt .theme-btn:hover {
  color: var(--white);
}

.hero-2 .hero-content .form-clt .theme-btn.style-2 {
  background-color: var(--theme);
  color: var(--white);
}

.hero-2 .hero-content .form-clt .theme-btn.style-2:hover {
  color: var(--header);
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items {
    flex-wrap: wrap;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
  position: relative;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-card-items {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(92, 112, 126, 0.2);
}

.news-card-items .news-image {
  position: relative;
  overflow: hidden;
}

.news-card-items .news-image .post-box {
  position: absolute;
  top: 40px;
  left: 40px;
  background-color: var(--theme);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1;
  z-index: 9;
}

.news-card-items .news-image img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 20px 20px 0 20px;
}

.news-card-items .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-card-items .news-content {
  padding: 25px 30px;
}

.news-card-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.news-card-items .news-content ul li {
  font-size: 14px;
  font-weight: 500;
}

.news-card-items .news-content ul li i {
  color: var(--theme);
  margin-right: 8px;
}

.news-card-items .news-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.news-card-items .news-content h3 a:hover {
  color: var(--theme);
}

.news-card-items .news-content .theme-btn-2 {
  color: var(--text);
  font-weight: 600;
}

.news-card-items .news-content .theme-btn-2:hover {
  color: var(--theme);
}

.news-card-items.style-2 {
  border: none;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.news-card-items:hover .news-image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-card-items:hover .news-image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-standard-wrapper .news-standard-items {
  border: 1px solid #E5E5E5;
  padding: 30px;
  border-radius: 10px;
}

.news-standard-wrapper .news-standard-items:not(:last-child) {
  margin-bottom: 20px;
}

.news-standard-wrapper .news-standard-items .news-thumb {
  position: relative;
}

.news-standard-wrapper .news-standard-items .news-thumb img {
  width: 100%;
  height: 100%;
}

.news-standard-wrapper .news-standard-items .news-thumb .post {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--theme);
  color: var(--white);
  padding: 4px 15px;
  border-radius: 8px;
}

.news-standard-wrapper .news-standard-items .news-content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}

.news-standard-wrapper .news-standard-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-content ul {
    gap: 20px;
  }
}

.news-standard-wrapper .news-standard-items .news-content ul li {
  font-size: 16px;
  font-weight: 500;
}

.news-standard-wrapper .news-standard-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.news-standard-wrapper .news-standard-items .news-content h3 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 30px;
}

@media (max-width: 575px) {
  .news-standard-wrapper .news-standard-items .news-content h3 {
    font-size: 26px;
    line-height: 125%;
  }
}

.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 20px;
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--theme) 4.85%, rgba(84, 62, 232, 0) 96.39%);
  border-bottom: 2px solid transparent;
  border-image-slice: 2;
  display: inline-block;
  font-size: 22px;
}

.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sidebar .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 16px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border: 1px solid #E5E5E5;
  border-radius: 4px;
}

.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  color: var(--theme);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-radius: 0 4px 4px 0;
}

.main-sidebar .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  border: 1px solid #E1DBD2;
  border-radius: 4px;
  font-size: 18px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  color: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1199px) {
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    flex-wrap: wrap;
  }
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  margin-bottom: 8px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--theme);
  font-weight: 600;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 11px 15px;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  background: var(--white);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
  height: 580px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 400px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
}

@media (max-width: 1199px) {
  .news-details-area .blog-post-details .single-blog-post .post-content .post-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme);
  margin-right: 5px;
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 {
  margin-bottom: 20px;
  font-size: 32px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    font-size: 24px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
  color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-radius: 10px;
  padding: 40px;
  background-color: var(--bg);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  color: var(--text);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
}

.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: transparent;
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
  border: 1px solid #E5E5E5;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}

.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
}

.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 26px;
  }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid #E5E5E5;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con {
  margin-bottom: 10px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
  font-weight: 600;
  font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 4px;
  padding: 7px 18px;
  font-weight: 400;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply:hover {
  background-color: var(--theme);
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt span {
  color: var(--header);
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid #E5E5E5;
  padding: 16px 20px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 160px;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Inter", sans-serif, "Inter", sans-serif;
  text-align: center;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Inter", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

.back-to-top {
  border-radius: 12px;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: #b94b40;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-title {
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 25px;
  }
}

.section-title p {
  font-family: "Source Sans 3", sans-serif;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 10px;
  z-index: 9;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.book-catagories-wrapper {
  padding: 0 30px 0px;
}

.book-catagories-wrapper .section-title {
  max-width: 430px;
  margin: 0 auto 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .book-catagories-wrapper .section-title {
    margin-bottom: 0;
  }
}

.book-catagories-wrapper .section-title .icon {
  display: block;
  margin-bottom: 10px;
}

.book-catagories-wrapper .section-title h2 {
  color: var(--white);
}

.book-catagories-wrapper .book-catagories-items {
  margin-top: 30px;
  text-align: center;
}

.book-catagories-wrapper .book-catagories-items .book-thumb {
  position: relative;
  padding: 25px 50px 40px;
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.book-catagories-wrapper .book-catagories-items .book-thumb .book-box {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  background-color: var(--theme);
  padding: 4px 10px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.book-catagories-wrapper .book-catagories-items .book-thumb:hover {
  background-color: var(--theme);
}

.book-catagories-wrapper .book-catagories-items .book-thumb:hover .book-box {
  background-color: var(--white);
  color: var(--theme);
}

.book-catagories-wrapper .book-catagories-items .book-content h6 {
  font-weight: 700;
}

.book-catagories-wrapper .book-catagories-items .book-content h6 a {
  color: var(--white);
}

.book-catagories-wrapper .book-catagories-items .book-content h6 a:hover {
  color: var(--theme);
}

.book-shop-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

@media (max-width: 1600px) {
  .book-shop-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) {
  .book-shop-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .book-shop-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .book-shop-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.book-shop-wrapper .cta-shop-box {
  background-color: var(--theme);
  padding: 20px 27px;
  margin-top: 40px;
  position: relative;
  border-radius: 10px;
  z-index: 1;
}

@media (max-width: 991px) {
  .book-shop-wrapper .cta-shop-box {
    text-align: center;
    display: none;
  }
}

.book-shop-wrapper .cta-shop-box .girl-shape {
  position: absolute;
  bottom: 0;
  right: 15px;
}

@media (max-width: 1600px) {
  .book-shop-wrapper .cta-shop-box .girl-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .book-shop-wrapper .cta-shop-box .girl-shape {
    display: block;
  }
}

@media (max-width: 991px) {
  .book-shop-wrapper .cta-shop-box .girl-shape {
    display: none;
  }
}

.book-shop-wrapper .cta-shop-box .girl-shape img {
  transform: scaleX(-1);
  height: 285px;
}

.book-shop-wrapper .cta-shop-box .boy-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1600px) {
  .book-shop-wrapper .cta-shop-box .boy-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .book-shop-wrapper .cta-shop-box .boy-shape {
    display: block;
  }
}

@media (max-width: 991px) {
  .book-shop-wrapper .cta-shop-box .boy-shape {
    display: none;
  }
}

.book-shop-wrapper .cta-shop-box .boy-shape img {
  width: 100%;
  height: 100%;
}

.book-shop-wrapper .cta-shop-box .circle-shape {
  position: absolute;
  bottom: -113px;
  left: 10px;
  z-index: -1;
}

@media (max-width: 1600px) {
  .book-shop-wrapper .cta-shop-box .circle-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .book-shop-wrapper .cta-shop-box .circle-shape {
    display: block;
  }
}

@media (max-width: 991px) {
  .book-shop-wrapper .cta-shop-box .circle-shape {
    display: none;
  }
}

.book-shop-wrapper .cta-shop-box h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .book-shop-wrapper .cta-shop-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .book-shop-wrapper .cta-shop-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .book-shop-wrapper .cta-shop-box h2 {
    font-size: 24px;
  }
}

.book-shop-wrapper .cta-shop-box h6 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 25px;
}

.book-shop-wrapper .cta-shop-box .theme-btn {
  padding: 16px 30px;
  background-color: var(--white);
  color: var(--header);
}

.book-shop-wrapper .cta-shop-box .theme-btn::before {
  background-color: var(--header);
}

.book-shop-wrapper .cta-shop-box .theme-btn:hover {
  color: var(--white);
}

.book-shop-wrapper.style-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  place-content: center;
  gap: 30px;
}

@media (max-width: 1600px) {
  .book-shop-wrapper.style-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1399px) {
  .book-shop-wrapper.style-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .book-shop-wrapper.style-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 575px) {
  .book-shop-wrapper.style-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-ratting-book-wrapper {
  background-color: var(--white);
  padding: 40px 35px;
  border-radius: 16px;
}

.top-ratting-book-wrapper .section-title-area .section-title h2 {
  font-size: 26px;
}

.top-ratting-book-wrapper .top-ratting-box-items {
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  border: 1px solid rgba(92, 112, 126, 0.15);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 767px) {
  .top-ratting-book-wrapper .top-ratting-box-items {
    flex-wrap: wrap;
  }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-thumb {
  background-color: var(--bg);
  max-width: 104px;
  padding: 15px 20px;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .top-ratting-book-wrapper .top-ratting-box-items .book-thumb {
    max-width: 100%;
    width: 100%;
  }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-thumb img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  object-fit: contain;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content {
  width: 100%;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content h5 {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content li:hover a img {
  filter: invert(100%) brightness(250%) contrast(100%);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 470px) {
  .top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header h3 a:hover {
  color: var(--theme);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon {
  gap: 8px;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li {
  cursor: pointer;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li a i {
  color: var(--text);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li:hover {
  background-color: var(--theme);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .title-header .shop-icon li:hover i {
  color: var(--white);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content span {
  font-weight: 700;
  color: var(--text);
  display: inline-block;
  margin-bottom: 0px;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .author-post .authot-list .content {
  font-size: 14px;
  font-weight: 500;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content del {
  font-weight: 500;
  color: rgba(92, 112, 126, 0.8);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 470px) {
  .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .star {
  color: var(--theme);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn {
  background: var(--bg);
  color: var(--theme);
  padding: 12px 30px;
  border-radius: 6px;
}

@media (max-width: 575px) {
  .top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn {
    width: 100%;
  }
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn i {
  margin: 0;
  margin-right: 10px;
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn::before {
  background-color: var(--theme);
}

.top-ratting-book-wrapper .top-ratting-box-items .book-content .shop-btn .theme-btn:hover {
  color: var(--white);
}

.top-ratting-book-wrapper .top-ratting-box-items:hover .book-thumb img {
  transform: scale(1.1);
}

.top-ratting-book-wrapper .shop-banner {
  margin-top: 30px;
}

.top-ratting-book-wrapper .shop-banner .shop-thumb {
  height: 768px;
  border-radius: 16px;
  position: relative;
}

@media (max-width: 1399px) {
  .top-ratting-book-wrapper .shop-banner .shop-thumb {
    height: 650px;
  }
}

@media (max-width: 991px) {
  .top-ratting-book-wrapper .shop-banner .shop-thumb {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .top-ratting-book-wrapper .shop-banner .shop-thumb {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .top-ratting-book-wrapper .shop-banner .shop-thumb {
    height: 420px;
  }
}

.top-ratting-book-wrapper .shop-banner .shop-thumb .shop-button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
}

@media (max-width: 1600px) {
  .top-ratting-book-wrapper .shop-banner .shop-thumb .shop-button {
    width: 60%;
  }
}

@media (max-width: 1399px) {
  .top-ratting-book-wrapper .shop-banner .shop-thumb .shop-button {
    width: initial;
  }
}

.top-ratting-book-wrapper .theme-btn::before {
  background-color: var(--header);
}

.shop-default-wrapper .woocommerce-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .shop-default-wrapper .woocommerce-notices-wrapper {
    flex-wrap: wrap;
    padding: 20px 15px;
    gap: 20px;
    justify-content: center;
  }
}

.shop-default-wrapper .woocommerce-notices-wrapper p {
  font-weight: 700;
  color: var(--black);
  font-size: 24px;
  font-family: "Faustina", serif;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 99;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select {
  padding: 8px 15px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}

@media (max-width: 767px) {
  .shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select {
    padding: 8px 15px;
  }
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select::after {
  border-bottom: 1px solid var(--text);
  border-right: 1px solid var(--text);
  height: 10px;
  width: 10px;
  right: 14px;
  top: 30px;
}

@media (max-width: 767px) {
  .shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select::after {
    top: 20px;
  }
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select .list {
  right: -80px;
  background-color: var(--white);
  width: 220px;
  padding: 12px 20px;
  border-radius: 0;
  border: 1px solid var(--border);
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select .option {
  border: none;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select span {
  color: var(--grey-color);
  font-size: 16px;
  font-weight: 400;
  font-family: "Alegreya Sans", sans-serif;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .icon,
.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .icon-2 {
  /* margin-left: 10px; */
  padding: 8px 15px;
  border: 1px solid var(--border);
  background-color: var(--white) !important;
  border-radius: 6px;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .icon.active a {
  color: var(--theme);
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .icon-2.active a {
  color: var(--theme);
}

@media (max-width: 1600px) {
  .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
    pointer-events: auto;
    transform: scale(1.15) translate(-14%, 11%);
    -moz-transform: scale(1.15) translate(-14%, 11%);
    -o-transform: scale(1.15) translate(-14%, 11%);
    -webkit-transform: scale(1.15) translate(-14%, 11%);
    -ms-transform: scale(1.15) translate(-14%, 11%);
  }
}

@media (max-width: 1199px) {
  .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
    pointer-events: auto;
    transform: scale(1.15) translate(-16%, 11%);
    -moz-transform: scale(1.15) translate(-16%, 11%);
    -o-transform: scale(1.15) translate(-16%, 11%);
    -webkit-transform: scale(1.15) translate(-16%, 11%);
    -ms-transform: scale(1.15) translate(-16%, 11%);
  }
}

@media (max-width: 991px) {
  .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
    pointer-events: auto;
    transform: scale(1.15) translate(-11%, 11%);
    -moz-transform: scale(1.15) translate(-11%, 11%);
    -o-transform: scale(1.15) translate(-11%, 11%);
    -webkit-transform: scale(1.15) translate(-11%, 11%);
    -ms-transform: scale(1.15) translate(-11%, 11%);
  }
}

@media (max-width: 767px) {
  .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
    pointer-events: auto;
    transform: scale(1.15) translate(-12%, 11%);
    -moz-transform: scale(1.15) translate(-12%, 11%);
    -o-transform: scale(1.15) translate(-12%, 11%);
    -webkit-transform: scale(1.15) translate(-12%, 11%);
    -ms-transform: scale(1.15) translate(-12%, 11%);
  }
}

@media (max-width: 575px) {
  .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
    pointer-events: auto;
    transform: scale(1.15) translate(-12%, 11%);
    -moz-transform: scale(1.15) translate(-12%, 11%);
    -o-transform: scale(1.15) translate(-12%, 11%);
    -webkit-transform: scale(1.15) translate(-12%, 11%);
    -ms-transform: scale(1.15) translate(-12%, 11%);
  }
}

@media (max-width: 500px) {
  .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
    pointer-events: auto;
    transform: scale(1.15) translate(-13%, 11%);
    -moz-transform: scale(1.15) translate(-13%, 11%);
    -o-transform: scale(1.15) translate(-13%, 11%);
    -webkit-transform: scale(1.15) translate(-13%, 11%);
    -ms-transform: scale(1.15) translate(-13%, 11%);
  }
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select::after {
  height: 8px;
  width: 8px;
  right: 0px;
  top: 15px;
  border-color: var(--header);
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input {
  margin-top: 10px;
  position: relative;
}

@media (max-width: 1600px) {
  .shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input {
    flex-wrap: wrap;
  }
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .field {
  display: flex;
  align-items: center;
  font-size: 18px;
  width: 16%;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .field span {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .separators {
  margin-left: -12px;
  padding-right: 12px;
  font-size: 24px;
  line-height: 42px;
  font-weight: 500;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .field input {
  height: 100%;
  outline: none;
  background: transparent;
  border: unset;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .field input span {
  font-weight: 500;
  color: var(--header);
  font-size: 16px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom input[type=number]::-webkit-outer-spin-button,
.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .separator {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .slider {
  height: 6.75px;
  position: relative;
  background: var(--header);
  border-radius: 5px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--theme);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .range-input {
  position: relative;
  display: flex;
  justify-content: center;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .range-input input {
  position: absolute;
  width: 100%;
  height: 6.75px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  outline: none;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 7px;
  border-radius: 5px;
  background: var(--theme);
  border: 1.125px solid var(--theme);
  pointer-events: auto;
  -webkit-appearance: none;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .range__barcustom .price-input .filter-btn {
  padding: 8px 30px;
  background-color: var(--theme);
  color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .filter-size .input-save:not(:last-child) {
  margin-bottom: 20px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .filter-size .input-save input {
  width: 20px;
  height: 19px;
  background-color: var(--theme);
  outline: none;
  color: var(--theme);
  padding: 5px;
  border-radius: 4px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .filter-size .input-save label {
  margin-left: 20px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 600;
  text-transform: capitalize;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single:not(:last-child) {
  margin-bottom: 10px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid rgb(229, 229, 229);
  top: 5px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area .checkmark::after {
  content: "";
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark {
  background-color: var(--theme);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark::after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  top: -5px;
  left: 5px;
  color: var(--theme);
  font-size: 11px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark:after {
  display: block;
  color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .text-color {
  font-weight: 600;
  color: var(--header);
}

.shop-default-wrapper .shop-list-items {
  margin-top: 30px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 45px;
}

@media (max-width: 1399px) {
  .shop-default-wrapper .shop-list-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.shop-default-wrapper .shop-list-items .shop-list-thumb {
  border-radius: 10px;
  background: rgba(248, 248, 248, 0.97);
  padding: 50px 95px;
  margin: 10px;
  position: relative;
}

@media (max-width: 575px) {
  .shop-default-wrapper .shop-list-items .shop-list-thumb {
    padding: 50px;
  }
}

.shop-default-wrapper .shop-list-items .shop-list-thumb img {
  object-fit: cover;
}

.shop-default-wrapper .shop-list-items .shop-list-thumb .post-box {
  position: absolute;
  left: 24px;
  top: 20px;
  display: grid;
  gap: 6px;
  text-align: center;
}

.shop-default-wrapper .shop-list-items .shop-list-thumb .post-box li {
  background-color: var(--header);
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  border-radius: 4px;
  padding: 8px 16px;
  line-height: 1;
}

.shop-default-wrapper .shop-list-items .shop-list-thumb .post-box li:nth-child(2) {
  background-color: var(--theme);
}

.shop-default-wrapper .shop-list-items .shop-list-content {
  padding-right: 50px;
}

@media (max-width: 1399px) {
  .shop-default-wrapper .shop-list-items .shop-list-content {
    padding-right: 0;
    text-align: center;
    padding: 0 30px 20px;
  }
}

.shop-default-wrapper .shop-list-items .shop-list-content h3 {
  font-size: 22px;
  margin-bottom: 7px;
}

.shop-default-wrapper .shop-list-items .shop-list-content h5 {
  font-weight: 700;
  color: var(--theme);
}

.shop-default-wrapper .shop-list-items .shop-list-content .star {
  color: #FFA900;
  margin: 10px 0;
}

.shop-default-wrapper .shop-list-items .shop-list-content p {
  font-weight: 500;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .shop-default-wrapper .shop-list-items .shop-list-content .shop-btn {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .theme-btn {
  background: var(--bg);
  color: var(--theme);
  padding: 15px 70px;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .theme-btn i {
  margin: 0;
  margin-right: 10px;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .theme-btn::before {
  background-color: var(--theme);
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .theme-btn:hover {
  color: var(--white);
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon {
  gap: 8px;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li {
  cursor: pointer;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li a i {
  color: var(--text);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li:hover {
  background-color: var(--theme);
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li:hover i {
  color: var(--white);
}

.shop-default-wrapper .shop-list-items .shop-list-content .shop-btn .shop-icon li:hover .icon {
  filter: invert(100%) brightness(250%) contrast(100%);
}

.shop-details-wrapper .shop-details-image .shop-details-thumb {
  border-radius: 16px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  background: #F8F8F8;
  text-align: center;
  padding: 65px 40px;
}

@media (max-width: 767px) {
  .shop-details-wrapper .shop-details-image .shop-details-thumb {
    padding: 40px 25px;
  }
}

@media (max-width: 575px) {
  .shop-details-wrapper .shop-details-image .shop-details-thumb {
    padding: 30px 15px;
  }
}

.shop-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.shop-details-wrapper .shop-details-image .nav .nav-item .nav-link {
  border-radius: 8px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  background: #F8F8F8;
  text-align: center;
  margin: 0 auto;
}

.shop-details-wrapper .shop-details-image .nav .nav-item .nav-link.active {
  border: 1px solid var(--theme);
}

.shop-details-wrapper .shop-details-content {
  margin-left: 40px;
}

@media (max-width: 991px) {
  .shop-details-wrapper .shop-details-content {
    margin-left: 0;
  }
}

.shop-details-wrapper .shop-details-content .title-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .shop-details-wrapper .shop-details-content .title-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.shop-details-wrapper .shop-details-content .title-wrapper h2 {
  font-size: 36px;
}

.shop-details-wrapper .shop-details-content .title-wrapper h5 {
  color: #57C600;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-transform: capitalize;
}

.shop-details-wrapper .shop-details-content .star {
  margin-top: 12px;
  margin-bottom: 10px;
}

.shop-details-wrapper .shop-details-content .star a {
  color: var(--theme);
  font-size: 16px;
  font-weight: 600;
}

.shop-details-wrapper .shop-details-content .star .color-2 {
  color: #67687A;
  opacity: 0.3;
}

.shop-details-wrapper .shop-details-content .star span {
  margin-left: 10px;
  font-weight: 600;
  font-size: 14px;
}

.shop-details-wrapper .shop-details-content p {
  font-weight: 500;
}

.shop-details-wrapper .shop-details-content .price-list {
  gap: 200px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .shop-details-wrapper .shop-details-content .price-list {
    gap: 30px;
    flex-wrap: wrap;
  }
}

.shop-details-wrapper .shop-details-content .price-list h3 {
  font-size: 30px;
  color: var(--theme);
  font-weight: 700;
}

.shop-details-wrapper .shop-details-content .price-list h5 {
  color: #57C600;
  font-size: 20px;
  font-weight: 600;
}

.shop-details-wrapper .shop-details-content .cart-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 25px;
}

@media (max-width: 1399px) {
  .shop-details-wrapper .shop-details-content .cart-wrapper {
    flex-wrap: wrap;
  }
}

.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket {
  width: 190px;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty {
  display: flex;
  align-items: center;
  border: 1px solid #E5E5E5;
  padding: 11px 30px;
  border-radius: 100px;
  line-height: 1;
  justify-content: space-between;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty button,
.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  font-weight: 400;
  font-size: 22px;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .quantity-basket .qty input {
  text-align: center;
  border-radius: 0;
  border: none;
  outline: none;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn {
  padding: 18px 40px;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn:hover {
  color: var(--theme);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn:hover::before {
  background-color: var(--bg);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn.style-2 {
  background-color: var(--bg);
  border: 1px solid var(--theme);
  color: var(--theme);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn.style-2::before {
  background-color: var(--theme);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .theme-btn.style-2:hover {
  color: var(--white);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon {
  width: 49px;
  height: 49px;
  line-height: 49px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon:hover {
  background-color: transparent;
  border-color: var(--theme);
  color: var(--theme);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon-2 {
  width: 50px;
  height: 50px;
  line-height: 43px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  color: var(--header);
  border: 1px solid rgba(79, 83, 108, 0.3);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon-2:hover {
  background-color: var(--theme);
  border-color: transparent;
  color: var(--white);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .icon-box .icon-2:hover img {
  filter: invert(100%) brightness(250%) contrast(100%);
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog {
  max-width: 625px;
  margin: 135px auto;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content {
  position: relative;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 20px;
}

@media (max-width: 767px) {
  .shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body {
    margin: 10px;
  }
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .close-btn {
  position: absolute;
  top: 2%;
  right: 2%;
  z-index: 5;
}

@media (max-width: 767px) {
  .shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .close-btn {
    top: 0%;
    right: 0%;
  }
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .close-btn .btn-close {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #DDD8FB;
  color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .readMoreBox {
  padding: 20px 30px;
}

@media (max-width: 767px) {
  .shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .readMoreBox {
    padding: 5px;
  }
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .readMoreBox .content h3 {
  color: var(--header);
  font-family: "Quicksand", sans-serif;
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.shop-details-wrapper .shop-details-content .cart-wrapper .modal-dialog .modal-content .modal-body .readMoreBox .content p {
  color: #4F536C;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.shop-details-wrapper .shop-details-content .category-box {
  border-radius: 16px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  padding: 10px;
  margin-top: 30px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.shop-details-wrapper .shop-details-content .category-box .category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border-radius: 10px;
  background: rgba(248, 248, 248, 0.97);
  padding: 30px 25px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media (max-width: 1199px) {
  .shop-details-wrapper .shop-details-content .category-box .category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .shop-details-wrapper .shop-details-content .category-box .category-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.shop-details-wrapper .shop-details-content .category-box .category-list ul li {
  font-weight: 500;
}

.shop-details-wrapper .shop-details-content .category-box .category-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.shop-details-wrapper .shop-details-content .category-box .category-list ul li span {
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  padding-right: 10px;
}

.shop-details-wrapper .shop-details-content .box-check {
  border-radius: 16px;
  border: 1px solid rgba(92, 112, 126, 0.3);
  padding: 10px;
  margin-top: 30px;
}

.shop-details-wrapper .shop-details-content .box-check .check-list {
  display: flex;
  align-items: center;
  gap: 50px;
  border-radius: 10px;
  background: rgba(248, 248, 248, 0.97);
  padding: 30px 25px;
}

@media (max-width: 1199px) {
  .shop-details-wrapper .shop-details-content .box-check .check-list {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.shop-details-wrapper .shop-details-content .box-check .check-list ul li {
  font-weight: 500;
}

.shop-details-wrapper .shop-details-content .box-check .check-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.shop-details-wrapper .shop-details-content .box-check .check-list ul li i {
  color: var(--theme);
  margin-right: 10px;
}

.shop-details-wrapper .shop-details-content .social-icon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 20px;
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .shop-details-wrapper .shop-details-content .social-icon {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .shop-details-wrapper .single-tab {
    margin-top: -10px;
  }
}

.shop-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
}

.shop-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 24px;
  font-weight: 700;
}

.shop-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}

.shop-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--theme);
}

.shop-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme);
  transition: 0.3s;
}

@media (max-width: 470px) {
  .shop-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}

.shop-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 18px;
}

.shop-details-wrapper .single-tab .description-items p {
  font-weight: 500;
}

.shop-details-wrapper .single-tab .table-responsive .table tbody tr .text-1 {
  font-weight: 600;
  color: var(--text);
  padding: 18px 0px 18px 20px;
  line-height: 1;
  width: 135px;
}

.shop-details-wrapper .single-tab .table-responsive .table tbody tr .text-2 {
  font-weight: 400;
  color: var(--text);
  padding: 18px 20px;
  line-height: 1;
}

.shop-details-wrapper .single-tab .review-wrap-area {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 12px;
}

@media (max-width: 575px) {
  .shop-details-wrapper .single-tab .review-wrap-area {
    flex-wrap: wrap;
    gap: 20px !important;
  }
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content {
  width: 100%;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont {
  margin-bottom: 10px;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont h5 {
  font-size: 20px;
  font-weight: 600;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont span {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .star {
  color: var(--theme);
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content p {
  font-weight: 500;
}

.shop-details-wrapper .single-tab .review-title h4 {
  font-size: 24px;
  font-weight: 700;
}

.shop-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}

.shop-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--header);
}

.shop-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #FFA41B;
}

.shop-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}

.shop-details-wrapper .single-tab .review-form .form-clt span {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  display: inline-block;
  margin-bottom: 15px;
}

.shop-details-wrapper .single-tab .review-form .form-clt input,
.shop-details-wrapper .single-tab .review-form .form-clt textarea {
  width: 100%;
  outline: none;
  border: 1px solid #E3E3E3;
  padding: 18px 25px;
  color: var(--text);
  background-color: transparent;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 8px;
  font-weight: 500;
}

@media (max-width: 575px) {

  .shop-details-wrapper .single-tab .review-form .form-clt input,
  .shop-details-wrapper .single-tab .review-form .form-clt textarea {
    padding: 15px 20px;
  }
}

.shop-details-wrapper .single-tab .review-form .form-clt textarea {
  padding-bottom: 160px;
}

.shop-details-wrapper .single-tab .review-form .from-customradio .form-check-label {
  color: var(--header);
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .main-cart-wrapper .table-responsive .table {
    width: 700px;
    overflow-x: scroll;
  }
}

.main-cart-wrapper .table-responsive .table thead tr th {
  font-size: 24px;
  font-weight: 600;
  color: var(--header);
  padding-bottom: 20px;
  padding-left: 0;
}

.main-cart-wrapper .table-responsive .table tbody tr td {
  vertical-align: middle;
  padding: 20px 0;
}

.main-cart-wrapper .table-responsive .table tbody tr td .cart-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  text-transform: capitalize;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty {
  display: flex;
  align-items: center;
  border: 1px solid #E5E5E5;
  padding: 5px 15px;
  border-radius: 9px;
  line-height: 1;
  justify-content: center;
  width: 140px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty .qtyminus {
  margin: 0 10px 0 0;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty .qtyminus,
.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty .qtyplus {
  padding: 10px;
  text-align: center;
  border-radius: 50%;
  background: #F5F5F5;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty button,
.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  font-weight: 400;
  font-size: 18px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .quantity-basket .qty input {
  text-align: center;
  border-radius: 0;
  border: unset;
  outline: none;
  width: 50px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .cart-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
  margin-right: 60px;
  margin-left: 10px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .subtotal-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
  margin-left: 10px;
}

.main-cart-wrapper .table-responsive .table tbody tr td .sub-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
}

.main-cart-wrapper .table-responsive .table tbody tr td .sub-title span {
  opacity: 0;
  visibility: hidden;
}

.main-cart-wrapper .table-responsive .table tbody tr td .sub-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
}

.main-cart-wrapper .table-responsive .table tbody tr td .sub-text {
  font-size: 14px;
  color: var(--header);
  font-weight: 500;
}

.main-cart-wrapper .table-responsive .table tbody tr td .stock-title {
  color: #57C600;
  font-size: 16px;
  font-weight: 600;
  margin-right: 60px;
  display: inline-block;
}

.main-cart-wrapper .table-responsive .table tbody tr td .stock-title-two {
  color: var(--theme);
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

@media (max-width: 991px) {
  .main-cart-wrapper .table-responsive .table tbody tr td .stock-title {
    margin-right: 0;
  }
}

.main-cart-wrapper .table-responsive .table.style-2 {
  width: 100%;
}

.main-cart-wrapper .table-responsive .theme-btn {
  border-radius: 43px;
  background-color: var(--theme);
  width: 100%;
  -webkit-border-radius: 43px;
  -moz-border-radius: 43px;
  -ms-border-radius: 43px;
  -o-border-radius: 43px;
}

.main-cart-wrapper .table-responsive .theme-btn:hover {
  background-color: var(--border);
}

.main-cart-wrapper .cart-total {
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  background: var(--white);
}

.main-cart-wrapper .cart-total .table thead tr th {
  color: #1A1A1A;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.main-cart-wrapper .cart-total .table tbody tr td .sub-title {
  color: #4F536C;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.main-cart-wrapper .cart-total .table tbody tr td .sub-price {
  color: #012E4A;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.main-cart-wrapper .cart-total .table tbody tr td .sub-price-total {
  color: #FF6500;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
}

.main-cart-wrapper .cart-wrapper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .main-cart-wrapper .cart-wrapper-footer {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.main-cart-wrapper .cart-wrapper-footer form {
  border: 1px solid var(--border);
  padding: 0 8px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-cart-wrapper .cart-wrapper-footer form input {
  padding: 5px 5px;
  border: none;
  text-transform: capitalize;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: var(--text);
  height: 50px;
}

@media (max-width: 575px) {
  .main-cart-wrapper .cart-wrapper-footer form input {
    width: 140px;
  }
}

.main-cart-wrapper .cart-wrapper-footer form button {
  outline: none;
  border: none;
}

.main-cart-wrapper .cart-wrapper-footer form .theme-btn {
  border-radius: 6px;
  background-color: var(--theme);
  padding: 20px 24px;
  right: -33%;
  min-width: 80px;
  margin-left: 20px;
}

.main-cart-wrapper .cart-wrapper-footer form .theme-btn::before {
  background-color: var(--header);
}

.main-cart-wrapper .cart-wrapper-footer .theme-btn {
  border-radius: 6px;
  background-color: var(--theme);
}

.main-cart-wrapper .cart-wrapper-footer .theme-btn::before {
  background-color: var(--header);
}

.checkout-radio {
  padding: 24px;
}

.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}

.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 30px;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid #E5E5E5;
  font-weight: 500;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--header);
  text-transform: capitalize;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}

@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-radio .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.checkout-radio .payment-save input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: var(--theme);
  outline: none;
  color: var(--header);
}

.checkout-radio .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--header);
  margin-bottom: 20px;
  line-height: 1;
  font-weight: 600;
  font-size: 30px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single span {
  font-weight: 500;
  color: var(--header);
  display: inline-block;
  margin-bottom: 15px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 19px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea::placeholder,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select::placeholder,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input::placeholder {
  color: rgba(92, 112, 126, 0.5);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--white);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea {
  padding-bottom: 180px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}

.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid var(--border);
  background: transparent;
  text-transform: capitalize;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form textarea#notes {
  padding-bottom: 180px;
}

@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}

.checkout-single-wrapper .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-single-wrapper .payment-save input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #67687A;
  outline: none;
  color: var(--header);
}

.checkout-single-wrapper .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
}

.checkout-single-wrapper .payment-save.style-2 {
  margin-top: 20px;
}

.checkout-single-wrapper .payment-save.style-2 label {
  font-size: 24px;
  font-weight: 500;
}

.checkout-order-area h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
}

.checkout-order-area .product-checout-area .checkout-item {
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.checkout-order-area .product-checout-area .checkout-item p {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.checkout-order-area .product-checout-area .checkout-item .from-customradio {
  margin-bottom: 20px;
  gap: 40px;
  justify-content: end;
}

.checkout-order-area .product-checout-area .checkout-item .from-customradio .form-check-label {
  color: var(--header);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}

.checkout-order-area .product-checout-area .checkout-item-2 {
  margin-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
}

.checkout-order-area .product-checout-area .checkout-item-2 .from-customradio-2 {
  gap: 10px;
  align-items: center;
}

@media (max-width: 1199px) {
  .checkout-order-area .product-checout-area .checkout-item-2 .from-customradio-2 {
    flex-wrap: wrap;
  }
}

.checkout-order-area .product-checout-area .checkout-item-2 .from-customradio-2 .form-check-label {
  color: var(--header);
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
}

.checkout-order-area .product-checout-area .checkout-item-2 p {
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
}

.checkout-order-area .product-checout-area .checkout-item-2 .brand-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.checkout-order-area .product-checout-area .checkout-item-2 .brand-logo li {
  border: 1px solid #E3E3E3;
  padding: 5px 15px;
  border-radius: 6px;
}

.banner-book-card-items {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.banner-book-card-items .book-shape {
  position: absolute;
  right: 100px;
  bottom: 0;
}

@media (max-width: 991px) {
  .banner-book-card-items .book-shape {
    display: none;
  }
}

.banner-book-card-items .book-shape img {
  width: 150px;
}

.banner-book-card-items .book-shape-2 {
  position: absolute;
  right: 55px;
  bottom: 0;
}

@media (max-width: 991px) {
  .banner-book-card-items .book-shape-2 {
    display: none;
  }
}

.banner-book-card-items .book-shape-2 img {
  width: 300px;
}

.banner-book-card-items .book-shape-3 {
  position: absolute;
  right: 30%;
  bottom: 0;
}

@media (max-width: 991px) {
  .banner-book-card-items .book-shape-3 {
    display: none;
  }
}

.banner-book-card-items .book-shape-3 img {
  width: 200px;
}

.banner-book-card-items .banner-book-content {
  padding: 30px 30px 100px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .banner-book-card-items .banner-book-content {
    padding: 30px 10px 60px;
  }
}

@media (max-width: 575px) {
  .banner-book-card-items .banner-book-content {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .banner-book-card-items .banner-book-content .banner-text {
    width: 80%;
  }
}

.banner-book-card-items .banner-book-content .banner-text span {
  display: inline-block;
  color: var(--theme);
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0px 20px;
  border-radius: 100px;
  background-color: var(--white);
  margin-bottom: 10px;
}

.banner-book-card-items .banner-book-content .banner-text h2 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .banner-book-card-items .banner-book-content .banner-text h2 {
    font-size: 20px;
  }
}

.banner-book-card-items .banner-book-content .banner-text p {
  color: var(--white);
}

.banner-book-card-items .banner-book-content .banner-icons {
  width: 55px;
  height: 55px;
  display: inline-block;
  line-height: 55px;
  text-align: center;
  background-color: var(--bg);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.banner-book-card-items .banner-book-content .banner-icons:hover {
  background-color: var(--theme);
}

.banner-book-card-items .banner-book-content .banner-icons:hover img {
  filter: brightness(0) invert(1);
}

.featured-books-section .swiper {
  overflow: visible !important;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.featured-books-section .swiper-pagination {
  top: 106%;
}

@media (max-width: 767px) {
  .featured-books-section .swiper-pagination {
    display: none;
  }
}

.featured-books-section .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid var(--theme);
  border-radius: 50%;
  opacity: 1;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.featured-books-section .swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: var(--white);
  border: 1px solid var(--theme);
}

.featured-books-section .swiper-pagination .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  background-color: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.team-box-items {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  margin-bottom: 30px;
}

.team-box-items .team-image {
  position: relative;
}

.team-box-items .team-image .thumb {
  text-align: center;
  margin: 0 auto;
}

.team-box-items .team-image .thumb img {
  max-width: 100%;
}

.team-box-items .team-image .shape-img {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-box-items .team-content {
  margin-top: 43px;
  border: 1.9px dashed var(--theme);
  padding: 20px 15px;
  border-radius: 8px;
}

.team-box-items .team-content h6 {
  font-size: 16px;
  font-weight: 600;
}

.team-box-items .team-content h6 a:hover {
  color: var(--theme);
}

.team-box-items .team-content p {
  font-size: 12px;
  font-weight: 500;
}

.team-section {
  position: relative;
}

.team-section .array-button {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.team-section .array-button .array-prev {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  z-index: 9;
}

.team-section .array-button .array-next {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  z-index: 9;
}

.team-section:hover .array-button {
  opacity: 1;
  visibility: visible;
}

.team-details-wrapper {
  background-color: var(--bg);
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 9;
  position: relative;
}

@media (max-width: 1399px) {
  .team-details-wrapper {
    gap: 25px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  .team-details-wrapper {
    padding: 30px;
  }
}

.team-details-wrapper .team-details-items {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 470px) {
  .team-details-wrapper .team-details-items {
    flex-wrap: wrap;
  }
}

.team-details-wrapper .team-details-items .details-image {
  border: 1px dashed var(--theme);
  max-width: 186px;
  border-radius: 50%;
  padding: 8px;
}

@media (max-width: 575px) {
  .team-details-wrapper .team-details-items .details-image {
    margin: 0 auto;
  }
}

.team-details-wrapper .team-details-items .details-image img {
  width: 100%;
  height: 100%;
}

.team-details-wrapper .team-details-items .details-content h3 {
  font-size: 24px;
  color: var(--header);
}

.team-details-wrapper .team-details-items .details-content span {
  font-weight: 500;
  color: var(--header);
}

.team-details-wrapper .team-details-items .details-content .social-icon {
  margin-top: 20px;
  gap: 10px;
  position: relative;
  z-index: 9;
}

.team-details-wrapper .team-details-items .details-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid var(--header);
  background-color: transparent;
  color: var(--theme);
  border-radius: 50%;
}

.team-details-wrapper .team-details-items .details-content .social-icon a:hover {
  background-color: var(--white);
  color: var(--theme);
  border-color: transparent;
}

.team-details-wrapper p {
  max-width: 550px;
  color: var(--header);
  font-weight: 500;
}

.team-details-wrapper .details-counter-area {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 575px) {
  .team-details-wrapper .details-counter-area {
    gap: 15px;
  }
}

.team-details-wrapper .details-counter-area .counter-items:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid var(--text);
}

.team-details-wrapper .details-counter-area .counter-items h2 {
  font-size: 24px;
  color: var(--header);
  font-weight: 700;
}

.team-details-wrapper .details-counter-area .counter-items p {
  font-size: 24px;
  font-weight: 700;
  color: var(--header);
  max-width: initial;
}

.testimonial-card-items {
  margin-top: 30px;
  background-color: var(--white);
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 40px;
  margin-bottom: 40px;
}

.testimonial-card-items .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-card-items .client-info .client-img {
  width: 70px;
  height: 70px;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.testimonial-card-items .client-info .client-img .icon {
  position: absolute;
  left: -25px;
  bottom: -35px;
}

.testimonial-card-items .client-info .client-img .icon .shape {
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
}

.testimonial-card-items .client-info .content h3 {
  color: #121315;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
}

.testimonial-card-items p {
  font-weight: 500;
  margin-bottom: 30px;
}

.testimonial-card-items .star {
  color: var(--theme);
}

.testimonial-section {
  margin-bottom: -40px;
}

@media (min-width: 1400px) {
  .testimonial-slider {
    margin-right: -170px;
  }
}

.testimonial-slider .swiper-slide {
  transition: all 3s;
  -webkit-transition: all 3s;
  -moz-transition: all 3s;
  -ms-transition: all 3s;
  -o-transition: all 3s;
}

.testimonial-slider .swiper-slide-active .testimonial-card-items {
  border-top: 3px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0px 4px 25px 0px rgba(51, 39, 39, 0.06);
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}

.testimonial-slider .swiper-slide-active .testimonial-card-items .client-info .client-img .icon .shape {
  filter: invert(23%) sepia(96%) saturate(2210%) hue-rotate(170deg) brightness(95%) contrast(103%);
}

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



/* Custom style  */
a {
  font-family: "Alegreya Sans", sans-serif;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px !important;
  }
}

.header-top-wrapper-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.header-top-wrapper-1 p {
  text-align: center;
  color: var(--white);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bg-blue {
  background-color: var(--theme);
}

.header-1-2 {
  border-color: 1px solid var(--border);
  box-shadow: 0 8px 10px 2px #0000000f;

}

.header-1-1 {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.sign-in-btn {
  padding: 11px 20px;
  border: 1px solid var(--border);
  color: var(--black);
  border-radius: 6px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  min-width: max-content;
}

.sell-notes {
  padding: 11px 20px;
  color: var(--white);
  border-radius: 6px;
  background-color: #009990;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  min-width: max-content;
  border: 1px solid #009990;
}

.sell-notes:hover {
  color: white
}

.sell-notes img {
  height: 15px;
}

.cart-icon {
  position: relative;
  padding: 11px 20px;
  color: var(--white);
  border-radius: 6px;
  background-color: #F5AA4E;
  border: 1px solid #F5AA4E;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--black);
  font-size: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-icon i {
  margin-right: 10px;
  font-size: 14px;

}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #2c8a79;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-justify: auto;
  line-height: 1;
  z-index: 1;
}

.header-1 .header-main .header-right .menu-cart .cart-icon .cart-count {
  position: absolute;
  top: -7px;
  right: -8px;
  /* content: "13"; */
  width: 20px;
  line-height: 20px;
  height: 20px;
  border-radius: 50px;
  background-color: #009990;
  color: var(--white);
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}

.header-1 .header-main .header-right .menu-cart .cart-icon i {
  color: var(--header);
  font-size: 16px;
}

.header-1-1 .logo {
  margin-top: -15px;
}

.header-1-1 .flag-wrapper .flag-wrap {
  position: relative;
  width: 70px;
}

@media (max-width: 1399px) {
  .header-1-1 .flag-wrapper .flag-wrap {
    display: none;
  }
}

.header-1-1 .flag-wrapper .flag-wrap .nice-select {
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}

.header-1-1 .flag-wrapper .flag-wrap .nice-select span {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--header);
}

.header-1-1 .flag-wrapper .flag-wrap .nice-select .list li {
  color: var(--header);
}

.header-1-1 .flag-wrapper .flag-wrap .nice-select::after {
  border-bottom: 2px solid var(--grey-color);
  border-right: 2px solid var(--grey-color);
  height: 13px;
  margin-top: -10px;
  width: 13px;
  right: -5px;
}

.header-1-1 .flag-wrapper .flag-wrap .nice-select.style-2 span {
  text-transform: uppercase;
}

.header-1-1 .flag-wrapper .flag-wrap .nice-select.style-2::after {
  right: 16px;
}

.header-1-1 .flag-wrapper .flag-wrap .flag {
  position: absolute;
  top: 9px;
  left: 15px;
  z-index: 1;
}

@media (max-width: 767px) {
  .header-1-1 .flag-wrapper .flag-wrap .flag {
    display: none;
  }

  .header-top-wrapper-1 p {
    line-height: 16px;
    font-size: 14px;
  }
}

header {
  background-color: var(--white) !important;
  background-image: none !important;
}

/* End Header Section */
/* Hero Section  */
.hero-1 .hero-main-wrapper .hero-content h1 {
  font-family: "Faustina", serif;
  font-weight: 700;
  font-style: normal;
  color: var(--black);
  font-size: 64px;
  margin-bottom: 10px;
}

.hero-1 {
  position: relative;
  padding: 70px 0 70px;
  /* height: 80vh; */
}

.hero-main-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 60px 80px;
  border: 2px solid var(--white);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

}

.hero-1 .girl-img {
  /* position: relative;
  left: 90px;
  top: -20px; */
  position: absolute;
  right: -100px;
  top: -20px;
  height: 100%;
  width: fit-content;
}

/* .hero-1 .girl-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; 
  opacity: 0.5; 
  pointer-events: none;
  z-index: 1;
} */

.hero-1 .girl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.hero-1 .hero-main-wrapper .hero-content p {
  color: var(--paragraph);
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
}

.slider-search {
  padding: 15px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--white);
}

.slider-search-inner {
  padding: 5px;
  border-radius: 6px;
  background-color: #CDC1FF33;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.searche-form {
  display: flex;
  justify-content: space-between;
  background-color: var(--white);
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  margin-right: 5px;
}

.search-input input {
  border: none;
  width: 100%;
  color: grey
}

.caterory-wrapper {

  width: 170px;
}

.caterory-wrapper .nice-select,
.school-wrapper .nice-select {
  color: var(--paragraph);
  font-size: 12px;
  margin-left: 10px;
}

.school-wrapper {
  margin-right: 10px;
}

.caterory-wrapper .nice-select .current {
  margin-right: 30px;
}

.search-input {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 10px;
  border-right: 1px solid var(--border);
}

.slider-search-inner .search-input input::placeholder {
  color: var(--paragraph);
  font-size: 12px;
}

.search-btn {
  border-radius: 5px;
  padding: 10px;
  color: var(--white);
  background-color: var(--theme);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.paragraph-img {
  text-align: end;
}

.paragraph-img img {
  height: 80px;
}

/* Second section */
.pb-100 {
  padding-bottom: 100px;
}

.big-title {
  font-family: "Faustina", serif !important;
  font-weight: 500 !important;
  font-style: normal;
  color: var(--black);
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.second-section .big-title {
  font-family: "Faustina", serif !important;
  font-weight: 500 !important;
  font-style: normal;
  color: var(--black);
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.second-section-card {
  padding: 20px;
  border-radius: 6px;
  background-color: #ffffff4f;
  border: 2px solid var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-icon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;

}

.card-icon img {
  height: 48px;
}

.card-link {
  color: var(--theme);
  font-size: 18px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
}

.card-link i {
  margin-left: 10px;
}

.second-section-card .card-content h3,
.second-section-card .card-icon h3 {
  font-family: "Faustina", serif !important;
  font-weight: 700 !important;
  color: var(--black);
  font-size: 24px;
  margin-bottom: 20px;
}

.second-section-card .card-content {
  font-size: 18px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  color: var(--paragraph);
}

.second-section-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.mtr-10 {
  margin: 10px;
}

.pbt-100 {
  padding: 100px 0;
}

.pbt-50 {
  padding: 50px 0;
}

.pbt-30 {
  padding: 30px 0px 0px;
}

.pbt-80 {
  padding: 80px 0;
}

/* Third section */
.third-section {
  background-color: var(--theme) !important;
  background-image: none !important;

}

.third-section .content-section {
  margin-bottom: 60px;
  padding: 0;
}

.third-section .content-section .sub-title {
  font-size: 24px;
  color: #199BE9;
  font-size: 24px;
  font-family: "Faustina", serif !important;
  font-weight: 500;
  margin-bottom: 0px;
}

.third-section .content-section .big-title {
  font-family: "Faustina", serif !important;
  font-weight: 500 !important;
  font-style: normal;
  color: var(--white);
  font-size: 32px;
  margin-bottom: 10px;
  text-align: start;
}

.third-section .content-section p {
  color: var(--white);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;

}

.third-section .section-3-img {
  border-radius: 20px;
  height: 500px;
}

.third-section .section-3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  object-position: bottom;

}

.third-section .section-3-content {
  padding: 0px 20px;
}

.third-section .section-3-content .cards {
  padding: 15px;
  margin: 0px 0px 20px 0px;
  border: 1px solid #199be92e;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);


}

.third-section .section-3-content .cards .card-title {
  display: flex;
  align-items: center;
}

.third-section .section-3-content .cards .card-title h3 {
  font-family: "Faustina", serif !important;
  font-weight: 700 !important;
  font-style: normal;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--white);

}

.third-section .section-3-content .cards .card-title i {
  font-size: 24px;
  color: #199be987;
  margin-right: 10px;
  position: relative;
  bottom: 3px;
}

.third-section .section-3-content .cards p {
  color: var(--white);
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;

}

.third-section .section-3-btn {
  padding: 30px 20px 0;
}

.third-section .section-3-btn .sell-notes img {
  margin-right: 10px;

}

/* fourth section */
.fourth-section .fourth-section-content .fourth-section-card .card-img {
  height: 200px;
  border-radius: 6px;
}

.fourth-section .fourth-section-content .fourth-section-card .card-img img {
  height: 100%;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.fourth-section .fourth-section-content .fourth-section-card {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: #ffffff4f;
  border: 2px solid var(--white);
  margin: 0px 10px;
}

.fourth-section .fourth-section-content .fourth-section-card h3 {
  font-size: 22px;
  font-family: "Faustina", serif;
  font-weight: 700;
  color: var(--black);
}

.fourth-section .fourth-section-content .fourth-section-card p {

  color: var(--paragraph);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
}

.fourth-section .fourth-section-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.fourth-section .fourth-section-btn {
  padding: 40px 0px 0;
  text-align: center;

}

.fourth-section .fourth-section-btn .sell-notes {
  background-color: var(--theme);
}

.fourth-section .fourth-section-btn .sell-notes img {
  margin-right: 10px;
}

.btn-white {
  padding: 10px 20px;
  color: var(--black);
  border-radius: 6px;
  background-color: var(--white);
  border: 1px solid var(--border);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.fourth-section .fourth-section-btn .btn-white {
  margin-left: 10px;

}

/* Fifth Section */
.fifth-section .big-title {
  text-align: start;
  margin-bottom: 0px;
}

/* .fifth-section .swiper-slide{
  margin-right: 20px !important;
} */
.fifth-section .fifth-section-content {
  padding: 30px;
  background-color: #ffffff4f;
  border: 2px solid --white;

  border-radius: 6px;
  border: 2px solid var(--white);
}

.fifth-section .shop-box-items {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--white);
  border: 1px solid var(--border);
  height: 590px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fifth-section .shop-box-items.style-2 .book-thumb {
  background: none !important;
  padding: 0 !important;
  height: 300px !important;
  margin: 0
}

.fifth-section .shop-box-items.style-2 .book-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.fifth-section .shop-box-items .shop-icon {
  font-size: 12px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  /* flex-direction: row; */
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
  gap: 2px;
}

.fifth-section .shop-box-items .shop-icon li {
  padding: 0px 6px;
  border-radius: 6px;
  margin-block: 2px
}

.fifth-section .shop-box-items .shop-icon .document {
  background-color: #F4F5FA;
  color: #E0E2F0;
  border: 1px solid #E0E2F0;
  margin-right: 5px;
}

.fifth-section .shop-box-items .shop-icon .sell {
  background-color: #F1FFFC;
  color: #CAEFEB;
  border: 1px solid #CAEFEB;
  margin-right: 5px;
}

.fifth-section .shop-box-items .shop-icon .year {
  color: #F5AA4E;
  border: 1px solid #F5AA4E;
  background-color: #FDEEDB;
}

.fifth-section .shop-content h3 {
  font-family: "Alegreya Sans", sans-serif !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  color: var(--black) !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fifth-section .shop-content p {
  font-family: "Alegreya Sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: var(--black) !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fifth-section .shop-button {
  background-color: #cfe8fb30 !important;
  color: #199BE9 !important;
  font-family: "Alegreya Sans", sans-serif !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  justify-content: end;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  left: 0;
}

.fifth-section .shop-box-items .shop-button .theme-btn {
  background-color: #cfe8fb30 !important;
  color: #199BE9 !important;
  font-family: "Alegreya Sans", sans-serif !important;
  font-weight: 400 !important;
  border-radius: 6px !important;
  border: 1px solid #199be92b;
  padding: 10px 15px !important;
  width: 100%;
}

.blue-btn {
  padding: 10px 20px;
  color: var(--white);
  border-radius: 6px;
  background-color: var(--theme);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.blue-btn:hover {
  color: var(--white);
  letter-spacing: 1.5px;

}

.sell-notes {
  letter-spacing: 1.5px;

}

.fifth-section .blue-btn i {
  margin-left: 10px;
}

.fifth-section-btn {
  padding: 40px 0px 0;
  text-align: center;
}

/* faq  section */
.faqs-section .faqs-content {
  background-image: url(../images/faqs.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 10px;
}

.faqs-section .accordion {
  padding: 30px;
  border-radius: 10px;
}

.faqs-section .accordion {
  background-color: #ffffffcc;
}

.faqs-section .accordion-item {
  background: none;
  border: none;

}

.faqs-section .faq-content .accordion-item .accordion-header .accordion-button {
  font-size: 18px;
  font-family: "Faustina", serif;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.2px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 15px 0px 0;
  text-transform: capitalize;
  border: none;
}

.faqs-section .faq-content .accordion-item .accordion-collapse .accordion-body {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  padding-right: 50px;
  padding-left: 0px;
  padding-top: 15px;
  color: var(--paragraph);
  background-color: transparent;
  /* padding-bottom: 25px; */
  font-size: 16px;

}

.faqs-section .big-title {
  margin-bottom: 10px;
  text-align: left;
}

/* .faqs-section .accordion{
  padding: 30px;
  border-radius: 10px;

} */
.faqs-section .faq-btn {
  padding: 20px;
  text-align: center;

}


/* Footer Section */
.footer-section {
  background-image: none !important;
  background-color: var(--theme);
  color: white;
}

.footer-section .footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-family: "Faustina", serif;
  font-weight: 500;
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  display: inline-block;
}

.footer-section .footer-widget-wrapper .single-footer-widget .footer-content {
  margin-top: 20px;
}

.footer-section .footer-widget-wrapper .single-footer-widget .list-items li a {
  color: var(--white);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  position: relative;

}

.footer-section .footer-widget-wrapper .single-footer-widget .list-items li:hover a {
  color: var(--white);
}

.footer-section .footer-widget-wrapper {
  padding: 20px 0 30px;
  position: relative;
  z-index: 9;
}

.footer-section .footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--white);
}

@media (max-width: 991px) {
  .footer-section .footer-widget-wrapper {
    padding: 10px 0 20px;
  }
}

.footer-section .footer-bottom .social-item h4 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
}

.footer-section .footer-widget-wrapper .single-footer-widget .footer-content .social-item .social-icon {
  margin-top: 20px;
  gap: 15px;
  position: relative;
  z-index: 9;
}

.footer-section .footer-bottom .social-item .social-icon a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  display: block;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.footer-section .copyright-section {
  padding: 10px 0;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  font-weight: 400;
}

p {
  font-family: "Alegreya Sans", sans-serif;


}

/* Sixth Section */
.sixth-section {
  background: linear-gradient(to top, #f5aa4e52, #469e7d57, #00999000);

}

.sixth-section .sixth-section-image {
  height: 350px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.sixth-section .sixth-section-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  object-position: bottom;
  transform: scaleX(-1);

}

.sixth-section .sixth-section-img h3 {
  font-family: "Faustina", serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--black);

}

.sixth-section .sixth-section-img {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sixth-section .sixth-section-img p {
  font-family: "Faustina", serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--paragraph);
  line-height: 20px;

}

.sixth-section .sixth-section-content {
  display: flex;
  flex-direction: row;
}

/* .sixth-section .sixth-section-cards{
  margin-left: 120px;
} */
.sixth-section .sixth-section-cards .card-img {
  padding: 10px;
  border-radius: 6px;
  background-color: #F1FFFC;
  /* width: 180px; */
  margin-right: 20px;
  height: 100px;
  width: fit-content
}

.sixth-section .sixth-section-cards .card-img img {
  height: 100%;
  /* width: 100%; */
  object-fit: cover;
}

.sixth-section .sixth-section-card {
  display: flex;
  flex-direction: row;
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  /* margin-bottom: 10px; */
  position: relative;

}


.sixth-section .sixth-section-card-2::after {
  content: "";
  position: absolute;
  top: 45px;
  width: 67px;
  height: 140px;
  border-top: 2px solid #F5AA4E;
  border-right: 2px solid #F5AA4E;
  border-top-right-radius: 6px;
  z-index: -1;
  transform: scaleX(-1);
  transform-origin: top left;
}

.sixth-section .sixth-section-card-3::after {
  content: "";
  position: absolute;
  top: 45px;
  width: 67px;
  height: 0px;
  border-top: 2px solid #F5AA4E;
  border-right: 2px solid #F5AA4E;
  border-top-right-radius: 6px;
  z-index: -1;
  transform: scaleX(-1);
  transform-origin: top left;
}

/* Le petit point à l'angle du bracket */
.sixth-section .sixth-section-card-2::before {
  content: "";
  position: absolute;
  top: 48px;
  left: -70px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50%;
  z-index: 2;
  transform: translate(50%, -50%);
  border: 1px solid #F5AA4E;
}

.sixth-section .sixth-section-card-3::before {
  content: "";
  position: absolute;
  top: 46px;
  left: -70px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50%;
  z-index: 2;
  transform: translate(50%, -50%);
  border: 1px solid #F5AA4E;
}

.sixth-section .swiper-slide-active .sixth-section-card-2::after {
  content: "";
  position: absolute;
  top: 45px;
  width: 67px;
  height: 140px;
  border-top: 2px solid #009990;
  border-right: 2px solid #009990;
  border-top-right-radius: 6px;
  z-index: -1;
  transform: scaleX(-1);
  transform-origin: top left;
}

/* Le petit point à l'angle du bracket */
.sixth-section .swiper-slide-active .sixth-section-card-2::before {
  content: "";
  position: absolute;
  top: 48px;
  left: -67px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50%;
  z-index: 2;
  transform: translate(50%, -50%);
  border: 1px solid #009990;
}

.sixth-section .sixth-section-card h3 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--theme);
  line-height: 18px;
}

.sixth-section .sixth-section-card h3 a {
  color: var(--theme);
}

.sixth-section .card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  justify-content: center;
}

.sixth-section .sixth-section-card .card-para {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.sixth-section .sixth-section-card .card-para img {
  height: 24px;
  width: 24px;
}

.sixth-section .sixth-section-card .card-para p {
  font-size: 14px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  color: var(--paragraph);

}

.sixth-section .sixth-section-card .card-para span {
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  color: #009990;

}

.sixth-section-btn {
  padding: 60px 0px 0;
  text-align: center;
}

.btn-yellow {
  padding: 12px;
  color: var(--black);
  border-radius: 6px;
  background-color: #F5AA4E;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.5px;
}

.btn-yellow:hover {

  letter-spacing: 1.5px;
}

/* Temoignages Section */
.temoignages-section .big-title {
  margin-bottom: 5px;
}

.temoignages-section p {
  margin-bottom: 30px;
  text-align: center;
  color: var(--paragraph);
  font-weight: 500;
  font-size: 18px;
}

.temoignages-section .temoignage-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff75;
  padding: 20px;
  border-radius: 10px;
  gap: 10px;
  margin-bottom: 140px;
}

.temoignages-section .temoignage-card h3 {
  text-align: left;
  font-family: "Faustina", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 30px;

}

.temoignages-section .temoignage-card p {
  text-align: left;
  color: var(--paragraph);
  line-height: 25px;
  margin-bottom: 0;

}

.temoignages-section .temoignage-card h4 {
  text-align: left;
  color: var(--paragraph);
  font-weight: 400;
  font-size: 18px;

}

.temoignages-section .rating {
  display: flex;
  flex-direction: row;
}

.temoignages-section .rating .starts {
  margin-left: 10px;
}

.temoignages-section .rating .starts i {
  color: #F5AA4E;
  font-size: 22px;
}

.temoignages-section .rating p {
  text-align: left;
  color: var(--paragraph);
  font-weight: 300;
  font-size: 14px;
}

.temoignages-section .temoignage-card img {
  width: 70px;

}

.temoignages-section .temoignage-card-1,
.temoignage-card-2,
.temoignage-card-3 {
  position: relative;
}

.temoignages-section .temoignage-card-1 {
  transform: rotate(4deg);
}

.temoignages-section .temoignage-card-2 {
  transform: rotate(-4deg);
}

.temoignages-section .temoignage-card-1::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url(../images/shaps/shap.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.temoignages-section .temoignage-card-2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 300px;
  height: 300px;
  background-image: url(../images/shaps/shap.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  pointer-events: none;
  z-index: -1;
  transform: rotate(97deg);
  opacity: 0.6;
}

.temoignages-section .temoignage-card-3::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url(../images/shaps/shap.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.temoignages-section .temoignage-titles {
  margin-bottom: 100px;
}

.div-chat {
  position: fixed;
  right: 30px;
  bottom: 90px;
  width: 50px;
  height: 50px;
  background: #009990;
  color: white !important;
  z-index: 5;
  border-radius: 10px;
  text-align: center;
  border: 1px solid white;
}

.div-chat a {
  font-size: 26px;
  text-align: center;
  color: white;
  line-height: 44px;
}

/* Forms */
.ptb-120 {
  padding: 120px 0;
}

.authentification-section .cart-img {
  text-align: center;
  height: 90px;
  margin-bottom: 60px;
}

.authentification-section .cart-img img {
  height: 100%;
}

.authentification-section .cart-title {
  text-align: center;
}

.authentification-section .cart-title h1 {
  font-family: "Faustina", serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--black);
  text-align: center;
}

.authentification-section .cart-title p {
  font-weight: 400;
  font-size: 16px;
  color: var(--paragraph);
  text-align: center;
}

/*@media (max-width: 470px) {*/
/*  .authentification-section {*/
/*    width: 350px;*/
/*  }*/
/*}*/
.authentification-section .login-sidebar .form-clt {
  position: relative;
  /* margin-bottom: -10px; */
}

.authentification-section .login-sidebar .form-clt span {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 4px;
  color: var(--black);
}

.authentification-section .login-sidebar .form-clt input {
  border: 1px solid var(--border);
  width: 100%;
  outline: none;
  padding: 12px 20px;
  line-height: 1;
  border-radius: 6px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  color: var(--black);
}

.authentification-section .login-sidebar .form-clt .icon {
  position: absolute;
  right: 20px;
  top: 45px;
}

.authentification-section .login-sidebar .theme-btn {
  background-color: var(--theme);
  border-radius: 6px;
  width: 100%;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
}

.authentification-section .login-sidebar .from-cheak-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.authentification-section .login-sidebar .from-cheak-items p {
  color: var(--text);
}

.authentification-section .login-sidebar .from-cheak-items .form-check-input[type=radio] {
  border-radius: 50%;
  margin-top: 8px;
}

.authentification-section .login-sidebar .text,
.payment-login .text {
  text-align: center;
  font-weight: 300;
  color: #98A0AB;
  margin-top: 20px;
}

.authentification-section .login-sidebar .social-item {
  margin-top: 15px;
}

.authentification-section .login-sidebar .social-item .facebook-text {
  padding: 14px 20px;
  line-height: 1;
  text-transform: uppercase;
  background-color: var(--theme);
  color: var(--white);
  width: 100%;
  /* display: inline-block; */
  position: relative;
  text-align: center;
}

/* .authentification-section .login-sidebar .social-item .facebook-text img {
  position: absolute;
  top: 10px;
  left: 14px;
} */
.authentification-section .login-sidebar .social-item .facebook-text.google-text {
  background-color: var(--white);
  margin-top: 10px;
  color: var(--black);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  text-transform: capitalize;
}

.authentification-section .login-sidebar .user-icon-box {
  text-align: center;
  margin-top: 20px;
}

.authentification-section .x-mark-icon {
  position: absolute;
  right: 40px;
  top: 25px;
  text-align: center;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: var(--header);
}

.authentification-section .x-mark-icon:hover {
  transform: rotate(90deg);
}

/* .authentification-section p {
  color: var(--white);
} */
.authentification-section .cart-title {
  margin-bottom: 20px;
}

.authentification-section .cart-title h4 {
  color: var(--header);
}

.authentification-section .divider-text,
.payment-login .divider-text {
  display: flex;
  align-items: center;
  text-align: center;
}

.authentification-section .divider-text::before,
.authentification-section .divider-text::after,
.payment-login .divider-text::after,
.payment-login .divider-text::before {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #98A0AB;
  margin: 0 10px;
}

.authentification-section .google-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.authentification-section .user-icon-box p {
  font-size: 14px;
  font-weight: 400;
  color: var(--paragraph);
  margin-top: 40px;
  line-height: 20px;
}

.authentification-section .user-icon-box p a {
  text-decoration: underline;
  color: var(--paragraph);
}

.authentification-section .form-clt input::placeholder {
  color: #98A0AB;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 300;
}

.authentification-section .password-input {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.authentification-section .password-input-2 {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.authentification-section .password-input i {
  position: absolute;
  right: 20px;
  top: 45px;
}

.authentification-section .password-clt i {
  position: absolute;
  right: 20px;
  top: 45px;
}

.authentification-section .password-input a,
.authentification-section .password-input-2 a,
.a-color {
  color: #199BE9 !important;
}

.authentification-section .rememeber-text {
  color: var(--black);
}

.authentification-section .agree-text {
  color: #98A0AB;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
}

.authentification-section .list-cheak-items ul li {
  color: #98A0AB;
  font-size: 14px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  position: relative;
}

.authentification-section .list-cheak-items {
  margin-left: 30px;
}

.authentification-section .list-cheak-items ul li::after {
  content: "";
  height: 7px;
  width: 12px;
  border-left: white solid 2px;
  border-bottom: white solid 2px;
  position: absolute;
  top: 7px;
  left: -26px;
  transform: rotate(-45deg);
}

.authentification-section .list-cheak-items ul li::before {
  content: "";
  height: 20px;
  width: 20px;
  background: #98A0AB;
  border-radius: 100%;
  position: absolute;
  top: 3px;
  left: -30px;
}

.back-link a {
  color: #98A0AB;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.back-link a i {
  margin-right: 10px;
}

.authentification-section {
  background-image: url(../images/backgroud/Bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* shop Section */
.shop-section .container {
  max-width: 1300px !important;
}

.shop-section {
  /* background-image: url(../images/backgroud/form-bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain; */

}

.shop-default-wrapper .main-sidebar {
  padding: 20px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-y: scroll;

}

.filter-modal-body .main-sidebar {
  padding: 10px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  /* max-height: 80vh;
  overflow-y: scroll; */

}

.shop-section .searche-form {
  padding: 0;
  background-color: transparent !important;
  border-radius: 0 !important;
}

.shop-section .searche-form .search-input,
.shop-section .searche-form .caterory-wrapper,
.shop-section .searche-form .school-wrapper {
  background-color: var(--white);
  padding: 10px;
  border-radius: 6px;
}

.shop-section .searche-form .caterory-wrapper {
  width: 350px;
  margin-right: 10px !important;
}

.shop-section .searche-form .school-wrapper {
  width: 500px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget {
  background-color: var(--white);
  border: 0px;
  border-radius: 10px;
  padding: 0px;
  /* margin-bottom: 30px; */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.sorting-select {
  width: 250px;
  border: 1px solid var(--border);
  background-color: var(--white);
  border-radius: 6px;
}

.shop-section .filter-title,
.filter-modal-body .filter-title {
  color: var(--paragraph);
  font-size: 18px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  text-transform: math-auto;
  /* margin-bottom: 15px; */
  position: relative;
  padding: 0px 0px 10px 0px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .wid-title h5,
.filter-modal-body .main-sidebar .single-sidebar-widget .wid-title h5 {
  color: var(--paragraph);
  font-size: 18px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  text-transform: math-auto;
  /* margin-bottom: 15px; */
  position: relative;
}

.filter-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  /* épaisseur de la ligne */
  background-color: var(--border);
  /* couleur de la ligne */
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget,
.filter-modal-body .main-sidebar .single-sidebar-widget {
  padding-bottom: 20px;
  padding-top: 20px;
}

.filter-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-list ul li {
  margin-bottom: 0;
}

.filter-list ul li .form-check-input {
  border-color: var(--border) !important;
}

.filter-list ul li {
  color: var(--theme);
  font-size: 18px;
  font-weight: 400;
  font-family: "Alegreya Sans", sans-serif;
}

.single-sidebar-widget {
  position: relative;
}

.single-sidebar-widget::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  /* épaisseur de la ligne */
  background-color: var(--border);
  /* couleur de la ligne */
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-academic-year,
.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status_sale {
  width: 100%;
  padding: 10px 10px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-academic-year .nice-select,
.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status_sale .nice-select {
  width: 100%;
  color: var(--grey-color);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
}

.shop-section .shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select::after,
.filter-modal-body .main-sidebar .single-sidebar-widget .product-status .nice-select::after {
  height: 12px;
  width: 12px;
  right: 0px;
  top: 15px;
  border-color: var(--grey-color);
  border-bottom: 2px solid var(--grey-color);
  border-right: 2px solid var(--grey-color);
}

.nice-select.open .list {
  width: 100%;
  background: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .text-color .star {
  color: #FFA41B;
  margin-right: 5px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .text-color .star .down {
  color: #ffa41b73 !important;
}

.wid-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wid-title span {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--theme);
}










/*  */
.shop-default-wrapper .main-sidebar .single-sidebar-widget .search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .search-input {
  width: 100%;
  height: 60px;
  padding: 16px 20px;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #D0E1E7;
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .search-icon {
  position: absolute;
  right: 30px;
  cursor: pointer;
  color: #888;
  top: 15px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills {
  display: block;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link {
  display: flex;
  width: 100%;
  padding: 20px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid var(--border-3);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  margin-bottom: 10px;
  width: 100%;
  padding: 20px;
  align-items: center;
  gap: 10px;
  color: var(--header);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  background-color: transparent;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link.active,
.shop-default-wrapper .main-sidebar .single-sidebar-widget .categories-list .nav-pills .nav-item .nav-link:hover {
  background-color: var(--theme);
  color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status_stock {
  margin-bottom: 10px;
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select .option {
  background-color: var(--white);
  color: var(--header);
  font-size: 16px;
  line-height: 150%;
  padding: 10px;
  min-height: initial;
  font-weight: 500;
  border: 1px solid var(--border-3);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select .option:hover {
  background-color: var(--theme);
  color: var(--white);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
  opacity: 1;
  display: block;
  pointer-events: auto;
  transform: scale(1.15) translate(-13%, 11%);
  -moz-transform: scale(1.15) translate(-13%, 11%);
  -o-transform: scale(1.15) translate(-13%, 11%);
  -webkit-transform: scale(1.15) translate(-13%, 11%);
  -ms-transform: scale(1.15) translate(-13%, 11%);
}

/* Item Shop List */
.book-item-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background-color: var(--white);
  gap: 10px;

}

.book-item-list .item-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.book-item-list .item-date ul {
  display: flex;
  flex-direction: row;
  gap: 10px;


}

.book-item-list .item-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.book-item-list .item-author-detail {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.book-item-list .item-author-detail ul .autor {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.book-item-list .item-author-detail ul .autor a {
  display: flex;
  align-items: center
}

.book-item-list .item-author-detail ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

.book-item-list .item-author-detail ul .autor {
  display: flex;
  flex-direction: row;
}

.book-item-list .item-author-detail ul .autor img {
  height: 30px;
  margin-right: 10px;
  border-radius: 100%;
}

.book-item-list .item-author-detail ul .autor h5 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}

.book-item-list .item-author-detail ul li {
  padding: 8px 15px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.book-item-list .item-author-detail ul .autor h5 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}

.book-item-list .item-author-detail ul li {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}

.book-item-list .item-author-detail .star i {
  color: #F5AA4E;
  font-size: 14px;
}

.book-item-list .item-author-detail .star i.down {
  color: #ffa41b73 !important
}

.book-item-list .item-author-detail li .price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}

.book-item-list .item-author-detail li .price p {
  margin-right: 10px;
}

.book-item-list .item-author-detail li .price i {
  color: #009990;
  font-size: 16px;
}

.book-item-list .book-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  flex: 12;
}

.book-item-list .book-item-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
}

.book-item-list .book-item-img {
  width: 64px;
  height: fit-content;
  padding: 2px;
  border-radius: 6px;
  background-color: #E0E2F0;
  margin-right: 15px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.book-item-list .book-item-img.bundle {
  padding: 2px;
  background: transparent;
  border: 1px solid #8080802b;
}

.book-item-list .book-item-img.bundle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f1fffc;
  left: 8px;
  top: 8px;
  z-index: -1;
  border: 1px solid #00999017;
}

.book-item-list .book-item-img.bundle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f4f5fa;
  left: 3px;
  top: 4px;
  z-index: -1;
  border: 1px solid #00999017;
}

.book-item-list .book-item-img a {
  height: 100%
}


.book-item-list .book-item-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.book-item-list .item-title h3 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
}

.book-item-list .item-title a:not(h3 a) {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--theme);
  padding: 0px 20px;
  border-radius: 6px;
  border: 1px solid #7E22CE1A;
  background-color: #F9FAFB;
  display: flex;
  align-items: center
}

.book-item-list .item-title a:not(h3 a) i {
  margin-right: 10px;
}

.book-item-list .item-date ul li {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  list-style: none;
  color: var(--black);
}

.book-item-list .item-date ul li:nth-child(2),
.book-item-list .item-date ul li:nth-child(3) {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--paragraph);
}

.book-item-list .item-date ul li::marker {
  margin-right: 5px !important;
}

.item-content .item-date ul li {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  list-style: none;
  color: var(--black);
}

.item-content .item-date ul li:nth-child(2),
.item-content .item-date ul li:nth-child(3) {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--paragraph);
}

.item-content .item-date ul li::marker {
  margin-right: 5px !important;
}

.book-item-list .item-text {
  border-bottom: 1px solid var(--border);
}

.book-item-list .item-text p {
  font-weight: 400;
  font-size: 16px;
  color: var(--paragraph);
  line-height: 22px;
}

.book-item-list .item-text a {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #199BE9;
}

.book-item-list .item-shop-detail ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;

}

.book-item-list .item-shop-detail ul li {
  padding: 8px 15px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  border-radius: 6px;
  color: #009990;
}

.book-item-list .item-shop-detail ul li a i {

  color: #009990;
}

.book-item-list .item-shop-detail .item-price span {
  color: var(--black) !important;
  margin-right: 10px;
  text-decoration: line-through;
}

.book-item-list .item-shop-detail .item-shop-btn {
  border: 1px solid #009990;
  padding: 8px 15px !important;
}

/* Box item */
.book-item-box {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  padding: 15px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background-color: var(--white);
  height: 100%;
}

.book-item-box .book-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.book-item-box .book-item-img {
  padding: 3px;
  border-radius: 6px;
  background-color: #F4F5FA;
  width: 100%;
  height: 220px;
  position: relative;
  z-index: 1
}

.book-item-box .book-item-img.bundle {
  background: transparent;
  border: 1px solid #8080802b;
}

.book-item-box .book-item-img.bundle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f4f5fa;
  left: 3px;
  top: 2px;
  z-index: -1;
  border: 1px solid #00999017;
}

.book-item-box .book-item-img.bundle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f1fffc;
  left: 8px;
  top: 8px;
  z-index: -1;
  border: 1px solid #00999017;
}

.book-item-box .book-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-item-box .book-item-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.book-item-box .item-title {
  /* height: 46px; */
}

.book-item-box .item-title h3 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
}

.book-item-box .book-item-box .book-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-item-box .item-detail-header {
  margin-top: 20px;
}

.book-item-box .item-detail-header ul {
  display: flex;
  flex-direction: row;
  /* gap: 5px; */
  width: 100%;
}

.book-item-box .item-detail-header ul .page {
  border: 1px solid #E0E2F0;
  background-color: #F4F5FA;
  color: var(--theme);
}

.book-item-box .item-detail-header ul .year {
  color: #009990;
  border: 1px solid #CAEFEB;
  background-color: #F1FFFC;

}

.book-item-box .item-detail-header ul .rating {
  background-color: #FEFBF6;
  border: 1px solid #FDEEDB;
}

.book-item-box .item-detail-header ul .rating {
  color: var(--black);
}

.book-item-box .item-detail-header ul .rating i {
  color: #F5AA4E;
  font-size: 12px;
}

.book-item-box .item-detail-header ul .rating i.down {
  color: #ffa41b73 !important
}

.book-item-box .item-detail-header ul li {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
  padding: 3px 4px;
  /* border: 1px solid var(--border); */
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.book-item-box .item-detail-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.book-item-box .item-detail-body .item-extrait {
  color: var(--paragraph);
  font-weight: 400;
  line-height: 22px;
  font-size: 1;

}

.book-item-box .item-detail-body .item-extrait {
  /* height: 90px; */
}

.book-item-box .item-detail-body ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.book-item-box .item-detail-body ul .learn-more a {
  color: #199BE9;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.book-item-box .item-detail-body ul .sold {
  padding: 3px 6px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.book-item-box .item-detail-body ul .sold span {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.book-item-box .item-detail-body ul .sold span i {
  color: #009990;
}

.book-item-box .item-shop-footer ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.book-item-box .item-shop-footer ul .item-price {
  padding: 3px 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background-color: #F9FAFB;
  color: #009990;
  font-size: 14px;
}

.book-item-box .item-shop-footer ul .item-price span {
  color: var(--black) !important;
  margin-right: 10px;
  text-decoration: line-through;
}

.book-item-box .item-shop-footer .item-shop-btn {
  border: 1px solid #009990 !important;
  padding: 3px 13px !important;
  border-radius: 6px;
  color: #009990;
}

.book-item-box .item-shop-footer .item-shop-btn a i {
  color: #009990;
}

/* Textbooks Page */
.banner-textbooks {
  background-color: var(--theme);
}

.banner-textbooks .page-heading .breadcrumb-items li i {
  color: var(--white) !important;
}

.banner-textbooks .page-heading .breadcrumb-items li,
.banner-page .page-heading .breadcrumb-items li {
  color: var(--white) !important;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 300;
  color: var(--white);
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  text-transform: capitalize;
}

.banner-textbooks .breadcrumb-items li a,
.banner-page .breadcrumb-items li a {

  font-size: 14px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.banner-textbooks .breadcrumb-items li a:hover {
  color: var(--white);
}

.banner-textbooks .breadcrumb-items li a i,
.banner-page .breadcrumb-items li i {
  color: var(--white) !important;
  font-size: 14px !important;
  font-weight: 300;
}

.banner-textbooks .page-heading,
.banner-page .page-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-textbooks .banner-textbooks-content .banner-content h1,
.banner-page .banner-page-content h1 {
  color: var(--white);
  font-family: "Faustina", serif;


}

.banner-textbooks .banner-textbooks-content .banner-content h1 {
  font-size: 24px;
  font-weight: 700;
}

.banner-page .banner-page-content h1 {
  font-size: 36px;
  font-weight: 600;
}

.banner-textbooks .banner-textbooks-content .banner-content h2,
.banner-page .banner-page-content .banner-content .subtitle-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.banner-textbooks .banner-textbooks-content .banner-content p {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 200;
  font-size: 14px;
  color: #ffffff;
  padding-bottom: 10px;
  line-height: 19px;
}

.banner-textbooks .banner-textbooks-content .banner-content,
.banner-page .banner-page-content .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.textbooks-detail {
  padding-top: 10px;
  border-top: 1px solid #E5E9EF1A;
}

.banner-textbooks .textbooks-detail ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.banner-textbooks .textbooks-detail ul li span {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}

.banner-textbooks .textbooks-detail ul li {
  padding: 20px 20px 0 0px;

}

.banner-textbooks .textbooks-detail ul li:not(:first-child) {
  padding: 20px 20px 0 20px;
}

.textbooks-detail ul li:not(:last-child) {
  border-right: 1px solid #E5E9EF1A;
}

.banner-textbooks-inner {
  display: flex;
  align-items: center;
}

.banner-textbooks .banner-img {
  height: 100%;
  border-radius: 10px;
  padding: 0px 25px 0px 0px;
}

.banner-textbooks .banner-img img {
  width: 177px;
  height: 280px;
  border-radius: 10px;
  object-fit: cover;
}

.banner-textbooks .slider-search {
  position: relative;
  bottom: -40px !important;
  padding: 10px !important;
  background-color: #e9e4fd !important;
}

.profil-wrapper .profil-wrap .nice-select img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 100%;
}

.profil-wrapper .profil-wrap {
  width: 140px;
}

.profil-wrapper .profil-wrap .nice-select:after {
  top: 45% !important;
  color: var(--black);
}

.profil-wrapper .profil-wrap .nice-select .current {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--black);
}

/* Terms & Conditio page */
.bg-green {
  background: linear-gradient(to right, #2B3992, #009990);
}

.page-cms {
  position: relative;
  top: -90px;
  background-color: var(--white);
  border-radius: 6px;
  padding: 40px;
}

.page-cms p {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 18px;
}

.pbt-90 {
  padding: 90px 0;
}

/* About Us */
.bg-img {
  background-image: url(../images/backgroud/form-bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-position: bottom;
}

.pt-90 {
  padding-top: 90px;
}

.pb-50 {
  padding-bottom: 50px;
}

.banner-page-interne .page-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.banner-page-interne .page-heading .breadcrumb-items li {
  color: var(--grey-color);
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.banner-page-interne .page-heading .breadcrumb-items li a i {
  color: var(--grey-color);
}

.banner-page-interne .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-title {
  font-family: "Faustina", serif;
  font-size: 70px;
  font-weight: 700;
  color: var(--black);
  text-transform: math-auto;
}

.banner-page-interne .subtitle-title {
  color: var(--paragraph);
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;

}

.banner-page-interne .banner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-btn .sell-notes {
  padding: 16px 20px !important;
}

.btn-transparent {
  padding: 12px 20px !important;
  border-style: solid;
  border-color: var(--border);
  color: var(--black);
  border-radius: 6px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.banner-page-interne .banner-btn {
  display: flex;
  gap: 20px;
}

.about-us .img-about {
  width: 100%;
  height: 400px;
}

.about-us .img-about img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: top;
}

.about-us .big-title {
  text-align: left;
}

.about-us .second-section-card {
  height: 200px;
}

.about-us .second-section-card {
  gap: 0px !important;
}

.about-us .second-section-card {
  margin: 6px;
}

.bg-orange {
  background: linear-gradient(to top, #f5aa4e52, #469e7d57, #00999000);
}

.about-us .fourth-section .content-section .sub-title {
  font-size: 16px !important;
  color: var(--theme);
  font-family: "Faustina", serif !important;
  font-weight: 500;
  margin-bottom: 0px;
}

.about-us .fourth-section .content-section .big-title {
  margin-bottom: 10px !important;
  font-size: 70px !important;
  text-transform: math-auto;
}

.about-us .fourth-section .content-section p {
  color: var(--paragraph);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}

.about-us .fourth-section .content-section {
  margin-bottom: 60px;
  margin-left: 10px;
}

.culture-section .culture-section-content .culture-row {
  display: flex;
  flex-direction: row;
}

.culture-section .culture-section-content .culture-row .culture-col-img {
  height: 380px;
  margin-right: 60px;
}

.culture-section .culture-section-content .culture-row-reverse {
  flex-direction: row-reverse;
  display: flex;
  margin: 60px 0 60px 0;
}

.culture-section .culture-section-content .culture-row-reverse .culture-col-img {
  height: 380px;
  margin-left: 60px;
}

.culture-section .culture-section-content .culture-col-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.culture-section .culture-section-content .culture-col-content h3 {
  color: var(--black);
  font-size: 34px;
  font-family: "Faustina", serif;
  font-weight: 600;
  margin-bottom: 30px;

}

.culture-section .culture-section-content .culture-col-content p {
  color: var(--paragraph);
  font-size: 18px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;

}

.culture-section .culture-section-content .culture-col-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-us .culture-section .content-section {
  margin-bottom: 30px !important;
  margin-left: 0px !important;
}

.about-us .culture-section .content-section .sub-title {
  color: var(--paragraph) !important;
}

/* How it work page */
.banner-how-work {
  display: flex !important;
  flex-direction: row !important;
}

.banner-page-content .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-how-work .banner-title {
  margin-bottom: 30px;

}

.banner-how-work .subtitle-title {
  margin-bottom: 30px;

}

.title-36 {
  font-family: "Faustina", serif;
  font-size: 36px;
  color: var(--black);
}

.titles-section p {
  color: var(--paragraph);
  font-size: 16px;
  font-weight: 400;
}

.work-card {
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-card h4 {
  font-family: "Faustina", serif;
  font-size: 24px;
  color: var(--black);
}

.work-card p {
  color: var(--paragraph);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  height: 110px;
}

.work-card a {
  padding: 10px 20px;
  text-align: center;
  width: 100%;
  border: 1px solid var(--theme);
  border-radius: 6px;
  color: var(--theme);
  font-family: "Alegreya Sans", sans-serif;
}

.work-card .link-1 {
  border: 1px solid var(--theme);
  color: var(--theme);
}

.work-card .link-2 {
  border: 1px solid #009990;
  color: #009990;
}

.work-card .link-2:hover {
  background-color: #009990;
  color: var(--white);
}

.work-card .link-1:hover {
  background-color: var(--theme);
  color: var(--white);
}

.how-it-work-2 .title-36 {
  text-align: center !important;
}

.work-card-img {
  text-align: center;
  height: 80px;
}

.work-card img {

  height: 100%;
  object-fit: cover;
}

.how-it-work-2 .work-card {
  text-align: center;
}

.card-row {
  display: flex;
  flex-direction: row;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

.card-row-img {
  height: 300px;
}

.card-row-img img {
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
}

.card-row-content ul li {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  font-family: "Faustina", serif;
  color: var(--paragraph);
}

.card-row-ul {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row-content ul li::after {
  content: "";
  height: 7px;
  width: 12px;
  border-left: white solid 2px;
  border-bottom: white solid 2px;
  position: absolute;
  top: 7px;
  left: -26px;
  transform: rotate(-45deg);
}

.card-row-content ul li::before {
  content: "";
  height: 20px;
  width: 20px;
  background: #009990;
  border-radius: 100%;
  position: absolute;
  top: 3px;
  left: -30px;
}

.card-row-content .title-36 {
  margin-bottom: 30px;
}

.card-row-content {
  margin-right: 20px;
}

/* Tips to sell page */
.banner-tips .banner-page-content {
  text-align: center !important;
}

.card-row-reverce {
  flex-direction: row-reverse !important;
}

.card-row-reverce .card-row-content {
  margin-left: 20px;
  margin-right: 0 !important;
}

.tips-section .card-row {
  margin: 20px 0;

}

.title-24 {
  font-family: "Faustina", serif;
  font-size: 24px;
  color: var(--black);
  font-weight: 600;
  text-transform: math-auto;
}

.card-row p {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--paragraph);
}

.card-row .title-24 {
  margin-bottom: 30px;
}

.tips-section .card-row-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Faqs Page */
.banner-faqs {
  position: relative;
}

.banner-faqs::after {
  width: 100%;
  position: absolute;
  height: 100px;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgb(255 255 255) 2%, rgb(255 255 255 / 1%) 87%);
}

.banner-faqs .page-heading {
  position: relative;
  z-index: 9;
}

.faqs-section .faq-accordion {
  display: flex;
  flex-direction: row;
  background-image: linear-gradient(to bottom, #2D3885 0%, #FFF 30%, #FFF 100%);
  margin: 15px;
  border-radius: 10px;
}

.banner-faqs {
  background-position: center !important;
}

.faqs-section-page .accordion-item {
  padding: 10px 0 !important;
  border-bottom: 1px solid var(--border) !important;
  margin-right: 10px !important;
  height: 100% !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.faqs-section-page .accordion-button[aria-expanded="true"] {
  color: var(--theme) !important;
}

.faqs-section-page .accordion {
  padding: 0 !important;
}

/* Contact us page */
.banner-contact .banner-page-content .banner-content .subtitle-title,
.banner-contact .banner-page-content .banner-content .title-36 {
  margin-bottom: 10px;
}

.contact-section .contact-form .blue-btn {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.contact-section .contact-form .form-clt {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-section .contact-form .form-clt span {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 4px;
  color: var(--paragraph);
}

.contact-section .contact-form .form-clt p {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 4px;
  color: var(--paragraph);
}

.contact-section .contact-form .email-section span {
  font-weight: 700 !important;
  color: var(--black) !important;
  padding-bottom: 3px !important;
}

.contact-section .contact-form .email-section p {
  color: var(--paragraph);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  padding-bottom: 10px;
}

.contact-section .contact-form .form-clt input,
.contact-section .contact-form .form-clt textarea {
  border: 1px solid var(--border);
  width: 100%;
  outline: none;
  padding: 12px 20px;
  line-height: 1;
  border-radius: 6px;
  position: relative;
  color: grey;
  font-size: 13px;
}

.contact-section .contact-form .form-clt textarea {
  height: 200px;
}

.contact-section .contact-form .captcha img {
  height: 70;
  width: 300px;

}

.contact-section .contact-form .form-clt textarea::placeholder,
.contact-section .contact-form .form-clt input::placeholder {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-color);
}

.contact-section .contact-form .form-clt .nice-select {
  padding: 5px 20px;
  padding-top: 11px;
  border: 1px solid var(--border);
  width: 100%;
  outline: none;
  border-radius: 6px;
  font-size: 13px;
}

.contact-section .contact-form .form-clt .nice-select span {

  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-color);
}

/* Seller Page */
.banner-page-image {
  height: 300px;
  background-image: url('../images/backgroud/seller-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.seller-profil {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

}

/* .seller-profil-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
} */
.profil {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.profil .profil-img {
  width: 70px;
  height: 70px;
  position: relative;
}

.profil .profil-img .seller-img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}

.profil .profil-img span {
  position: absolute;
  right: 38px;
  width: 42px;
  height: 42px;
  top: -18px;
}

.profil .profil-img span img {
  width: 100%;
  height: 100%;
}

.profil .ul-info {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}

.profil .ul-info li {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--paragraph);
  align-items: center;
}

.profil .ul-info .star i {
  color: #F5AA4E;
  font-size: 14px;
}

.profil .ul-info .star i.down {
  color: #ffa41b73 !important;
}

.profil .ul-info .li-star {
  border: 1px solid #FDEEDB;
  background-color: #FEFBF6;
  padding: 0px 5px;
  border-radius: 6px;
}

.profil .profil-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.profil .seller-btns {
  display: flex;
  align-items: center;
  gap: 10px !important;
  flex-direction: row;
}

.profil .seller-btns .message-btn,
.seller-btns .follow-btn {
  padding: 10px 40px;
  border-radius: 6px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  display: block;
}

.profil .seller-btns .message-btn {
  border: 1px solid var(--border);
  color: var(--grey-color);
}

.profil .seller-btns .follow-btn {
  border: 1px solid #E0E2F0;
  background-color: #F4F5FA;
  color: var(--theme);
}

.profil .seller-btns .message-btn i,
.seller-btns .follow-btn i {
  margin-right: 10px;
}

.seller-profil .profil-numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seller-profil .profil-numbers li {
  display: flex;
  flex-direction: column;
  padding: 0px 15px;
  border-right: 1px solid var(--border);
}

.seller-profil .profil-numbers li p {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--paragraph);
}

.seller-profil .profil-numbers li span {
  font-family: "Faustina", serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
}

.seller-description {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: 20px;
}

.seller-profil-page .shop-default-wrapper {
  padding: 20px;
  border-radius: 6px;
  background-color: #F2F7FF;
  border: 1px solid #CFE8FB;
  margin-top: 30px;
}

.seller-profil-page .shop-default-wrapper .search-input {
  padding: 8px 15px;
  border: 1px solid var(--border);
  background-color: var(--white) !important;
  border-radius: 6px;
  margin-right: 0 !important;
  width: 550px;
}

.seller-profil .shop-default-wrapper .search-input input::placeholder {
  color: var(--paragraph);
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
}

.items-number {
  font-size: 20px !important;
}

.document-types {
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-top: 30px;
}

.document-types ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.document-types ul li {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  position: relative;
}

.document-types ul li i,
.document-types ul li span {
  color: var(--theme);
  font-weight: 500;
  font-size: 16px;
}

.document-types ul li span {
  font-family: "Alegreya Sans", sans-serif;
}

.document-types ul li p {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
}

.document-types ul li::after {
  content: "";
  display: inline-block;
  height: 40px;
  width: 1px;
  background-color: var(--border);
  margin-left: 20px;
  vertical-align: middle;
}

.seller-profil-page .page-nav-wrap {
  margin-top: 0px !important;
  padding: 15px 20px;
  background-color: var(--white);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  color: var(--black);
}

.seller-profil-page .page-nav-wrap ul li .page-numbers {
  background: var(--white);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 0px 8px !important;
}

.seller-profil-page .page-nav-wrap ul {
  gap: 0 !important;
}

.seller-profil-page .page-nav-wrap ul li .next,
.seller-profil-page .page-nav-wrap ul li .previous {
  padding: 7px 12px !important;
}

.seller-profil-page .page-nav-wrap ul li .previous {
  border: 1px solid var(--grey-color);
  color: var(--grey-color);
}

.seller-profil-page .page-nav-wrap .item-per-page {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  color: var(--black);
}

.seller-profil-page .page-nav-wrap .item-per-page .nice-select {
  width: 100%;
  width: 70px;
  padding: 5px 10px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  color: var(--black);
}

.seller-profil-page .page-nav-wrap .item-per-page .nice-select:after {
  border-bottom: 2px solid var(--black);
  border-right: 2px solid var(--black);
}

.seller-profil-page .page-nav-wrap ul li .page-numbers:hover {
  color: var(--theme) !important;
}

.seller-profil-page .review-summary {
  padding: 20px 0px;
  border-bottom: 1px solid var(--border);
}

.seller-profil-page .review-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.seller-profil-page .stars i,
.review-section .stars i {
  font-size: 14px;
  color: #F5AA4E;
}

.seller-profil-page .bar {
  flex: 1;
  height: 7px;
  background-color: #EFF6FF;
  margin: 0 10px;
  border-radius: 5px;
  overflow: hidden;
}

.seller-profil-page .bar .fill {
  height: 100%;
  background-color: #199BE9;
  border-radius: 5px;
}

.seller-profil-page .count {
  width: 30px;
  text-align: right;
  font-size: 14px;
}

.review-section {
  padding: 30px;
  border: 1px solid var(--border);
  margin-top: 30px;
  border-radius: 6px;
}

.review-section h2,
.suggestions h2,
.description h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "Faustina", serif;
  font-weight: 600;
}

.review-section .review-row .count {
  font-size: 14px;
  font-weight: 500;
  font-family: "Alegreya Sans", sans-serif;
}

.review-section .review-comment {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 40px 0px 0px;
}

.review-section .review-comment.cover {
  opacity: 0.3;
}

.review-section .review-comment .review-img {
  width: 40px;
  position: relative;
}

.review-section .review-comment .review-img::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  transform: translateY(10%);
  width: 1px;
  background-color: var(--border);
  z-index: -1;
}

.review-section .review-comment .review-img img {
  width: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.review-section .review-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.review-section .review-content .stars {
  display: flex;
  display: flex;
  border: 1px solid #FDEEDB;
  background-color: #FEFBF6;
  padding: 0px 5px;
  border-radius: 6px;
  width: fit-content;
}

.review-section .review-content .stars .down {
  color: #ffa41b73 !important;
}

.review-section .review-content .review-date,
.review-section .review-content .reply-date {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--paragraph);
}

.review-section .review-content h3 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--theme);
}

.review-section .review-content .review-reply {
  display: flex;
  flex-direction: row;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
  gap: 15px;
}

.review-section .review-content .review-reply .seller-img {
  width: 40px;
  height: 40px;
}

.review-section .review-content .review-reply .seller-img img {
  height: 100%;
  object-fit: cover;
}

.review-section .review-content .review-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}


/* Wish list page */
.wish-list-page .search-input {

  border: 1px solid var(--border);
  padding: 7px 15px;
  border-radius: 6px;
}

.wish-list-page .shop-default-wrapper .woocommerce-notices-wrapper {
  padding: 0 !important;
}

.wish-list-page .shop-default-wrapper .search-input input {
  color: var(--grey-color);
}

.wish-list-page .shop-default-wrapper .search-input input::placeholder {
  color: var(--grey-color);
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
}

.wishlist-wrapper {
  padding: 20px 30px 20px 30px;
  border-radius: 6px;
  border: 1px solid var(--border);
  justify-content: space-between;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.wishlist-wrapper .add-to-cart {
  border: 1px solid var(--theme);
  padding: 10px 20px 10px 20px;
  border-radius: 6px;
  color: var(--theme);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wish-list-page .book-item-list .item-title .trash-btn,
.wish-list-page .book-item-list .item-title-mobile .trash-btn {
  padding: 4px 8px 4px 8px !important;
  border: 1px solid var(--border) !important;
  color: var(--grey-color) !important;
  border-radius: 3px;
  font-size: 20px;
  background: var(--white);
}

.wish-list-page .book-item-list .item-title .trash-btn i {
  margin-right: 0;
}

.wish-list-page .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wish-list-page .page-heading .breadcrumb-items li {
  color: var(--grey-color);
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.banner-wishlist {
  position: relative !important;
  background-position: center !important;
}

.banner-wishlist::after {
  width: 100%;
  position: absolute;
  height: 100px;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgb(255 255 255) 2%, rgb(255 255 255 / 1%) 87%);
}

.banner-wishlist .page-heading {
  z-index: 9;
  position: relative;
}

.banner-wishlist .page-heading .banner-page-content {
  width: 100%;
  text-align: center;
}

.wish-list-page {
  padding: 20px 0px 100px 0px;
}

.wish-list-page .book-item-list .book-item-img {
  height: 100px !important;
}


/* Bundle Page */
.sidebar-bundle {
  position: sticky;
  top: 150px;
}

.bundle-menu {
  position: sticky;
  top: 95px;
  z-index: 9;
  background: #fff;
}

.bundle-page {
  background-image: url(../images/backgroud/Bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}

.bundle-page .page-header .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bundle-page .page-header .breadcrumb-items li {
  color: var(--grey-color);
  text-transform: capitalize;
  font-size: 16px;
  font-style: normal;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.bundle-page .bundle-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-page .bundle-header .subtitle-title {
  color: var(--paragraph) !important;
  margin-top: 5px !important;
  margin-bottom: 5px !important;

}

.bundle-sidebar {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background-color: var(--white);
}

.bundle-sidebar .bundle-sidebar-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.bundle-sidebar .bundle-sidebar-header {
  color: var(--black);
}

.bundle-sidebar .cart-btn,
.bundle-sidebar .wish-btn {
  text-align: center;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.bundle-sidebar .wish-btn {
  color: var(--black);
}

.bundle-sidebar .cart-btn i,
.bundle-sidebar .wish-btn i {
  margin-right: 5px;
}

.bundle-sidebar .price {
  font-family: "Faustina", serif;
  font-weight: 700;
  font-size: 22px;
}

.bundle-sidebar-body {
  padding: 20px 0px;
}

.bundle-sidebar-body ul {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bundle-sidebar-body ul li {
  position: relative;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--paragraph);
}

.bundle-sidebar-body ul li::before {
  content: "";
  height: 18px;
  width: 18px;
  background: #009990;
  border-radius: 100%;
  position: absolute;
  top: 3px;
  left: -30px;
}

.bundle-sidebar-body ul li::after {
  content: "";
  height: 5px;
  width: 9px;
  border-left: white solid 2px;
  border-bottom: white solid 2px;
  position: absolute;
  top: 8px;
  left: -26px;
  transform: rotate(-45deg);
}

.bundle-sidebar-footer {
  text-align: center;
}

.bundle-sidebar-footer .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bundle-sidebar-footer .social-icons li a img {
  height: 30px;
  width: 30px;
}

.bundle-sidebar-footer p {
  color: var(--grey-color);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 5px;
}

.bundle-sidebar-footer {
  padding: 20px 0px;
}

.bundle-header .bundle-details-1 {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.bundle-header .bundle-details-1 .sold span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-header .bundle-details-1 .sold span p {
  margin-right: 10px;
}

.bundle-header .bundle-details-1 .stars {
  display: flex;
  border: 1px solid #FDEEDB;
  background-color: #FEFBF6;
  padding: 0px 5px;
  border-radius: 6px;
  width: fit-content;
}

.bundle-header .bundle-details-1 .stars {
  color: var(--black);
}

.bundle-header .bundle-details-1 .star i {
  font-size: 14px;
  color: #F5AA4E;
}

.bundle-header .bundle-details-1 .star i.down {
  color: #ffa41b73 !important;
}

.bundle-header .bundle-details-1 .review {
  color: #199BE9;
  font-size: 16px;
}

.bundle-header .bundle-details-1 .year {
  color: #009990;
  border: 1px solid #009990;
  background-color: #F1FFFC;
  padding: 0px 5px;
  border-radius: 6px;
  width: fit-content;
}

.bundle-header .bundle-details-1 .sold {
  color: var(--black);
  font-size: 16px;
}

.bundle-header .bundle-details-1 .sold i {
  color: #009990;
}

.bundle-details {
  padding: 15px 0;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-direction: column;
}

.bundle-details .bundle-details-2 {
  display: flex;
  flex-direction: row;
}

.bundle-details .bundle-details-2 p,
.bundle-details .bundle-details-2 span {
  font-size: 16px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
}

.bundle-details .bundle-details-2 p {
  color: var(--paragraph);
}

.bundle-details .bundle-details-2 span {
  color: var(--black);
}

.bundle-details .bundle-details-2 li {
  padding: 0px 10px 0px 10px;
  border-right: 1px solid #E5E9EF;
}

@media (min-width: 1400px) {
  .bundle-page .container {
    max-width: 1340px !important;
  }
}

.bundle-items .book-item-list .book-item-detail {
  display: flex !important;
  flex-direction: row !important;
}

.bundle-items .book-item-list .item-title {
  flex: 12;
  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center;
}

.bundle-items .book-item-list .item-title .title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bundle-items .book-item-list .item-title .title i {
  margin-right: 0;
}

.bundle-items .book-item-list .item-title .title .preview-btn {
  padding: 8px;
  font-size: 14px;
  color: var(--theme);
  border-radius: 6px;
  border: 1px solid #7E22CE1A;
  background-color: #F9FAFB;
  line-height: 1;
}

.bundle-items .book-item-list .book-item-img {
  padding: 3px;
  border-radius: 6px;
  background-color: #F4F5FA;
  width: 180px !important;
  margin-right: 10px;
  height: auto !important;
  flex: 1;
}

.bundle-items .book-item-list .book-item-img.bundle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f4f5fa;
  left: 3px;
  top: 4px;
  z-index: -1;
  border: 1px solid #00999017;
}


.bundle-items .book-item-list .book-item-img.bundle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f1fffc;
  left: 8px;
  top: 8px;
  z-index: -1;
  border: 1px solid #00999017;
}

.bundle-items .book-item-list .item-text p {
  width: fit-content;
}

.bundle-items .book-item-list .item-text {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  /* espace entre le texte et le lien */
  padding-bottom: 15px;
}

.bundle-items .book-item-list .item-text p {
  margin: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bundle-items .book-item-list .item-button {
  padding-top: 10px;
  font-family: "Alegreya Sans", sans-serif;
  color: var(--paragraph);
}

.bundle .bundle-items-list {
  padding: 20px;
  background-color: #F4F5FA;
  border: 1px solid #E0E2F0;

}

.bundle .number-items {
  font-size: 16px;
  padding-bottom: 20px;
  text-align: center;
  color: var(--paragraph);
}

.bundle .bundle-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraph);
}

/*.bundle,*/
.note {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  line-height: 24px;
}

.bundle .bundle-title {
  gap: 10px;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.bundle .bundle-title h3,
.partial-preview h3,
.profil-seller h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  font-family: "Alegreya Sans", sans-serif;
}

.document-information h3,
.connected-book h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  font-family: "Alegreya Sans", sans-serif;
}

.bundle .bundle-items-list .bundle-items {
  border: 1px solid var(--border);
  border-radius: 6px;
}

.bundle-items-list .book-item-list {
  border-bottom: 1px solid var(--border) !important;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  border-radius: 0px !important;
}

.bundle-page .document-information,
.bundle-page .connected-book,
.partial-preview,
.description-section .description {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.document-information .info-ul {}

.document-information .info-ul li,
.connected-book .info-ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.bundle-page .info-ul li span,
.document-information .subjects h4 {
  width: 40%;
  font-weight: 500;
  color: var(--grey-color);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.bundle-page .info-ul li p {
  width: 60%;
  margin: 0;
  text-align: left;
  color: var(--paragraph);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.document-information .subjects {
  padding: 10px 0 10px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
}

.document-information .subjects .ul-subjects {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}

.document-information .subjects .ul-subjects li {
  padding: 5px 10px 5px 10px;
  border: 1px solid #CFE8FB;
  background-color: #F2F7FF;
  border-radius: 6px;
  color: var(--paragraph);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;

}

.connected-book .connected-book-img {
  width: 60px;
  height: 80px;
  padding: 5px;
  border-radius: 6px;
  background-color: #F4F5FA;
  border: 1px solid #E0E2F0;
}

.connected-book .connected-book-img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.connected-book .connected-book-info-1 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.connected-book .connected-book-info-1 .info-ul {
  flex: 1;
}

.connected-book .connected-book-info-1 .info-ul li {
  padding: 5px 0;
}

.connected-book .connected-book-info-2 {
  padding: 10px 20px 10px 20px;
  border: 1px solid #CFE8FB;
  background-color: #F2F7FF;
  border-radius: 6px;
}

.connected-book .connected-book-info-2 ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.connected-book .connected-book-info-2 ul li {
  text-align: center;
  flex: 1;
  /* même largeur pour chaque <li> */
  padding: 0 10px;
}

.connected-book .connected-book-info-2 ul li span {
  color: var(--black);
  font-weight: 600;
  font-size: 18px;
  font-family: "Alegreya Sans", sans-serif;
}

.connected-book .connected-book-info-2 ul li p {
  font-size: 16px;
  color: var(--paragraph);
  font-weight: 400;
}

.connected-book {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.connected-book .info-ul li p {
  width: 70%;
}

.connected-book .info-ul li span {
  width: 30%;
}

.connected-book .connected-book-info-2 ul li:not(:last-child) {
  border-right: 1px solid var(--border);
}

.more-summaries .info-ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.more-summaries .info-ul li span {
  color: var(--paragraph);
}

.more-summaries .info-ul li p {
  color: var(--theme);
}

.btn-more {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.more-summaries .info-ul {
  margin-bottom: 20px;
}

.partial-preview {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--paragraph);
}

.partial-preview ul {
  list-style: disc;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
}

.partial-preview p {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 500;
}

.partial-preview .partial-preview-content {
  height: 450px;
  overflow-y: scroll;
  margin-bottom: 10px;
}

.bundle-page .review-section h2 {
  margin-bottom: 0 !important;
}

.review-section .question-section-titile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-section .question-section-titile .btn-white {
  background-color: transparent !important;
  padding: 10px 20px 10px 20px !important;
}

.review-section .question-section-titile p {
  color: var(--paragraph);
}

.question-section-question .text-area img {
  width: 40px;
  border-radius: 100%;

}

.question-section-question .text-area {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}

.question-section-question .text-area textarea {
  flex: 1;
  height: 150px;
  background: var(--white);
  padding: 20px 15px 20px 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.question-section-question {
  padding: 20px;
  background-color: #F4F5FA;
  margin-top: 40px;
}

textarea::placeholder {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.question-section-question p {
  text-align: end;
  color: var(--black);
  margin-top: 10px;
}

.question-section-question .btns {
  margin-top: 20px;
  text-align: end;
}

.question-section-question .btns .btn-white,
.question-section-question .btns .blue-btn {
  padding: 10px 20px 10px 20px !important;
}

.question-section-questions .review-content h3 {
  color: var(--black) !important;
}

.review-section .btn-more {
  text-align: center;
  display: block;
  margin-top: 30px;
}

.reply-actions {
  display: flex;
  justify-content: space-between;
}

.reply-actions a {
  font-size: 14px;
  color: var(--paragraph);
  font-weight: 400;
}

.reply-actions a i {
  font-size: 18px;
  color: var(--grey-color);
}

.question-section-questions .review-reply-content {
  width: 100%;
}

.question-section-questions .review-reply-content .btn-more {
  display: block;
  text-align: left;
  margin-top: 0px !important;
}

.helpful i {
  margin-right: 10px;
}

.suggestions {
  padding: 20px 0;
}

.suggestions .book-item-list {
  border-radius: 0px !important;
}

.description-section {
  padding: 20px 0;
}

.description-section .descitpion-menu {
  display: flex;
  padding: 0;
  list-style: none;
  margin: auto;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
}

.description-section .descitpion-menu .author-info img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}

.description-section .descitpion-menu .author-info {
  display: flex;
  align-items: center;
  gap: 10px;

}

.description-section .descitpion-menu li a {
  font-size: 16px;
  color: var(--black);
}

.description-section .descitpion-menu li {
  padding: 15px 20px;
  /*border-bottom: 1px solid var(--border);*/
}

.description-section .descitpion-menu li.active {
  border-bottom: 1px solid var(--theme);
  color: var(--theme) !important;
}

.description-section .descitpion-menu li.active a {
  color: var(--theme);
}

.description-section .descitpion-menu .author-info .author-info-link {
  display: flex;
  flex-direction: column;
}

.description-section .descitpion-menu .author-info .author-info-link span {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-color);
  font-family: "Alegreya Sans", sans-serif;
}

.description-section .descitpion-menu .author-info .author-info-link a {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  line-height: 1;
}

.note .note-title {
  width: 100%;
  background-color: #E0E2F0;
  border-radius: 6px;
  color: var(--grey-color);
  padding: 10px;
  text-align: center;
}

.note .note-pdf {
  background-color: #F4F5FA;
  padding: 20px;
  border-radius: 6px;
}

.note {
  display: flex;
  gap: 20px;
  flex-direction: column;

}

.note .note-pdf .pdf {
  overflow-y: auto;
  max-height: 800px;
  width: 100%;
}

.note .note-pdf .pdf canvas {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.note .btn-more {
  text-align: center;
  color: var(--theme) !important;
}

.note .btn-more i {
  font-size: 18px;
  margin-right: 5px;
}

.bundle-page .profil-seller {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bundle-page .profil-seller .seller {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.bundle-page .profil-seller .seller .seller-btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

.bundle-page .seller-btns .message-btn,
.bundle-page .seller-btns .follow-btn {
  padding: 5px 10px;
  color: var(--paragraph);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.bundle-page .seller-btns .message-btn i,
.bundle-page .seller-btns .follow-btn i {
  margin-left: 5px;
  color: var(--grey-color);
}

.bundle-page .review-section .profil {
  padding: 20px 0 !important;
}

.bundle-page .review-section .profil {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  justify-content: flex-start;
}

.bundle-page .review-section .profil .title-24 {
  font-size: 18px;
  color: var(--theme);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
}

.bundle-page .profil .profil-info {
  gap: 0px !important;
}

.bundle-page .profil .profil-info {
  color: var(--paragraph);
}

.bundle-page .profil .profil-info i {
  font-size: 18px;
  color: var(--grey-color);
  margin-right: 5px;
}

.bundle-page .profil .profil-info .icons {
  display: flex;
  gap: 0px;
}

.bundle-page .seller-profil-page .review-summary {
  border-bottom: none !important;
  padding: 10px 0 0 !important;
}

.bundle-page .seller-profil-page .reviews-received {
  color: var(--paragraph);
  font-weight: 500;
}

.bundle-page .seller-section {
  padding: 20px 30px 10px !important;
}

.bundle-page .seller-profil-page .review-row {
  margin-bottom: 0px !important;
}

.note-work .work-card h4 {
  height: 62px;
}

/* Payment */
.payemennt-section .cart-img {
  padding: 30px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);

}

/* .payemennt-section .cart-img img{
  height: 60px;
} */
.payment-steps {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px 2px #0000000f;
}

.payment-steps {
  display: flex;
  justify-content: center;

}

.payment-steps .step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* le cercle reste centré */
  text-align: left;
  /* texte non centré */
}

/* Cercle visuel personnalisé */
.payment-steps .circle-indicator {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  cursor: pointer;
  background-color: var(--border);
  z-index: 2;
}

.payment-steps .circle-indicator.checked {
  background-color: var(--white);
  border: 1px solid var(--theme);
}

/* Inner filled circle if checked */
.payment-steps .step input[type="checkbox"] {
  display: none;
}

.payment-steps .step input[type="checkbox"]:checked+.circle-indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--theme);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Ligne horizontale entre les étapes */
.payment-steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  /* left: 50%; */
  right: 0%;
  width: 80%;
  height: 1px;
  background-color: var(--border);
  z-index: 1;
  transform: translateX(50%);
}

.payment-steps .step-info {
  margin-top: 10px;
  width: max-content;
  text-align: center;
}

.payment-steps .step-info {
  font-family: "Alegreya Sans", sans-serif;
}

.payment-steps .step-info .step-number {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
}

.payment-steps .step-info .step-title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.payment-steps .step-info .step-status {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-color);
}

.payment-steps .step-info .step-status.active {
  color: var(--theme);
}

.payment-steps .steps-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.payement {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.payement .shopping-card,
.shopping-card .item-pay,
.payment-credentiel,
.payment-methods .payment-method,
.shopping-card .item-pay,
.thank-paiment .item-pay {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.payement .shopping-card,
.shopping-card .item-pay,
.payment-credentiel,
.payment-methods .payment-method,
.shopping-card .item-pay {
  justify-content: center;
}

.payement .shopping-card h3,
.payment-credentiel h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  font-family: "Alegreya Sans", sans-serif;
  text-align: center;
}

.shopping-card .item-pay,
.thank-paiment .item-pay {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;

}

.shopping-card .item-pay .item-pay-content {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.shopping-card .item-pay .item-pay-title {
  display: flex;
  flex-direction: column;
}

.shopping-card .item-pay .item-pay-btn {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 5px;
}

.shopping-card .item-pay .item-pay-btn a {
  font-size: 16px;
  padding: 7px 8px 7px 8px;
  line-height: 1;
  border: 1px solid var(--border);
  background-color: #F9FAFB;
  border-radius: 6px;


}

.shopping-card .item-pay .item-pay-btn a i {
  color: var(--grey-color);
  font-size: 12px;
}

.shopping-card .item-pay .item-pay-image,
.thank-paiment .item-pay .item-pay-image {
  height: 70px;
  width: 70px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px;

}

.shopping-card .item-pay .item-pay-image.bundle,
.thank-paiment .item-pay .item-pay-image.bundle {
  background: #E0E2F0;
}

.shopping-card .item-pay .item-pay-image img,
.thank-paiment .item-pay .item-pay-image img {
  height: 100%;
  width: 60px;
  border-radius: 6px;
}

.shopping-card .item-pay .item-pay-title p {
  color: var(--theme);
  line-height: 18px;
  font-size: 16px;
}

.shopping-card .item-pay .item-pay-title .btn-more {
  font-size: 14px !important;
}

.shopping-card,
.payment-credentiel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discount-code-section {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 15px;
  background: #e0e2f080;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.discount-code-section .discount-code {
  display: flex;
  align-items: center;
  gap: 10px;

}

.discount-code-section .discount-code input {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  flex: 1;
  border-radius: 6px;
}

.discount-code-section .discount-code input::placeholder {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  color: var(--grey-color);
}

.discount-code-section .discount-code a {
  padding: 8px 14px;
  background: #009990;
  border-radius: 6px;
  color: var(--white);
}

.discount-code-section ul {}

.discount-code-section ul li {
  display: flex;
  justify-content: space-between;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
}

.discount-code-section ul .total {
  font-weight: 600;
  font-size: 18px;
}

.payment-credentiel .payment-method {
  display: flex;
  justify-content: space-between;
  padding: 13px 20px 13px 20px !important;
}

.payment-credentiel .payment-method .payment-method-img {
  height: 32px;
}

.payment-credentiel .payment-method .payment-method-img img {
  height: 100%;
  object-fit: cover;
}

.payment-credentiel .payment-method .payment-method-input {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-credentiel .payment-method .circle-indicator {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  cursor: pointer;
  background-color: var(--white);
  z-index: 2;
}

.payment-credentiel .payment-method .payment-method-input input[type="checkbox"] {
  display: none;
}

.payment-credentiel .payment-method .payment-method-input input[type="checkbox"]:checked+.circle-indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid #199BE9;
  background-color: #CFE8FB;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.payment-credentiel .payment-method .circle-indicator.checked {
  border: 1px solid #199BE9;
  background-color: #F2F7FF;
}

.payment-credentiel .payment-method.active {
  border: 1px solid #CFE8FB;
  background-color: #F2F7FF;
  color: #199BE9 !important;
}

.payment-credentiel .payment-method.active .payment-method-input {
  color: #199BE9 !important;
}

.payment-credentiel .payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.payment-credentiel .payment-method-btn a,
.thank-paiment .payment-method-btn .dowload-btn {
  padding: 10px 20px 10px 20px;
  display: block;
  width: 100%;
  text-align: center;
  background: #009990;
  color: var(--white);
  border-radius: 6px;

}

.payment-credentiel .payment-method-btn p {
  color: var(--black);
  text-align: center;
}

.payment-credentiel .payment-method-btn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-login .google-text,
.payment-login input {
  padding: 10px 20px;
  line-height: 1;
  width: 100%;
  /* display: inline-block; */

  border: 1px solid var(--border);
  border-radius: 6px;
}

input {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
}

.payment-login .google-text {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;

}

.payment-login .text {
  margin-bottom: 20px;
  font-size: 14px !important;
  font-weight: 400;
  color: var(--paragraph) !important;
}

.payment-method-btn .payment-methods-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.payment-authentication p {
  font-size: 12px;
  font-weight: 400;
}

.payment-authentication .payment-authentication-p {
  text-align: center;
  color: var(--paragraph);
  margin-top: -15px;
}

.card-credentiel .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
}

.card-credentiel .field label {
  display: block;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  color: var(--paragraph);
  font-weight: 500;
}

.card-credentiel .input-with-icons,
.card-credentiel .input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.card-credentiel .input-with-icons input,
.card-credentiel .input-with-icon input,
.card-credentiel .nice-select {
  flex: 1;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--grey-color);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  width: 100%;
}

.card-credentiel .card-icons {
  position: absolute;
  right: 8px;
  display: flex;
  gap: 4px;
}

.card-credentiel .card-icons img {
  height: 20px;
}

.card-credentiel .input-with-icon span.icon-calendar,
.card-credentiel .input-with-icon img {
  position: absolute;
  right: 10px;
  height: 20px;
  width: 20px;
  pointer-events: none;
}

.card-credentiel select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.card-credentiels {
  gap: 50px;
}

.payment-steps .step.completed .circle-indicator {
  background-color: #009990;
  border: none !important;
}

.payment-steps .step.completed .step-status {
  color: #009990;
}

.payment-steps .step.completed input[type="checkbox"]+.circle-indicator::before {
  content: "";
  height: 4px;
  width: 8px;
  border-left: white solid 1px;
  border-bottom: white solid 1px;
  position: absolute;
  top: 7px;
  left: 6px;
  transform: rotate(-45deg);
}

.thank-paiment h1 {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  font-family: "Faustina", serif;
  text-align: center;

}

.thank-paiment .thank-you-img {
  width: 100px;
  height: 100px;
}

.thank-paiment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.thank-paiment {
  color: var(--paragraph);
}

.thank-paiment .payment-method-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;

}

.thank-paiment .payment-method-btn p {
  text-align: center;
  color: var(--paragraph);
}

.payment-method-btn .dowload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-method-btn .dowload-btn img {
  margin-left: 5px;
  height: 18px;
  width: 18px;
}

.payemennt-section,
.payemennt-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.answerins-credit {
  background-image: url(../images/backgroud/Bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}

.answerins-credit .payments-methods {
  display: flex;
  justify-content: space-between;
  background-color: #F2F7FF;
  border: 1px solid #CFE8FB;
  border-radius: 6px;
  padding: 13px 20px 13px 20px;
  align-items: center;
}

.payment-methods-imgs {
  display: flex;
  gap: 15px;
  align-items: center;
}

.payment-methods-imgs h3 {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);

}

.answerins-credit h1,
.answerins-credit h2 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Faustina", serif;
}

.answerins-credit-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.answerins-credit .answerins-credits .credit {
  padding: 0 10px 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 10px; */
  flex: 1;
}

.answerins-credit .answerins-credits .credit .credit-title {
  font-size: 14px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  padding: 10px 15px 10px 15px;
  color: var(--white);
  border-radius: 6px;
  position: relative;
  top: -23px;
}

.answerins-credit .answerins-credits .credit-1 .credit-title {
  background: var(--theme);
}

.answerins-credit .answerins-credits .credit-2 .credit-title {
  background: #009990;
}

.answerins-credit .answerins-credits .credit-3 .credit-title {
  background: #F5AA4E;
}

.answerins-credit .answerins-credits .credit .deposit {
  text-align: center;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid #CFE8FB;
  background-color: #F2F7FF;
  border-radius: 6px;
  margin-bottom: 30px;
}

.answerins-credit .answerins-credits .credit .deposit {
  color: var(--black);

}

.answerins-credit .answerins-credits .credit .deposit p {
  font-size: 16px;
  font-weight: 300;
}

.answerins-credit .answerins-credits .credit .deposit span {
  font-size: 24px;
  font-weight: 600;
  font-family: "Faustina", serif;
}

.answerins-credit .answerins-credits {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 40px;
}

.answerins-credits .credit input[type="checkbox"] {
  display: none;
}

.answerins-credits .credit .circle-indicator {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 2;
}

.answerins-credit .answerins-custom-credits {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;

}

.answerins-credit .answerins-custom-credits input,
.answerins-credit .answerins-custom-credits a {
  padding: 10px 20px 10px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 100%;
  display: block;
  background-color: transparent;
}

.answerins-credit .answerins-custom-credits a {
  font-weight: 500;
  text-align: center;
}

.answerins-credit .answerins-custom-credits label {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  color: var(--black);
  font-size: 16px;

}

.answerins-credit .answerins-custom-credits .input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.answerins-custom-credits .input-with-icon span.icon-calendar,
.answerins-custom-credits .input-with-icon img {
  position: absolute;
  right: 10px;
  height: 20px;
  width: 20px;
  pointer-events: none;
}

.answerins-credit {
  padding: 50px 0px 150px;
}

/* Preview modal */
.preview-modal-body {
  padding: 20px;
  background-image: url(../images/backgroud/Bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  border-radius: 0.5rem;
  background-color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.preview-sec1 .item-preview {
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: flex-start;
  margin-right: 20px;

}

.preview-sec1 .item-preview .added-to-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-sec1 .item-preview .added-to-card h3 {
  font-size: 22px;
  color: var(--black);
  font-weight: 600;
  font-family: "Faustina", serif;
}

.preview-sec1 .item-preview .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.preview-sec1 .item-preview .item-img {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.preview-sec1 .item-preview .item-image {
  width: 64px;
  height: fit-content;
  padding: 2px;
  border-radius: 6px;
  background-color: #E0E2F0;
  position: relative;
  z-index: 1
}

.preview-sec1 .item-preview .item-image.bundle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f4f5fa;
  left: 3px;
  top: 4px;
  z-index: -1;
  border: 1px solid #00999017;
}


.preview-sec1 .item-preview .item-image.bundle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f1fffc;
  left: 8px;
  top: 8px;
  z-index: -1;
  border: 1px solid #00999017;
}

.preview-sec1 .item-preview .item-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.preview-sec1 .item-preview .item-content ul {
  display: flex;
  gap: 10px;
  color: var(--paragraph);
  font-size: 18px;
  font-weight: 400;
  font-family: "Alegreya Sans", sans-serif;
}

.preview-sec1 .item-preview .item span {
  padding: 10px 12px 10px 12px;
  border: 1px solid #E5E9EF;
  background-color: #F9FAFB;
  border-radius: 6px;
  line-height: 1;
  color: var(--black);
  font-size: 16px;
}

.preview-sec1 .shopping-cart {
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.preview-sec1 {
  display: flex;
  /* gap: 20px; */
}

.preview-sec1 .shopping-cart h3 {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  font-family: "Alegreya Sans", sans-serif;
}

.preview-sec1 .shopping-cart ul {
  display: flex;
  flex-direction: row;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.preview-sec1 .shopping-cart a {
  padding: 10px 20px 10px 20px;
  display: block;
  width: 100%;
  text-align: center;
  background: #009990;
  color: var(--white);
  border-radius: 6px;
  line-height: 1;
  font-size: 16px;

}

.preview-sec1 .shopping-cart a i {
  font-size: 14px;
  margin-right: 5px;
}

.preview-modal {
  z-index: 99999
}

.preview-modal-body .discount-row {
  background-color: #F1FFFC;
  border: 1px solid #CAEFEB;
  color: #009990;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
}

.preview-modal-body .interested-items {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.preview-modal-body .book-item-list .book-item-img {
  width: 64px;
  height: fit-content;
}

.interested-items-title {
  font-size: 22px;
  font-weight: 600;
  font-family: "Faustina", serif;
  color: var(--black);
  margin-bottom: 10px;
}

.interested-items .book-item-list .item-title h3 {
  font-weight: 400;
}

.interested-items .book-item-list .item-text p {
  font-size: 14px;
}

.interested-items .book-item-list {
  padding: 10px !important;
}

.profil-modal .modal-body {
  padding: 0 !important;
}

.seller-modal-body {
  background-image: url(../images/backgroud/Bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}

.seller-modal-body .seller-modal-title h1,
.document-modal-body .document-modal-title h1 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  font-family: "Faustina", serif;
}

.seller-modal-body .seller-modal-title h2 {
  text-align: center;
  font-size: 18px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: math-auto;
}

.seller-modal-body .seller-modal-title p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--paragraph);
  margin-top: 5px;
}

.seller-modal-body .seller-modal-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.seller-modal-body .languages .search-widget {
  padding: 0px 40px;
}

.seller-modal-body .languages .search-widget input {
  width: 100%;
  border: none;
}

.seller-modal-body .languages .search-widget input::placeholder {
  color: var(--grey-color);
}

.seller-modal-body .languages .search-widget form {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid var(--border);
  padding: 10px 8px 10px 8px;
  border-radius: 6px;
  gap: 10px;
  color: var(--grey-color);
}

.seller-modal-body .languages .search-widget form i {
  color: var(--grey-color);
}

.seller-modal-title h2::before {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--border);
  margin: 0 10px;
}

.seller-modal-title h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--border);
  margin: 0 10px;
}

.seller-modal-body .languages ul {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.seller-modal-body .languages ul li {
  width: calc(50% - 5px);
  /* 2 colonnes avec un petit gap */
  padding: 20px 60px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
}

.seller-modal-body .languages ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
}

.seller-modal-body .languages ul li.last {
  border-bottom: none !important;
}

.seller-modal-body .languages ul li img {
  width: 36px;
  height: 36px;
}

.seller-modal-body .languages ul li span {
  font-size: 18px;
  color: var(--theme);
  font-weight: 400;
  font-family: "Alegreya Sans", sans-serif;
}

.seller-modal-body {
  padding: 20px;
  background-image: url(../images/backgroud/Bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  border-radius: 0.5rem;
  background-color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roles .role {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.roles .role .role-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.roles .role .role-content .role-img {
  width: 36px;
  height: 36px;
}

.roles .role .role-content .role-title h3 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Alegreya Sans", sans-serif;
  color: var(--theme);
}

.roles .role .role-content .role-title p {
  font-size: 14px;
  color: var(--paragraph);
  font-weight: 400;
}

.roles .role i {
  font-size: 22px;
  color: var(--grey-color);
  font-weight: 300;
}

.roles .role.last {
  border-bottom: none !important;
}

.roles {
  margin-bottom: 10px;
}

.seller-modal-title h2 img {
  height: 36px;
  width: 36px;
  margin-right: 10px;
}

/* Seller profil form */
.form-btns p {
  font-size: 12px;
  font-weight: 400;
  color: var(--paragraph);
  width: 60%;
  line-height: 20px;
}

.form-btns .back {
  border: 1px solid var(--border);
  color: var(--black);
  padding: 10px 20px 10px 20px;
  border-radius: 6px;
  font-size: 14px;
}

.form-btns .go-back {
  border: 1px solid var(--border);
  color: var(--black);
  padding: 10px 20px 10px 20px;
  border-radius: 6px;
  font-size: 14px;
}

.form-btns .finish {
  color: var(--white);
  padding: 10px 20px 10px 20px;
  border-radius: 6px;
  background: #009990;
  font-size: 14px;
}

.form-btns {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 10px;

}

.seller-form {
  padding: 0px 20px 30px;
}

.seller-form label,
.document-form label {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  color: var(--paragraph);
  font-weight: 500;
}

.seller-form input,
.seller-form textarea,
.seller-form .nice-select,
.document-form .nice-select {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--grey-color);
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  /* width: 100%; */
}

.seller-form input:focus,
.seller-form textarea:focus,
.seller-form .nice-select:focus,
.document-form .nice-select:focus {
  border: 1px solid #2b3992;
  outline: none;
}

.document-form textarea {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--grey-color);
  font-family: "Alegreya Sans", sans-serif;
  height: 200px;
  font-weight: 400;
}

.document-form textarea::placeholder {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--grey-color);
}

.seller-form .platform-checkbox {
  display: flex;
  justify-content: space-between;
}

.seller-form .platform-checkbox label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.seller-form .platform-checkboxs,
.seller-form .orgaization-checkboxs {
  display: flex;
  gap: 30px;
}

.seller-form .platform-checkboxs .circle-checkbox input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  /* rend le carré circulaire */
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  padding: 0 !important;
}

.seller-form .platform-checkboxs .circle-checkbox input[type="radio"]:checked {
  border: 2px solid #009990;
}

.seller-form .platform-checkboxs .circle-checkbox input[type="radio"]:checked::before,
.seller-form .orgaization-checkboxs .circle-checkbox input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: #009990;
  border-radius: 50%;
}

.seller-form .subject-checkboxes {
  display: flex;
  flex-wrap: wrap;
}

.seller-form .subject-checkboxes label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: calc(33% - 3px);
  font-weight: 400;
  font-size: 14px;
  padding: 7px;
}

.seller-form .subject-checkboxes input[type="checkbox"] {
  border: 1px solid var(--border);
  width: 18px;
  height: 18px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  padding: 0 !important;
  border-radius: 3px;
}

.seller-form .form-input {
  width: 100%;
}

.seller-form .field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.seller-form .form-row,
.document-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.document-form .form-btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.document-form .form-row .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.seller-form .field .input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.seller-form .field .input-with-icon span.icon-calendar,
.seller-form .field .input-with-icon img {
  position: absolute;
  right: 10px;
  height: 20px;
  width: 20px;
  pointer-events: none;
}

@media (min-width: 992px) {
  .modal-lg {
    --bs-modal-width: 700px !important;
  }

  .modal-xl {
    --bs-modal-width: 1290px !important;
  }
}

.seller-form .field input::placeholder,
.seller-form .nice-select,
.seller-form .nice-select::after {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-color);
}

.seller-form .orgaization-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seller-form .orgaization-checkboxs label {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
  color: var(--paragraph);
  font-weight: 400;
}

.seller-form .orgaization-checkboxs .circle-checkbox input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  padding: 0 !important;
}

.orgaization-checkboxs .circle-checkbox input[type="radio"]:checked {
  border: 2px solid #009990;
}

.seller-form .subject-checkboxes input[type="checkbox"]::checked {
  color: #009990;
}

.seller-form .subject-checkboxes input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: -1px;
  top: -1px;
  border-radius: 3px;
  background-color: #009990;
}

.seller-form .subject-checkboxes input[type="checkbox"]:checked::after {
  content: "";
  height: 4px;
  width: 8px;
  border-left: white solid 1px;
  border-bottom: white solid 1px;
  position: absolute;
  top: 5px;
  left: 4px;
  transform: rotate(-45deg);
}

.roles.ready-profil {
  margin-bottom: 30px;
}

/* Report Document */
.document-modal-body {
  padding: 30px;
  background-image: url(../images/backgroud/Bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  border-radius: 0.5rem;
  background-color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.document-modal-body .item-upload {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  gap: 20px;

}

.document-modal-body .item-upload .item-img {
  padding: 5px;
  border: 1px solid #E0E2F0;
  background: #F4F5FA;
  width: 64px;
  height: 64px;
  border-radius: 6px;

}

.document-modal-body .item-upload .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.document-modal-body .item-upload h2 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Alegreya Sans", sans-serif;
  color: var(--black);
}

/* Preview PopUp */
.preview-body {
  background-image: url(../images/backgroud/Bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  border-radius: 0.5rem;
  background-color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  max-height: 80vh;
  overflow-y: auto;
}

.preview-body .item-pdf {
  background: #F4F5FA;
  border: 1px solid var(--border);
  padding: 20px;
  gap: 30px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.preview-body .item-title {
  background: #E5E9EF;
  border-radius: 6px;
  padding: 10px;
}

.preview-body .item-title h4 {
  font-size: 14px;
  color: var(--paragraph);
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  text-align: center;
}

.preview-body .pdf-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.preview-body .pdf-navigation .next,
.preview-body .pdf-navigation .prev {
  padding: 6px 10px;
  line-height: 1;
  border-radius: 6px;
}

.preview-body .pdf-navigation .prev {
  background-color: #E5E9EF;
  border: 1px solid var(--grey-color);
}

.preview-body .pdf-navigation .next {
  background: var(--theme);
  color: var(--white);
}

.preview-body .pdf-navigation .next i,
.preview-body .pdf-navigation .prev i {
  font-weight: 300;
  font-size: 14px;
}

.preview-body .item-pdf .pdf {
  height: 626px;
  padding: 0px 20px;
}

.preview-body .item-pdf canvas {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.preview-body .item-detail .item-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 0px 0px 0 30px;
}

.preview-body .item-detail .item-infos {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.preview-body .item-detail .item-infos .star {
  border: 1px solid #FDEEDB;
  background: #FEFBF6;
  border-radius: 6px;
  color: var(--black);
  padding: 5px 7px 5px 7px;
  width: fit-content;
}

.preview-body .item-detail .item-infos .star i {
  color: #F5AA4E;
}

.preview-body .item-detail .item-infos .star i.down {
  color: #ffa41b73 !important;
}

.preview-body .item-detail .item-infos p {
  color: var(--paragraph);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.preview-body .item-detail .item-infos .price {
  border: 1px solid var(--border);
  background: #F9FAFB;
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  padding: 17px 14px 17px 14px;
  border-radius: 6px;
  line-height: 1;
  width: fit-content;
  color: #009990;
}

.preview-body .item-detail .item-infos span {
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
}

.preview-body .item-detail .more-info,
.preview-body .item-detail .btn-cart {
  border-radius: 6px;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  line-height: 1;
  text-align: center;
  flex: 1;
}

.preview-body .item-detail .more-info {
  color: var(--theme);
  border: 1px solid var(--theme);
}

.preview-body .item-detail .btn-cart {
  background: #009990;
  color: var(--white);
}

.preview-body .item-detail .more-info i {
  margin-left: 10px;
}

.preview-body .item-detail .btn-cart i {
  margin-right: 10px;
}

.preview-body .item-detail .preview-action {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* Read Pop Up */
.preview-body .pdf-navigation-2 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  background: #E5E9EF;
  border-radius: 6px;
  padding: 10px;
}

.preview-body .pdf-navigation-2 .navigation-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.preview-downloads-file-modal .preview-item-body .item-detail {
  display: grid;
  gap: 30px
}

.preview-downloads-file-modal .preview-item-body .item-detail-bundle {
  padding: 10px;
  border: 3px solid #009990;
  display: grid;
  gap: 30px;
  border-radius: 5px;
}

.nav-zom a i,
.upload a i,
.item-detail-bundle a i {
  color: var(--theme);
  font-size: 16px;
}

.preview-body .pdf-navigation-2 .next,
.preview-body .pdf-navigation-2 .prev {
  padding: 6px 10px;
  line-height: 1;
  border-radius: 6px;
  background-color: white;
}

.preview-body .pdf-navigation-2 .next i,
.preview-body .pdf-navigation-2 .prev i {
  font-weight: 300;
  font-size: 14px;
  color: var(--theme);
}

.preview-body .pdf-navigation-2 .nice-select {
  padding: 5px 15px;
  line-height: 1;
  border-radius: 6px;
  background-color: white;
}

/* .preview-body .pdf-navigation-2 .nice-select::after {
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  height: 8px;
  margin-top: -4px;
  width: 8px;
} */
.preview-body .pdf-navigation-2 .nice-select-page {
  background: white;
  padding: 1px 12px;
  border-radius: 6px;
  font-weight: 300;
  font-size: 14px;
}

.preview-body .pdf-navigation-2 .nice-select .current {
  color: var(--black);
}

.preview-body .pdf-navigation-2 .page-number p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.preview-downloads-file-modal {
  max-width: 700px;
}

.read-body .item-pdf .pdf {
  height: 470px;
  padding: 0px 60px;
  overflow-y: auto;
}

.sixth-section-cards .swiper {
  height: 560px;
  width: 100%;
  padding-left: 120px;
}

/* .sixth-section-cards .swiper-slide{
  margin: 0 !important;
} */


/* Responsive Style */
.search-input i {
  font-weight: 400;
}

.search-btn {
  padding: 10px 20px;
}

.mobile-left-items {
  display: none;
}

.logo-mobile {
  display: none;
}

.seller-modal-body .languages ul li i {
  display: none;
}

.book-item-detail-mobile {
  display: none;
}

.mobile-menu-dropdown,
.search-form-mobile,
.shopping-cart-mobile,
.slider-search-mobile {
  display: none;
}

@media screen and (max-width: 767px) {

  .mobile-menu-dropdown,
  .search-form-mobile,
  .shopping-cart-mobile,
  .slider-search-mobile {
    display: block;
  }

  .pbt-100 {
    padding: 50px 0;
  }

  .hero-1 {
    padding: 20px;
  }

  .hero-1 .girl-img {
    position: relative;
    right: 0px;
    top: 0px;
  }

  .hero-main-wrapper {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    padding: 20px;
  }

  .hero-1 .hero-main-wrapper .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .hero-1 .hero-main-wrapper .hero-content p {
    text-align: center;
    margin-bottom: 20px;
  }

  .paragraph-img {
    display: none;
  }

  .slider-search-inner {
    flex-direction: column;
    gap: 10px;
  }

  .searche-form {
    flex-direction: column;
    padding: 0;
  }

  .search-input {
    margin-right: 0px;
    border-right: none;
    padding: 12px 10px;
    border-bottom: 1px solid var(--border);
  }

  .caterory-wrapper {
    width: 100%;
    padding: 12px 10px;
  }

  .slider-search-inner {
    padding: 10px;
  }

  .slider-search-inner .search-input input::placeholder,
  .caterory-wrapper .nice-select .current {
    color: var(--paragraph);
    font-size: 16px;
  }

  .slider-search-inner .search-input input::placeholder {
    color: var(--grey-color);
  }

  .search-btn {
    width: 100%;
  }

  .big-title {
    font-size: 24px !important;
    margin-bottom: 20px;
  }

  .second-section .big-title {
    margin-bottom: 20px;
  }

  .second-section-card .card-content h3,
  .second-section-card .card-icon h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .card-icon img {
    height: 36px;
  }

  .second-section.pb-100 {
    padding-bottom: 20px;
  }

  .third-section.pbt-100 {
    padding: 50px 20px !important;
  }

  .third-section .content-section {
    margin-bottom: 20px;
  }

  .third-section .section-3-img {
    height: 370px;
  }

  .third-section .section-3-content {
    padding: 20px 0px;
  }

  .third-section .section-3-content .cards .card-title h3 {
    font-weight: 600 !important;
    font-size: 20px;
  }

  .third-section .section-3-content .cards .card-title i {
    font-size: 20px;
  }

  .third-section .section-3-content .cards {
    margin: 0px 0px 10px 0px;
  }

  .third-section .section-3-content .cards p {
    font-weight: 400;
  }

  .third-section .section-3-btn {
    padding: 0px;
    text-align: center;
  }

  .third-section .section-3-btn .sell-notes {
    width: 100%;
    display: block;
  }

  .slider-search {
    padding: 0px;
  }

  .third-section .content-section .sub-title {
    font-size: 16px;
  }

  .third-section .content-section .big-title {
    margin-bottom: 0px;
  }

  .third-section .content-section p {
    font-weight: 400;
    font-size: 16px;
  }

  .fourth-section .fourth-section-content .fourth-section-card {
    margin: 0px 0px 10px 0px;
  }

  .body-bg {
    background-attachment: unset;
    background-position: top;
  }

  .fourth-section .fourth-section-btn {
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .fourth-section .fourth-section-btn .btn-white,
  .fourth-section .fourth-section-btn .sell-notes {
    width: 50%;
  }

  .fourth-section-content .col-md-12 {
    width: 100%;
  }

  .fifth-section .big-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .fifth-section .fifth-section-content {
    padding: 0px;
  }

  .fifth-section-btn .blue-btn {
    width: 100%;
    display: block;
  }

  .sixth-section .sixth-section-content {
    display: flex;
    flex-direction: column;
  }

  .sixth-section .sixth-section-image {
    height: 300px;
  }

  .sixth-section-cards {
    margin-top: 20px;
  }

  .sixth-section-cards .swiper {
    height: 640px;
    width: 100%;
    padding-left: 30px;
  }

  .sixth-section .sixth-section-card {
    /* margin-bottom: 10px; */
  }

  .sixth-section .swiper-slide-active .sixth-section-card-2::after {
    height: 170px;
    width: 30px;
  }

  .sixth-section .sixth-section-card-2::after {
    height: 170px;
    width: 30px;
  }

  .sixth-section .sixth-section-cards .card-img {
    margin-right: 10px;
  }

  .sixth-section .swiper-slide-active .sixth-section-card-2::before {
    top: 45px;
    left: -33px;
  }

  .sixth-section .sixth-section-card-2::before {
    top: 45px;
    left: -33px;
  }

  .sixth-section .sixth-section-card .card-para {
    flex-wrap: wrap;
  }

  .faqs-section .faqs-content .offset-5 {
    margin-left: 0;
  }

  .faqs-section.pbt-100 {
    padding: 0px 20px 20px !important;
  }

  .faqs-section .accordion {
    padding: 20px;
  }

  .faqs-section .faqs-content {
    background-image: url(../images/faqs.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px;
  }

  .faqs-section .big-title {
    font-size: 36px !important;
    text-align: center;
    line-height: 1;
    margin-bottom: 15px;
  }

  .faqs-section .faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 400;
    padding: 10px 0px 0;
    font-family: "Alegreya Sans", sans-serif;
  }

  .faqs-section .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 0px !important;
  }

  .faqs-section .accordion-item {
    margin-bottom: 15px !important;
  }

  .faqs-section .faq-btn {
    padding: 20px 0 0;
    text-align: center;
  }

  .faqs-section .faq-btn .blue-btn {
    display: block;
  }

  .footer-bottom .footer-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .footer-section .footer-widget-wrapper .single-footer-widget .widget-head h3 {
    font-size: 18px;
  }

  .footer-widget-wrapper .single-footer-widget .widget-head {
    margin-bottom: 10px;
  }

  .sixth-section-btn {
    padding: 20px 20px 0;
    text-align: center;
  }

  .sixth-section-btn .btn-yellow {
    display: block;
  }

  .temoignages-section.pbt-100 {
    padding: 50px 10px 0px;
  }

  .temoignages-section .temoignage-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .temoignages-section .temoignage-card {
    margin-bottom: 100px;

  }

  .temoignages-section p {
    font-size: 16px;
    font-weight: 400;
  }

  .temoignages-section .temoignage-card img {
    width: 50px;
  }

  .header-right .sign-in-btn,
  .header-right .sell-notes {
    display: none;
  }

  .offcanvas__content .offcanvas-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .header-1 .header-1-2 {
    display: none;
  }

  .header-right {
    align-items: center;
    width: 100%;
    align-content: center;
    justify-content: space-between !important;
  }

  .header-1-1 .header-main .logo {
    display: none;
  }

  .header-1-1 .mobile-right-items {
    display: flex;
    gap: 10px;
  }

  .header-1-1 .header-right .flag-wrapper {
    display: none;
  }

  .header-right .menu-cart-descktop {
    display: none !important;
  }

  .logo-mobile {
    height: 40px;
    display: block;
  }

  .logo-mobile img {
    height: 100%;
  }

  .mobile-left-items .cart-icon {
    padding: 12px 12px;
  }

  .mobile-left-items .cart-icon i {
    margin-right: 0;
  }

  .profil-seller-mobile {
    width: 40px;
    height: 40px;
    display: block;
  }

  .profil-seller-mobile img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .mobile-left-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .header__hamburger {
    padding: 12px;
    background-color: var(--theme);
    border-radius: 6px;
  }

  .header__hamburger .sidebar__toggle i {
    color: var(--white);
  }

  .header-1 .header-main .header-right .search-icon.style-2 {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
  }

  .header-1 .header-main .header-right .search-icon.style-2 i {
    font-size: 18px;
    color: var(--grey-color);
  }

  .footer-section .footer-bottom {
    padding: 10px 10px;
  }

  .footer-section .footer-widget-wrapper {
    padding: 10px 10px;
    margin-bottom: 20px;
  }

  .mobile-menu-dropdown {
    background: #fff;
    /* padding: 20px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 999;
    display: none;
    animation: slideDown 0.3s ease forwards;
    width: 100%;

  }

  .mobile-menu-dropdown ul {
    list-style: none;
    padding-left: 0;
  }

  .mobile-menu-dropdown .main-menu li {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-dropdown .submenu li {
    border: none;
    padding: 5px 0px;
  }

  .mobile-menu-dropdown li {
    position: relative;
  }

  .mobile-menu-dropdown li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-dropdown .submenu {
    display: none;
    padding-left: 15px;
    margin-top: 8px;
  }

  .mobile-menu-dropdown .submenu.show {
    display: block;
  }

  .mobile-menu-dropdown .toggle-submenu {
    transition: transform 0.3s ease;
    font-size: 22px;
    font-weight: 300;
  }

  .mobile-menu-dropdown .toggle-submenu.rotated {
    transform: rotate(180deg);
  }

  .mobile-menu-dropdown .mobile-menu-btn {
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu-dropdown .flag-wrapper {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-btn .sign-in-btn,
  .mobile-menu-btn .sell-notes {
    line-height: 1;
    padding: 15px 20px;
    text-align: center;
  }

  .div-chat {
    right: 15px;
    bottom: 80px;
    width: 42px;
    height: 42px;
  }

  .div-chat a {
    font-size: 20px;
    line-height: 42px;
  }

  .back-to-top {
    right: 15px;
    width: 42px;
    height: 42px;
  }

  .search-form-mobile {
    background: #fff;
    /* padding: 20px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 999;
    display: none;
    animation: slideDown 0.3s ease forwards;
    width: 100%;

  }

  .search-form-mobile {
    padding: 20px;
  }

  .search-form-mobile input {
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    color: rgb(118, 122, 125);
    background: transparent;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 6px;
    position: relative;
  }

  .search-form-mobile button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 100%;
    color: rgba(85, 88, 91, 0.5);
  }

  .search-form-mobile button i {
    font-weight: 400;
  }

  .shoppi-cart-mobile {}

  .shopping-cart-mobile {
    background: #fff;
    /* padding: 20px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 999;
    display: none;
    animation: slideDown 0.3s ease forwards;
    width: 100%;
  }

  .shopping-cart-mobile .header-item {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }

  .shopping-cart-mobile .header-item ul {
    display: flex;
    flex-direction: row;
    gap: 5px;
  }

  .shopping-cart-mobile .header-item ul li {
    font-size: 14px;
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 400;
    color: var(--paragraph);
  }

  .shopping-cart-mobile .header-item ul .price,
  .shopping-cart-item .item-info ul .price {
    color: #009990;
  }

  .shopping-cart-mobile h3 {
    font-size: 18px;
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 600;
  }

  .shopping-cart-mobile .shopping-cart-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 10px;
  }

  .shopping-cart-mobile .shopping-cart-item .item-img {
    border-radius: 6px;
    background-color: #F1FFFC;
    border: 1px solid #CAEFEB;
    height: 60px;
    width: 45px;
    padding: 5px;
  }

  .shopping-cart-mobile .shopping-cart-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .shopping-cart-item .item-info {
    flex: 1;
  }

  .shopping-cart-item .item-info ul {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 400;
    color: var(--paragraph);
    gap: 5px;

  }

  .shopping-cart-mobile .shopping-cart-item .item-link {
    font-size: 16px;
    line-height: 17px;
    display: block;
  }

  .shopping-cart-mobile .shopping-cart-item .trash-btn i {
    color: var(--grey-color);
    font-weight: 400;
    font-size: 18px;
  }

  .shopping-cart-mobile .shopping-cart-discount {
    padding: 20px;
    font-family: "Alegreya Sans", sans-serif;
    border-bottom: 1px solid var(--border);

  }

  .shopping-cart-mobile .shopping-cart-discount div {
    padding: 20px;
    text-align: center;
    background-color: #F1FFFC;
    border-radius: 6px;
  }

  .shopping-cart-mobile .shopping-cart-discount span {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
  }

  .shopping-cart-mobile .shopping-cart-discount p {
    color: var(--black);
    font-size: 14px;

  }

  .shopping-cart-btn {
    padding: 20px;
  }

  .shopping-cart-btn a {
    padding: 10px 20px 10px 20px;
    display: block;
    width: 100%;
    text-align: center;
    background: #009990;
    color: var(--white);
    border-radius: 6px;
  }

  .shopping-cart-btn a i {
    margin-left: 5px;
    font-weight: 400;
  }

  .authentification-section.ptb-120 {
    padding: 80px 20px;
  }

  .authentification-section .cart-img {
    height: 80px;
    margin-bottom: 40px;
  }

  .authentification-section .user-icon-box p {
    font-size: 12px;
    line-height: 16px;
  }

  .back-link a {
    font-size: 16px;
    display: flex;
    align-items: center;
  }

  .back-link a i {
    font-weight: 300;
    font-size: 22px;
  }

  .back-link {
    margin-bottom: 30px;
  }

  .authentification-section .user-icon-box p {
    margin-top: 20px;
  }

  .seller-modal-body .languages .search-widget {
    padding: 0px 20px;
  }

  .seller-modal-body .languages ul li {
    width: 100%;
    padding: 20px;
  }

  .seller-modal-body .languages ul li i {
    display: block;
    display: block;
    font-weight: 300;
    font-size: 22px;
  }

  .seller-modal-body {
    max-height: 856px;
    overflow-y: scroll;
  }

  .roles .role {
    padding: 20px;
  }

  .seller-form {
    padding: 0px 20px 20px
  }

  .seller-form .subject-checkboxes label {
    width: calc(50% - 3px);
  }

  .form-btns p {
    width: 100%;
  }

  .form-btns {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    position: sticky;
    bottom: 0;
    padding: 15px 0px;
    z-index: 10;
    background: white;
  }

  .seller-form input,
  .seller-form textarea,
  .seller-form .nice-select,
  .document-form .nice-select {
    padding: 10px 14px 10px 14px;
  }

  .seller-modal-body .seller-modal-title {
    padding: 20px;
  }

  .form-btns div {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .form-btns .back,
  .form-btns .finish {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .seller-step-3,
  .seller-step-4,
  .seller-step-5,
  .seller-step-6,
  .seller-step-7 {
    height: 91vh;
    position: relative;
  }

  .seller-step-3 .seller-form .subject-checkboxes {
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
  }

  /* .seller-form .form-row, .document-form .form-row{
  gap: 10px;
} */
  .seller-step-4 .seller-form {
    padding: 0px 20px 0px;
  }

  .seller-step-4 .seller-form form {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .seller-form label,
  .document-form label {
    font-weight: 400;
  }

  .seller-step-4 .seller-form .form-btns {
    padding: 0px 0px 10px 0 !important;
  }

  /* .seller-form .subject-checkboxes label{
  width: auto;
} */
  .seller-step-6 .seller-form .subject-checkboxes label {
    padding: 3px;
  }

  .seller-step-6 .seller-form .subject-checkboxes label {
    width: 50%;
  }

  .seller-step-6 .seller-form .subject-checkboxes label.last-one {
    width: 100% !important;
  }

  .seller-step-7 .seller-form .subject-checkboxes label {
    font-size: 13px;
    padding: 2px;
  }

  /* part2 */
  .banner-textbooks .page-heading .breadcrumb-items li,
  .banner-page .page-heading .breadcrumb-items li {
    font-size: 14px;
  }

  .banner-page .banner-page-content h1 {
    font-size: 24px;
    line-height: 1;
  }

  .page-cms {
    top: 0;
    padding: 0px 10px 30px;
  }

  .banner-page.pbt-90,
  .banner-page.pbt-100 {
    padding: 20px;
  }

  .banner-page .banner-page-content .banner-content {
    gap: 10px;
  }

  .banner .page-heading .breadcrumb-items {
    margin-bottom: 10px;
  }

  .banner-page-interne.pt-90 {
    padding: 30px 10px;
  }

  .banner-page-interne .banner-content {
    gap: 15px;
  }

  .banner-page-interne .banner-btn {
    gap: 10px;
    flex-direction: column;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-page-interne .subtitle-title {
    line-height: 22px;
  }

  .banner-btn .sell-notes,
  .banner-btn .btn-transparent {
    text-align: center;
  }

  .about-us .img-about {
    height: 280px;
  }

  .about-us .fourth-section .content-section .big-title {
    font-size: 24px !important;
  }

  .about-us .fourth-section .fourth-section-content .fourth-section-card {
    margin: 0px 0px 20px 0px;
  }

  .culture-section .culture-section-content .culture-row {
    flex-direction: column;
  }

  .culture-section .culture-section-content .culture-row .culture-col-img {
    height: 280px;
    margin-right: 0;
  }

  .culture-section .culture-section-content .culture-row-reverse .culture-col-img {
    height: 280px;
    margin-left: 0px;
  }

  .culture-section .culture-section-content .culture-row-reverse {
    flex-direction: column;
  }

  .culture-section .culture-section-content .culture-col-content h3 {
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 24px;
  }

  .banner-btn .blue-btn {
    text-align: center;
  }

  .banner-how-work {
    flex-direction: column !important;
  }

  .how-it-work-2.pbt-80 {
    padding: 50px 20px;
  }

  .how-it-work.pbt-80 {
    padding: 0px 20px 20px 20px;
  }

  .card-row {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }

  .card-row-img {
    height: 260px;
  }

  .how-it-work-3 .title-36 {
    font-size: 24px;
    text-align: center;
  }

  .how-it-work-3.pbt-100 {
    padding: 0;
  }

  .card-row-ul {
    gap: 15px;
  }

  .how-it-work-2 .work-card {
    margin-bottom: 20px;
  }

  .work-card h4 {
    font-size: 20px;
  }

  .title-36 {
    font-size: 24px;
    font-weight: 600;
  }

  .work-card p {
    height: auto;
  }

  .temoignages-section {
    overflow: hidden;
  }

  .banner-tips .title-36 {
    font-size: 36px;
    text-align: left;
    margin-bottom: 20px;
  }

  .banner-tips .subtitle-title {
    text-align: left;
  }

  .tips-section.pbt-50 {
    padding: 0px 20px 50px 20px;
  }

  .tips-section .card-row {
    flex-direction: column-reverse;
  }

  .tips-section .card-row-reverce {
    flex-direction: column-reverse !important;
  }

  .tips-section .card-row .title-24 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .banner-contact .title-36 {
    font-size: 36px;
  }

  .pb-100 {
    padding-bottom: 50px;
  }

  .contact-section .contact-form {
    padding: 0px 10px;
  }

  .contact-section {
    margin-top: 0 !important;
  }

  .work-card-1 {
    margin-bottom: 10px;
  }

  .card-row-reverce .card-row-content {
    margin-left: 0px;
  }

  .seller-profil {
    flex-direction: column;
    gap: 30px;
  }

  .seller-profil .profil {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .seller-profil .profil .profil-info {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }

  .profil .ul-info {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .seller-profil .profil-numbers {
    width: 100%;
    justify-content: center;
  }

  .seller-profil-page .shop-default-wrapper .search-input {
    width: 100%;
  }

  .book-item-list .item-button {
    flex-direction: column;
    gap: 10px;
  }

  .book-item-list .item-author-detail ul .star {
    display: flex;
    flex-direction: row;
  }

  .book-item-list .item-author-detail ul .autor img {
    height: 22px;
  }

  .book-item-list .book-item-img {
    margin-right: 0px;
  }

  .book-item-list .book-item-img img {
    width: auto;
  }

  .book-item-list .item-title a:not(h3 a) span {
    display: none;

  }

  .book-item-list .item-title a:not(h3 a) {
    padding: 4px 8px 4px 8px;
  }

  .book-item-list .item-title a:not(h3 a) i {
    margin-right: 0;
  }

  .book-item-list .item-author-detail ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;

  }

  .book-item-list .item-author-detail ul li {
    padding: 5px 8px;
  }

  .book-item-list .item-shop-detail ul {
    display: flex;
    gap: 10px;
    /* espace entre les <li> */
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
  }

  .book-item-list .item-shop-detail ul .item-price {
    flex: 0 0 calc(60% - 5px);
  }

  .book-item-list .item-shop-detail ul .item-shop-btn {
    flex: 0 0 calc(40% - 5px);
  }

  .book-item-list .item-shop-detail ul li {
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
  }

  .book-item-list .item-author-detail .star i {
    font-size: 12px;
  }

  .seller-profil-page .shop-default-wrapper {
    padding: 10px;
  }

  .seller-profil-page .page-nav-wrap {
    padding: 10px;
    align-items: center;
  }

  .seller-profil-page .page-nav-wrap ul li .page-numbers {
    min-width: auto;
    width: auto;
    height: auto;
  }

  .page-nav-wrap ul {
    flex-wrap: nowrap;
  }

  .seller-profil-page .page-nav-wrap ul li .next,
  .seller-profil-page .page-nav-wrap ul li .previous {
    padding: 3px 8px !important;
  }

  .seller-profil-page .page-nav-wrap .item-per-page .nice-select {
    width: 55px;
    padding: 3px 8px !important;
  }

  .review-section .review-comment .review-img img {
    width: 40px;
    height: 40px;
  }

  .review-section {
    padding: 20px;
  }

  /* Part 3*/
  .preview-sec1 .item-preview .added-to-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-sec1 .item-preview .item {
    flex-direction: column;
    gap: 10px;
  }

  .preview-sec1 {
    flex-direction: column;
    gap: 20px;
  }

  .preview-sec1 .item-preview {
    margin-right: 0px;
  }

  .preview-sec1 .item-preview .item span {
    padding: 17px 14px 17px 14px;
    width: 100%;
    text-align: center;
  }

  .preview-sec1 .shopping-cart {
    gap: 20px;
  }

  .preview-modal-body .book-item-list .item-title,
  .wish-list-page .book-item-list .item-title,
  .textbooks-section .book-item-list .item-title,
  .shop-section .book-item-list .item-title {
    display: none;
  }

  .preview-modal-body .book-item-list .item-date ul,
  .wish-list-page .book-item-list .item-date ul,
  .textbooks-section .book-item-list .item-date ul,
  .shop-section .book-item-list .item-date ul {
    display: none;
  }

  .preview-modal-body .book-item-list .book-item-img,
  .wish-list-page .book-item-list .book-item-img,
  .textbooks-section .book-item-list .book-item-img,
  .shop-section .book-item-list .book-item-img {
    display: none;
  }

  .book-item-detail-mobile {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .book-item-detail-mobile .book-item-img-mobile {
    width: 64px;
    height: fit-content;
    padding: 3px;
    border-radius: 6px;
    background-color: #E0E2F0;
    /* flex: 1; */
    position: relative
  }


  .book-item-detail-mobile .book-item-img-mobile.bundle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f1fffc;
    left: 8px;
    top: 8px;
    z-index: -1;
    border: 1px solid #00999017;
  }

  .book-item-detail-mobile .book-item-img-mobile.bundle::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f4f5fa;
    left: 3px;
    top: 4px;
    z-index: -1;
    border: 1px solid #00999017;
  }

  .book-item-detail-mobile .book-item-img-mobile img {
    width: 54px;
    height: 54px;
  }

  .item-title-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .item-title-mobile .preview-btn {
    padding: 8px;
    font-size: 14px;
    color: var(--theme);
    border-radius: 6px;
    border: 1px solid #7E22CE1A;
    background-color: #F9FAFB;
    line-height: 1;
  }

  .item-title-mobile .preview-btn span {
    display: none;

  }

  .book-item-detail-mobile .item-title-mobile h3 {
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
  }

  .book-item-detail-mobile .item-date-mobile ul {
    display: flex;
    flex-direction: row;
    gap: 10px;

  }

  .book-item-detail-mobile .item-date-mobile ul li {
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    list-style: none;
    color: var(--black);
  }

  .book-item-detail-mobile .item-date-mobile ul li:nth-child(2),
  .book-item-detail-mobile .item-date-mobile ul li:nth-child(3) {
    list-style-type: disc;
    list-style-position: inside;
    color: var(--paragraph);
  }

  .book-item-list .item-author-detail ul {
    gap: 3px;
  }

  .payement {
    flex-direction: column;
  }

  .shopping-card .item-pay {
    flex-direction: column;
  }

  .shopping-card .item-pay .item-pay-btn {
    width: 100%;
  }

  .shopping-card .item-pay .item-pay-btn a {
    padding: 12px 10px 12px 10px;
  }

  .shopping-card .item-pay .item-pay-btn .price {
    width: 90%;
    text-align: center;
  }

  .shopping-card .item-pay .item-pay-btn .trash {
    width: 10%;
    text-align: center;
  }

  .payment-steps {
    padding: 20px;
  }

  .payment-steps .steps-col {
    width: 100%;
  }

  .answerins-credit .answerins-credits .credit {
    padding: 5px 5px 10px;
    gap: 10px;
  }

  .answerins-credit .answerins-credits .credit .credit-title {
    top: 0;
    width: 100%;
  }

  .answerins-credit .answerins-credits .credit .deposit {
    width: 90%;
    padding: 15px;
  }

  .answerins-credit .answerins-custom-credits {
    padding: 20px;
  }

  .answerins-credit .payments-methods {
    flex-direction: column;
    gap: 10px;
  }

  .answerins-credit .payments-methods .blue-btn {
    width: 100%;
    text-align: center;
  }

  .payment-methods-imgs {
    flex-direction: column;
    gap: 10px;
  }

  .thank-you-step .steps-col .step-info {
    display: none;
  }

  .thank-paiment {
    padding: 20px;
  }

  .thank-paiment .item-pay {
    align-items: center;
  }

  .read-body .item-pdf .pdf {
    height: 576px;
    padding: 0px 15px;
  }

  .preview-body .item-pdf canvas {
    width: 100%;
    height: 70%;
  }

  .preview-body .item-pdf {
    padding: 10px;
  }

  .preview-body .pdf-navigation-2 {
    gap: 8px;
  }

  .read-body {
    padding: 10px;
  }

  .read-body .item-detail {
    display: block;
  }

  .preview-body .item-pdf {
    gap: 10px;
  }

  .wishlist-wrapper {
    padding: 0;
    border: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .banner-wishlist .page-heading {
    gap: 10px;
  }

  .wishlist-page-content .banner-content {
    align-items: flex-start;
  }

  .wishlist-wrapper .add-to-cart {
    width: 100%;
    justify-content: center;
  }

  .banner-wishlist.pt-90 {
    padding: 30px 10px 0;
  }

  .wish-list-page .search-input {
    flex: 1;
  }

  .book-item-list .item-text {
    border: none;
  }

  .banner-textbooks .banner-img {
    padding: 0;
    width: 90px;
    height: 120px;
  }

  .banner-textbooks-content.pbt-30 {
    padding: 10px 20px;
  }

  .banner-textbooks .textbooks-detail ul {
    flex-direction: column;
    justify-content: space-between;
  }

  .banner-textbooks .textbooks-detail ul li {
    padding: 10px 0px 0 0px !important;
    border-right: none;
  }

  .textbooks-detail ul li:not(:last-child) {
    border-bottom: 1px solid #E5E9EF1A;
  }

  .banner-textbooks .slider-search-inner {
    flex-direction: row;
    padding: 5px;
  }

  .banner-textbooks .slider-search {
    padding: 5px !important;
  }

  .book-item-list .item-author-detail ul .autor h5 {
    font-size: 13px;
  }

  .book-item-content-mobile {
    width: 100%;
  }

  .shop-default-wrapper .woocommerce-notices-wrapper p {
    width: 100%;
  }

  .textbooks-section .shop-default-wrapper .woocommerce-notices-wrapper .form-clt {
    width: 100%;
  }

  .textbooks-section .shop-default-wrapper .woocommerce-notices-wrapper {
    padding: 20px 0px;
  }

  .slider-search-mobile {
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

  .slider-search-inner-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .slider-search-inner-mobile .search-input {
    width: 60%;
    border: 1px solid var(--theme);
    border-radius: 6px;
  }

  .slider-search-inner-mobile .search-input input::placeholder {
    color: var(--black);
  }

  .slider-search-inner-mobile .filter-btn {
    width: 40%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .slider-search-inner-mobile .filter-btn i {
    margin-right: 5px;
  }

  .slider-search-inner-mobile .search-input i {
    color: var(--theme);
    margin-right: 5px;
  }

  .shop-section.pbt-50 {
    padding: 0px 0px 50px 0;
  }

  .book-item-box .item-detail-header ul {
    justify-content: left;
    gap: 10px;
  }

  .book-item-box .item-shop-footer ul {
    justify-content: space-between;
    gap: 10px;
  }

  .book-item-box .item-shop-footer ul .item-price {
    width: 85%;
    padding: 10px 14px;
    text-align: center;
  }

  .book-item-box .item-shop-footer .item-shop-btn {
    padding: 10px 14px !important;
    width: 15%;
    text-align: center;
  }

  .book-item-box .item-detail-body .item-extrait {
    height: auto;
  }

  .shop-section {
    background: none;
  }

  .note {
    padding: 10px 20px 20px 10px;
  }

  .note .note-pdf .pdf {
    max-height: 380px;
  }

  .note .note-title a {
    font-size: 14px;
  }

  .bundle-details .bundle-details-2 {
    flex-direction: column;
  }

  .bundle-header .bundle-details-1 {
    gap: 5px;
  }

  .note {
    gap: 10px;
  }

  .document-information .info-ul li p {
    text-align: end;
  }

  .connected-book .connected-book-info-1 .info-ul li p {
    text-align: right;
  }

  .more-summaries .btn-more,
  .document-information .btn-more,
  .description-section .btn-more {
    display: block;
    text-align: center;
  }

  .description-section .descitpion-menu li a {
    font-size: 13px;
  }

  .description-section .descitpion-menu li {
    padding: 10px;
  }

  .description-section .descitpion-menu {
    gap: 0;
    margin-bottom: 0;
  }

  .description-section .descitpion-menu .author-info {
    gap: 5px;
  }

  .bundle .bundle-title h3 {
    font-size: 16px;
  }

  .bundle-items .book-item-list .book-item-img {
    width: 64px !important;
    height: 64px !important;
    margin-right: 0;
  }

  .bundle-items-list .book-item-list .item-title .item-date ul {
    gap: 6px;

  }

  .bundle-items-list .book-item-list .item-title .item-date ul li {
    display: flex;
  }

  .bundle-items .book-item-list .item-text {
    flex-direction: column;
    align-items: flex-start;
  }

  .bundle .bundle-items-list {
    padding: 20px 10px;
  }

  .bundle-items .book-item-list .item-title h3 {
    font-weight: 400;
  }

  .review-section .review-comment {
    gap: 10px;
    margin: 20px 0px 0px;
  }

  .review-section .review-content .review-reply {
    padding: 10px;
    gap: 10px;
  }

  .review-section .review-content .reply-date {
    font-size: 14px;
    gap: 6px;
  }

  .review-section {
    padding: 10px;
  }

  .review-section .review-comment .review-img::after {
    bottom: 50px;
  }

  .review-section .question-section-titile {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .question-section-question .text-area img {
    display: none;
  }

  .review-section .question-section-titile .btn-white {
    width: 100%;
  }

  .question-section-question .btns .btn-white,
  .question-section-question .btns .blue-btn {
    display: block;
    text-align: center;
    width: 50%;
  }

  .question-section-question .btns {
    display: flex;
    gap: 10px;
  }

  .review-section .review-content .review-date {
    font-size: 13px;
    gap: 5px;
  }

  .profil .profil-img span {
    right: 32px;
    width: 32px;
    height: 32px;
    top: -14px;
  }

  .profil .profil-img .seller-img {
    height: 100%;
    width: auto;
    object-fit: cover;
  }

  .profil .profil-img {
    width: 60px;
    height: 60px;
    position: relative;
  }

  .bundle-page .profil .profil-info .icons {
    flex-direction: column;
    gap: 0px;
  }

  .bundle-page .seller-section {
    padding: 20px 20px 10px !important;
  }

  .seller-btns .follow-btn {
    font-size: 14px;
  }

  .suggestions .bundle-items .book-item-list .item-text {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }

  .sidebar-bundle {
    display: none;
  }

  .faqs-section-detail-note .faqs-content {
    background: none;
  }

  .bundle-page .page-header .breadcrumb-items li {
    font-size: 12px;
  }

  .note-work.pbt-50 {
    padding: 0px 0px 20px 0px;
  }

  .bundle-page.pbt-50 {
    padding: 50px 0px 0px 0px;
  }

  .faqs-section-detail-note.pbt-50 {
    padding: 0px 0px 50px 0px;
  }

  .faqs-section-detail-note .big-title {
    text-align: center;
    margin-bottom: 25px;
  }

  .wish-list-page .book-item-list .item-title .trash-btn,
  .wish-list-page .book-item-list .item-title-mobile .trash-btn {
    font-size: 16px;
  }

  .shop-default-wrapper .main-sidebar {
    display: none;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .product-academic-year {
    width: 100%;
    padding: 10px 10px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--border);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .product-academic-year .nice-select {
    width: 100%;
    color: var(--grey-color);
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 400;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .star {
    color: #FFA41B;
    margin-right: 5px;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .star .down {
    color: #ffa41b73 !important;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single {
    position: relative;
    padding-left: 18px;
    cursor: pointer;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single:not(:last-child) {
    margin-bottom: 10px;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area .checkmark {
    position: absolute;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid rgb(229, 229, 229);
    top: 5px;
    border-radius: 3px;
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area .checkmark::after {
    content: "";
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark {
    background-color: var(--theme);
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark::after {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    top: -7px;
    left: 2px;
    color: var(--theme);
    font-size: 11px;

  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .checkbox-area input:checked~.checkmark:after {
    display: block;
    color: var(--white);
  }

  .filter-modal-body .main-sidebar .single-sidebar-widget .categories-list .checkbox-single .text-color {
    font-weight: 600;
    color: var(--header);
  }

  .filter-modal .modal-dialog {
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .filter-modal .modal-content {
    border: none;
    border-radius: 0;
  }

  .filter-modal-body .slider-search {
    display: block;
  }

  .filter-modal-body .slider-search .searche-form {
    background-color: transparent;
    gap: 10px;
  }

  .filter-modal-body .slider-search .search-input,
  .filter-modal-body .slider-search .school-wrapper,
  .filter-modal-body .slider-search .caterory-wrapper {
    background-color: var(--white);
  }

  .filter-modal-body .slider-search .school-wrapper {
    padding: 12px 10px;
    margin-right: 0;
  }

  .filter-modal-body .slider-search .caterory-wrapper .nice-select .current {
    color: var(--grey-color);
  }

  .filter-modal-body .main-sidebar {
    margin-top: 20px;
  }

  .filter-modal .modal-header h3 {
    font-weight: 700;
    color: var(--black);
    font-size: 24px;
    font-family: "Faustina", serif;
  }

  .filter-modal .modal-header button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--grey-color);
    color: var(--grey-color);
    margin: 0;
  }

  .document-modal-body .item-upload {
    padding: 15px;
    gap: 8px;

  }

  .document-modal-body .item-upload .item-img img {
    height: 54px;
    width: 54px;
  }

  .document-modal-body .item-upload h2 {
    font-size: 16px;
  }

  .document-form .form-btns {
    justify-content: space-between;
  }

  .document-form .form-btns a {
    width: 50%;
  }

  .preview-body .item-pdf .pdf {
    height: 358px;
    padding: 0px 10px;
  }

  .preview-body .item-pdf canvas {
    height: 100%;
  }

  .preview-body .item-pdf {
    gap: 20px;
  }

  .preview-body .item-detail {
    flex-direction: column;
  }

  .preview-body .item-detail .item-info {
    padding: 20px 0px 0 0px;
  }

  .preview-body .item-detail .preview-action {
    padding: 20px 0px 0px 0px;
  }

  .preview-body .item-detail .more-info,
  .preview-body .item-detail .btn-cart {
    padding: 10px 5px 10px 5px;
  }

  .preview-body {
    padding: 30px 20px;
  }

  .document-modal .modal-dialog {
    margin: 20px;
  }

  .document-modal .modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }

  .document-modal .modal-header .btn-close {
    background-color: white;
    bottom: 36px;
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid var(--grey-color);
  }

  .book-item-list .item-shop-detail .item-shop-detail-btn .item-price,
  .book-item-box .item-shop-footer .item-shop-detail-btn .item-price {
    flex-grow: 1 !important;
    justify-content:center
  }


}




.written-for ul {
  margin-top: 20px;
  margin-bottom: 20px;

}

.modal-backdrop {
  background-color: #0a103791 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;

}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Select Style*/

.shop-default-wrapper .main-sidebar .single-sidebar-widget .product-status .nice-select.open .list {
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  background-color: var(--white);
  width: 100%;
  padding: 12px 20px;
  border-radius: 0;
  border: 1px solid var(--border);
}

.shop-default-wrapper .main-sidebar .single-sidebar-widget .nice-select .option {
  font-weight: 400 !important;
  padding: 3px 20px !important;
  border: none !important;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select::after {
  top: 22px !important;
}

.shop-default-wrapper .woocommerce-notices-wrapper .form-clt .nice-select .list {
  width: 100%;
  right: 0 !important;
}

.nice-select.open .list {
  width: auto !important;
  left: 0 !important;
  right: auto !important;
  background: var(--white);
  z-index: 99
}

.slider-search {
  position: relative;
  z-index: 999;
}

/* Style for cart btn */
.book-item-list .item-shop-detail .item-shop-detail-btn {
  display: flex;
  gap: 10px;
  /* espace entre les <li> */
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.book-item-box .item-shop-footer .item-shop-detail-btn {
  display: flex;
  gap: 10px;
  /* espace entre les <li> */
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  justify-content: space-between;
}

.book-item-list .item-shop-detail .item-shop-detail-btn .item-price,
.book-item-box .item-shop-footer .item-shop-detail-btn .item-price {
  flex: 0 0 calc(60% - 5px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  border-radius: 6px;
  color: #009990;
  padding: 8px 15px !important;
}

.book-item-list .item-shop-detail .item-shop-detail-btn .item-price span,
.book-item-box .item-shop-footer .item-shop-detail-btn .item-price span {
  color: var(--black) !important;
  margin-right: 10px;
  text-decoration: line-through;
}

.book-item-list .item-shop-detail .item-shop-detail-btn .item-shop-btn,
.book-item-box .item-shop-footer .item-shop-detail-btn .item-shop-btn {
  padding: 8px 15px !important;
  border-radius: 6px;
}

.book-item-list .item-shop-detail .item-shop-detail-btn .item-shop-btn i,
.book-item-box .item-shop-footer .item-shop-detail-btn .item-shop-btn i {
  color: #009990;
}

/**/

/*Style a remplace*/
.header-1-1 .flag-wrapper .flag-wrap .nice-select::after {
  border-bottom: 2px solid var(--grey-color);
  border-right: 2px solid var(--grey-color);
  height: 10px;
  margin-top: -6px;
  width: 10px;
  right: -5px;
}

/* Pagination Component Styles */
.pagination-outer-card {
  border: 0;
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0;
}

.pagination-inner-card {
  border: 1px solid #f0f0f0;
  padding: 0;
}

.pagination-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pagination-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.pagination-info {
  font-size: 15px;
  font-weight: 500;
  color: #232a59;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pagination-nav {
  font-size: 15px;
  font-weight: 500;
  color: #232a59;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 0;
}

.pagination-arrow {
  margin-top: 0.25rem;
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e7e7e7 !important;
  border-radius: 7px;
  background-color: #2B3992;
}

.pagination-arrow.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: none !important;
}

.pagination-arrow-prev {
  margin-right: 1.25rem;
}

.pagination-arrow-next {
  margin-left: 1.25rem;
}

.pagination-arrow-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-arrow-img {
  width: 28px;
  padding: 0px;
}

.pagination-arrow-img-prev {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(31deg) brightness(108%) contrast(101%);
}

.pagination-arrow-img-next {
  transform: scaleX(-1);
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(31deg) brightness(108%) contrast(101%);
}

.disabled .pagination-arrow-img-prev {
  filter: invert(60%) sepia(2%) saturate(20%) hue-rotate(340deg) brightness(93%) contrast(83%);
}

.disabled .pagination-arrow-img-next {
  filter: invert(60%) sepia(2%) saturate(20%) hue-rotate(340deg) brightness(93%) contrast(83%);
}

.items-per-page-text {
  font-size: 15px !important;
  font-weight: 500;
  color: #232a59 !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-right: 6px;
}

.items-per-page-select {
  width: 59px;
  border: 1px solid #d4d4d4;
}

.item-per-page-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* gap-2 is typically 0.5rem in Bootstrap */
  margin-top: 1rem;
  /* mt-3 is typically 1rem in Bootstrap */
}

.uploads-pagination {
  list-style: none;
  display: flex;
  padding: 0;
}

.uploads-pagination-nav {
  gap: 4px;
}

.active>.page-link,
.page-link.active {
  background: #2B3992;
  border: 1px solid #2B3992;
}

.page-link {
  color: #2B3992;
}

/* Fin de pagination styles */

/* Global Loading */
.loading-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.loading-cover:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url('../img/background.png') !important;
  background-size: cover !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
}

.hidden {
  display: none;
}

/* cart header */
.cart-icon-content {
  position: relative;
}

.cart-icon-content .cart-icon {
  cursor: pointer;
}

.cart-icon-content .cart-dropdown {
  position: absolute;
  right: 0;
  top: 50px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 450px;
  z-index: 1000;
  /* display: none; */
}

.cart-icon-content .cart-dropdown .cart-header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(229, 233, 239, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-icon-content .cart-dropdown .cart-header h6 {
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

.cart-icon-content .cart-dropdown .cart-header .items-count {
  font-size: 14px;
  color: rgba(49, 65, 88, 1);
}

.cart-icon-content .cart-dropdown .cart-header .items-count span {
  color: rgba(0, 153, 144, 1);
}

.cart-icon-content .cart-dropdown .cart-items {
  max-height: 300px;
  overflow-y: overlay;
}

.cart-icon-content .cart-dropdown .cart-item {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(229, 233, 239, 1);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cart-icon-content .cart-dropdown .cart-item img {
  padding: 5px;
  width: 50px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(202, 239, 235, 1);
  background: rgba(241, 255, 252, 1)
}

.cart-icon-content .cart-dropdown .cart-item img.bundle {
  outline: 4px solid #2b39920f;
}

.cart-icon-content .cart-dropdown .cart-item-details {
  flex-grow: 1;
}

.cart-icon-content .cart-dropdown .cart-item-title {
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
  font-size: 14px;
  color: rgba(49, 65, 88, 1);
}

.cart-icon-content .cart-dropdown .cart-item-title span {
  color: rgba(0, 153, 144, 1);
  font-size: 16px;
}

.cart-icon-content .cart-dropdown .cart-item-price {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-icon-content .cart-dropdown .cart-item-description a {
  color: rgba(43, 57, 146, 1);
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;
}

.cart-icon-content .cart-dropdown .cart-item-remove {
  font-size: 20px;
}

.cart-icon-content .cart-dropdown .cart-item-remove {
  color: #6c757d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.cart-icon-content .cart-dropdown .cart-item-remove:hover {
  color: #dc3545;
  background-color: #f8f9fa;
}

.cart-icon-content .cart-dropdown .cart-footer {
  padding: 20px;
}

.cart-icon-content .cart-dropdown .checkout-btn {
  width: 100%;
  padding: 21px;
  background-color: rgba(0, 153, 144, 1);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.cart-icon-content .cart-dropdown .checkout-btn:hover {
  background-color: #006b5f;
}

/* cart header */

/* Global Loading */

.school-select {
  opacity: 0;
}

.opacity-1 {
  opacity: 1 !important;
}

.animated-loading {
  animation-name: loading;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.modal-dialog {
  width: 90% !important;
}

.become-seller.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 1;
  overflow: overlay;
  padding-block: 30px;
  background: #00000061;
}

.ul-profile-style {
  margin-bottom: 0 !important;
  min-width: 140px !important;
}

.ul-profile-style li {
  padding: 10px !important;
  line-height: 0 !important;
  border-bottom: 1px solid #80808024 !important;
  font-family: "Alegreya Sans", sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  color: var(--black) !important;
  transition: 0.5s linear !important;
}

.ul-profile-style li:hover {
  background: #f6f6f6 !important
}

.ul-profile-style li a {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.ul-profile-style li a i {
  color: var(--theme) !important;
  font-size: 13px !important;
  line-height: 19px !important;
}

.text-danger {
  color: red !important;
}

.item-shop-btn.border-danger {
  border: 1px solid #dc3545 !important
}

.document-types ul li {
  cursor: pointer;
}


.document-types ul li.active p {
  font-weight: bold;
  color: #2b3992;
}

.has-book img {
  width: 30px !important;
  height: 40px !important;
  position: absolute;
  right: -6px;
  bottom: -8px;
  z-index: 10;
  border-radius: 5px;
  box-shadow: 0px 0px 3px 0px #00000047;
  object-fit: cover !important;
  object-position: center;
}

.dash-badge-image {
  position: absolute;
  top: -12px;
  left: -15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /* background-color: #f2b259; */
  padding: 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.dash-badge-image-img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

.bg-bronze {
  background-color: #D4A373 !important;
}

.bg-silver {
  background-color: #D6D6D6 !important;
}

.bg-gold {
  background-color: #F7C948 !important;
}

.bg-platinum {
  background-color: #E5E8EB !important;
}

.bg-gold img,
.bg-platinum img {
  filter: contrast(0.5);
}

@media (max-width: 767px) {

  .book-item-list .item-shop-detail .item-shop-detail-btn .item-shop-btn,
  .book-item-box .item-shop-footer .item-shop-detail-btn .item-shop-btn {
    flex: 1;
    text-align: center
  }
}

@keyframes loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}