/*!***************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/styles/styles.css ***!
  \***************************************************************************************************************************************************************************/
/* Styles for the main image container */
.image-container {
    background-color: #ebebeb;
    border-radius: 0.5rem; /* 8px */
}

/* Styles for the main image */
.main-image {
  width: 310px;
  height: 310px;
}

@media (min-width: 640px) { /* sm: breakpoint */
    .main-image {
        width: 330px;
        height: 330px;
    }
}

@media (min-width: 1024px) { /* lg: breakpoint */
    .main-image {
        width: 350px;
        height: 350px;
    }
   
}

/* Styles for the thumbnail images container */
.thumbnail-container {
    display: flex;
    gap: 5px;
    margin-top: 1.25rem; /* 20px */
}

@media (min-width: 640px) { /* sm: breakpoint */
    .thumbnail-container {
        gap: 16px;
    }
}

@media (min-width: 1024px) { /* lg: breakpoint */
    .thumbnail-container {
        gap: 23px;
    }
}

/* Styles for individual thumbnails */
.thumbnail-image {
    border-radius: 0.5rem; /* 8px */
    cursor: pointer;
    background-color: #ebebeb;
    width: 70px;
    height: 70px;
}

/* Active thumbnail class */
.thumbnail-image.active {
    background-color: red; /* replace with your `bg-second` color */
}

#b2b--header{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    align-items: stretch;
}
.call-to-action {
    padding: 12px 22px;
    border-radius: 12px;
    color: rgba(0, 0, 0, 0.674);
    font-weight: bold;
}
   
@media screen and (max-width: 1000px) {
    #b2b--header{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 1200px) {
    #menu-secondary-nav{
        display: grid;
        grid-template-columns: 1fr;
    }
}
  
.blog-header-image {
  width: 100%;
  height: auto;
}

.blog-title-container {
  padding: 0 20px;
}

.blog-title {
  font-size: 1.5rem;
  color: #1e3a8a;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}

.blog-title-underline {
  height: 4px;
  width: 15rem;
  background-color: #374151;
  margin-bottom: 0.5rem;
}

.blog-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 20px;
}

.blog-card {
  padding: 1rem;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.blog-card:hover {
  /* background-color: #ffffff; */
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.blog-card-image {
  height: 12rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}

.blog-card-category {
  font-size: 0.875rem;
  color: #1e3a8a;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.blog-card-description {
  font-size: 0.875rem;
  color: #4b5563;
  text-align: justify;
}
.blog1-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog1-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563; 
  margin-bottom: 1rem;
}

.blog1-link {
  color: #1e3a8a; 
  text-decoration: none;
}

.blog1-link:hover {
  text-decoration: underline;
}

.blog1-category {
  color: #9ca3af; 
}

.blog1-title-nav {
  color: #374151;
}

.blog1-image {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.blog1-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.blog1-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.blog1-divider {
  height: 2px;
  width: 100%;
  background-color: #e5e7eb; 
  margin-bottom: 1rem;
}

.blog1-content {
  font-size: 1rem;
  color: #4b5563; 
  text-align: justify;
}

.blog1-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.blog1-button {
  font-size: 1rem;
  color: #1e3a8a; 
  background: none;
  border: none;
  cursor: pointer;
}

.blog1-button:hover {
  text-decoration: underline;
}

.blog1-button-disabled {
  color: #9ca3af;
  cursor: not-allowed;
}
  
  /*  payment method animation */ 
.down-footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.payment-slider-wrapper {
  display: block!important;
}

.payment-slider {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
}
  .b2b-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  max-width: 100%;
}

/* IMAGE */
.b2b-image {
  position: relative;
  width: 230px;
  height: 230px;
  padding: 10px;
  
}

.b2b-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* BADGE */
.b2b-card-body {
  padding-top: 5px;
  display: flex;
  width: 100%;
}
.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e11d48;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* CONTENT */
.b2b-content {
  flex: 1;
}

.b2b-title {
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0px!important;
  color:#0062BD
}

/* PRICE */
.b2b-price {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 4px;

}
.price_type {
  font-size: 23px;
  font-weight: bold;
  
}
.b2b-actions .b2b-btns {
  width: 200px;
  
}
.b2b-actions .b2b-btns .btn-annonce , 
.b2b-actions .b2b-btns .btn-fournisseur
 {
  display: block;
  width: 100% !important;
  margin-top: 5px!important;
  

}
/* ACTIONS */
.b2b-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: end;
  width: 250px;
}

