@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
:root{
    --light-text-color:#BBBBBB;
    --heading-color:#000;
    --black:#000; 
    --green:#089162;
}
html {
  scroll-behavior: smooth;
}
html, body, *{
    font-family: 'Lato', sans-serif;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    
    font-family: 'Lato', sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong{font-weight: bold}
/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: sans-serif;
  color: #111433;
  background-color: #ffffff;
}

a {
    font-size: 16px;
    color: #000000;
  text-decoration: none;
}

img {
  max-width: 100%;
}

input {
  font-family: sans-serif;
  font-size: 1.6rem;
}

/* remove “X” from search input field */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* -------------------------------- 

Main Components 

-------------------------------- */

/* -------------------------------- 
Dropdown Menu
-------------------------------- */

.chs-dropdown-wrapper {
  display: inline-block;
  position: relative;
  height: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.chs-dropdown-trigger {
  display: block;
  position: relative;
  padding: 0 36px 0 20px;
  line-height: 40px;
}
.chs-dropdown-trigger:hover {
  background-color: #111433;
  color: #fff;

}
.chs-dropdown-trigger::before, .chs-dropdown-trigger::after {
  /* this is the arrow inside the dropdown trigger*/
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 9px;
  background: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: width 0.3s, -webkit-transform 0.3s;
  -moz-transition: width 0.3s, -moz-transform 0.3s;
  transition: width 0.3s, transform 0.3s;
    
}
.chs-dropdown-trigger:hover::before, .chs-dropdown-trigger:hover::after {
    background: #fff;
}
.chs-dropdown-trigger::before {
  right: 22px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
    
}
.chs-dropdown-trigger::after {
  right: 17px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
   
}
@media only screen and (min-width: 1024px) {
  .chs-dropdown-trigger {
    font-size: 1.5rem;
  }
  .chs-dropdown-trigger.dropdown-is-active {
    background-color: #01B9A7;
      color: #fff;
  }
  .no-touch .chs-dropdown-trigger.dropdown-is-active:hover {
        opacity: 0.65;
  }
  .chs-dropdown-trigger.dropdown-is-active::before, .chs-dropdown-trigger.dropdown-is-active::after {
    /* transform the arrow into a 'X' */
    width: 14px;
      background-color: #fff;
  }
  .chs-dropdown-trigger.dropdown-is-active::before {
    /* transform the arrow into a 'X' */
    -webkit-transform: translateX(5px) rotate(-45deg);
    -moz-transform: translateX(5px) rotate(-45deg);
    -ms-transform: translateX(5px) rotate(-45deg);
    -o-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }
  .chs-dropdown-trigger.dropdown-is-active::after {
    /* transform the arrow into a 'X' */
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.chs-dropdown h2,
.chs-dropdown-content a,
.chs-dropdown-content ul a {
  height: 50px;
  line-height: 50px;
}
@media only screen and (min-width: 768px) {
  .chs-dropdown h2,
  .chs-dropdown-content a,
  .chs-dropdown-content ul a {
    height: 60px;
    line-height: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .chs-dropdown h2,
  .chs-dropdown-content a,
  .chs-dropdown-content ul a {
    height: 50px;
    line-height: 50px;
  }
}

.chs-dropdown h2,
.chs-dropdown-content a,
.chs-dropdown-content ul a,
.chs-dropdown-content .chs-divider {
  padding: 0 20px;
}

.chs-dropdown {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111433;
  color: #ffffff;
  visibility: hidden;
  /* Force Hardware Acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
  -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0.5s;
  transition: transform 0.5s 0s, visibility 0s 0.5s;
}
.chs-dropdown h2 {
  /* dropdown title - mobile version only */
position: relative;
    z-index: 1;
    color: #fff;
    background-color: #111433;
    border-bottom: 1px solid #242643;
    font-size: 18px;
}
.chs-dropdown .chs-close {
  /* 'X' close icon - mobile version only */
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}
.chs-dropdown .chs-close::after, .chs-dropdown .chs-close::before {
  /* this is the 'X' icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  height: 20px;
  width: 2px;
  background-color: #ffffff;
}
.chs-dropdown .chs-close::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.chs-dropdown .chs-close::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.chs-dropdown.dropdown-is-active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0s;
  transition: transform 0.5s 0s, visibility 0s 0s;
}
@media only screen and (min-width: 768px) {
  .chs-dropdown .chs-close {
    top: 5px;
  }
}
@media only screen and (min-width: 1024px) {
  .chs-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    /* reset style*/
    height: auto;
    width: auto;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    background-color: #ffffff;
    color: #111433;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
  }
  .open-to-left .chs-dropdown {
    /* use the .open-to-left class if you want to open the dropdown on the left */
    right: 0;
    left: auto;
  }
  .chs-dropdown h2, .chs-dropdown .chs-close {
    /* on desktop - hide title and 'X' */
    display: none;
  }
  .chs-dropdown.dropdown-is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0.3s 0s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
  }
}

.chs-dropdown-content, .chs-dropdown-content ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
  padding-top: 50px;
}
.chs-dropdown-content a, .chs-dropdown-content ul a {
  display: block;
  color: #ffffff;
  /* truncate text with ellipsis if too long */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top-width: 1px;
  border-color: #242643;
  border-style: solid;
}
.chs-dropdown-content li:first-of-type > a, .chs-dropdown-content ul li:first-of-type > a {
  border-top-width: 0;
}
.chs-dropdown-content li:last-of-type > a, .chs-dropdown-content ul li:last-of-type > a {
  border-bottom-width: 1px;
}
.chs-dropdown-content .chs-divider, .chs-dropdown-content ul .chs-divider {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #0b0e23;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #585a70;
  text-transform: uppercase;
}
.chs-dropdown-content .chs-divider + li > a, .chs-dropdown-content ul .chs-divider + li > a {
  border-top-width: 0;
}
.chs-dropdown-content a, .chs-dropdown-content .chs-search, .chs-dropdown-content .chs-divider, .chs-dropdown-content ul a, .chs-dropdown-content ul .chs-search, .chs-dropdown-content ul .chs-divider {
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}
.chs-dropdown-content.is-hidden, .chs-dropdown-content ul.is-hidden {
  /* push the secondary dropdown items to the right */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.chs-dropdown-content.is-hidden > li > a, .chs-dropdown-content.is-hidden > li > .chs-search, .chs-dropdown-content.is-hidden > .chs-divider, .chs-dropdown-content.move-out > li > a, .chs-dropdown-content.move-out > li > .chs-search, .chs-dropdown-content.move-out > .chs-divider, .chs-dropdown-content ul.is-hidden > li > a, .chs-dropdown-content ul.is-hidden > li > .chs-search, .chs-dropdown-content ul.is-hidden > .chs-divider, .chs-dropdown-content ul.move-out > li > a, .chs-dropdown-content ul.move-out > li > .chs-search, .chs-dropdown-content ul.move-out > .chs-divider {
  /* lower down the dropdown items opacity - when secondary dropdown slides in or for dropdown items hidden on the right */
  opacity: 0;
}
.chs-dropdown-content.move-out > li > a, .chs-dropdown-content.move-out > li > .chs-search, .chs-dropdown-content.move-out > .chs-divider, .chs-dropdown-content ul.move-out > li > a, .chs-dropdown-content ul.move-out > li > .chs-search, .chs-dropdown-content ul.move-out > .chs-divider {
  /* push the dropdown items to the left when secondary dropdown slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.dropdown-is-active .chs-dropdown-content, .dropdown-is-active .chs-dropdown-content ul {
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 768px) {
  .chs-dropdown-content, .chs-dropdown-content ul {
    padding-top: 60px;
  }
  .chs-dropdown-content a, .chs-dropdown-content ul a {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  .chs-dropdown-content, .chs-dropdown-content ul {
    padding-top: 0;
    overflow: visible;
  }
  .chs-dropdown-content a, .chs-dropdown-content ul a {
    color: #111433;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    border-color: #ebebeb;
  }
  .chs-dropdown-content .chs-divider, .chs-dropdown-content ul .chs-divider {
    background-color: transparent;
    color: #b3b3b3;
    border-top: 1px solid #ebebeb;
  }
  .chs-dropdown-content .chs-divider + li > a, .chs-dropdown-content ul .chs-divider + li > a {
    border-top-width: 1px;
  }
  .chs-dropdown-content.is-hidden > li > a, .chs-dropdown-content.is-hidden > li > .chs-search, .chs-dropdown-content.is-hidden > .chs-divider, .chs-dropdown-content.move-out > li > a, .chs-dropdown-content.move-out > li > .chs-search, .chs-dropdown-content.move-out > .chs-divider, .chs-dropdown-content ul.is-hidden > li > a, .chs-dropdown-content ul.is-hidden > li > .chs-search, .chs-dropdown-content ul.is-hidden > .chs-divider, .chs-dropdown-content ul.move-out > li > a, .chs-dropdown-content ul.move-out > li > .chs-search, .chs-dropdown-content ul.move-out > .chs-divider {
    /* reset mobile style */
    opacity: 1;
  }
}

.chs-dropdown-content .see-all a {
  /* different style for the See all links */
   
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.chs-dropdown-content .chs-dropdown-gallery .chs-dropdown-item, .chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item {
  /* items with picture (or icon) and title */
  height: 80px;
  line-height: 80px;
}
.chs-dropdown-content .chs-dropdown-gallery .chs-dropdown-item h3, .chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item h3 {
  /* truncate text with ellipsis if too long */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chs-dropdown-content .chs-dropdown-gallery .chs-dropdown-item {
  padding-left: 90px;
}
.chs-dropdown-content .chs-dropdown-gallery img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}
.chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item {
  padding-left: 75px;
  position: relative;
}
.chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item p {
  color: #111433;
  font-size: 1.3rem;
  /* hide description on small devices */
  display: none;
}
.chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item::before {
  /* item icon */
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}

@media only screen and (min-width: 1024px) {
  .chs-dropdown-content {
    /* reset mobile style */
    position: static;
    height: auto;
    width: 280px;
  }
  .chs-dropdown-content > li:last-of-type a {
    border-bottom: none;
  }
  .no-touch .chs-dropdown-content > li:not(.has-children) a:hover {
    color: #01B9A7;
  }
  .chs-dropdown-content.move-out > li > a, .chs-dropdown-content.move-out > li > .chs-search, .chs-dropdown-content.move-out > .chs-divider {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .chs-dropdown-content .chs-secondary-dropdown, .chs-dropdown-content .chs-dropdown-gallery, .chs-dropdown-content .chs-dropdown-icons {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    left: 100%;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  }
  .chs-dropdown-content .chs-secondary-dropdown::after, .chs-dropdown-content .chs-dropdown-gallery::after, .chs-dropdown-content .chs-dropdown-icons::after {
    clear: both;
    content: "";
    display: table;
  }
  .open-to-left .chs-dropdown-content .chs-secondary-dropdown, .open-to-left .chs-dropdown-content .chs-dropdown-gallery, .open-to-left .chs-dropdown-content .chs-dropdown-icons {
    /* use the .open-to-left class if you want to open the dropdown on the left */
    left: auto;
    right: 100%;
  }
  .chs-dropdown-content .chs-secondary-dropdown.is-hidden, .chs-dropdown-content .chs-dropdown-gallery.is-hidden, .chs-dropdown-content .chs-dropdown-icons.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .chs-dropdown-content .chs-secondary-dropdown.fade-in, .chs-dropdown-content .chs-dropdown-gallery.fade-in, .chs-dropdown-content .chs-dropdown-icons.fade-in {
    /* animate secondary dropdown items when hovering over of of the .chs-dropdown-content list items */
    -webkit-animation: chs-fade-in 0.2s;
    -moz-animation: chs-fade-in 0.2s;
    animation: chs-fade-in 0.2s;
  }
  .chs-dropdown-content .chs-secondary-dropdown.fade-out, .chs-dropdown-content .chs-dropdown-gallery.fade-out, .chs-dropdown-content .chs-dropdown-icons.fade-out {
    /* animate secondary dropdown items when hovering over of of the .chs-dropdown-content list items */
    -webkit-animation: chs-fade-out 0.2s;
    -moz-animation: chs-fade-out 0.2s;
    animation: chs-fade-out 0.2s;
  }
  .chs-dropdown-content .chs-secondary-dropdown > .go-back, .chs-dropdown-content .chs-dropdown-gallery > .go-back, .chs-dropdown-content .chs-dropdown-icons > .go-back {
    display: none;
  }
  .chs-dropdown-content .chs-secondary-dropdown > .see-all, .chs-dropdown-content .chs-dropdown-gallery > .see-all, .chs-dropdown-content .chs-dropdown-icons > .see-all {
    position: absolute;
    bottom: 20px;
    height: 45px;
    text-align: center;
  }
  .chs-dropdown-content .chs-secondary-dropdown > .see-all a, .chs-dropdown-content .chs-dropdown-gallery > .see-all a, .chs-dropdown-content .chs-dropdown-icons > .see-all a {
    margin: 0;
    height: 100%;
    line-height: 45px;
    background: #ebebeb;
    pointer-events: auto;
    -webkit-transition: color 0.2s, background-color 0.2s;
    -moz-transition: color 0.2s, background-color 0.2s;
    transition: color 0.2s, background-color 0.2s;
  }
  .no-touch .chs-dropdown-content .chs-secondary-dropdown > .see-all a:hover, .no-touch .chs-dropdown-content .chs-dropdown-gallery > .see-all a:hover, .no-touch .chs-dropdown-content .chs-dropdown-icons > .see-all a:hover {
    color: #ffffff;
    background-color: #111433;
  }
  .chs-dropdown-content .chs-secondary-dropdown .chs-dropdown-item, .chs-dropdown-content .chs-secondary-dropdown a, .chs-dropdown-content .chs-dropdown-gallery .chs-dropdown-item, .chs-dropdown-content .chs-dropdown-gallery a, .chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item, .chs-dropdown-content .chs-dropdown-icons a {
    border: none;
  }
  .chs-dropdown-content .chs-dropdown-gallery, .chs-dropdown-content .chs-dropdown-icons {
    padding: 20px 30px 100px;
  }
  .chs-dropdown-content .chs-dropdown-gallery > .see-all, .chs-dropdown-content .chs-dropdown-icons > .see-all {
    width: calc(100% - 60px);
  }
  .chs-dropdown-content .chs-dropdown-icons > li, .chs-dropdown-content .chs-secondary-dropdown > li {
    width: 50%;
    float: left;
  }
  .chs-dropdown-content .chs-secondary-dropdown {
    overflow: hidden;
    width: 550px;
    padding-bottom: 65px;
  }
  .chs-dropdown-content .chs-secondary-dropdown::before {
    /* this is the separation line in the middle of the .chs-secondary-dropdown element */
    position: absolute;
    content: '';
    top: 290px;
    left: 15px;
    height: 1px;
    width: 520px;
    background-color: #ebebeb;
  }
  .chs-dropdown-content .chs-secondary-dropdown > li > a {
    color: #01B9A7;
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 30px;
    height: 30px;
    pointer-events: none;
  }
  .chs-dropdown-content .chs-secondary-dropdown > li > a::after, .chs-dropdown-content .chs-secondary-dropdown > li > a::before {
    /* hide the arrow */
    display: none;
  }
  .chs-dropdown-content .chs-secondary-dropdown.move-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .chs-dropdown-content .chs-secondary-dropdown > li {
    margin: 20px 0;
    border-right-width: 1px;
    border-color: #ebebeb;
    border-style: solid;
    padding: 0 30px;
    height: 250px;
  }
  .chs-dropdown-content .chs-secondary-dropdown > li:nth-of-type(2n) {
    border-right-width: 0;
  }
  .chs-dropdown-content .chs-secondary-dropdown > li > ul {
    /* reset mobile style */
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
    position: relative;
    height: auto;
  }
  .chs-dropdown-content .chs-secondary-dropdown > li > ul > .go-back {
    display: none;
  }
  .chs-dropdown-content .chs-secondary-dropdown a {
    line-height: 25px;
    height: 25px;
    font-size: 1.3rem;
    padding-left: 0;
  }
  .no-touch .chs-dropdown-content .chs-secondary-dropdown a:hover {
    color: #01B9A7;
  }
  .chs-dropdown-content .chs-secondary-dropdown ul {
    padding-bottom: 25px;
    overflow: hidden;
    height: auto;
  }
  .chs-dropdown-content .chs-secondary-dropdown .go-back a {
    padding-left: 20px;
    color: transparent;
  }
  .no-touch .chs-dropdown-content .chs-secondary-dropdown .go-back a:hover {
    color: transparent;
  }
  .chs-dropdown-content .chs-secondary-dropdown .go-back a::before, .chs-dropdown-content .chs-secondary-dropdown .go-back a::after {
    left: 0;
  }
  .chs-dropdown-content .chs-secondary-dropdown .see-all {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .chs-dropdown-content .chs-dropdown-gallery {
    width: 600px;
    padding-bottom: 100px;
  }
  .chs-dropdown-content .chs-dropdown-gallery > li {
    width: 48%;
    float: left;
    margin-right: 4%;
  }
  .chs-dropdown-content .chs-dropdown-gallery > li:nth-of-type(2n) {
    margin-right: 0;
  }
  .chs-dropdown-content .chs-dropdown-gallery .chs-dropdown-item {
    padding: 0;
    height: auto;
    line-height: normal;
    color: #01B9A7;
    margin-bottom: 2em;
  }
  .chs-dropdown-content .chs-dropdown-gallery > li:nth-last-of-type(2) a,
  .chs-dropdown-content .chs-dropdown-gallery > li:last-of-type a {
    margin-bottom: 0;
  }
  .chs-dropdown-content .chs-dropdown-gallery img {
    position: static;
    height: auto;
    width: 100%;
    margin: 0 0 0.6em;
  }
  .chs-dropdown-content .chs-dropdown-icons {
    width: 600px;
  }
  .chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item {
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
  }
  .chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item:hover {
    background: #ebebeb;
  }
  .chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item h3 {
    color: #01B9A7;
    font-weight: bold;
  }
  .chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item p {
    display: block;
    font-size: 1.2rem;
  }
  .chs-dropdown-content .chs-dropdown-icons .chs-dropdown-item::before {
    left: 25px;
  }
  .chs-dropdown-content > .has-children > ul {
    visibility: hidden;
      height: 100%;
  }
  .chs-dropdown-content > .has-children > ul.is-active {
    /* when hover over .chs-dropdown-content items - show subnavigation */
    visibility: visible;
  }
  .chs-dropdown-content > .has-children > .chs-secondary-dropdown.is-active > li > ul {
    /* if .chs-secondary-dropdown is visible - show also subnavigation */
    visibility: visible;
  }
  .chs-dropdown-content > .has-children > a.is-active {
    /* hover effect for .chs-dropdown-content items with subnavigation */
    box-shadow: inset 2px 0 0 #01B9A7;
    color: #01B9A7;
  }
  .chs-dropdown-content > .has-children > a.is-active::before, .chs-dropdown-content > .has-children > a.is-active::after {
    background: #01B9A7;
  }
  .open-to-left .chs-dropdown-content > .has-children > a.is-active {
    box-shadow: inset -2px 0 0 #01B9A7;
  }
}

@-webkit-keyframes chs-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-moz-keyframes chs-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes chs-fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes chs-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: visible;
  }
}
@-moz-keyframes chs-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: visible;
  }
}
@keyframes chs-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: visible;
  }
}
.chs-search input[type="search"] {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #242643;
  color: #ffffff;
  border: none;
  border-radius: 0;
}
.chs-search input[type="search"]::-webkit-input-placeholder {
  color: #ffffff;
}
.chs-search input[type="search"]::-moz-placeholder {
  color: #ffffff;
}
.chs-search input[type="search"]:-moz-placeholder {
  color: #ffffff;
}
.chs-search input[type="search"]:-ms-input-placeholder {
  color: #ffffff;
}
.chs-search input[type="search"]:focus {
  background: #ffffff;
  color: #111433;
  outline: none;
}
.chs-search input[type="search"]:focus::-webkit-input-placeholder {
  color: rgba(17, 20, 51, 0.4);
}
.chs-search input[type="search"]:focus::-moz-placeholder {
  color: rgba(17, 20, 51, 0.4);
}
.chs-search input[type="search"]:focus:-moz-placeholder {
  color: rgba(17, 20, 51, 0.4);
}
.chs-search input[type="search"]:focus:-ms-input-placeholder {
  color: rgba(17, 20, 51, 0.4);
}
@media only screen and (min-width: 1024px) {
  .chs-search input[type="search"] {
    background-color: #ebebeb;
  }
  .chs-search input[type="search"]::-webkit-input-placeholder {
    color: #b3b3b3;
  }
  .chs-search input[type="search"]::-moz-placeholder {
    color: #b3b3b3;
  }
  .chs-search input[type="search"]:-moz-placeholder {
    color: #b3b3b3;
  }
  .chs-search input[type="search"]:-ms-input-placeholder {
    color: #b3b3b3;
  }
}

