/* Generic 
-------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=block');

body {
	font-family: 'Lato', sans-serif;
	color: #000 /*{1. Body | Text colour}*/;
}
a, a:hover, a:active, .btn-link, .btn-link:hover {
	color: #4f4f4f /*{1. Body | Link colour}*/;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h5, .h6 {
	font-family: 'Lato', sans-serif /*{1. Body | Header font family}*/;
	color: #529078 /*{1. Body | Header font colour}*/;
	font-weight: 700;
}

/* Header 
-------------------------------*/

header {
	background-color: #fff /*{2. Header | Background colour}*/;
}
header .header-topbar {
	border-bottom: 1px solid;
	border-color: #f5f5f5 /*{2. Header | Top bar border colour}*/;
}
header .header-topbar .navbar-nav a {
	color: #989898 /*{2. Header | Topbar link colour}*/;
}
.header-menu {
	background-color: #529078 /*{2. Header | Menu background colour}*/;
}
.header-menu .navbar-nav > li > a,
.navbar-mobile a.nav-link {
	color: #ffffff /*{2. Header | Menu link colour}*/;
}
header .btn-header i {
    color: #529078 /*{2. Header | Account/Cart/Search Icon colour}*/;
}
header .btn-header {
	color: #676767 /*{2. Header | Account/Cart/Search Link colour}*/;
}

/* Footer 
-------------------------------*/

.wrapper-footer {
	background-color: #F5F5F5 /*{3. Footer | Background color}*/;
}
.wrapper-footer h4 {
	color: #529078 /*{3. Footer | Heading colour}*/;
}
.wrapper-footer a, 
.wrapper-footer a:hover, 
.wrapper-footer a:active,
.wrapper-footer * {
	color: #838383 /*{3. Footer | Text colour}*/;
}
footer .nav.list-social i {
    color: #529078 /*{3. Footer | Social icon colour}*/;
}


/* Buttons 
-------------------------------*/

/* Secondary button */
.btn-outline-secondary, .btn-default {
	color: #333 /*{4. buttons | default-btn-text-colour}*/;
	background-color: #fff /*{4. buttons | default-btn-background-colour}*/;
	border-color: #ccc /*{4. buttons | default-btn-border-colour}*/;
}
.btn-outline-secondary:hover, .btn-default:hover,
.btn-outline-secondary.disabled, .btn-default:disabled,
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle, .btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle {
	color: #333 /*{4. buttons | default-btn-text-colour-hover}*/;
	background-color: #ebebeb /*{4. buttons | default-btn-hover-background-colour}*/;
	border-color: #adadad /*{4. buttons | default-btn-hover-border-colour}*/;
}

/* Primary button */
.btn-primary {
	color: #fff /*{4. buttons | primary-btn-text-colour}*/;
	background-color: #3a5c58 /*{4. buttons | primary-btn-background-colour}*/;
	border: 0;
}
.btn-primary:hover,
.btn-primary.disabled, .btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
	color: #fff /*{4. buttons | primary-btn-hover-text-colour}*/;
	background-color: #263f3c /*{4. buttons | primary-btn-hover-background-colour}*/;
}

/* Success button */
.btn-success {
	color: #fff /*{4. buttons | success-btn-text-colour}*/;
	background-color: #539078 /*{4. buttons | success-btn-background-colour}*/;
	border: 0;
}
.btn-success:hover,
.btn-success.disabled, .btn-success:disabled,
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
	color: #fff /*{4. buttons | success-btn-hover-text-colour}*/;
	background-color: #458069 /*{4. buttons | success-btn-hover-background-colour}*/;
}

/***/
.top-header {
    background: #efeee9;
}

.top-header ul.usp-header li {
    text-align: center;
}

.top-header ul.usp-header li:first-child {
    text-align: left;
}

/*.top-header ul.usp-header li:nth-of-type(4) {
    text-align: right;
}*/

.top-header ul.usp-header li img {
    display: inline-block;
    width: auto;
    max-height: 40px;
    max-width: 100%;
    padding: 5px 0px;
}

