* {
  box-sizing: border-box;
  background: none;
  border: none;
  color: inherit;
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

@font-face {
  font-family: ClearBold;
  src: url("../fonts/ClearSans-Bold.ttf");
}

@font-face {
  font-family: ClearReg;
  src: url("../fonts/ClearSans-Regular.ttf");
}

.hidden {
  display: none;
}

.container {
  width: 1200px;
  margin: auto;
}

p {
  padding-bottom: 10px;
}

.img-hide-desktop {
  width: 100%;
  display: none !important;
}

#jo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}

#jo-popup .fader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

#jo-popup .content-container {
  padding: 2px;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#jo-popup .content-container iframe {
  display: block;
  width: 45vw;
  height: 45vh;
}

#jo-popup.active {
  display: block;
}

.logo-container {
  padding-left: 15px;
  font-family: "Baloo Da 2", sans-serif;
  font-weight:800;
  font-size: 40px;
  display: flex;
  align-items: center;
  color: white;
}

.logo-container .sub-caption {
  font-size: 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  opacity: 0.7;
  text-align: left;
  padding: 0;
  width: 200px;
  display: inline-block;
  padding-left: 5px;
}

.logo-container img {
  vertical-align: middle;
  padding-right: 10px;
  width: 58px;
}

.center {
  position: absolute;
  z-index: 100;
  height: 100%;
  width: 100%;
  top: 0;
}

.mobile-handle {
  display: none;
}

.desktop-hide {
  display: none;
}

.skitter-large-box {
  width: 100%;
}

.skitter-large-box .skitter {
  width: 100vw !important;
  max-width: 100vw !important;
}

#navbar {
  background-color: #063350;
  padding: 0px 0 5px;
  border-bottom: 0px solid #006bb3;
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 555;
}

#navbar .container {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

#navbar .language-container {
  display: flex;
  position: absolute;
  top: -40px;
  right: 15px;
  border: 1px solid white;
  display: none;
  border-top: 0;
}

#navbar .language-container .lang-choice {
  padding: 8px 15px;
  font-size: 10px;
  cursor: pointer;
}

#navbar .language-container .lang-choice.active {
  background: white;
  color: #063350;
}

#navbar .search-group {
  display: flex;
  overflow: hidden;
  border-radius: 5px;
}

#navbar .nav-drop {
  background: white;
  color: #555;
  padding: 0px 10px;
  height: 30px;
  outline: none;
  border-right: 1px solid #ccc;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
  width: 80px;
  font-size: 14px;
}

#navbar .nav-input {
  background: white;
  color: #555;
  padding: 5px 15px;
  height: 30px;
  width: 290px;
  outline: none;
}

#navbar .cart-button {
  padding: 8px 0;
  padding-left: 20px;
  cursor: pointer;
}

#navbar .nav-submit {
  background: #061620;
  color: #eee;
  padding: 5px 30px;
  height: 30px;
  outline: none;
}

#navbar .right {
  position: relative;
  top: 5px;
}

#navbar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
  font-size: 14px;
  position: relative;
  top: 3px;
}

#navbar .top img {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: 3px;
  padding-right: 5px;
}

#navbar .bottom ul {
  display: flex;
  position: relative;
  justify-content: flex-end;
}

#navbar .bottom ul li a {
  text-transform: uppercase;
  font-family: ClearBold;
  display: block;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  font-size: 14px;
}

#navbar .bottom ul li:hover {
  background: rgba(0, 0, 0, 0.8);
}

#navbar .bottom ul li:hover .sub-menu {
  display: block;
}

#navbar ul.sub-menu {
  background: #061620;
  color: white;
  position: absolute;
  flex-wrap: wrap;
  width: 560px;
  top: 40px;
  display: none;
  padding-bottom: 10px;
  column-count: 2;
  left: -280px;
}

#navbar ul.sub-menu li {
  width: 100%;
  position: relative;
}

#navbar ul.sub-menu li ul.category_menu_list {
  display: none;
  background: #063350;
  position: absolute;
  left: 100%;
  top: 0;
  flex-wrap: wrap;
}

#navbar ul.sub-menu li ul.category_menu_list ul.category_menu_list {
  display: none;
}

#navbar ul.sub-menu li a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

#navbar ul.sub-menu li:hover {
  background: #063350;
  color: #fff;
}

#navbar ul.sub-menu li:hover ul.category_menu_list {
  display: block;
  min-width: 200px;
  width: max-content;
  max-width: 300px;
  color: white;
  z-index: 2;
  box-shadow: 0px 2px 2px #000;
  padding: 5px 0;
}

#navbar ul.sub-menu li:hover ul.category_menu_list li a {
  white-space: nowrap;
}

#navbar ul.sub-menu li:hover ul.category_menu_list li:hover ul.category_menu_list {
  display: flex;
}