.has-children > a, .go-back a {
  position: relative;
}
.has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.has-children > a::before, .go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.has-children > a::after, .go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1024px) {
  .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
    background: #b3b3b3;
  }
}

.has-children > a {
  padding-right: 40px;
}
.has-children > a::before, .has-children > a::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}

@media only screen and (min-width: 1024px) {
  .open-to-left .chs-dropdown-content > .has-children > a {
    padding-left: 40px;
    padding-right: 20px;
  }
  .open-to-left .chs-dropdown-content > .has-children > a::before, .open-to-left .chs-dropdown-content > .has-children > a::after {
    right: auto;
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    -moz-transform-origin: 1px 50%;
    -ms-transform-origin: 1px 50%;
    -o-transform-origin: 1px 50%;
    transform-origin: 1px 50%;
  }
}
.chs-dropdown-content .go-back a {
  padding-left: 40px;
}
.chs-dropdown-content .go-back a::before, .chs-dropdown-content .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}

.chs-main-content {
  background-color: #e6e6e6;
  min-height: calc(100vh - 100px);
  padding: 2em 5%;
  line-height: 2;
}

.no-js .chs-dropdown-wrapper:hover .chs-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.no-js .chs-dropdown-wrapper .chs-close {
  display: none;
}


/* -------------------------------- 
Dropdown Menu Ends
-------------------------------- */
ul.navigation > li:hover > a, .chs-dropdown-icons > li:hover > a, ul.navigation a.active, .supplier-profile-nav a:hover, .supplier-profile-nav a.link-is-active {
    color: #01B9A7;
}
.chs-dropdown-icons > li > a {
    text-transform: none;
}