.top-header ul.usp-header li a {
    display: inline-block;
    width: auto;
}
section.middle-header {
    background: #354f52;
    color: #b6ad90;
}

header section.middle-header .header-search {
    max-width: 100%;
}

header section.middle-header .header-search form input.form-control {
    padding: 10px !important;
    font-size: 14px;
    border-radius: 0px 30px 30px 0px;
}

header section.middle-header .header-search form {
    border: none;
}

header .header-search form .btn{
    border-radius: 30px 0px 0px 30px;    
}

header section.middle-header .header-search form .input-group {
    border-radius: 30px;
}

header .btn-header {
    color: #b6ad90;
}

header .btn-header i.fa {
    color: #b6ad90;
}

section.header-menu {
    background: #84a98c;
}

header .header-menu .navbar-nav > li > a.nav-link {
    color: #000;
}

.brand-section {
    padding: 20px 0;
}

.brand-section .brand-col {
    width: 20%;
    padding: 0px 15px;
    margin-bottom: 20px;
}

.brand-section .brand-col img {
    width: 100%;
}

.block-grid .block:nth-child(1) {
    grid-area: one;
}
.block-grid .block:nth-child(2) {
    grid-area: two;
}
.block-grid .block:nth-child(3) {
    grid-area: three;
}

.block-grid {
    display: grid;
    grid-template-areas:
        'one three'
        'two three';
    gap: 30px;
}

.block-grid .block img {
    width: 100%;
    display: block;
    height: 100%;
}

.homepage-usp .usp img {
    width: 100%;
}

.homepage-usp {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 26px;
}

section.block-section {
    padding: 20px 0px 20px;
}

section#homepage-content {
    margin-bottom: 40px;
}

h2.section-heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2f3e46;
}

section#homepage-content * {
    color: #2f3e46;
}

.product-thumbnail {
    padding: 10px;
    border: solid 1px #e87f26;
    position: relative;
    background: #fff;
        border-radius: 20px;
}

.custom-badge img.no-rx-tag {
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
}

img.free-shipping-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 35px;
}

.product-thumbnail .thumbnail-image {
    position: relative;
}

.product-thumbnail p.card-title {
    font-weight: 600;
    font-size: 14px;
    height: 52px;
    overflow: hidden;
    text-align: center;
}