#parentContainer {
  position: relative;
  padding-top: 84px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

#parentContainer .container {
  background: white;
}

.white-section {
  background: white;
  width: 1150px;
  margin: auto;
  padding: 0 50px 50px;
}

.white-section .container {
  width: 100%;
}

#indexSlider2 {
  display: none;
}

#indexSlider, #indexSlider2 {
  position: relative;
  height: 53vh;
  overflow: hidden;
}

#indexSlider .slider-timer, #indexSlider2 .slider-timer {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: transparent;
  overflow: hidden;
}

#indexSlider .slider-timer .slider-bar, #indexSlider2 .slider-timer .slider-bar {
  height: 100%;
  width: 0%;
  background: red;
}

#indexSlider .slider-timer .slider-bar.empty, #indexSlider2 .slider-timer .slider-bar.empty {
  width: 0%;
}

#indexSlider .slider-timer .slider-bar.full, #indexSlider2 .slider-timer .slider-bar.full {
  width: 100%;
}

#indexSlider .arrow-container.next, #indexSlider2 .arrow-container.next {
  right: 35px;
  background: rgba(255, 255, 255, 0.4);
}

#indexSlider .arrow-container.prev, #indexSlider2 .arrow-container.prev {
  left: 35px;
  background: rgba(255, 255, 255, 0.4);
}

#indexSlider .slide-items, #indexSlider2 .slide-items {
  background-size: 110%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  transition: all 1s ease .2s !important;
  height: 53vh;
  overflow: hidden;
}

#indexSlider .slide-items.slick-active.slick-current, #indexSlider2 .slide-items.slick-active.slick-current {
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  transition: all 1s ease .2s !important;
}

#indexSlider .container, #indexSlider2 .container {
  background: transparent;
  position: relative;
  height: 53vh;
  width: 1100px;
}

#indexSlider .slide-img, #indexSlider2 .slide-img {
  position: absolute;
  transform: translate(-50%, -50%);
  max-width: 22vw;
}

#indexSlider .text-container, #indexSlider2 .text-container {
  position: absolute;
  color: white;
  transform: translate(-50%, -50%);
}

#indexSlider .text-container .title, #indexSlider2 .text-container .title {
  text-transform: uppercase;
  font-size: 38px;
  font-family: ClearBold;
  padding: 15px 25px 0;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0.8;
  display: inline-block;
}

#indexSlider .text-container .caption, #indexSlider2 .text-container .caption {
  width: 500px;
  font-size: 18px;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.9);
}

#indexSlider .text-container .link-button, #indexSlider2 .text-container .link-button {
  font-size: 18px;
  padding: 15px 25px;
  background: #f0802b;
  display: inline-block;
  opacity: 1;
  text-transform: uppercase;
  position: relative;
}

#indexSlider .text-container .link-button:after, #indexSlider2 .text-container .link-button:after {
  position: absolute;
  content: "";
  width: 90%;
  height: 70%;
  border: 1px solid white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease;
}

#indexSlider .text-container .link-button:hover:after, #indexSlider2 .text-container .link-button:hover:after {
  opacity: 1;
}

#indexSlider .hor-pos-1, #indexSlider2 .hor-pos-1 {
  left: 20%;
}

#indexSlider .hor-pos-2, #indexSlider2 .hor-pos-2 {
  left: 35%;
}

#indexSlider .hor-pos-3, #indexSlider2 .hor-pos-3 {
  left: 50%;
}

#indexSlider .hor-pos-4, #indexSlider2 .hor-pos-4 {
  left: 65%;
}

#indexSlider .hor-pos-5, #indexSlider2 .hor-pos-5 {
  left: 80%;
}

#indexSlider .vert-pos-1, #indexSlider2 .vert-pos-1 {
  top: 20%;
}

#indexSlider .vert-pos-2, #indexSlider2 .vert-pos-2 {
  top: 35%;
}

#indexSlider .vert-pos-3, #indexSlider2 .vert-pos-3 {
  top: 50%;
}

#indexSlider .vert-pos-4, #indexSlider2 .vert-pos-4 {
  top: 65%;
}

#indexSlider .vert-pos-5, #indexSlider2 .vert-pos-5 {
  top: 85%;
}

.section-title {
  font-size: 24px;
  padding-bottom: 10px;
  font-family: ClearBold;
  text-transform: uppercase;
  color: #063350;
  text-align: center;
  background: white;
  padding: 0px 15px 10px;
  background: white;
  z-index: 5;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.sub-caption {
  width: 80%;
  margin: auto;
  text-align: center;
}

#partnerSection {
  padding: 40px 0;
}

#partnerSection .partner-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px 0;
  overflow: hidden;
  max-height: 340px;
  transition: all .3s ease;
  width: 1050px;
}

