/* =====================================
			n-General Styles
===================================== */

/* Current Reset time 2.40 H */

/* font-family: 'Font Awesome 6 Free'; */

/* Include in javascript 
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=chevron_right" /> */

/* Google Icons
   font-family: 'Material Symbols Outlined' !important;
   font-family: 'Material Symbols Rounded' !important;
   font-family: 'Material Symbols Sharp' !important;
*/
 :root {
     --white:#fff;
     --black:#000;
     --main1:#ccc;
     --main2:#eee;
     --radius:10px;
     --awesome:"Font Awesome 6 Free";
     --icon:'Material Symbols Rounded' !important;
}

#body {
    background-color: #ffffff;
}

/* General */
h1, h2, h3, h4, h4, h5, h6, p, span {
    font-family: "Montserrat", sans-serif;
}
.first-page-content .section .images {
    padding: 0;
}

/* Header */
#body > div.header-wrapper.collapse > div > div.row.header-bar.clearfix > div.header-bar-section.left > ul > li:nth-child(1) {
    padding-left: 0px;
}
#body > div.header-wrapper.collapse > div > div.row.header-bar.clearfix > div.header-bar-section.right > ul > li:nth-child(2) {
    padding-right: 0px;
}


/* Buttons */
.buy-button {
    background-color: var(--button-color)!important;
}
.buy-button:hover, .buy-button:focus, .buy-button:active {
    background-color: var(--button-hover-color)!important;
}


/* Icons */

i.fas.fa-chevron-left {
    transform: rotateY(183deg);
}

/* Buttons */
.product-card-buy-button .buy-quantity__input {
    width: 40px;
    height: 35px;
    font-size: 1em;
    padding: 0.3rem;
    position: relative;
    top: 1px;
}
.minibasket .minibasket-icon {
    background-color: var(--button-color)!important;
}
.minibasket .minibasket-icon:hover {
    background-color: var(--button-hover-color)!important;
}

/* Top Categories */
.icons-section{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--gap); 
  align-items: flex-start;
  box-sizing: border-box;
}

/* Each icon item is a vertical stack: image above caption */
.icon-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 1 calc(20% - (var(--gap) * 0.8)); /* aim for 5 per row with gap */
  box-sizing: border-box;
  min-width: 80px;
}

/* Image sizing: keeps visual consistency */
.icon-item img{
  height: 58px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  filter: none;
}

/* Caption style */
.icon-item figcaption{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--label-color);
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: bold;
  color: #5c5c5c;
}

/* Responsive adjustments */
@media (max-width: 1000px){
  .icon-item{
    flex: 0 1 calc(33.333% - (var(--gap) * 0.66));
  }
}

@media (max-width: 640px){
  .icons-section{
    justify-content: center;
  }
  .icon-item{
    flex: 0 1 calc(50% - (var(--gap) * 0.5));
  }
  .icon-item img{
    height: 64px;
  }
}

/* Optional: accessible focus state if icons are interactive links later */
.icon-item:focus-within,
.icon-item:focus{
  outline: 3px solid rgba(217,74,86,0.18);
  outline-offset: 6px;
  border-radius: 6px;
}

/* =====================================
			n-Menu
===================================== */
.row.header-bar.clearfix * {
    color: #177c8a;
}
.header-wrapper .header-bar-section-links-item {
    border-right:0px;
}
.header-bar-section-links-item,
.header-bar-section-links-item a {
    display: flex;
    flex-direction: column; /* stack icon on top of text */
    align-items: center;    /* center horizontally */
    text-align: center;     /* center text */
    gap: 5px;               /* space between icon and text */
}

.header-bar-section-links-item i {
    font-size: 24px;        /* adjust icon size */
}
.header-wrapper.collapse {
    background-color: #fafafa;
}
.menu-bar-desktop-categories-menu-item.active {
  padding-right: 15px;
}
.resource-menu-desktop ul li > ul > li:hover a {
  color: #a3a3a3;
  font-weight: bold;
}
.fa-times:before {
    position: inherit;
    width: 15px;
    text-align: center;
    position: absolute;
    right: 48px;
    top: 16px;
    padding: 0px;
    font-size: 15px;
}
.product-search-input-container .product-search-button {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    padding: 12px;
    float: right;
    position: absolute;
    right: 0px;
    top:0px;
}