.product-thumbnail p.price {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.product-thumbnail p.card-title a {
    text-decoration: none;
}

.product-thumbnail a.btn {
    font-size: 14px;
    padding: 8px;
        border-radius: 20px;
}

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

.bottom-graphic img {
    max-width: 100%;
    width: 100%;
}

.footer--newsletter-section {
    padding: 00px 0px 20px;
    margin-top: 40px;
    border-top: none;
}

.footer--newsletter-section .newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer--newsletter-section .newsletter h3 {
    font-size: 24px;
    color: #000;
    margin-right: 15px;
}

.footer--newsletter-section .newsletter form {
    max-width: 600px;
    width: 100%;
}

.footer--newsletter-section .newsletter form .input-group input.form-control {
    height: 45px;
    font-size: 16px;
    border-radius: 30px;
    padding: 0px 20px;
    line-height: 45px;
    margin-right: 15px;
    background: transparent;
    border: solid 1px #3a5c58;
}

.footer--newsletter-section .newsletter form .input-group input.btn.btn-primary {
    height: 45px;
    line-height: 45px;
    padding: 0px 20px;
    font-size: 16px;
    border-radius: 30px;
    width: 120px;
}

footer.wrapper-footer {
    position: relative;
    background: transparent;
    overflow: hidden;
    padding-top: 30px;
    padding-left: 50px;
    z-index: 1;
    padding-right: 20px;
    padding-bottom: 20px;
}

.wrapper-footer a, .wrapper-footer a:hover, .wrapper-footer a:active, .wrapper-footer * {
    color: #efeee9;
}

.wrapper-footer h4 {
    color: #efeee9;
}

footer.wrapper-footer .inside-footer {
    background: #5c8984;
    padding: 40px 0px 0px;
}

footer.wrapper-footer:after {
    content: "";
    width: 40%;
    height: 100%;
    background: #c8e4b2;
    position: absolute;
    right: -20%;
    top: 0px;
    transform: skewX(220deg);
    z-index: -1;
}

footer.wrapper-footer:before {
    content: "";
    width: 40%;
    height: 100%;
    background: #c8e4b2;
    position: absolute;
    left: -20%;
    top: 0px;
    transform: skewX(220deg);
    z-index: -1;
}

.wrapper-footer a.nav-link {
    font-size: 16px;
}

.wrapper-footer h4 {
    font-size: 20px;
}

ul.navbar-desktop {
    position: relative;
}

ul.navbar-desktop .dropdown {
    position: static;
}

ul.navbar-desktop ul.megamenu {
    width: 100%;
    border: none;
    padding: 15px;
    display: flex !important;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px !important;!i;!;
    transition: all 0.4s ease-in-out;
    background: #efeee9 !important;
    border: solid 3px #e87f26;
    border-radius: 0 0 30px 30px;
}

ul.navbar-desktop ul.megamenu .menu-list {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

ul.navbar-desktop ul.megamenu .menu-image {
    width: 30%;
}

ul.navbar-desktop ul.megamenu .menu-list li.second-level {
    flex: 0 0 25%;
    width: 25%;
    text-align: center;
}

ul.navbar-desktop ul.megamenu .menu-list li.second-level > a.item {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    position: relative;
    margin-bottom: 5px;
    padding-bottom: 10px;
    display: block;
}

ul.navbar-desktop ul.megamenu .menu-list li.second-level > a.item:before {
    content: "";
    width: 100%;
    max-width: 150px;
    height: 2px;
    background: #e87f26;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translatex(-50%);
    -webkit-transform: translatex(-50%);
}

ul.navbar-desktop ul.megamenu .menu-list li.second-level ul.third-level {
    list-style: none;
    padding: 0px;
}

ul.navbar-desktop ul.megamenu .menu-list li.second-level ul.third-level a {
    padding: 5px 0px !important;
    display: block;
    font-size: 15px;
}

ul.navbar-desktop .dropdown:hover ul.megamenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0px !important;!i;!;
}


.header-account ul.dropdown-menu {
    max-width: 250px;
    width: 100%;
    background: #efeee9;
    border: solid 3px #e87f26;
    border-radius: 30px;
}

.header-account ul.dropdown-menu > li > a {
    padding: 6px 25px !important;
    color: #000;
}

#header-cart ul.dropdown-menu {
    max-width: 250px;
    width: 100%;
    background: #efeee9;
    border: solid 3px #e87f26;
    border-radius: 30px;
}

#header-cart ul.dropdown-menu button.checkout.btn {
    color: #000;
}

.header-account ul.dropdown-menu .btn, #header-cart ul.dropdown-menu .btn {
    color: #000;
}

header .btn-header img {
    height: 25px;
}

.btn:focus, .btn.focus {
    box-shadow: none;
}

.header-account .btn, #header-cart .btn {
    color: #b6ad90;
}

.header-account ul.dropdown-menu {
    padding: 0px;
}

.header-account ul.dropdown-menu li a {
    padding: 5px 10px;
    display: block;
    text-decoration: none;
}

.nsearchinput-pl.well {
    border-radius: 20px;
    overflow: hidden;
    height: 70vh;
    overflow-y: auto;
}

.nsearchinput-pl.well li:not(:last-child) {
    border-bottom: solid 1px #ddd;
}

.nsearchinput-pl.well li a {
    display: flex;
    text-decoration: none;
    padding: 15px;
}

.hover-image img {
    width: auto;
    height: 100%;
    margin: 0px auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
    background-color: #fff;
}