ul.navigation > li {
    font-weight: normal !important;
    margin: 0 1%;
}
ul.navigation > li:first-child {

    margin-left: 0;
}
ul.navigation > li:last-child {

    margin-right: 0;
}
p{font-size: 16px;line-height: 24px;}
.white-text{color: #fff !important}
h2{font-size: 26px; font-weight: bold}
h3{font-size: 18px;font-weight: bold}
.green-button-small{color: #fff; background: var(--green); display: inline-block; border-radius: 50px; padding: 5px 10px; margin: 5px;}
.green-button-small:hover{background: #01B9A7}
.block-heading{display: flex; align-items: center;}
.outer-wrapper{padding:10px 0 ;}
.wrapper, .admin-wrapper {max-width: 1300px;margin: 0 auto;}
.page-sub-head{
    background: #fff;
    display: block;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
}
/*====================*/
/*====================*/
.logo a img {
    max-width: unset;
}
header { background: #ffffff; padding: 20px 0}
header .wrapper {display: flex; align-items: center; justify-content: space-between;}
.search {width: 70%; display: flex; justify-content: center; align-items: center;}
.search input[type="search"] {padding: 8px; border-top-left-radius: 5px;border-bottom-left-radius: 5px; height: 40px; width: 100%; max-width: 650px; border: 1px solid #E5E5E5; border-right: none}
.search a {display: flex; align-items: center; justify-content: center; height: 40px; width: 150px;border: none; border-top-right-radius: 5px;border-bottom-right-radius: 5px; background-color: #01B9A7; color: #fff; font-weight: bold; cursor: pointer}
.search a:hover { background-color: #220050; }
.header-links {
    width: 25%;
    
    text-align: right;
}
.header-links a {
    display: inline-block;
    margin: 5px;
    padding: 5px 15px;
    border: 1px solid #999;
    border-radius: 5px;
    color: #999;
}
.header-links a:hover {background: #220050;color: #fff; border-color:#220050} 
.outer-wrapper.navigation-wrapper {padding: 0;box-shadow: 0 3px 4px #e1e1e1;}
li.divider~li{display: none}
.navigation{display: flex; align-items: center; justify-content: flex-start}
.navigation+li.chs-mobile-menu~li{display: flex; align-items: center; justify-content: center;}
/*====================*/
/*====================*/
/*=====Banner Flex Slider=======*/
/*====================*/
.flexslider { position: relative;}
.outer-wrapper.banner { padding: 0;}
ol.flex-control-nav.flex-control-paging {display: none;}
li.flex-nav-prev {position: absolute;top: 30%;left: -20000px;}
li.flex-nav-next {right: 20000px;position: absolute;top: 30%;}
.flexslider:hover li.flex-nav-prev {left: 0;}
.flexslider:hover li.flex-nav-next{right: 0;}
a.flex-next, a.flex-prev { 
    padding: 10px 20px;
    right: 0;
    font-weight: bold;
    font-size: 60px;
}
/*====================*/
/*====================*/
.popular-categories{background: rgb(34,0,80);background: linear-gradient(90deg, rgba(34,0,80,1) 0%, rgba(97,22,200,1) 100%);; overflow: hidden;padding: 20px 0;margin-top: -3px;}
.pc-item-wrapper{display: flex;flex-wrap: wrap;}
.category-item{ width: 16.66%;padding: 10px;text-align: center;}
.category-item a img {
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    max-width: 100%;
	margin: 0 auto;
}
.category-item:hover {
    background: rgba(0,0,0, 0.2);
    border-radius: 10px;
    cursor: pointer
}
.category-item p{font-size: 16px;  color: #fff;text-decoration: none;text-align: center;padding: 10px;
    letter-spacing: 0px;
    transition: all 0.15s ease-out;}

.category-item:hover p {
    letter-spacing: 2px;
    transition: all 0.15s ease-in;
}
.cta-light-bg{border: 1px solid;color: #fff;width: 90%;max-width: 350px;margin: 10px auto 10px auto;padding: 20px 30px;border-radius: 5px;display: block;text-align: center;text-transform: uppercase;transition: all 0.15s ease-out;}
a.cta-light-bg:hover {
    background-color: #FB0055;
    letter-spacing: 2px;
    transition: all 0.15s ease-in;
}
 /*====================*/
/*====================*/
main.hp-content{background: #F3F2F7; padding-bottom: 20px}
.outer-wrapper.product-listing-wrapper{background: #F3F2F7; padding-bottom: 20px}

/*====hp-content = Home Page Content======*/
/*====================*/
/*====================*/
.latest-news-wrapper, .latest-products-wrapper, .top-suppliers-wrapper{padding: 20px; overflow: hidden}
.latest-news {display: flex;align-items: flex-start;justify-content: flex-start;margin: 20px auto 0 auto;flex-wrap: wrap;}
.latest-news {
    background: #fff;
}
.news-item{    margin-left: 20px;
    background: #fff;
    padding: 10px;
    width: 24%;
    margin: 0.5%;}
.latest-news.first-item .news-item{    
    margin-left: 20px;
    background: #fff;
    padding: 10px;
    width: 98%;
    margin: 0.5%;
    display: flex;
    align-items: flex-start;
}
.latest-news.first-item .news-item .ni-img {
        flex: 1;
}
.ni-img {
        flex: 1;
    position: relative;
}
span.event-tag {
    position: absolute;
    top: 10px;
    background: #663399;
    color: #fff;
    padding: 5px 10px;
    border-left: 0;
    letter-spacing: 1px;
    font-size: 14px;
}
p.ni-event-date {
    color: #fff;
    background: #ed143d;
    display: inline-block;
    padding: 4px 10px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
    position: absolute;
    bottom: 10px;
}
span.partner-news-tag {
    position: absolute;
    top: 10px;
    background: #fdad1c;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
}
.latest-news.first-item p.ni-event-date {
    margin-top: 0;
}
.latest-news.first-item .news-item .ni-img img {
        width: 96%;
}
.latest-news.first-item .news-item .ni-details {
        flex: 1;
    padding: 0 10px;
}
.latest-news.first-item .news-item .ni-details .ni-heading {
        font-size: 40px;
    line-height: 44px
}

.ni-heading{color: var(--heading-color);font-weight: 900;font-size: 16px;padding: 10px 0 0 0;}
.ni-author, ni-author a{color: var(--light-text-color);font-size: 12px;}
.ni-text { padding: 10px 0; font-size: 13px;}
.ni-read-more{font-weight: bold; padding: 5px 0;margin:0 0 10px 0;display: inline-block;}
.ni-tags a{font-size: 12px; background: #e1e1e1; padding: 5px ; margin: 2px ; display: inline-block; border-radius: 10px;}
/*===== ni = News Item =====*/
/*====================*/
/*====================*/
.latest-item-wrapper {
  display: grid;
  gap: 20px;
  justify-content: space-around;
  margin-top: 2rem;
  grid-auto-flow: row;
  grid-template-columns: repeat(4, 1fr);
}
.latest-products{    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 20px auto 0 auto; }
.product-item{ text-align: center; background-color: #fff;padding: 10px; position: relative;}
span.product-tag {
  position: absolute;
  left: 0;
  background: var(--green);
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  letter-spacing: 1px;
  top: 20px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
header.outer-wrapper {
    position: sticky;
    top: 0;
	z-index: 999999999;
}
p.pi-heading {font-size: 18px;
    font-weight: bold;
    color: #000;
    padding: 10px 0; 
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 213px;
    overflow: hidden;
    margin: 0;}
p.pi-price-b-off {
  text-decoration: line-through;
  color: #a1a1a1;
}
p.pi-price-a-off {
  font-weight: bold;
  letter-spacing: 1px;
}
a.pi-read-more {
    background: #220050;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    margin: 20px 0 10px 0;
    border-radius: 5px;
}
a.pi-read-more {
    display: none;
}
a.pi-read-more:hover{background: var(--green)}
.latest-offers-list {
  display: grid;
  gap: 20px;
  justify-content: space-around;
  margin-top: 2rem;
  grid-auto-flow: row;
  grid-template-columns: repeat(5, 1fr);
}
.pi-img{
	aspect-ratio: 1 !important;
    overflow: hidden;
}
.pi-img img, .ni-img img {
    max-width: 100%;
}
.ni-img {
    flex: 1;
    position: relative;
    aspect-ratio: 1.47;
    overflow: hidden;
}
.ni-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.top-suppliers{display: flex;align-items: flex-start;justify-content: space-between;margin: 20px auto 0 auto;}
.banner-ad-wrapper{margin: 50px auto;}
.footer-subscribe-wrapper{background-color: #220050; padding: 50px 10px;text-align: center;}
.subscribe-input {display: flex; justify-content: center; align-items: center; margin-top: 20px;}
.subscribe-input input[type="text"] { padding: 8px;border: none; border-top-left-radius: 5px;border-bottom-left-radius: 5px; height: 40px; width: 100%; max-width: 650px}
.subscribe-input button {display: inline-block; height: 40px; width: 150px;border: none; border-top-right-radius: 5px;border-bottom-right-radius: 5px; background-color: #01B9A7; color: #fff; font-weight: bold}
.footer-wrapper{background-color: #01B9A7; padding: 20px 5px; }
.footer-content {display: flex;justify-content: space-between;}
span.footer-logo {display: block;padding: 0 10px 10px 10px;text-align: center;}
.footer-links {display: flex;align-items: flex-start;justify-content: flex-start;}
.footer-links ul {padding: 10px;}
.footer-links ul li a, .footer-links ul li span { padding: 5px 10px;color: #fff;display: inline-block;}
.footer-links ul li span {font-weight: bold; padding-bottom: 10px;}
.footer-social-icons span{display: inline-block; padding: 5px;}
.footer-disclaimer-wrapper{background-color: #220050; padding: 50px 10px;text-align: center;}
.footer-disclaimer a{color: #fff}
.copyrights{text-align: center; color: #fff; padding: 10px 5px;}
/*====================================================*/
/*====================================================*/
/*============Product Listing Styles==================*/
/*====================================================*/
/*====================================================*/
.product-listing-wrapper .wrapper{display: flex;
    align-items: flex-start;}
.product-filters{background: #fff; padding: 10px; width: 250px;position: sticky;
    top: 0;}
.filter-section{padding: 20px 5px; border-top: 1px solid #f1f1f1; letter-spacing: 1px }
.filter-section-heading{font-size: 18px; font-weight: bold;padding-bottom: 10px;  display: block;}
.filter-heading a{font-size: 16px; font-weight: bold;text-transform: uppercase;}
.filter-sub-heading{margin-top: 20px; display: block}
.filter-sub-heading > a{font-size: 16px; font-weight: bold;}
.filter li a{display: block; padding: 5px 10px}
.filter li a.link-is-active, .filter li a:hover{color: #01B9A7}

.filter-section input{width: 100%; border: 1px solid #707070; padding: 10px; border-radius: 5px;}
.price-filter{display: flex}
.price-filter li{padding: 10px; text-align: center}

.product-listing{padding-left: 20px; flex: 1}
.sort-wrapper{background: #fff; padding: 10px 20px; text-transform: uppercase; letter-spacing: 1px}
.sort-heading{font-weight: bold}
.sort-wrapper span a{padding: 10px; display: inline-block}


.breadcrumbs-wrapper{padding: 10px}
.bc-stage.current{font-weight: bold}
.product-list-item-wrapper {
    position: relative;
}
.compare-item-button {
display: none;
    position: sticky;
    top: 70px;
    text-align: right;
    left: 0;
    justify-content: flex-end;
	z-index: 99999999999;
}
.compare-item-button .cta-light-bg {
    padding: 10px 30px;
    text-align: center;
    margin: 0;
    width: 100%;
	background-color: rgba(34,0,80,1);
}
.visible-flex{display: flex !important}
.product-list-item{background: #fff; padding: 20px; display: flex; margin: 20px auto;     position: relative;}
.product-list-item .item-image img {max-width: 160px;}
.item-tags-wrapper {display: flex;flex-wrap: wrap;}
.item-tags-wrapper span {margin: 5px;}
.listing-number{padding: 10px}
.listing-number span{display: inline-block; padding: 5px; text-transform: uppercase; font-weight: bold;}
.filter-tags-wrapper .filter-tag {
    margin: 1%;
    color: #fff;
    background: #c71585;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 10px;
    text-transform: uppercase
}

.filter-tags-wrapper {
    display: flex;
    align-items: center;
}
a.cross-icon {
    display: flex;
    align-items: center;
    padding: 0 0 0 6px;
}
a.cross-icon .left-line, a.cross-icon .right-line {
    width: 10px;
    height: 2px;
    background: #fff;
    display: inline-block;
    transform: rotate(45deg);
}

a.cross-icon .left-line {
    margin-right: -10px;
}
a.cross-icon .right-line {
    transform: rotate(-45deg);
}
.item-image{padding: 10px; display: flex; flex-direction: column; justify-content: space-evenly}
.item-text{flex: 1}
.item-text > div{margin: 5px 0; padding-left: 10px;}
.item-name-wrapper{display: flex; align-items: flex-start; justify-content: space-between}
.item-name{font-size: 20px; display: flex; align-items: center}
.item-name a{font-size: 20px;}
.compare {font-size: 10px; padding: 2px 10px; text-transform: uppercase; margin-left: 10px; display: flex; align-items:center;}
.compare input{width: 18px; height: 18px; margin-right: 6px;  }
.item-tag a{background: #E2E2E2; font-size: 10px; border-radius: 5px; padding: 2px 10px; text-transform: uppercase}
.item-tag.enviro-friendly a{background: #01B9A7; color: #fff}
.item-price-wrapper{padding: 10px 0}
.item-price-wrapper span{font-size: 28px; font-weight: 900}
.item-feature{padding: 5px 0; font-size: 14px}
.item-feature .feature-name{font-weight: bold;}
.item-feature .feature-value{color: #7E7E7E}
.item-supplier-wrapper{display: flex; align-items: center; justify-content: space-between}
.item-supplier span { padding: 5px;}
.item-supplier{display: flex; align-items: center; justify-content: flex-start}
span.supplier-logo img {max-width: 110px;}
.item-description{padding: 10px 0}
.item-description li {
    padding: 5px;
    font-size: 16px;
    list-style: inside;
}
.supplier-contact a{color: #220050; padding: 10px 30px; border: 1px solid; text-transform: uppercase; letter-spacing: 1px; border-radius: 5px; font-weight: bold; text-align: center;display: inline-block;}
.supplier-contact a:hover{background-color: #220050; color: #fff}
.website-name{ margin-left: 0; padding-left: 0}
.product-detail-wrapper .product-details{display: flex; background: #fff; padding: 20px}

.product-detail-wrapper .product-details .item-image{flex:2; 
    justify-content: flex-start;}
.product-detail-wrapper .product-details .item-text{flex:3}
.item-description h4{font-weight: bold; font-size: 20px; margin: 10px 0}
.item-description p{margin: 10px 0}
.item-supplier-detail .supplier-name{margin: 10px 0}
.item-supplier-detail-wrapper .supplier-contact{padding: 20px 0 0 0; }
/*====================================================*/
/*====================================================*/
/*============Product Listing Styles ENDS==================*/
/*====================================================*/
/*====================================================*/
.product-comparison-item {
   
    
    background: #fff;
    padding: 10px;
    
    
}
.product-comparison-details > div:nth-child(even){background-color: #f1f1f1}
.item-image-row, .item-name-row, .item-price-row, .item-tag-row, .feature-row, .item-supplier-detail-row, .item-supplier-contact-row {
    display: flex;
    justify-content: flex-start;
}
.item-name-row{position: sticky; top: 0}
.item-image-row > div, .item-name-row >div, .item-price-row > div, .item-tag-row > div, .feature-row > div, .item-supplier-detail-row > div, .item-supplier-contact-row > div {
    width: 24%;
    padding: 10px;
    margin: 0.5%
}
.item-image-row .item-image{align-items: flex-start}
/*====================================================*/
/*====================================================*/
/*============Supplier homepage==================*/
/*====================================================*/
/*====================================================*/
main.supplier-hompage{background: #F3F2F7; padding: 20px}
main.product-comparison-outer-wrapper{background: #F3F2F7; padding: 20px}
.supplier-hompage .supplier-profile-wrapper{background: #fff}
.supplier-profile-logo {
    padding: 10px 10px 10px 20px;
}
 
.supplier-profile-header {
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 9999999999;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}
.supplier-profile-nav {
    flex: 1;
}

.supplier-profile-contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.supplier-profile-contact >div {
    margin-left: 10px;
    padding: 20px 20px 0 0;
}
.supplier-profuile-menu {
    padding: 20px;
}

.supplier-profuile-menu ul li {
    margin-left: 20px;
}
.supplier-profuile-menu ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.supplier-profile-tags-wrapper{background: #F8F8F8; padding: 20px 10px}
.supplier-profile-tags-wrapper .item-tags-wrapper{margin-top: 10px;}
.supplier-profile-tags-wrapper .item-tag{margin-left: 10px;}
.about-supplier-wrapper .about{display: flex; align-items: center; justify-content: space-between; padding: 20px}
.about-supplier-wrapper .about .about-supplier-text{padding: 10px}
.about-suuplier-image {flex: 1;}
.about-supplier-text {flex: 2;}
.about-supplier-text h4 {font-size: 20px;font-weight: bold;}
.about-supplier-text p {font-size: 18px;padding: 10px 0; color: #707070}
.about-supplier-text ul{padding-left: 50px}
.about-supplier-text ul li {list-style-type: disclosure-closed}
.latest-reviews {
    display: flex;
}
.supplier-reviews-wrapper {
    padding: 20px; 
}
.latest-reviews {
    display: flex;
    width: 100%;
    padding: 20px;
    background: #FBFBFB;
    justify-content: center;
    align-items: center;margin: 20px auto;
}
.review-image img {
    border-radius: 50%;
}

.review-image {
    width: 200px;
}
.review-text {
    width: 75%;
    padding: 20px;
}
p.review{color: #707070; font-size: 20px; line-height: 32px}
.reviewer-name{font-weight: bold;margin-top: 20px}
.reviewer-designation{color: #707070}
.supplier-contact-form-wrapper {
    padding: 20px;
}
.supplier-contact-form {
    background: rgb(74,0,224);
    background: linear-gradient(
90deg
, rgba(74,0,224,1) 0%, rgba(142,45,226,1) 63%);
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
}
.form-row {
    display: flex;
    padding: 10px;
}
.form-col {
    flex: 1;
    padding: 0 20px;
}
.form-row label {
display: block;
    margin-bottom: 5px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}
.form-col input[type="text"] , .form-col input[type="password"], .form-col input[type="email"]  {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    appearance: none;
    background: #F3F2F7;
    outline: none
}
.form-col input:focus{
    background: #E8F9F8;
}
button.cta-form-submit{
padding: 15px 30px;
    border: 2px solid #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    display: block;
    border-radius: 5px;
    font-size: 18px;
    background: #220050;
    color: #fff;
    cursor: pointer;
    
}
button.cta-form-submit:hover{background: var(--green);}
/*====================================================*/
/*====================================================*/
/*============Supplier homepage ENDS==================*/
/*====================================================*/
/*====================================================*/
.top-product{background: #FB8E11; color: #fff; border-radius: 5px;font-size: 10px; padding: 2px 10px; text-transform: uppercase; font-weight: normal; display: inline-block; margin-left: 10px}
.verified-tag{background: #8901B9; color: #fff; border-radius: 5px;font-size: 10px; padding: 2px 10px; text-transform: uppercase; font-weight: normal; display: inline-block; margin-left: 10px}




/*====================================================*/
/*====================================================*/
/*============Registration Page==================*/
/*====================================================*/
/*====================================================*/
main.outer-wrapper.register-page {
    background: #F3F2F7;
}
.registration-form {
    background: #fff;
    margin: 20px auto;
    padding: 0;
    border-radius: 10px;
    display: flex;
    min-height: 400px;
    
}
.registration-form-wrapper {
    margin-top: 20px;
}
.form{flex: 1; padding: 20px 10px; display: flex; align-items: center;  }
.form label{color: #000}
form{width: 100%;}
.form-bg-register{flex: 2; background: url("../images/form-bg.jpg"); background-size: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;}
span.forgot-password {
    display: block;
    text-align: center;
    padding-top: 10px;
}
/* Show red borders when filled, but invalid */


/* Show green borders when valid */
.registration-form input:valid {
  background:  #E8F9F8 !important;
}





.jc-bs3-container.container {
    margin: 0 auto;
    max-width: 600px;
}
.jc-bs3-container.container .form-group input {
    display: block;
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    appearance: none;
    background: #F3F2F7;
    outline: none;
}
.overflow-x-auto.allCats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.level-1 {
    display: block;
    float: none !important;
    width: auto !important;
    background: aliceblue;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
}
a.admin-edit-button, a.msg-open-button {
    background: #01B9A7;
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
}
a.admin-delete-button, a.msg-archive-button {
    background: #f1482e;
    color: #fff;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
}
.admin-edit-button-wrapper, .msg-buttons-wrapper {
    display: flex;
    gap: 5px;
}
.form.change-password {
    max-width: 400px;
    margin: 70px auto;
    box-shadow: 0 0 50px rgb(0 0 0 / 10%);
    border-radius: 10px;
}
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
/*============Mobile Styles==================*/
@media (max-width:767px) {
.chs-dropdown-wrapper {display: block;position: relative;height: 40px;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale; width: 94%;margin: 0 auto !important;}
header .wrapper {flex-direction: column; }li.divider ~ li {display: block}
.chs-mobile-menu ~ li {display: none}
}/*==== Media Query 767 max ENDS ====*/




















/*
=======================================================
	ADMIN STYLES
=======================================================

*/
.admin-wrapper{
	padding: 10px
}
.admin-button-1{
	background: #220050;
	padding: 20px 20px;
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-weight: bold;
	letter-spacing: 1px;
	transition: background 0.1s linear;
}
.admin-button-1:hover{
	background: #01B9A7;
	transition: background 0.1s linear;
}
.admin-item-edit{
background: #e6e6e6;
    padding: 5px;
    display: flex;
    align-items: center;
	justify-content: flex-end;
	margin-bottom: 15px
}
.flex{display: flex}
.admin .product-list-item{display: block}
 
a.admin-button-small {
    background: #01B9A7;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
	transition: background 0.1s linear;
	display: inline-block
	
}
a.admin-button-small:hover{
	background: #220050;
	transition: background 0.1s linear;
}

a.admin-button-small.blue{ 
	background: #220050;
	transition: background 0.1s linear;
}

a.admin-button-small.blue:hover{
	background: #01B9A7;
	transition: background 0.1s linear;
}
	
a.admin-button-small.red{ background: #FB0055;
}
.add-supplier-logo{
	margin-top: 20px
		
}
.registration-form-wrapper.add-supplier , .registration-form-wrapper.add-product{
	
	margin:0 auto
}
.registration-form-wrapper.add-supplier select, .registration-form-wrapper.add-product select {
    background: #E8F9F8 !important;
    padding: 10px;
    border-radius: 5px;
}
.admin-body .registration-form h3{
	margin-top: 30px;
}
.admin-body .admin-list {
	margin-top:20px; 
	display: inline-block;
	padding: 10px
}
 .admin-list li{
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
	 
}
 .admin-list  li:first-child{
	margin-top: 0;
	 
}
.admin-list-item .feature-value{
	
	border:1px solid;
	border-radius: 5px;
	
}
.admin-body form > .form-row { padding:20px  0; border-bottom: 1px solid #f1f1f1 }
.admin-body .form, .add-supplier .form  {   } 
.admin-body  .form-col input  { 
	    padding: 10px;
    border-radius: 5px;
}
.admin-body  .delete-edit-button{
	margin-left:10px
}
.admin-body  .delete-edit-button+.delete-edit-button{
	margin-left:0
}
.delete-edit-button a{
	font-size: 10px;
	padding: 3px 5px;
	border-radius: 3px;
}
.admin-body.admin-dashboard main.outer-wrapper.register-page {
    background-color: #FFDEE9;
    padding: 10rem 0;
    background-image: linear-gradient( 92.7deg, rgba(245,212,212,1) 8.5%, rgba(252,251,224,1) 90.2% );
}

/*========Inbox=======*/
table.message-inbox-table {
       width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
} 
table.message-inbox-table thead tr th, table.message-inbox-table tbody tr td {
    padding: 20px;
    text-align: left;
	color: #202124;
}
table.message-inbox-table thead tr th{
	font-weight: bold
}
table.message-inbox-table tbody tr {
    border-top: 1px solid #ececec;
}
table.message-inbox-table tbody tr:hover {
    background: #f3f3f3
}
.new-msg{ 
	background: #f3f3f3;
}
.new-msg td{
	font-weight: bold;
	color: #000; 
}
.inbox-search {
    margin-bottom: 10px;
    justify-content: flex-start;
	gap: 20px;
	display: flex;
}
.inbox-search input {
	
    width: 500px;
max-width: 90%;
    padding: 10px;
    border: 1px solid #f9f9f9;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;

}
.search-msg-button{
display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 150px;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #01B9A7;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
a.view-archived {
    padding: 10px;
    display: inline-block;
    font-weight: bold;
    border: 1px solid; 
    border-radius: 5px;
	color: #717172;
}
a.view-archived:hover {
 
	color: #000;
}
.archived-wrapper {
    display: flex;
    align-items: center;
}
.inbox-search > div:first-child {
    display: flex;
    align-items: center;
}

main.outer-wrapper.message-detail-wrapper {
    background: #F3F2F7;
}
.message-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.all-conversation-wrapper {
flex: 1;
        background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    position: sticky;
    top: 73px;
    align-self: flex-start;
    height: 500px;
    overflow-y: scroll;
  
}
.msg-side {
    padding: 10px;
    background: #fff;
}
.msg-detail-body {
flex: 2;
    background: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
	padding: 10px;
}
.msg-side:nth-child(n+2) {
    border-top: 1px solid #f1f1f1;
}
.msg-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}
.msg-actions > .msg-date-content {
    font-weight: bold;
    font-size: 12px;
}
.msg-side:hover a.msg-text-content {
    opacity: 0.75;
}
.all-conversation-wrapper h2 {
    font-size: 16px;
    padding-bottom: 10px;
}
.msg-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
	position: sticky;
	bottom: 5px;
}
.msg-input input {
    padding: 10px;
    border: 1px solid #333;
    width: 100%;
    border-radius: 5px;
}
.msg-input a {
    border: 2px solid #01b9a7;
    padding: 10px;
    border-radius: 5px;
    background: #01b9a7;
    color: #fff;
}
.msg-user {
    display: inline-block;
    background: #f1f1f1;
    padding: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 30px;
    float: left;
    clear: both;
	position: relative;
}
.msg-supplier, .msg-admin {
    display: inline-block;
    background: #eaf7ff;
    padding: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-bottom: 30px;
    float: right;
    clear: both;
	position: relative
}
.msg-admin {background-color:#f3dde7;}
span.msg-date-time {
    position: absolute;
    font-size: 12px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    bottom: -23px;
    left: 0;
}
.msg-link-button{

    font-weight:bold;
    color:blue;
    text-decoration:underline;
}


#mainConversation{
	height: 500px;
    overflow-y: scroll;
}
#mainConversation .msg-user:first-child p {
    margin-top: 10px;
}
.review-reply {
    background: aliceblue;
    border-radius: 5px;
    padding: 10px;
}
a.review-reply-button {
    padding: 5px 10px;
    border: 1px solid;
    display: inline-block;
    border-radius: 5px;
}
.review-reply textarea {
    display: block;
    margin: 10px 0;
}
.about-suuplier-image img, .about-supplier-image img {
	width: 100%;
}
.supplier-profile-logo img,.add-supplier-logo img {
	max-width: 350px;
}
.flexslider .slides li img{margin:0 auto;}