.btn-cart {
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  
  
}
.btn-annonce {
  background-color: #1F384B;
  padding: 10px 26px; 
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;  
  font-size: 15px;
  width: 75%;
  border: none;
}
.b2b-actions  .hover-area {
 margin: 0 7px;
}
.btn-fournisseur {
  background-color: #FBA707;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;  
  width: 75%;
  cursor: pointer;
  font-size: 15px;
}
.btn-fournisseur:hover {
  background-color: #fcb634;
  color: white;
  transition: all 0.2s ease-in-out;
}
.b2b-category {
  font-size: 13px;
  color: #121111;
  padding: 18px 0px!important;
  font-weight: bold;
}
.paginate-respo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.paginate-respo .woocommerce-result-count {
  padding-top: 20px !important;
}
.btn-cantact-frns {
  background-color: #FBA707;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;  
  font-size: 15px;
  cursor: pointer;
  color: black;
  margin: 10 auto;
  
}
.btn-cantact-frns:hover {
  background-color: #fcb634;
  color: white;
  transition: all 0.2s ease-in-out;
}

.electro-advanced-pagination .totalPages-style {
  font-weight: 520;
  color: black;
}

.brochure-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  
  width: 44%;
  padding: 1rem;

  font-size: 0.95rem;
  font-weight: 500;

  border-radius: 14px;
  text-decoration: none;

  background: linear-gradient(135deg, #1B3C53, #456882);
  color: #fff;

  transition: all 0.25s ease;
}

.brochure-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(27, 60, 83, 0.35);
  color: #fff;
}


@media (max-width: 768px) {
  
  .announce-video {
    height: 400px;
  }
   .icon-payemnt-wrap {
    flex-direction: row;
  }
  .slider {
    width: 100% !important;
    min-width: 100% !important;
    height: 415px;
  }
  .loginLogo {
    width: 11rem;
  }
  .b2b-card {
    flex-direction: column;
  }

  .b2b-image {
    width: 100%;
    height: 200px;
  }
  .b2b-card-body {
    flex-direction: column;
  }
  .b2b-actions {
    margin-top: 10px;
    width: 100%;
    gap: 6px;
  }
  .b2b-actions .b2b-price {
    width: 100%;
    display: flex;
    text-align: center!important;
    margin-bottom: 5px;
    justify-content: start;
  }


  .b2b-actions .b2b-btns .btn-annonce , 
  .b2b-actions .b2b-btns .btn-fournisseur {
    font-size: 13px;
    height: 100%;
    border-radius: 10px;
    font-weight: 600;  
    cursor: pointer;
    padding: 18px 2px;
  }
  .b2b-btns {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%!important;
  }
  .b2b-actions .hover-area {
    width: 100%!important;
    margin-top: 5px;
    margin: 0 auto;
  }
  .paginate-respo {
    flex-wrap: wrap ;
    justify-content: center ;

  }
  .b2b-plan-img {
    position: absolute;
    top: 10px!important;
    left: 10px!important;
  }
  .woocommerce-LoopProduct-link .image-frns {
    width: 280px;
  }
  .woocommerce-LoopProduct-link .image_frns_plan {
    position: absolute;
    left: 25px!important;
    width: "45px",
  }

  .brochure-btn {

    width: 100%!important;
  } 
}

/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/Blogs/articlesData.css ***!
  \*******************************************************************************************************************************************************************************************/
.blog-list {
    list-style-type: disc; 
    margin: 1em 0;
    padding-left: 20px; 
  }
  
  .blog-list-li {
    margin-bottom: 0.5em; 
  }
  
/*!*********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/styles/main.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************/
.login-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .login-container {
    flex-direction: row;
  }
}

.left-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .left-section {
    width: 50%;
  }
}
.left-section img {
  height: 12rem;
}
@media screen and (min-width: 768px) {
  .left-section img {
    height: 24rem;
  }
}

.right-section {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .right-section {
    width: 50%;
  }
}

.content-wrapper {
  width: 100%;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .content-wrapper {
    width: 75%;
  }
}

.text-center {
  text-align: center;
  margin-bottom: 2rem;
}
.text-center h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.form-group {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #666;
}

.button-submit {
  background-color: #f5a741 !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  width: 100% !important;
}

.link-container {
  text-align: center;
  margin-top: 1rem;
  color: #666;
}
.link-container .link {
  color: #333;
  cursor: pointer;
  text-decoration: underline;
}
.link-container .link:hover {
  color: #f5a741;
}