.hover-image {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    background: transparent;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.hover-image img[src="/assets/na.gif"] {
    display: none;
}
.product-thumbnail:hover .hover-image {
    opacity: 1;
    visibility: visible;
}

.blog-thumb img.img-fluid {
    margin-bottom: 10px;
    border-radius: 30px;
    border: solid 2px #e87f26;
}

.blog-thumb h4 a {
    color: #023530;
    font-size: 18px;
    text-decoration: none;
    height: 44px;
    display: block;
    overflow: hidden;
}

.blog-thumb h4 {
    text-align: center;
    font-weight: bold;
}

.product-page-wrapper {
    padding-top: 20px;
}

.product-page-wrapper ol.breadcrumb {
    background: transparent;
    padding-left: 0;
}

.main-image {
    border: solid 1px #e87f26;
    margin-bottom: 30px !important;
    position: relative;
    padding: 15px;
    background: #fff;
    border-radius: 30px;
}

img.img-fluid.product-image-small {
    border: solid 1px #e87f26;
    border-radius: 20px;
}

.main-image .custom-badge img.no-rx-tag {
    left: 10px;
    top: 10px;
}

.main-image .custom-badge img.free-shipping-tag {
    left: 10px;
    bottom: 10px;
}

.wrapper-product-title h1 {
    color: #354f52;
    font-size: 30px;
    font-weight: bold;
}

a.brand-anchor {
    display: inline-block;
    margin: 0px 0px 10px;
    border: none;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}


.productprice.productpricetext {
    font-size: 24px;
    font-weight: bold;
    color: #37ab91;
}

.wrapper-pricing {
    margin-bottom: 10px;
}

.product-usp {
    display: flex;
}

.product-usp img {
    max-height: 80px;
    margin-right: 10px;
    display: block;
    margin: 10px 10px 10px 0px;
}

div#multiitemadd table.table-child-list {
    border: none;
}

div#multiitemadd table.table-child-list td {
    border: none;
    padding: 6px 0px;
    vertical-align: middle;
}

.qty-group {
    position: relative;
    max-width: 120px;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

.qty-group a:nth-of-type(1) {
    position: absolute;
    left: 0px;
    background: #85a98d;
    height: 40px;
    line-height: 40px;
    color: #fff !important;
    width: 30px;
    top: 0px;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.qty-group a:nth-of-type(2) {
    position: absolute;
    right: 0px;
    background: #85a98d;
    height: 40px;
    line-height: 40px;
    color: #fff !important;
    width: 30px;
    top: 0px;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.qty-group input.child-qty {
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: solid 2px #85a98d;
}

div#multiitemadd table.table-child-list td.childname {
    font-size: 18px;
    font-weight: bold;
    padding-right: 10px;
}

div#multiitemadd table.table-child-list td.childprice {
    text-align: center;
    font-size: 16px;
    color: #36aa90;
    font-weight: bold;
}
.child-detail {
    display: flex;
    width: 100%;
    justify-content: space-between;
    color: #354f52;
    background: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    border: solid 1px #e87f26;
}
form.variation-wrapper {
    padding: 20px;
    border: solid 1px #e87f26;
    background: #f2f3f2;
    border-radius: 20px;
    max-width: 550px;
}

a#nCustom-add {
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
}

.thePriceWrapper {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #354f52;
}

td.child-qty-form a.btn.btn-info {
    width: auto;
    max-width: 120px;
    background: #84a98c;
    height: 40px;
    line-height: 40px;
    padding: 0px;
    border-color: #84a98c;
    border-radius: 20px;
}

div#multiitemadd table.table-child-list td.child-qty-form {
    width: 150px;
}

.cta-area {
    margin-bottom: 10px;
}

div#multiitemadd table.table-child-list td.childname.out-of-stock {
    text-decoration: line-through;
    font-style: italic;
    opacity: 0.5;
}

.tabbable li.nav-item a.nav-link {
    font-size: 18px;
    padding: 12px 25px;
    background: #fff;
    border: solid 1px #e87f26;
    border-radius: 10px 10px 0px 0px;
}

.tabbable .tab-content {
    padding: 15px;
    background: #fff;
    border: solid 1px #e87f26;
    border-radius: 0px 0px 10px 10px;
    overflow: hidden;
}

.tabbable .nav-tabs {
    border: none;
}

aside#left-sidebar {
    margin-top: 15px;
}