#partnerSection .partner-flex .flex-module {
  position: relative;
  width: 150px;
  height: 150px;
  transition: all .3s ease;
  cursor: pointer;
}

#partnerSection .partner-flex .flex-module img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80%;
  max-width: 80%;
}

#partnerSection .partner-flex .flex-module:hover {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
}

#partnerSection .partner-flex.active {
  max-height: 1950px;
}

.wing-line {
  height: 1px;
  width: 100%;
  background: black;
  position: relative;
  top: 19px;
}

.product-sku {
  display: none;
}

#indexLatest {
  margin-top: 10px;
}

#indexLatest .latest-product-belt {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 40px auto;
}

#indexLatest .latest-product-belt .product-module {
  margin: 0 10px;
  border: 1px solid #ccc;
  font-family: ClearBold;
  padding: 10px 10px 10px;
  border-radius: 3px;
  transition: opacity 1.3s ease, top 1.3s ease;
  opacity: 1;
  position: relative;
}

#indexLatest .latest-product-belt .product-module .product-image {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  height: 200px;
}

#indexLatest .latest-product-belt .product-module img {
  display: block;
  margin: auto;
  transition: all .3s ease;
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#indexLatest .latest-product-belt .product-module .zoom {
  height: 40px;
  width: 40px;
  background: #ed1b24;
  position: absolute;
  bottom: -20px;
  left: -20px;
  transform: rotateZ(45deg);
  opacity: 0;
  transition: all .3s ease;
}

#indexLatest .latest-product-belt .product-module .product-brand {
  color: #ed1b24;
}

#indexLatest .latest-product-belt .product-module .product-name {
  min-height: 80px;
  font-size: 14px;
  margin-top: 3px;
  text-transform: uppercase;
}

#indexLatest .latest-product-belt .product-module .product-sku {
  opacity: 0.5;
  margin: 5px 0 50px;
  font-size: 14px;
}

#indexLatest .latest-product-belt .product-module.slick-active {
  opacity: 1;
  top: 0;
}

#indexLatest .latest-product-belt .product-module:hover {
  border: 1px solid #555;
}

#indexLatest .latest-product-belt .product-module:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

#indexLatest .latest-product-belt .product-module:hover .zoom {
  opacity: 1;
}

.red-button, .view-all-brand, .view-product-button {
  text-transform: uppercase;
  font-family: ClearBold;
  color: white;
  background: #ed1b24;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 3px;
  transition: all .3s ease;
  cursor: pointer;
  border: 2px solid #ed1b24;
  display: inline-block;
  width: 100%;
  text-align: center;
}

a.red-button.added, a.added.view-all-brand, a.added.view-product-button {
  background-color: #2AB41D;
  background-image: url(https://img.static.sldclc.com/checked.png);
  background-repeat: no-repeat;
  padding-left: 32px;
  background-size: 12px 12px;
  background-position: 17% 50%;
  display: none;
  border: 2px solid #2AB41D;
}

a.red-button.added:hover, a.added.view-all-brand:hover, a.added.view-product-button:hover {
  background-color: white !important;
  color: #2AB41D !important;
  border: 2px solid #2AB41D !important;
}

.red-button:hover, .view-all-brand:hover, .view-product-button:hover {
  background: white;
  color: #ed1b24;
}

.view-all-brand {
  margin: auto;
  width: 120px;
  display: block;
  text-align: center;
}

#indexNews {
  margin-top: 80px;
  padding-bottom: 100px;
}

#indexNews .news-belt {
  display: flex;
}

#indexNews .news-belt .news-module {
  width: 33.3%;
  border: 5px solid white;
  padding: 0 20px;
}

#indexNews .news-belt .news-module .news-image {
  overflow: hidden;
  height: 255px;
  position: relative;
}

#indexNews .news-belt .news-module img {
  display: block;
  transition: all .3s ease;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#indexNews .news-belt .news-module .news-title {
  font-family: ClearBold;
  color: #063350;
  font-size: 25px;
  line-height: 25px;
  text-transform: uppercase;
  padding-top: 10px;
}

#indexNews .news-belt .news-module .news-paragraph {
  font-size: 14px;
  padding-right: 10%;
  line-height: 18px;
  padding-top: 10px;
}

#indexNews .news-belt .news-module:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

.slick-slide {
  outline: none;
}

.arrow-container {
  height: 32px;
  width: 32px;
  background: black;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease;
}

.arrow-container .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
  border: 2px solid white;
  height: 35%;
  width: 35%;
}

.arrow-container.slick-disabled {
  background: rgba(0, 0, 0, 0.5);
}

.arrow-container.next {
  right: -35px;
}

.arrow-container.next .arrow {
  left: 45%;
  border-top: 0;
  border-left: 0;
}