.product-search-input-container {
    position: relative;
    border: none;
    padding: 0px;
    background-color: transparent;
}
.menu-bar-desktop-products-menu-show-more {
    font-size: .8rem;
    font-weight: bold;
    padding-left: 0px;
}
.menu-bar-desktop-products-menu-items {padding-left:0px;transition:.2s ease-in-out;}
.menu-bar-desktop-products-menu-items a {transition:.2s ease-in-out;}
.menu-bar-desktop-products-menu-items a:hover {padding-left:10px;transition:.2s ease-in-out;}
.menu-bar-desktop-products-menu-items a:hover:before {
    content: "\e5cc";
    font-family: var(--icon);
    margin-right: 3px;
    color: #aaa;
    transition: .2s ease-in-out;
    font-size: 18px;
    position: absolute;
    margin-left: -15px;
    margin-top: -4px;
    font-weight: 600;
}
.menu-bar-desktop-categories-menu-item {
    border-bottom: none;
    cursor: pointer;
    line-height: 34px;
    padding-left: 15px;
    position: relative;
    width: fit-content;
}
ul.menu-bar-desktop-categories-menu-items {
    padding: 14px 0px;
}
.menu-bar-desktop-products-menus {
    padding: 14px;
}
.menu-bar-desktop-products-menu-label {
    border-bottom: none;
}
.menu-bar-desktop-categories-menu-item:hover {
    background-color: transparent;
    box-shadow: inset 7px 0px 0px 0px var(--black);
    transition:.2s ease-in-out;
}
.menu-bar-desktop-categories-menu-item:hover>a {
    color: #aaa;
}
.minibasket .minibasket-icon {
    background-color: #d60115;
}



/* Resource menu */
.resource-menu-desktop ul li>ul>li:hover {background: none;}



/* Login Box */
.message-box {
    position: absolute;
    bottom: 0px;
    font-size: 13px;
}
button.button.login-form-button {
	background-color: var(--button-hover-color)!important;
	border-radius: 2px;
	padding: 11px 30px;
	color: #fff;
	font-weight: 700;
	float: right;
}
.login-container, .checkout-login-container {
	width: 1200px!important;
	background-color: var(--base-color);
}
.login-form-forgot-password {
	background-color: transparent!important;
	float: right;
	margin-right: 24px;
}
button.button.login-form-forgot-password {
    color: #000;
}
.login-form-forgot-password::before {
    content: "\f0e0";
    margin-right: 6px;
    top: 0px;
    position: relative;
    font-family: 'Font Awesome 6 Free';
}
.login-form-register {
	float: right;
	color: #D60115!important;
	border: 2px solid #D60115;
	background-color: transparent!important;
	font-weight: bold;
	position: absolute;
	top: 16px;
	right: 41px;
	border-radius: 2px;
}
form#loginform {
	position: relative;
	height: 190px;
}
#loginform {
	padding: 40px;
	padding: 48px 40px 40px 40px;
}
.forgot-password-form {
	padding: 40px;
}
#loginform .login-username, #loginform .login-password {
	width: 50%;
	float: left;

}
#loginform label:nth-child(2) {
	float: right;
}
.login-username {
	padding-right: 10px;
}
.login-password {
	padding-left: 10px;
}
#loginform input[type="text"], input[type="password"] {
	border-radius: 3px;
}
[type=color], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], textarea {
	box-shadow: none;
}
button.login-form-forgot-password:hover {
	background-color: transparent;
	opacity:0.6!important;
}

/* =====================================
			n-Front page
===================================== */