ul.products[data-view=list-view] > li.product .product-item__footer {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
@media screen and (min-width: 768px) {
  ul.products[data-view=list-view] > li.product .product-item__footer {
    width: 25% !important;
  }
}

/* Styles for the main image container */
.image-container {
  background-color: #ebebeb;
  border-radius: 0.5rem; /* 8px */
}

/* Styles for the main image */
.main-image {
  width: 100%;
  height: 100%;
}

.parent-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto 35px auto;
}

/* Styles for the thumbnail images container */
.thumbnail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 1.25rem; /* 20px */
}

/* Styles for individual thumbnails */
.thumbnail-image {
  border-radius: 0.5rem; /* 8px */
  cursor: pointer;
  background-color: #ebebeb;
  width: 70px;
  height: 70px;
}

/* Active thumbnail class */
.thumbnail-image.active {
  background-color: #ffc75e; /* replace with your `bg-second` color */
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #fba707 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #fba707);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

.closeVisible {
  display: block !important;
}

.swiper-wrapper {
  display: inline-flex !important;
}

.costum-page-numbers {
  font-size: 19px !important;
  padding: 0px 8px !important;
  margin: 0 10px !important;
}

.profile-info-summery-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-info-summery-wrapper .profile-info-summery {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  gap: 12px;
}
.profile-info-summery-wrapper .profile-info-summery .profile-summery-info-wrapper {
  background: white;
  padding: 15px;
  border-radius: 14px;
  margin-left: 0 !important;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-info-summery-wrapper .profile-info-summery .dokan-store-support-and-follow-wrap {
  margin-bottom: 1rem !important;
  margin-left: unset !important;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .hero {
    padding-top: 0;
  }
}

.my-account {
  position: relative;
  z-index: 99999;
  margin-left: 0 !important;
}
.my-account ul {
  display: none;
  padding: 10px;
  list-style: none;
  margin-top: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0px 5px 7px 0px #3c3c3c;
  position: absolute;
  border-bottom: 3px solid #686666;
  right: 0;
}
.my-account ul li {
  margin-left: 0 !important;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 0 5px;
  text-wrap: nowrap;
}
.my-account ul li i {
  font-size: 16px;
}
.my-account:hover ul {
  display: block;
}

.errors-bar {
  list-style: none;
  margin-top: 10px;
  font-weight: 700;
  background: red;
  color: white;
  padding: 10px;
  border-radius: 10px;
}
.errors-bar li {
  padding: 10px 0;
}

.avantages-buttons {
  margin: 45px 0px;
}
.avantages-buttons a {
  color: rgb(247, 190, 104);
  border-color: rgb(247, 190, 104);
  background-color: transparent;
  padding: 13px 19px;
  font-size: 14px;
  outline: auto;
  border-radius: 2em;
  border-width: 2px;
  transition: background 0.3s ease;
}
.avantages-buttons a:hover {
  color: white;
  background-color: rgb(247, 190, 104);
  outline: auto;
  border-color: rgb(247, 190, 104);
}
.avantages-buttons i {
  margin-left: 5px;
}

.contact-section-contain {
  background-color: #D6D6D6;
  border-width: 0;
  border-radius: 10px;
  padding: 0 12px;
}
.contact-section-contain .contact-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px 0;
  margin-top: 20px;
}
.contact-section-contain .contact-section .contact-section-1 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-section-contain .contact-section .contact-section-1 {
    width: 45%;
  }
}
.contact-section-contain .contact-section .contact-section-2 {
  width: 100%;
  background-color: #fff;
  padding: 35px 15px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .contact-section-contain .contact-section .contact-section-2 {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .contact-section-contain .contact-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.dropdown-menu {
  min-width: 7.4rem !important;
}
@media screen and (min-width: 480px) {
  .dropdown-menu {
    width: 8rem !important;
  }
}
@media screen and (min-width: 640px) {
  .dropdown-menu {
    width: 9.6rem !important;
  }
}

.categories-menu {
  min-width: 10rem !important;
}
@media screen and (min-width: 480px) {
  .categories-menu {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
@media screen and (min-width: 640px) {
  .categories-menu {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}

.subCategories-menu {
  min-width: 10rem !important;
}
@media screen and (min-width: 480px) {
  .subCategories-menu {
    width: 17rem !important;
  }
}
@media screen and (min-width: 640px) {
  .subCategories-menu {
    width: 17rem !important;
  }
}

.handheld-header-links {
  padding-left: 0 !important;
}

.wrap-text-navbar {
  text-wrap: wrap;
  line-height: 1.6;
  text-align: center;
  white-space: pre-wrap;
  margin-top: 10px;
}

.secondary-nav > .ml-auto {
  margin-left: auto !important;
}

.secondary-nav > .menu-item + .menu-item {
  margin-left: 0 !important;
}

.logo-mobile {
  max-width: 150px !important;
  margin-left: -21px;
  height: 50px !important;
}
@media screen and (min-width: 480px) {
  .logo-mobile {
    max-width: 160px !important;
  }
}

#content .slider-with-das {
  margin-top: -27px;
}

.center-content {
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
}

#entreprise-logo {
  max-width: 100% !important;
  margin-bottom: 0 !important;
  border-radius: 5px;
}

.bg-dark {
  background: #333e48 !important;
}

.main-bar {
  width: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  overflow-x: scroll;
}
.main-bar .items-bar {
  color: white;
}
.main-bar .items-bar .link-bar {
  color: white;
  font-weight: 600;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none !important;
}

.active-hh-sidebar .sideFilter::before {
  background: rgba(0, 0, 0, 0.7);
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
}

.error-text {
  color: red;
  font-weight: 500;
  padding: 5px 0;
}

.slider {
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 230px !important;
  min-width: 230px !important;
  height: 360px;
}
@media screen and (min-width: 1200px) {
  .slider {
    width: 100% !important;
    min-width: 100% !important;
    height: 415px;
  }
}
.slider .sizes {
  width: 230px !important;
  min-width: 230px !important;
  height: 360px;
}
@media screen and (min-width: 1200px) {
  .slider .sizes {
    width: 100% !important;
    min-width: 100% !important;
    height: 415px;
  }
}

.ad {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #fba707;
  gap: 10px;
}
.ad .image {
  width: 180px;
  height: 180px;
}
.ad .image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.ad .content {
  background: white;
  border-radius: 15px;
  padding: 10px;
}
.ad .content .product {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-bottom: 0;
}
.ad .content .company {
  font-size: 14px;
  margin-bottom: 0;
  color: black;
  text-align: center;
}
.ad .price {
  align-self: end;
  background: #000000;
  color: #fba707;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  font-weight: 900;
  font-size: 19px;
  margin-bottom: 0;
  border-radius: 15px;
  padding: 6px;
}
@media screen and (min-width: 1200px) {
  .ad .price {
    position: unset;
    justify-self: end;
    transform: rotate(332deg);
    margin-right: 15px;
    font-size: 23px;
  }
}

.icon-payemnt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.icon-payemnt-wrap .float-start div {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .icon-payemnt-wrap {
    flex-direction: row;
  }
}

.announce-video {
  width: 100%;
  margin-bottom: 15px;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .announce-video {
    height: 400px;
  }
}
@media screen and (min-width: 1024px) {
  .announce-video {
    height: 500px;
  }
}

.loginLogo {
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .loginLogo {
    width: 11rem;
  }
}
@media screen and (min-width: 1024px) {
  .loginLogo {
    width: 14rem;
  }
}

.loop-product-categories {
  font-weight: bold;
}

.plan_name {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  top: -71px;
  right: 15px;
  transform: translateX(-7px);
  background: #000;
  padding: 5px;
  color: white;
  font-weight: 900;
  border-radius: 8px;
  position: absolute;
}

.plan_logo:hover .plan_name {
  opacity: 1;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
@media screen and (min-width: 480px) {
  .parent-image-container {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .profile-info-summery-wrapper {
    display: block;
  }
  .profile-info-summery-wrapper .profile-info-summery {
    gap: 14px;
    flex-direction: row;
    align-items: flex-end !important;
  }
  .profile-info-summery-wrapper .profile-info-summery .profile-summery-info-wrapper {
    align-items: flex-start;
  }
  .profile-info-summery-wrapper .profile-info-summery .dokan-store-support-and-follow-wrap {
    text-align: right;
    margin-left: auto !important;
    margin-bottom: 1.5rem !important;
  }
}
@media screen and (min-width: 768px) {
  .parent-image-container {
    align-items: flex-start;
    margin: 0;
    width: 100%;
  }
  .thumbnail-container {
    gap: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .main-image {
    width: 330px;
    height: 330px;
  }
  .thumbnail-container {
    gap: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .closeVisible {
    display: none !important;
  }
}
@media screen and (max-width: 840px) {
  ul.products[data-view=list-view] > li.product .product-item__footer .add-to-cart-wrap,
  ul.products[data-view=list-view] > li.product .product-item__footer .hover-area {
    display: none;
  }
}

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