.arrow-container.prev {
  left: -35px;
}

.arrow-container.prev .arrow {
  left: 55%;
  border-bottom: 0;
  border-right: 0;
}

.w80 {
  width: 90%;
  margin: auto;
}

#footer {
  background: #063350;
  border-top: 10px solid #ed1b24;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
}

#footer .menu li:hover {
  color: rgba(250, 250, 250, 0.4);
}

#footer .logo-container {
  padding-left: 0;
}

#footer .container {
  padding: 20px 0;
  position: relative;
}

#footer .floater {
  position: absolute;
  bottom: 100%;
  display: flex;
  right: 0px;
}

#footer .contact-module {
  background: #ed1b24;
  margin: 0px 0px;
  padding: 10px 20px 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: white;
  font-family: ClearBold;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  border-bottom: 10px solid #ed1b24;
  box-shadow: inset 0px -3px 7px 0px rgba(0, 0, 0, 0.55);
}

#footer .footer-flex {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  font-size: 13px;
}

#footer .footer-flex ul li {
  padding: 2px 0;
}

#footer .footer-flex .contacts {
  font-size: 13px;
}

#footer .footer-flex .module-title {
  font-family: ClearBold;
  margin-bottom: 15px;
  font-size: 15px;
}

#footer .footer-flex .flex-map {
  width: 40%;
  padding: 30px 0;
}

#footer .footer-flex .flex-map img {
  width: 100%;
  display: block;
}

#footer .copyright {
  background: #061620;
  padding: 10px;
}

#footer .copyright .container {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

#footer .copyright .container ul li {
  display: inline-block;
}

#footer .copyright .container ul li a {
  padding: 0 10px;
}

.breadcrumb {
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  margin: 20px 0 40px;
  padding-top: 30px;
}

.breadcrumb .page {
  cursor: pointer;
}

.breadcrumb .page:hover a {
  text-decoration: underline;
}

.breadcrumb .page.active {
  color: #ed1b24;
}

.breadcrumb .page:last-child:after {
  content: "";
}

.breadcrumb .page:after {
  content: "/";
  padding-left: 5px;
}

.blue-button {
  background: #3157b3;
  color: rgba(255, 255, 255, 0.87);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.blue-button:hover {
  opacity: 0.8;
}

#productDetail {
  min-height: 80vh;
  padding: 10px 10px;
}

#productDetail .flex {
  display: flex;
  flex-wrap: wrap;
}

#productDetail .brand-logo img {
  display: block;
  max-height: 80px;
  max-width: 130px;
}

#productDetail .filter-group {
  border: 1px solid #ddd;
  margin-right: 10px;
  padding: 10px 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  max-height: 43px;
  overflow: hidden;
  transition: all .5s linear;
}

#productDetail .filter-group .filter-handle {
  font-family: ClearBold;
  text-transform: uppercase;
  padding: 0 10px 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}

#productDetail .filter-group .filter-handle:after {
  content: "+";
  position: absolute;
  right: 10px;
}

#productDetail .filter-group .filter-options {
  padding-left: 10px;
  font-size: 14px;
}

#productDetail .filter-group .filter-options li {
  padding: 5px 0;
  cursor: pointer;
}

#productDetail .filter-group .filter-options li a .sidebar-brand{
    display: flex;
    place-content: space-between;
}

#productDetail .filter-group.active {
  max-height: 750px;
  overflow-y: auto;
}

#productDetail .filter-group.active .filter-handle:after {
  content: "-";
  position: absolute;
  right: 10px;
}

#productDetail .product-thumbnail {
  width: 40%;
  position: relative;
}

#productDetail .product-thumbnail .product-preview {
  overflow: hidden;
  width: 300px;
  height: 300px;
  position: relative;
  border: 1px solid white;
  cursor: zoom-in;
}

#productDetail .product-thumbnail .product-preview:hover {
  border: 1px solid #eee;
}

#productDetail .product-thumbnail img {
  display: block;
  margin: auto;
  max-width: 95%;
  max-height: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#productDetail .product-thumbnail .product-zoom {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid black;
  background: white;
  top: 0;
  left: 310px;
  z-index: -5;
  opacity: 0;
  transition: opacity .3s ease;
  background-size: 150%;
  background-repeat: no-repeat;
}

#productDetail .product-thumbnail .product-zoom.active {
  z-index: 5;
  opacity: 1;
}

#productDetail .product-thumbnail .product-grid {
  display: flex;
  padding: 10px 0;
}

#productDetail .product-thumbnail .product-grid .product-box {
  width: 56px;
  height: 56px;
  border: 1px solid #ddd;
  padding: 5px;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
}