.bx-wrapper {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

/* Article Section */

.section.small-12.js-section-articles {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* --- Section Styling --- */
.best-sellers-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #008080; 
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: bold;
}

/* --- Flexbox Container for Products --- */
.product-list {
    display: flex;
    justify-content: space-between; 
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Individual Product Card Styling --- */
.articles .product-card {
    flex: 1 1 22%;
    min-width: 250px;
    border-radius: 50px;
    padding: 20px;
    background-color: #fafafa;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Image Styling --- */
.product-image {
    background-color: #ffffff; /* Image area background */
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --- Content Styling --- */
.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.product-title {
    font-weight: bold;
    color: #333;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.product-description {
    color: #666;
    font-size: 0.85em;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- Button Styling --- */
.btn-action {
    width: fit-content;
    font-size:12px;
    padding: 10px 20px;
    background-color: #008080;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-action:hover {
    background-color: var(--button-hover-color); 
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 1024px) {
    /* On medium screens, switch to 2 columns */
    .product-list {
        justify-content: space-around;
    }
    .product-card {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    /* On small screens, switch to 1 column */
    .product-card {
        flex: 1 1 100%;
    }
}


/* Promotions */

.section.small-12.js-section-promotions {
    margin-bottom: 20px;
    margin-top: 20px;
}

/* --- Section Styling --- */
.promotions-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-promo {
    text-align: center;
    color: #008080; /* Teal/green color from the original "Meilleures Ventes" section for consistency */
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: bold;
}

/* --- Flexbox Container for Products --- */
.product-list-promo {
    display: flex;
    justify-content: space-between; 
    gap: 20px; 
    flex-wrap: wrap;
}

/* --- Individual Promotion Card Styling --- */
.promo-card {
    flex: 1 1 22%;
    min-width: 250px;
    border-radius: 50px;
    padding: 20px;
    background-color: #ffc820;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Image Container Styling (White Background inside the Yellow Card) --- */
.product-image-container {
    border-radius: 8px; 
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-container img {
    max-width: 100%;
    max-height: 200px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --- Content Styling --- */
.product-content-promo {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.product-title-promo {
    font-weight: bold;
    color: #333;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.product-description-promo {
    color: #333;
    font-size: 0.85em;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- Button Styling (Teal like the previous section for contrast) --- */
.btn-action-promo {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--button-color);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 12px;
    width: fit-content;
    margin: 0 auto;
}
.section.small-12.js-section-articles a::hover, .section.small-12.js-section-promotions a::hover {
    color:#fff!important;
}
.btn-action-promo::hover {
    background-color: var(--button-hover-color);
}

/* ============================================== */
/* SECTION 1: CATALOGUE CATEGORIES */
/* ============================================== */
.catalogue-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.catalogue-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.category-list {
    display: flex;
    justify-content: space-around; /* Distribute items with space around them */
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.category-item {
    /* 1 1 30% makes sure three items fit in a row */
    flex: 1 1 30%; 
    min-width: 200px; /* Ensure they don't get too small */
    text-align: center;
}

.category-link {
    text-decoration: none;
    color: #333;
    display: block;
    transition: transform 0.3s;
}

.category-link:hover {
    transform: translateY(-5px); /* Simple hover effect */
}

.category-image-wrapper {
    width: 200px; /* Fixed size for the circular image container */
    height: 200px;
    border-radius: 50%; /* Makes the container circular */
    overflow: hidden; /* Clips the image into a circle */
    margin: 0 auto 15px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow around the circle */
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the circle without distortion */
    display: block;
}

.category-name {
    font-size: 1.1em;
    font-weight: bold;
}

.section.small-12.js-section-suggestion {
    background-color: #fafafa;
}

/* ============================================== */
/* SECTION 2: CTA & DEVICES */
/* ============================================== */
.cta-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cta-content-wrapper {
    display: flex;
    justify-content: space-between; /* Puts the text on the left and devices on the right */
    align-items: center; /* Vertically center items */
    gap: 0px;
    flex-wrap: wrap; /* Allows stacking on small screens */
}

.cta-text-block {
    flex: 1 1 45%; /* Text takes up about 45% of the space */
    max-width: 650px;
}

.cta-heading {
    font-size: 1.8em;
    font-weight: bold;
    color: #4e585b;
    margin-bottom: 10px;
}

.cta-subtext {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #48555b;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9em;
    transition: background-color 0.3s;
    font-weight:bold;
}

.cta-button:hover {
    background-color: #303B40;
}
/* --- Pour Vous sectrion --- */
.pourvous_section {
  text-align: center;
  margin: 2rem 0rem;
  background-color: #fff;
}

.pourvous_title {
  color: #1d6b65;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight:Bold;
}

.pourvous_container {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.pourvous_card {
  max-width: 100%;
  text-align: left;
  flex: 1 1 200px;
}

.pourvous_image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.pourvous_card-title {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.pourvous_card-text {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.pourvous_button {
  background-color: var(--button-color);
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
}

.pourvous_button:hover {
  background-color: var(--button-hover-color);
}
/* --- Device Mockups (Pure CSS Styling) --- */
.cta-devices {
    flex: 1 1 45%; /* Devices take up about 45% of the space */
    display: flex;
    justify-content: flex-end; /* Push devices to the right */
    align-items: flex-end;
    padding: 20px 0;
    min-height: 250px; /* Give the device area some space */
}

/* Monitor/Computer Styling */
.monitor-frame {
    width: 300px;
    height: 200px;
    background-color: #e0e0e0; /* Monitor casing color */
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 10px;
}

.monitor-screen {
    background-color: white; /* White screen */
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Stand for the monitor */
.monitor-frame::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 0 0 5px 5px;
}

/* Mobile Phone Styling */
.phone-frame {
    width: 80px;
    height: 160px;
    background-color: black;
    border: 2px solid #555;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 5px;
    margin-right: -20px; /* Overlap with the monitor */
    z-index: 10;
    transform: translateY(20px); /* Lift slightly above the monitor base */
}

.phone-screen {
    background-color: white; /* White screen */
    width: 100%;
    height: 100%;
    border-radius: 8px;
}


/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    /* For the Catalogue Section */
    .category-list {
        justify-content: center;
    }
    .category-item {
        flex: 1 1 45%; /* Two items per row */
        margin-bottom: 20px;
    }

    /* For the CTA Section */
    .cta-content-wrapper {
        flex-direction: column; /* Stack text and devices vertically */
        text-align: center;
    }

    .cta-text-block, .cta-devices {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .cta-devices {
        justify-content: center; /* Center the devices when stacked */
        transform: none;
    }
}



/* Testimonial & Contact card */
.section.small-12.js-section-contact {
    margin-top: 50px;
    margin-bottom: 60px;
}
.image-container {
    background-image: url("https://axantis.fr2.nettailer.com//fileupload/contact_image.png") !important;
    background-size: cover !important;
}
#body > main > div.main-wrapper > div.small-12.columns.content-column.mainContentFixed > div > div.content-container.clearfix > div.first-page-content.clearfix > div.section.small-12.js-section-contact > div.row.content-show > div > div.testimonial-slider > div:nth-child(4) {
    display: none;
}
/* ---- Layout ---- */
    .testimonial-slider {
        background-color: #177c8a !important;
        color: #fff;
    }
    .three-column-section {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: stretch;
      gap: 20px;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .three-column-section > div {
      flex: 1 1 0;
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* ---- Testimonial slider ---- */
    .testimonial-card { display: none; }
    .testimonial-card.active { display: block; }

    .stars { font-size: 20px; margin-bottom: 6px; }
    .service-description { font-weight: 600; margin-bottom: 8px; }
    .testimonial-text { margin: 12px 0; line-height: 1.4; }
    .author { font-weight: 700; }
    .title { color: #fff; font-size: 0.9rem; }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 12px;
    }
    .dot {
      height: 10px;
      width: 10px;
      border-radius: 50%;
      background: #3a909b;
      cursor: pointer;
    }
    .dot.active { background: #fff; }

    /* ---- Image ---- */
    .image-container {
      padding: 0;
      overflow: hidden;
    }
    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    /* ---- Contact form ---- */
    .contact-form-card h2 {
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 16px;
        text-align: center;
        color: #177c8a;
        border: 1.7px solid;
        border-radius: 10px;
        padding: 14px;
        font-size: 22px;
    }
    .contact-form-card {
        padding: 0px !important;
        box-shadow: none !important;
    }
    .form-group {
      margin-bottom: 10px;
    }
   .contact-form-card input, textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: inherit;
    }

.contact-form-card button {
    background-color: var(--button-color);
    color: #fff;
    padding: 10px 10px;
    width: 100%;
}
    /* ---- Responsive ---- */
    @media (max-width: 900px) {
      .three-column-section {
        flex-direction: column;
      }
      .three-column-section > div {
        width: 100%;
      }
    }
/* --- Media Queries for Responsiveness --- */
@media (max-width: 1024px) {
    /* On medium screens, switch to 2 columns */
    .product-list-promo {
        justify-content: space-around;
    }
    .promo-card {
        flex: 1 1 45%; /* Two cards per row */
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    /* On small screens, switch to 1 column */
    .promo-card {
        flex: 1 1 100%; /* One card per row */
    }
}

/* =====================================
			n-Filter Page
===================================== */

/* Filter Menu */
.es-filters-wrapper {
    box-shadow: none;
    background-color: #fff;
    padding: 1px 17px 12px;
    margin-bottom: 30px;
    border: 1px solid #e6e6e6;
}

.row.medium-uncollapse.es-product-list .columns.small-12.medium-3 {
    padding-left: 0px !important;
}



/* =====================================
			n-Product Page
===================================== */


.product-card .product-card-price .price .price-text {
    font-size: 2rem;
    font-weight: bold;
    color: #1c1c1c;
}
.product-card__tablinks {
    margin-top: 10px;
}
.admin-tablink {
    border-left: 1px solid var(--black);
    padding: 0px;
}
.product-card-information-container > div > div.product-card__tablinks > a:nth-child(2), .product-card-information-container > div > div.product-card__tablinks > a:nth-child(3) {padding-left:7px; margin-right:5px;}

/* Accordion */

.accordion-title {
  font-size: 16px;
  font-weight: 700;
}
.product-card-tabs .accordion-title {
  padding: 17px 22px;
  background-color: #fff;
  font-weight: bold;
}
.product-card-tabs .accordion li {
  border: none;
  margin-bottom: 5px;
  background-color: #fff;
}
.product-card-tabs .accordion-title:after {
  content: inherit;
}
i.fas.fa-plus.tab-expand {
  content: inherit;
  position: inherit;
  right: inherit;
  top: inherit;
}
i.fas.fa-minus.tab-fold {
  content: inherit;
  position: inherit;
  right: inherit;
  top: inherit;
}
.tab-expand, .tab-fold {
  color: #231F20;
}
.product-card-tabs .accordion-title:hover {
  background-color: #fff;
}
table tbody tr:nth-child(odd) {
  box-shadow: inset 0px -1px #D9D9D9;
  background-color: #fff;
}
table tbody tr:nth-child(even) {
  box-shadow: inset 0px -1px #D9D9D9;
  background-color: #fff;
}
.product-card-tabs .accordion-content {
  background-color: transparent;
  padding: 0px 22px!important;
  margin: 0px;
}
.product-card-tabs .accordion {
  background-color: transparent;
}
th.product-card-specification-label {
  font-size: 16px;
  font-weight: 700 !important;
  line-height: 28px;
  text-align: left;
}
:last-child:not(.is-active)>.accordion-title {
  border-bottom: 0px;
  border-radius: 0 0 0 0;
}
:last-child>.accordion-content:last-child {
  border-bottom: none;
}
.product-card-tab-information {
  padding-bottom: 20px;
}
.ccs-ds-extendedSpec-header {
    background: none!important;
}
/* =====================================
			n-Landing Page 
===================================== */






/* =====================================
			n-Order & n-Basket Page 
===================================== */

/* Basket 
.fa-minus-circle:before {
    content: "\f068";
}
.fa-plus-circle:before {
    content: "\2b";
}
.basket .basket-qty-minus, .basket .basket-remove {
    color: #585858;
    font-size: .7rem;
}
.basket .basket-qty-plus {
    color: #585858;
    font-size: 1.2rem;
}
ul.no-bullet.basket-totals-list li {
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
}*/

/* =====================================
			n-Footer
===================================== */



/* =====================================
			n-Media Queries
===================================== */

@media (max-width: 575px) {
    /* Mobile styles */
}

@media (min-width: 576px) and (max-width: 767px) {
    /* Landscape phone styles */
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Tablet styles */
    .footer .footer-wrapper .content-footer-wrapper {
        margin-left: 0px;
    }
    .footer .footer-wrapper .content-footer-wrapper li {
        margin-left: 0px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* Desktop styles */
}

@media (min-width: 1200px) {
    /* Large screens styles */
    .menu-bar-items {
        padding:0px;
    }
    .header-wrapper .row.header .logo-container {
        padding:0px;
    }
    .row.header .minibasket {
        padding: 8px 0px 8px 8px;
    }
    ul.content-footer-wrapper {
        display: flex;
    }
    .footer .footer-wrapper .content-footer-wrapper {
        margin-left: 0px;
    }
    .footer .footer-wrapper .content-footer-wrapper li {
        margin-left: 0px;
    }
}
