@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
:root {
    --primary: #008654;
    --secondary: #34b7df;
    --tertiary: #00311F;
    /* --quaternary: #980D0C; */
    --light-gray: #f7f7f7;
    --gray: #EEEEEE;
    --dark: #333;
    --dark-gray: #777777;
    --dark: #000000;
    --white: #FFFFFF;
    --text-color: #333;
    --rounded: .5rem;
}


/* ---- preset style START ---- */

html {
    margin-top: 0 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--placeholder);
    opacity: 1
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: var(--placeholder);
    opacity: 1
}

.form-control::placeholder {
    color: var(--placeholder);
}

html,
body {
    -webkit-text-size-adjust: none;
    margin: 0px;
    padding: 0px;
    /*height: 100%;*/
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
}

.rounded {
    border-radius: var(--rounded) !important;
    overflow: hidden;
}

.rounded-2x {
    border-radius: 1.3rem !important;
    overflow: hidden;
}

img {
    border: none;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
a:link,
a:visited,
a:focus,
input:focus,
textarea:focus {
    outline: none;
    text-decoration: none;
}

select:focus {
    outline: none;
}

textarea {
    resize: none;
}

form,
input,
select,
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

iframe {
    display: block;
}

p+p {
    margin-top: 1.5em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time {
    display: block;
    margin: 0;
    padding: 0;
}

 ::selection {
    background: #1C1C1C;
    color: #FFFFFF;
}

 ::-moz-selection {
    background: #1C1C1C;
    color: #FFFFFF;
}

ul {
    list-style: none;
}

li {
    padding: 0;
    margin: 0;
}

label {
    font-weight: normal !important;
}

.fa-ul>li:not(:last-child) {
    margin-bottom: 15px;
}

.lead {
    font-size: 1.3em;
    line-height: 1.5em;
    color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
}

h1 {
    font-size: 2.25em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.25em;
}

h4 {
    font-size: 1.50em;
}

h5 {
    font-size: 1.25em;
}

h6 {
    font-size: 1em;
    line-height:1.6;
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 2.0em;
    }
    h2 {
        font-size: 1.770em;
    }
    h3 {
        font-size: 1.540em;
    }
    h4 {
        font-size: 1.310em;
    }
    h5 {
        font-size: 1.1em;
    }
    h6 {
        font-size: 1em;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 1.750em;
    }
    h2 {
        font-size: 1.570em;
    }
    h3 {
        font-size: 1.390em;
    }
    h4 {
        font-size: 1.210em;
    }
    h5 {
        font-size: 1.075em;
    }
    h6 {
        font-size: 1em;
    }
}

a {
    color: var(--primary);
}

a:hover {
    text-decoration: underline;
    color: var(--primary);
}

@media only screen and (min-width: 1601px) {
    section>.minHeight {
        min-height: 250px;
    }
}

.underlined {
    padding-bottom: .75em;
    margin-bottom: 1em;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.underlined:after {
    content: "";
    width: 150px;
    height: 5px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background-color: var(--danger);
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-size: 0.8em;
    display: block;
    line-height: 1.5em;
    font-family: "RobotoLight";
}

p:last-child {
    margin-bottom: 0;
}

.stretched {
    letter-spacing: 1px;
}

.text-default:focus,
.text-default:active,
.text-default {
    color: var(--dark) !important;
}

.text-primary:focus,
.text-primary:active,
.text-primary {
    color: var(--primary) !important;
}

.text-secondary:focus,
.text-secondary:active,
.text-secondary {
    color: var(--secondary) !important;
}

.text-tertiary:focus,
.text-tertiary:active,
.text-tertiary {
    color: var(--tertiary) !important;
}

.text-quaternary:focus,
.text-quaternary:active,
.text-quaternary {
    color: var(--quaternary) !important;
}

.text-white:focus,
.text-white:active,
.text-white {
    color: var(--white);
}

.text-danger:focus,
.text-danger:active,
.text-danger {
    color: var(--danger) !important;
}

.tooltip,
.popover {
    font-family: "BentonSansBook";
}

.tooltip-inner {
    font-size: 0.875em;
}

.bgGradient::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(60%, rgba(153, 153, 153, 0)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(153, 153, 153, 0) 60%, rgba(0, 0, 0, 0.9) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#333333', GradientType=0);
}

.hoverIcon,
.bgOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

.bg-tertiary {
    background: var(--tertiary) !important;
}

.bg-quaternary {
    background: var(--quaternary) !important;
}

.bg-white {
    background: var(--white) !important;
}

.bg-dark {
    background: var(--primary) !important;
}

.bg-gray {
    background: var(--gray) !important;
}

.bg-lgray {
    background: var(--light-gray) !important;
}

.bg-darkGray {
    background: #46525A !important;
}

.bg-opacity {
    background: rgba(245, 245, 245, .2);
}

.grow {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.grow:hover {
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff;
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-secondary {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-secondary:hover {
    background: #FFDB60 !important;
    border-color: #FFDB60 !important;
    color: var(--dark);
}

.btn-tertiary {
    background: var(--tertiary) !important;
    border-color: var(--tertiary) !important;
    color: #fff;
}

.btn-tertiary:hover {
    background: var(--quaternary) !important;
    border-color: var(--quaternary) !important;
    color: #fff;
}

.btn-quaternary {
    background: var(--quaternary) !important;
    border-color: var(--quaternary) !important;
    color: #fff;
}

.btn-light {
    background: var(--light-gray);
    border-color: var(--light-gray);
}

.btn-light:hover {
    background: transparent !important;
    border-color: var(--light-gray) !important;
    color: var(--light-gray) !important;
}


/* ---- preset style END ---- */

body {
    font-size: 14px;
    font-family: 'Open Sans';
    line-height: 150%;
    letter-spacing: .5px;
    overflow-x: hidden;
    padding-top: 0;
    color: var(--text-color);
    background: #fff;
}

.container-max {
    width: 90%;
    max-width: 1600px;
    margin: auto;
}

.section {
    padding: 2rem 0;
}

header {
    position: relative;
    z-index: 2;
    background: #fff;
}

.prodImg {
    max-height: 120px;
}

.prodImg img {
    object-fit: cover;
    height: 100%;
    max-height: 100px;
}

.compLogos {
    margin: 0;
    padding: 0;
}

.compLogos li {
    margin-bottom: 1rem;
}

.compLogos li:last-child {
    margin-bottom: 0;
}

.compLogos img {
    max-width: 70px;
}

#accordionFilter .accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
    color: var(--dark);
}

#accordionFilter .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008552'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.prodTileBox {
    width: 100%;
    margin: auto;
    /* background: #e2e2e2; */
    /* border: solid 1px #e2e2e2; */
    padding: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

.sNo {
    width: 5%;
}

.storeNme {
    width: 10%;
}

.variations {
    width: 20%;
}

.prodDet {
    width: 25%;
}

.prodCurrency {
    width: 20%;
}

.prodPrice {
    width: 20%;
}

.detailsList {
    display: flex;
    flex-wrap: wrap;
}

.detailsList li:nth-child(odd) {
    width: 110px;
    color: #000000;
}

.detailsList li:nth-child(even) {
    width: calc(100% - 110px);
    color: #525252;
}

.prodDesc h5,
.prodDesc p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.prodBtns {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 1rem -1.75rem 0;
}

.prodBtns a {
    width: calc(100% + 3.5rem);
    padding: 1rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

@media (max-width:768px) {
    .prodImg {
        width: 100%;
        text-align: center;
    }
    .prodImg img {
        margin: auto;
    }
    .prodDesc {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    .compLogos {
        display: flex;
        flex-wrap: wrap;
        margin: 1rem auto 0;
    }
    .compLogos li {
        margin-bottom: 1rem;
        margin-right: 1rem;
    }
}


/* new updates */

.navbar-brand {
    max-width: 175px;
}

.homeBanner {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.searchBx {
    border-radius: 2rem;
}

.searchBx .form-control {
    border-radius: 2rem;
    font-size: 14px;
    padding: 0 2rem;
}

.searchBx .form-control::placeholder {
    color: var(--dark-gray);
}

.brandLogos {
    /*filter: grayscale(1) opacity(0.3);*/
    max-width: 120px;
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.catBx {
    /*border: solid 1px #e2e2e2;*/
    background-color: #E6F3EE;
    margin: 1rem;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    border-radius: 4px;
    font-weight: 500;
    padding: 0 5px;
    background: var(--primary);
}

.catBx:hover {
    background: #006B43;
}

.catBx img {
    max-height: 50px;
    max-width: 50px;
}

.catBx a {
    display: block;
    width: 100%;
    text-align: center;
   color: var(--white);
}

.catBx a:hover {
    text-decoration: none;
    color: var(--white);
}

.shopLogo {
    max-width: 60px;
}

.prodBox .card-body {
    padding: 1.75rem 1.75rem 0;
}

.footerBtm {
    padding: 3rem 0;
    border-bottom: 1px solid #365D4E;
}

.footBx {
    display: flex;
    align-items: center;
}

.footBx img {
    max-width: 50px;
}

.footLogo {
    max-width: 150px;
}

.footCopy {
    font-size: .8rem;
}

.footCopy a {
    color: var(--light-gray);
    border-right: solid 1px var(--light-gray);
    padding-right: 1rem;
    margin-right: 1rem;
}

.footCopy a:last-child {
    border: 0;
    padding-right: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .footLogo {
        margin: 0 auto 1rem;
        text-align: center;
    }
    .footCopy {
        text-align: center;
    }
    .footBx {
        margin-bottom: 1rem;
    }
}

.table-pricing {
    background: #fff;
    padding: 6px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.27);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.27);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.27);
}


    .table-pricing td {
        vertical-align: middle;
        background: #fbfff6;
    }

    .table-pricing tr:nth-child(odd) td {
        background-color: #eeffdb;
    }

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    font-size: 1rem;
    color: #333;
}

.prodDesc {
    width:100%;
}

.shopLists h5 {
    font-size: small;
    font-weight: bold;
    color: var(--primary);
}

.prodDesc a {
    font-size: 0.875em;
    font-weight:500;
}

.product-details hr {
    margin: 0.5rem 0;
}

.text-right {
    text-align: right !important;
}

.fw-600 {
    font-weight:600 !important;
}

.top-header .select2-container--open .select2-dropdown--below {
    width: max-content !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary) !important;
}

a.page-link.text-white {
    background: #fff !important;
    color: #008654 !important;
}

.active a.page-link.text-white {
    color: #fff !important;
    background: #008654 !important;
}