#productDetail .product-thumbnail .product-grid .video-box {
  width: 56px;
  height: 56px;
  border: 1px solid #ddd;
  padding: 5px;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
}

#productDetail .product-thumbnail .product-grid .product-box.active {
    border: 1px solid #000;
}

#productDetail .product-thumbnail .product-grid .product-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
}

#productDetail .product-description {
  width: 60%;
  padding-left: 10px;
}

#productDetail .product-description .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#productDetail .product-description .product-title {
  font-family: ClearBold;
  margin: 10px 0;
  font-size: 17px;
  text-align: justify;
}

#productDetail .product-description .product-paragraph {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  text-align:justify;
}

#productDetail .product-description .product-paragraph ul li {
    list-style: outside;
    margin-left: 15px;
}

#productDetail .product-description .product-anchor {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

#productDetail .product-description .product-anchor.active {
  color: #063350;
  border-bottom: 1px solid #063350;
}

#productDetail .related-product-belt {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 40px auto;
  width: 100%;
}

#productDetail .related-product-belt .product-module {
  margin: 0 5px;
  border: 1px solid #ccc;
  font-family: ClearBold;
  padding: 15px 15px 40px;
  border-radius: 3px;
  transition: opacity 1.3s ease;
  width: 23%;
}

#productDetail .related-product-belt .product-module .product-image {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  height: 145px;
}

#productDetail .related-product-belt .product-module img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  transition: all .3s ease;
}

#productDetail .related-product-belt .product-module .zoom {
  height: 40px;
  width: 40px;
  background: #ed1b24;
  position: absolute;
  bottom: -20px;
  left: -20px;
  transform: rotateZ(45deg);
  opacity: 0;
  transition: all .3s ease;
}

#productDetail .related-product-belt .product-module .product-brand {
  color: #ed1b24;
}

#productDetail .related-product-belt .product-module .product-name {
  height: 50px;
  overflow: hidden;
  font-size: 14px;
  margin-top: 3px;
  text-transform: uppercase;
}

#productDetail .related-product-belt .product-module .product-sku {
  opacity: 0.5;
  margin: 5px 0 50px;
  font-size: 14px;
}

#productDetail .related-product-belt .product-module.slick-active {
  opacity: 1;
}

#productDetail .related-product-belt .product-module:hover {
  border: 1px solid #555;
}

#productDetail .related-product-belt .product-module:hover img {
  transform: scale(1.1);
}

#productDetail .related-product-belt .product-module:hover .zoom {
  opacity: 1;
}

.has-submenu {
  position: relative;
  padding-right: 10px;
}

.has-submenu:after {
  content: "";
  height: 4px;
  width: 4px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotateZ(45deg);
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
}

.filter-parent .filter-parent-handle {
  display: none;
}

.product-highlights {
  width: 100%;
  margin-top: 50px;
}

.product-highlights .highlight-flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  position: relative;
  top: -41px;
}

.product-highlights .highlight-flex .flex-module {
  padding: 10px 10px;
  border: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  font-size: 14px;
  background: #fff;
  margin-right: -1px;
  color: #888;
  cursor: pointer;
  text-align: center;
  width: 160px;
  transition: all .3s ease;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.product-highlights .highlight-flex .flex-module.active {
  background: #ed1b24;
  border: 1px solid #ed1b24;
  color: white;
}

.product-highlights .highlight-flex .highlight-container {
  width: 100%;
  padding: 20px;
  display: none;
  font-size: 14px;
  margin-top: -1px;
  border: 1px solid #d7d7d7;
}

.product-highlights .highlight-flex .highlight-container ul li {
    list-style: outside!important;
    margin-left: 17px;
}

.product-highlights .highlight-flex .highlight-container.active {
  display: block;
}

.spec-group {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  /*margin: 0 10px;*/
}

.spec-group:first-child {
    padding-top: 0px;
}

.spec-group:last-child {
    border:none;
    padding-bottom: 0px;
}

.spec-group .spec-caption {
  min-width: 120px;
}

.w25 {
  width: 25%;
}

.w75 {
  width: 75%;
}

.filter-options a {
  width: 90%;
}

.filter-options .expand-subcat {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  display: inline-block;
  text-align: center;
  line-height: 11px;
  border-radius: 3px;
  font-weight: normal !important;
}

.filter-options li a {
  display: inline-block;
}

.filter-options li .category_select_list {
  display: none;
}

.filter-options li .category_select_list li {
  position: relative;
  padding: 3px 2px 0 15px !important;
}

.filter-options li .category_select_list li:after {
  content: "";
  height: 8px;
  width: 1px;
  background: #aaa;
  display: block;
  position: absolute;
  left: 3px;
  top: 6px;
}

.filter-options li .category_select_list li:before {
  content: "";
  width: 8px;
  height: 1px;
  background: #aaa;
  display: block;
  position: absolute;
  left: 3px;
  top: 13px;
}

.filter-options li.active {
  font-weight: bold;
}

.filter-options li.active .category_select_list {
  font-weight: normal;
  display: block;
}

.filter-options li.active .category_select_list {
  font-weight: normal;
  display: block;
}

.filter-options li.active .category_select_list .subcategory-items .category_select_list {
  font-weight: normal;
  display: none;
}

.filter-options li.active .category_select_list .subcategory-items.active .category_select_list{
  font-weight: normal;
  display: block;
}

.filter-options li.active .category_select_list a {
  font-weight: normal;
}

.filter-options li:hover .category_select_list li {
  position: relative;
  text-decoration: none;
}

.filter-options li:hover .category_select_list li:hover {
  text-decoration: underline;
}

#productList {
  min-height: 80vh;
  padding: 10px 10px;
}