aside#left-sidebar + .col-12.col-md-9 {
    margin-top: 15px;
}

aside#left-sidebar .card .card-header {
    position: relative;
    cursor: pointer;
}

aside#left-sidebar .card .card-header:after {
    content: "";
    width: 15px;
    height: 2px;
    background: #354f52;
    position: absolute;
    right: 15px;
    top: 22px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

aside#left-sidebar .card .card-header:before {
    content: "";
    width: 15px;
    height: 2px;
    background: #354f52;
    position: absolute;
    right: 15px;
    top: 22px;
    transform-origin: center;
    transform: rotate(90deg);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

aside#left-sidebar .card .card-header.open:before {
    width: 0px;
}

aside#left-sidebar .card > .list-group {
    display: none;
}

#n_product .section.col-12.col-lg-7 form.buying-options {
    padding: 20px;
    border: solid 1px #ddd;
    background: #f2f3f2;
    border-radius: 20px;
    max-width: 500px;
}

#n_product form.buying-options ul.list-inline.pro-pay-icon.d-flex.flex-wrap.justify-content-center {
    margin: 10px 0px 0px;
}

aside#left-sidebar .card {
    border-radius: 30px;
    overflow: hidden;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #ffffff;
  cursor: not-allowed;
}

.row.contact-form .form-control {
    border-radius: 20px;
}

.contact-form .form-group {
    color: #000;
}

.contact-form .form-group input.btn.btn-lg.btn-default {
    border-radius: 20px;
    background: #3a5c58;
    color: #fff;
    border-color: #3a5c58;
}

a.btn, .btn-success, .btn-outline-secondary, .btn-primary {
    border-radius: 20px;
}

button.btn.btn-default.viewcart {
    border-radius: 20px;
}

form#login, form#register {
    border-radius: 30px;
    overflow: hidden;
}
.card {
    border-radius: 30px;
    overflow: hidden;
}
section.slider-section {
    position: relative;
}

section.slider-section .nivo-controlNav {
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 9;
}

section.slider-section .nivo-controlNav a.nivo-control {
    font-size: 0;
    width: 30px;
    height: 7px;
    display: inline-block;
    background: transparent;
    margin: 0px 5px;
    border: solid 2px #fff;
}

section.slider-section .nivo-controlNav a.nivo-control.active {
    background: #fff;
}
.call-to-action{
    margin-top: 20px;
}
.call-to-action .btn {
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 30px;
}

.blog-slider + .lSAction > a, .product-slider + .lSAction > a {
    text-align: center;
    opacity: 1;
    border: solid 1px #ddd;
    line-height: 32px;
    background: #354f52;
    color: #fff !important;
    border-radius: 20px;
    font-size: 16px;
}

.nsearchinput-pl.well li img {
    width: 80px;
    height: auto;
}
a.bran-img {
    border: solid 2px #e87f26;
    margin: 0px;
    display: block;
    margin-bottom: 20px;
    background: #fff;
}

a.bran-img img {
    max-height: 100px;
    max-width: 100%;
}

.child-detail span.price {
    width: 70%;
}
.tabbable li.nav-item a.nav-link.active {
    background: #539078;
    color: #fff;
}

.tabbable li.nav-item a.nav-link {
    margin-right: 5px;
}
.tabbable .tab-content .card {
    border-radius: 0;
}
.breadcrumb {
    background: transparent;
    padding: 0px;
}

.scroller {
  max-width: 100%;
}