#productList .flex {
  display: flex;
  justify-content: space-between;
}

#productList .flex .w75 {
  padding-left: 30px;
}

#productList .filter-group {
  border: 1px solid #ddd;
  /*margin-right: 20px;*/
  padding: 12px 4px;
  margin-bottom: 10px;
  border-radius: 3px;
  max-height: 43px;
  overflow: hidden;
  transition: all .5s linear;
}

#productList .filter-group .filter-handle {
  font-family: ClearBold;
  text-transform: uppercase;
  padding: 0 10px 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}

#productList .filter-group .filter-handle:after {
  content: "+";
  position: absolute;
  right: 10px;
}

#productList .filter-group .filter-options {
  padding-left: 10px;
  font-size: 14px;
}

#productList .filter-group .filter-options li {
  padding: 5px 0;
  cursor: pointer;
}

#productList .filter-group .filter-options li a .sidebar-brand{
    display: flex;
    place-content: space-between;
}

#productList .filter-group.active {
  max-height: 750px;
  overflow-y: auto;
}

#productList .filter-group.active .filter-handle:after {
  content: "-";
  position: absolute;
  right: 10px;
}

#productList .banner {
  height: 180px;
  background: #063350;
}

#productList .product-category {
  width: 100%;
  font-family: ClearBold;
  padding: 20px 0;
  font-size: 20px;
}

#productList .product-category .total-items {
  float: right;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  opacity: 0.6;
  font-size: 14px;
}

#productList .product-category .total-items .item {
  font-weight: bold;
}

#productList .product-list-parent {
  display: flex;
  flex-wrap: wrap;
}

#productList .product-module {
  width: 23%;
  margin-right: 2%;
  font-family: ClearBold;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 10px 10px;
  position: relative;
  line-height: 17px;
}

#productList .product-module .image-container {
  height: 220px;
  position: relative;
  overflow: hidden;
}

#productList .product-module .image-container img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

#productList .product-module .red-button, #productList .product-module .view-all-brand, #productList .product-module .view-product-button {
  display: inline-block;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  border: 2px solid transparent;
}

#productList .product-module .red-button:hover, #productList .product-module .view-all-brand:hover, #productList .product-module .view-product-button:hover {
  background: white;
  color: #ed1b24;
  border: 2px solid #ed1b24;
}

#productList .product-module a.red-button.added, #productList .product-module a.added.view-all-brand, #productList .product-module a.added.view-product-button {
  background-color: #2AB41D;
  background-image: url(https://img.static.sldclc.com/checked.png);
  background-repeat: no-repeat;
  padding-left: 32px;
  background-size: 12px 12px;
  background-position: 17% 50%;
  display: none;
}

#productList .product-module img {
  display: block;
}

#productList .brand {
  color: #ed1b24;
}

#productList .name {
  text-transform: uppercase;
  margin-bottom: 30px;
  min-height: 50px;
}

.post-pagination {
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination li > span, .pagination a {
  padding: 5px;
  height: 40px;
  width: 40px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #eee;
  cursor: pointer;
  display: block;
  line-height: 28px;
}

.pagination li.active {
  font-family: ClearBold;
}

#brand {
  padding-top: 10px;
  padding-bottom: 100px;
}

#brand .brand-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  text-align: center;
  margin-top: 50px;
}

#brand .brand-flex .brand-module {
  height: 131px;
  width: 131px;
  border: 1px solid #eee;
  position: relative;
  text-align: center;
  align-items: center;
  align-content: center;
  padding: 0.5%;
}

#brand .brand-flex .brand-module img {
  display: block;
  margin: auto;
  max-width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#promotion {
  padding-top: 10px;
  padding-bottom: 100px;
}

#promotion .promotion-flex {
  padding: 60px 0 100px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

#promotion .promotion-flex .promotion-module {
  position: relative;
}

#promotion .promotion-flex .promotion-module img {
  display: block;
}

#promotion .promotion-flex .promotion-module .hover-tint {
  height: 100%;
  width: 100%;
  background: rgba(8, 27, 41, 0.88);
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  transition: all .3s ease;
}

#promotion .promotion-flex .promotion-module .hover-tint .border-button {
  border: 1px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
}

#promotion .promotion-module:hover .hover-tint {
  opacity: 1;
}

#newsList, #videoList {
  min-height: 80vh;
  padding: 10px;
}

#newsList .f-btn, #videoList .f-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px !important;
}

#newsList .hover-tint, #videoList .hover-tint {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #063350;
  opacity: 0;
  transition: all .3s ease;
}

#newsList .flex, #videoList .flex {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  flex-wrap: wrap;
}

#newsList .flex-module, #videoList .flex-module {
  display: flex;
  width: 50%;
  margin-bottom: 40px;
  cursor: pointer;
}

#newsList .flex-module .image-box, #videoList .flex-module .image-box {
  width: 50%;
  position: relative;
}

#newsList .flex-module .image-box img, #videoList .flex-module .image-box img {
  width: 100%;
  display: block;
}

#newsList .flex-module .desc, #videoList .flex-module .desc {
  font-family: ClearBold;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 5px;
  width: 50%;
  color: #063350;
}

#newsList .flex-module .desc .date, #videoList .flex-module .desc .date {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  opacity: 0.6;
  color: black;
}

#newsList .flex-module:hover, #videoList .flex-module:hover {
  text-decoration: underline;
}

#newsList .flex-module:hover .hover-tint, #videoList .flex-module:hover .hover-tint {
  opacity: .7;
}

#newsDetail {
  padding: 10px;
  min-height: 80vh;
  padding-bottom: 100px;
}

#newsDetail .date {
  text-align: center;
  opacity: 0.8;
  font-size: 14px;
  padding: 5px 0;
}

#newsDetail .news-banner {
  padding: 30px 0;
  width: 85%;
  margin: auto;
}

#newsDetail .news-banner img {
  display: block;
  width: 100%;
}

#newsDetail .paragraph {
  width: 75%;
  margin: auto;
  color: rgba(0, 0, 0, 0.86);
  text-align: justify;
}

#newsDetail .paragraph img {
  display: block;
  margin: 10px 0 0;
}

#map {
  min-height: 400px;
  background: black;
}

textarea {
  font-family: Inherit;
}

#contactUs {
  padding: 10px;
  min-height: 80vh;
  padding-bottom: 100px;
}

#contactUs .contact-flex {
  padding-top: 40px;
  display: flex;
  width: 80%;
  margin: auto;
}

#contactUs .title {
  font-family: ClearBold;
  font-size: 20px;
  color: #063350;
}

#contactUs .left {
  width: 60%;
  padding-right: 10%;
}

#contactUs .form-container {
  display: flex;
  flex-wrap: wrap;
}

#contactUs .form-container .group {
  position: relative;
  width: 100%;
}

#contactUs .form-container .group .floating-placeholder {
  font-size: 13px;
  color: #aaa;
  position: absolute;
  left: 15px;
  top: 15px;
  transition: all .3s ease;
}

#contactUs .form-container .group .floating-placeholder.active {
  font-size: 8px;
  top: 10px;
}

#contactUs .form-container .full-input {
  background: #fff;
  border: 1px solid #aaa;
  width: 100%;
  margin: 5px 0;
  padding: 17px 15px 10px;
  outline: none;
  border-radius: 5px;
}

#contactUs .form-container .full-submit {
  background: #063350;
  width: 100%;
  margin: 5px 0;
  padding: 15px 15px;
  outline: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

#contactUs .group {
  font-size: 14px;
  margin-bottom: 15px;
}

#contactUs .group .title {
  font-size: 16px;
  margin-bottom: 5px;
}

#about {
  padding: 30px 0;
  background-image: url("../img/dummy/dummy-9.png");
}

#about .section-title {
  background: none;
  color: white;
}

#about .paragraph {
  width: 60%;
  margin: auto;
  text-align: center;
  font-size: 14px;
  color: white;
  opacity: 0.87;
  padding: 20px 0;
}

#vision {
  padding: 40px 0;
}

#vision .section-title {
  font-size: 16px;
}

#vision .vision-flex {
  display: flex;
  padding: 20px 0;
  justify-content: center;
}

#vision .vision-flex .flex-module {
  width: 310px;
  height: 310px;
  background: red;
  border-radius: 50%;
  margin: 0 -20px;
  position: relative;
  transition: all .4s ease;
  color: white;
  cursor: pointer;
}

#vision .vision-flex .flex-module .ring {
  width: 85%;
  height: 85%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20% 8%;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