.scroller__inner {
/*  padding-block: 1rem;*/
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  /*-webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);*/
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

section.brand-section .scroller__inner a {
    display: block;
}

section.brand-section .scroller__inner a img {
    width: 200px;
}

.top-header .scroller__inner a {
    padding: 5px 30px 5px 5px;
}

.top-header .scroller__inner a img {
    max-height: 28px;
}

.cart-table-item {
    display: flex;
}

.cart-table-item .item-img {
    max-width: 150px;
    padding-right: 15px;
}

.custom-container{
    max-width: 1500px;
    width: 100%;
    padding: 0px 15px;
    margin: 0px auto;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

@media only screen and (min-width:768px){
    .footer-col .toggle-list {
        display: block !important;
    }
}
@media only screen and (max-width:767px){
	.brand-section .brand-col {
	    width: 33.3%;
	    padding: 0px 15px;
	    margin-bottom: 20px;
	}
	section.brand-section {
	    padding: 30px 0px 0px;
	}

	.block-grid {
	    gap: 15px;
	    margin-bottom: 20px;
	}

	.homepage-usp {
	    flex-direction: row;
	    row-gap: 15px;
	    column-gap: 20px;
	}

	.homepage-usp .usp {
	    width: calc(50% - 10px);
	}

	.top-header ul.usp-header li img {
	    max-height: 30px;
	}
	.footer--newsletter-section .newsletter {
	    flex-direction: column;
	}
	footer.wrapper-footer {
	    position: relative;
	    background: #fff;
	    overflow: hidden;
	    padding-top: 20px;
	    padding-left: 20px;
	    z-index: 1;
	    padding-right: 20px;
	    padding-bottom: 20px;
	}
	footer.wrapper-footer:before {
    	content: "";
	    width: 100%;
	    height: 100%;
	    background: #c8e4b2;
	    position: absolute;
	    left: -100%;
	    top: 0px;
	    transform: skewX(220deg);
	    z-index: -1;
	}
	footer.wrapper-footer:after {
	    content: "";
	    width: 100%;
	    height: 100%;
	    background: #c8e4b2;
	    position: absolute;
	    right: -100%;
	    top: 0px;
	    transform: skewX(220deg);
	    z-index: -1;
	}
    .brand-slider + .lSAction a.lSPrev, .brand-slider + .lSAction a.lSNext {
        position: static;
        text-align: center;
        font-size: 16px;
    }

    .brand-slider + .lSAction {
        display: flex;
        justify-content: center;
    }

    header .logo {
        max-width: 100px;
    }

    .col-6.col-sm-6.col-lg-4.wrapper-logo.text-left {
        text-align: center !important;
    }

    section.middle-header {
        padding: 15px 0px !important;
    }

    header .btn-header {
        font-size: 14px;
    }

    h2.section-heading {
        font-size: 24px;
    }

    .product-usp.clearfix {
        padding: 0px 15px;
    }

    .product-usp img {
        max-height: 50px;
    }
    .product-usp.clearfix {
        padding: 0px 15px;
    }

    .product-usp img {
        max-height: 50px;
    }

    .successaddmessage .header {
        border: none;
        text-align: center;
        padding: 0px;
        font-size: 16px;
        justify-content: center;
    }

    .successaddmessage {
        max-width: 350px;
        width: 100%;
    }

    .npopup {
        width: 100% !important;
    }

    .successaddmessage .body {
        text-align: center;
    }

    .successaddmessage .body .description {
        float: none;
        display: block;
        width: 100%;
    }

    .successaddmessage button.btn {
        border-radius: 20px;
    }
    .child-detail {
        font-size: 13px;
    }

    .qty-group {
        max-width: 90px;
    }

    div#multiitemadd table.table-child-list td.child-qty-form {
        width: 90px;
    }
    .qty-group a:nth-of-type(1),
    .qty-group a:nth-of-type(2){
        width: 25px;
    }
    .footer-col {
        text-align: left;
    }

    .footer-col .toggle-list {
        display: none;
    }

    .footer-col h4.nav-link {
        position: relative;
        padding-right: 20px;
    }

    .footer-col h4.nav-link:after {
        content: "\f078";
        position: absolute;
        right: 15px;
        font-family: 'Font Awesome 5 Free';
        top: 1px;
    }
    .call-to-action .btn {
        font-size: 16px;
        padding: 10px 20px;
        border-radius: 30px;
    }
    th.cartTable--heading.cartTable--heading-item {
        width: 60%;
    }

    .cart-table-item {
        flex-wrap: wrap;
    }

    .cart-table-item .item-img {
        padding: 0px;
        max-width: 80px;
        margin-bottom: 5px;
    }
}