#vision .vision-flex .flex-module .ring .title {
  font-family: ClearBold;
  opacity: 0.7;
  width: 100%;
}

#vision .vision-flex .flex-module .ring .paragraph {
  font-size: 12px;
  margin-top: 10px;
}

#vision .vision-flex .flex-module.active {
  z-index: 5;
}

#vision .vision-flex .red {
  background: #a92d2a;
  text-align: right;
}

#vision .vision-flex .blue {
  background: #273393;
}

#vision .vision-flex .flex-module:hover {
  z-index: 5;
}

#vision .vision-flex:hover .flex-module:hover {
  z-index: 5;
  opacity: 1;
}

#proposition {
  padding: 40px 0;
  padding-bottom: 150px;
}

#proposition .section-title {
  font-size: 16px;
}

#proposition .flex {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: auto;
  margin-top: 20px;
}

#proposition .flex .flex-module {
  width: 25%;
  padding: 20px;
}

#proposition .flex .flex-module img {
  display: block;
  padding-bottom: 20px;
}

#proposition .flex .top {
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 20px;
  position: relative;
}

#proposition .flex .top .title {
  font-family: ClearBold;
  letter-spacing: 0;
}

#proposition .flex .top:after {
  content: "";
  width: 40px;
  border: 1px solid #ddd;
  position: absolute;
  bottom: 9px;
}

#proposition .flex .paragraph {
  font-size: 13px;
}

.product-video {
  padding: 10px 0;
}

.product-video iframe.yt-video {
  width: 453px;
  height: 253px;
}

.enquiry-empty-container {
  text-align: center;
  padding: 30px 0;
}

.view-product-button {
  background: #333;
  width: 200px;
  text-align: center;
  margin: 30px auto;
}

#inquiryParent {
  padding-top: 40px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
}

#inquiryParent .section-title {
  text-align: left;
  width: 100%;
}

#inquiryParent .table-parent {
  padding-bottom: 40px;
}

#inquiryParent .table-parent .table-flex {
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

#inquiryParent .table-parent .table-flex.header {
  font-family: ClearBold;
  text-transform: uppercase;
  border: 1px solid #ccc;
  padding: 10px 20px;
  color: #063350;
}

#inquiryParent .table-parent .table-flex:last-child {
  border-bottom: 0;
}

#inquiryParent .table-parent.no-border .table-flex {
  border-bottom: 0;
}

#inquiryParent .table-parent.no-border .table-flex.header {
  border: 1px solid #ccc;
}

#inquiryParent .table-parent.no-border .table-flex:last-child {
  border-top: 1px solid #ccc;
}

#inquiryParent .delete-icon {
  width: 40px;
}

#inquiryParent .product-quantity {
  width: 10%;
}

#inquiryParent .product-notes {
  width: 30%;
}

#inquiryParent .subcaption {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 13px;
  opacity: 0.7;
}

#inquiryParent .caption {
  width: 35%;
  font-family: ClearBold;
}

#inquiryParent .full-input {
  background: #eee;
  width: 100%;
  resize: vertical;
  border: 1px solid #ddd;
  outline: none;
  padding: 10px;
}

#inquiryParent .full-input.success {
  background: #e2efd5;
  border: 1px solid #5f953c;
}

#inquiryParent .full-input.failed {
  background: #f5d8d8;
  border: 1px solid #c34545;
}

#inquiryParent .number-field {
  background: white;
  border: 1px solid #aaa;
  padding: 0 5px;
  height: 35px;
  min-width: 60px;
  width: 60px;
  max-width: 100px;
  outline: none;
}

#inquiryParent .inquiry-button {
  background: #ed1b24;
  color: white;
  font-family: ClearBold;
  padding: 10px 20px;
  cursor: pointer;
}

#inquiryParent .group {
  width: 100%;
  display: flex;
  align-items: center;
}

#inquiryParent .group .grey-button {
  background: #333;
  border-radius: 3px;
  color: white;
  padding: 8px 20px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 12px;
}

#inquiryParent .group .full-input {
  width: 35%;
  display: inline-block;
}

#inquiryParent .product-container {
  display: flex;
  align-items: center;
  width: 50%;
}

#inquiryParent .product-container img {
  max-width: 100px;
}

#inquiryParent .product-container .desc {
  padding-left: 20px;
  font-family: ClearBold;
}

#inquiryParent .product-container .desc .brand {
  color: #ed1b24;
}

.news-paragraph {
  display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 400px;
  height: 68.8px;
  /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid white;
}

.whatsapp-button {
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  position: fixed;
  z-index: 556;
  bottom: 0;
  right: 0;
}

.archived {
  position: absolute;
  background-color: #ed1b24;
  opacity: 0.7;
  color: white;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-align: center;
  z-index: 10;
  margin: 90px 90px;
}