@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap);/**
 *  VARIABLES
 *
 *  Configure library by adjusting this file
 *
 */

/**
 *  MEDIA QUERIES BREAKPOINTS
 */

/**
 * Library
 */

/**
 * MIXINS
 */

/**
 *  TYPOGRAPHY
 */

html,
body {
  background-color: #ffffff;
  color: #707070;
  width: 100%;
  height: 100%;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  overflow: unset;
}

.modal-show {
  padding-right: 16px;
  overflow: hidden;
}

p {
  margin-bottom: 10px;
}

a {
  color: #707070;
  text-decoration: none !important;
}

a:hover {
  color: #707070;
}

a:focus {
  color: #707070;
}

img {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

/**
 *  BUTTONS
 */

.btn {
  font-size: 12px;
  font-weight: 400;
  padding: 7px 15px;
  min-width: 120px;
  border-radius: 30px;
  background: #313A6D;
  color: white;
  text-decoration: none;
  border: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn:hover {
  color: white;
  text-decoration: none;
  background-color: #30B7BC;
}

.btn:focus {
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: #30B7BC;
}

.btn-secondary:hover {
  background-color: #313A6D;
}

.btn-small .inner {
  padding: 4px 15px;
  font-size: 12px;
  letter-spacing: 2px;
}

.btn-small .outer {
  left: 2px;
  top: 2px;
}

.btn-full-width {
  width: 100%;
}

.btn-fb .inner {
  background: #3b59b6;
}

.btn-fb .outer {
  border-color: #3b59b6;
}

.btn-google .inner {
  background: #d73d32;
}

.btn-google .outer {
  border-color: #d73d32;
}

.btn-black {
  background: black;
}

.btn-square {
  border-radius: 0px;
}

.btn-xs {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 15px;
  letter-spacing: 2px;
  min-width: auto;
}

/*!
 * Waves v0.6.0
 * http://fian.my.id/Waves
 *
 * Copyright 2014 Alfiana E. Sibuea and other contributors
 * Released under the MIT license
 * https://github.com/fians/Waves/blob/master/LICENSE
 */

.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform: scale(0);
          transform: scale(0);
  pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.45);
}

.waves-effect.waves-red .waves-ripple {
  background-color: rgba(244, 67, 54, 0.7);
}

.waves-effect.waves-yellow .waves-ripple {
  background-color: rgba(255, 235, 59, 0.7);
}

.waves-effect.waves-orange .waves-ripple {
  background-color: rgba(255, 152, 0, 0.7);
}

.waves-effect.waves-purple .waves-ripple {
  background-color: rgba(156, 39, 176, 0.7);
}

.waves-effect.waves-green .waves-ripple {
  background-color: rgba(76, 175, 80, 0.7);
}

.waves-effect.waves-teal .waves-ripple {
  background-color: rgba(0, 150, 136, 0.7);
}

.waves-effect input[type="button"],
.waves-effect input[type="reset"],
.waves-effect input[type="submit"] {
  border: 0;
  font-style: normal;
  font-size: inherit;
  text-transform: inherit;
  background: none;
}

.waves-effect img {
  position: relative;
  z-index: -1;
}

.waves-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

.waves-circle {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom;
}

.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  -webkit-mask-image: none;
}

.waves-block {
  display: block;
}

/* Firefox Bug: link not triggered */

.waves-effect .waves-ripple {
  z-index: -1;
}

/*
helper for default style
*/

#toast-container > .toast-success {
  background-color: #313A6D;
}

.fs-12 {
  font-size: 12px;
}

.fs-16 {
  font-size: 18px;
}

.fs-18 {
  font-size: 18px;
}

.text-grey {
  color: #707070;
}

.text-red {
  color: #e74c3c;
}

.td-line {
  text-decoration: line-through;
}

.bg-white {
  background: white;
}

.bg-grey {
  background: #F9F9F9;
}

.default-section {
  padding: 50px 0px;
}

.default-title {
  font-size: 42px;
  font-weight: 700;
  color: #313A6D;
  position: relative;
  padding-bottom: 15px;
}

.default-title.type-banner {
  font-size: 30px;
  padding-bottom: 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.default-title:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 45px;
  height: 3px;
  background: #30B7BC;
}

.default-title.type-center {
  text-align: center;
}

.default-title.type-center:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.default-title.type-right {
  text-align: right;
}

.default-title.type-right:after {
  left: unset;
  right: 0;
}

.default-description-section {
  line-height: 40px;
  font-size: 16px;
}

.default-description-section p {
  margin-bottom: 20px;
}

.default-description-section.info-description {
  font-size: 14px;
  line-height: 20px;
}

.default-control-list {
  font-size: 12px;
}

.default-control-list .item {
  margin-right: 15px;
}

.default-control-list .item:last-of-type {
  margin-right: 0px;
}

.default-control-list .item.active a,
.default-control-list .item:hover a {
  cursor: pointer;
  font-weight: 700;
  border-bottom: 1px solid;
}

.default-control-list .item.disabled {
  pointer-events: none;
}

.table-separator {
  width: 50px;
  text-align: right;
}

[data-validate="true"] .form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group .has-error .help-block,
.form-group.has-error .help-block {
  opacity: 1;
}

.form-group .form-label {
  margin-bottom: 0px;
}

.form-group .help-block {
  opacity: 0;
  font-size: 10px;
  position: absolute;
  left: 0px;
  text-align: left;
}

.form-group .help-block.form-error {
  color: #e74c3c;
  margin-left: 10px;
  padding-top: 5px;
}

.form-control {
  border-radius: 0px;
  border-color: #c5c5c5;
  padding: 0.7rem;
  height: auto;
}

.form-control:active,
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border-color: black;
}

.form-control:disabled {
  background: #c5c5c5;
}

.default-form-control {
  border-radius: 0px;
  height: 40px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.default-form-control:focus,
.default-form-control:active {
  border-color: #ced4da;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.default-group-inline {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  -ms-flex-item-align: center;
      align-self: center;
}

.default-group-inline .form-control {
  outline: none;
  border: 0px;
  margin: 0px;
}

.default-group-inline .btn {
  height: 100%;
}

.default-nav-tab .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.default-nav-tab .nav-item .nav-link {
  font-family: MyriadProCond;
  padding: 10px 15px;
  text-align: center;
  border: 1px solid #878787;
  border-radius: 0px;
  font-size: 16px;
  color: #878787;
  position: relative;
}

.default-nav-tab .nav-item .nav-link:after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0px;
  right: 0px;
  bottom: -1px;
  background: black;
  -webkit-transform: scale(0);
          transform: scale(0);
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.default-nav-tab .nav-item .nav-link.active {
  font-weight: 700;
  color: black;
}

.default-nav-tab .nav-item .nav-link.active:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: visible;
}

.default-nav-tab .nav-item:last-of-type .nav-link {
  border-left: none;
}

.custom-input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20%);
          flex: 0 1 calc(20%);
}

.custom-input > input {
  display: none;
}

.custom-input .checker {
  position: relative;
  margin-right: 10px;
  display: block;
  height: 22.5px;
  width: 22.5px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.custom-input .checker:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}

.custom-input.type-box .checker-box {
  display: block;
  width: 100px;
  text-align: center;
  padding: 5px;
  border: 1px solid;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.custom-input.type-box:hover .checker-box {
  background: #313A6D;
  border-color: #313A6D;
  color: white;
}

.custom-input.type-box input:checked ~ .checker-box {
  border-color: #313A6D;
  background: #313A6D;
  color: white;
}

.custom-input.type-box input:disabled ~ .checker-box {
  pointer-events: none;
  background: #eaeaea;
  border-color: #eaeaea;
  color: #979797;
}

.custom-input.brand-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25%);
          flex: 0 1 calc(25%);
}

.custom-input.brand-box .checker-box {
  width: 50px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-input.size-box .checker-box {
  width: 40px;
}

.custom-input.type-radio .checker {
  background-color: transparent;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  height: 17.5px;
  width: 17.5px;
}

.custom-input.type-radio .checker:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background: black;
  border-radius: 100%;
}

.custom-input.type-radio:hover .checker {
  border-color: black;
}

.custom-input.type-radio input:checked ~ .checker {
  border-color: black;
}

.custom-input.type-radio input:checked ~ .checker:after {
  display: block;
}

.custom-input.type-checkbox .checker {
  background-color: transparent;
  border: 1px solid black;
  border-radius: 0px;
  width: 14px;
  height: 14px;
  background: white;
}

.custom-input.type-checkbox .checker:after {
  content: '\F00C';
  font-family: 'FontAwesome';
  position: absolute;
  border-radius: 100%;
  font-size: 10px;
  color: black;
}

.custom-input.type-checkbox:hover .checker {
  border-color: black;
}

.custom-input.type-checkbox:hover .checker.blue-style {
  border-color: black;
}

.custom-input.type-checkbox input:checked ~ .checker.blue-style,
.custom-input.type-checkbox input.indeterminate ~ .checker.blue-style {
  border-color: black;
  background: black;
}

.custom-input.type-checkbox input:checked ~ .checker:after,
.custom-input.type-checkbox input.indeterminate ~ .checker:after {
  display: block;
}

.custom-input.type-checkbox input.indeterminate ~ .checker:after {
  content: '\F068';
}

.custom-input.type-varian input ~ .checker-varian {
  border: 1px solid transparent;
}

.custom-input.type-varian input:checked ~ .checker-varian {
  border-color: black;
}

.custom-select-group .select2-container {
  width: 100% !important;
}

.custom-select-group .select2-container .select2-selection {
  border-radius: 0px;
  height: 38px;
  border: none;
  background: white;
  outline: none;
  -webkit-box-shadow: 3px 3px 5px #eaeaea;
          box-shadow: 3px 3px 5px #eaeaea;
}

.custom-select-group .select2-container .select2-selection[aria-expanded="true"] .select2-selection__arrow:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.custom-select-group .select2-container .select2-selection .select2-selection__rendered {
  line-height: 38px;
}

.custom-select-group .select2-container .select2-selection .select2-selection__arrow:after {
  content: '\F107';
  font-family: FontAwesome;
  position: absolute;
  top: 5px;
  font-size: 20px;
  font-weight: 600;
  right: 15px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.custom-select-group .select2-container .select2-selection .select2-selection__arrow b {
  display: none;
}

.search-error {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.floating-wpp {
  z-index: 9999;
}

.floating-wpp .floating-wpp-button {
  right: 10px;
  bottom: 10px;
  width: 60px !important;
  height: 60px !important;
}

/* EXTENDABLE */

.display-flex,
.default-control-list,
.default-group-inline,
.custom-input.brand-box .checker-box,
.nav-dropdown .dropdown-content .brand-list,
#main-navbar .inner-navbar,
#main-footer .section-list,
#main-footer .socmed-list,
.badge-list,
#home .banner-slider .banner-item,
#home .article-section .inner-section,
#home .client-list,
#home .article-card,
#product-section .recommendation-section .recommendation-list,
#product-details-section .item-section .img-section .img-list-item .img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.default-list-style,
.default-control-list,
.nav-dropdown .dropdown-content .part-item .part-list,
#main-footer .link-list,
#main-footer .socmed-list,
.badge-list,
.product-card .stamp-list,
.product-card .stamp-flat-list,
#home .client-list,
#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#product-section .recommendation-section .recommendation-list,
#product-details-section .item-section .img-section .stamp-list,
#product-details-section .item-section .img-section .stamp-flat-list,
#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .new-list-section,
#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .img-client-section {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.default-background-style {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* EXTENDABLE */

.text-myriad-cond {
  font-family: MyriadProCond;
}

.text-bebasneu {
  font-family: BebasNeue;
}

.text-heading-bold {
  font-family: HeadingProBold;
}

.text-grey {
  color: #707070;
}

.text-small {
  font-size: 12px;
}

.cursor-pointer {
  cursor: pointer;
}

.transparent {
  opacity: 0;
}

.overflow-hide {
  overflow: hidden !important;
}

.ani-delay-300ms {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.ani-delay-600ms {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}

.navbar-toggler {
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
}

.toggler-icon {
  width: 30px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.toggler-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #313A6D;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.toggler-icon span:nth-child(1) {
  top: 0px;
}

.toggler-icon span:nth-child(2),
.toggler-icon span:nth-child(3) {
  top: 9px;
}

.toggler-icon span:nth-child(4) {
  top: 17px;
}

.toggler-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.toggler-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggler-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.toggler-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.nav-dropdown:hover .dropdown-content {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.nav-dropdown:hover .dropdown-content.type-about {
  height: 250px;
}

.nav-dropdown:hover .dropdown-content.type-article {
  height: 350px;
}

.nav-dropdown .dropdown-content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-box-shadow: 1px 0 5px #e8e8e8;
          box-shadow: 1px 0 5px #e8e8e8;
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  position: fixed;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  top: 80px;
  width: 35%;
  background: #ffffff;
  z-index: 99;
  border-radius: 15px;
  padding: 20px;
}

.nav-dropdown .dropdown-content:hover {
  visibility: visible;
  height: auto;
  opacity: 1;
}

.nav-dropdown .dropdown-content.type-about {
  width: 15%;
  left: 54%;
}

.nav-dropdown .dropdown-content.type-article {
  width: 18%;
  left: 65%;
}

.nav-dropdown .dropdown-content .brand-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}

.nav-dropdown .dropdown-content .brand-list a {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(100%/6);
          flex: 0 1 calc(100%/6);
  text-align: center;
  margin-bottom: 30px;
}

.nav-dropdown .dropdown-content .brand-list .brand-logo {
  width: 100px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.nav-dropdown .dropdown-content .brand-list .brand-logo:hover {
  -webkit-filter: unset;
          filter: unset;
}

.nav-dropdown .dropdown-content .part-item {
  color: #30B7BC;
}

.nav-dropdown .dropdown-content .part-item .part-title {
  font-size: 18px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: bold;
}

.nav-dropdown .dropdown-content .part-item .part-list {
  font-size: 15px;
}

.nav-dropdown .dropdown-content .part-item .part-list li {
  margin-bottom: 12px;
}

.nav-dropdown .dropdown-content .part-item .part-list li a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav-dropdown .dropdown-content .part-item .part-list li:hover a {
  margin-left: 10px;
  color: #30B7BC;
}

.nav-dropdown .dropdown-content .part-item .payment-icon {
  height: 25px;
  width: auto;
}

.nav-dropdown .dropdown-content .card-product {
  padding: 25px 0px;
}

.breadcrumb-section {
  padding-top: 90px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 60px;
  margin-top: 15px;
  font-size: 10px;
}

.breadcrumb .item {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 150px;
  height: 1.5em;
  white-space: nowrap;
  color: #9A9A9A;
}

.breadcrumb .item.active a {
  color: #313A6D;
}

.breadcrumb .item:after {
  content: '/';
  font-family: FontAwesome;
  margin: 0px 8px;
}

.breadcrumb .item:last-of-type a {
  color: #313A6D;
  pointer-events: none;
}

.breadcrumb .item:last-of-type:after {
  display: none;
}

#main-navbar {
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 9999;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#main-navbar.type-scroll {
  background-color: #FFFFFF;
}

#main-navbar .inner-navbar {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-navbar .navbar-brand {
  margin: 0px;
  padding: 0px;
}

#main-navbar .navbar-brand .logo {
  width: 150px;
  padding-top: 10px;
}

#main-navbar .navbar-brand .logo:focus {
  outline: unset !important;
}

#main-navbar .navbar-collapse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#main-navbar .navbar-nav .nav-item {
  padding: 5px 0px;
  margin-right: 40px;
  position: relative;
}

#main-navbar .navbar-nav .nav-item:last-of-type {
  margin-right: 0px;
}

#main-navbar .navbar-nav .nav-item.active:after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 17.5px;
  height: 1px;
  background: #30B7BC;
}

#main-navbar .navbar-nav .nav-item .nav-link {
  padding: 0px;
  text-transform: uppercase;
  font-weight: 500;
}

#main-navbar .navbar-nav .nav-item:hover .nav-link {
  color: #30B7BC;
}

#main-navbar .navbar-nav .nav-lang .lang-item {
  padding: 0px 7.5px;
  border-right: 1px solid;
}

#main-navbar .navbar-nav .nav-lang .lang-item:last-of-type {
  border-right: none;
}

#main-navbar .navbar-nav .nav-lang .lang-item.active {
  color: #313A6D;
  font-weight: 700;
  cursor: no-drop;
}

#main-navbar .navbar-nav .nav-lang .logo {
  width: 20px;
  border: 1px solid #707070;
  border-radius: 12px;
}

#main-navbar #navbar-container {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#main-footer {
  background: #313A6D;
  padding-top: 50px;
  padding-bottom: 15px;
  color: white;
}

#main-footer .section-list {
  /*margin: 0px -15px;*/
  margin-bottom: 30px;
}

#main-footer .section-list .section-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(100% / 5);
          flex: 0 1 calc(100% / 5);
  padding: 0px 10px;
}

#main-footer .section-list .logo {
  width: 115px;
}

#main-footer .section-list .footer-title {
  font-size: 12px;
  color: white;
  font-weight: 700;
  padding-bottom: 7.5px;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}

#main-footer .section-list .footer-title:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 15px;
  height: 1px;
  background: #30B7BC;
}

#main-footer .link-list .link {
  color: white;
}

#main-footer .footer-table tr td {
  vertical-align: top;
  width: 50px;
}

#main-footer .copyright {
  margin-bottom: 0px;
  text-align: center;
  font-size: 10px;
}

#main-footer .socmed-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-footer .socmed-list .item {
  margin-right: 20px;
}

#main-footer .socmed-list .item:last-of-type {
  margin-right: 0px;
}

#main-footer .socmed-list .round-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 35px;
  height: 35px;
  border: 1px solid white;
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: white;
  fill: white;
  background: transparent;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#main-footer .socmed-list .round-icon:hover {
  background: white;
  fill: black;
}

#main-footer .socmed-list .round-icon:hover.fb-color {
  color: #3b59b6;
}

#main-footer .socmed-list .round-icon:hover.yt-color {
  color: #ff3333;
}

#main-footer .socmed-list .round-icon:hover.ig-color {
  color: #4e433c;
}

#subscribe {
  position: relative;
}

#subscribe .subscribe-content {
  position: absolute;
  width: 100%;
  top: 50%;
}

#subscribe .title {
  font-size: 42px;
  font-weight: 700;
  color: #313A6D;
  position: relative;
  padding-bottom: 15px;
}

#subscribe .title:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 45px;
  height: 3px;
  background: #30B7BC;
}

#subscribe .subscribe-form .form-group {
  margin-bottom: 0px;
}

#subscribe .subscribe-form .form-control {
  border-radius: 50px;
  height: 50px;
  padding: 15px 30px;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 2px 2px 3px 0px #aaaaaa;
          box-shadow: 2px 2px 3px 0px #aaaaaa;
}

#subscribe .subscribe-form .btn {
  width: 100%;
  height: 50px;
  font-size: 16px;
}

.floating-wa {
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  background: white;
  border-radius: 100%;
  position: fixed;
  z-index: 99;
  bottom: 15px;
  right: 15px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.floating-wa:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.floating-wa .icon {
  width: 40px;
}

.badge-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.badge-list .item {
  margin-right: 5px;
}

.badge-list .item:last-of-type {
  margin-right: 0px;
}

.badge-list .badge {
  background: #313A6D;
  color: white;
  padding: 7px 10px;
  font-size: 8px;
  font-weight: 400;
}

#product-slider {
  overflow-x: hidden;
}

#product-slider .product-wrapper {
  padding: 10px;
  padding-bottom: 30px;
}

#product-slider .product-wrapper:focus {
  outline: unset !important;
}

.product-card {
  position: relative;
  padding-bottom: 60px;
  border-radius: 10px;
  background: transparent;
  -webkit-box-shadow: 0px 0px 0px transparent;
          box-shadow: 0px 0px 0px transparent;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.product-card a:focus {
  outline: unset !important;
}

.product-card:focus {
  outline: unset !important;
}

.product-card:hover {
  background: #F9F9F9;
  -webkit-box-shadow: 0px 5px 5px #e8e8e8;
          box-shadow: 0px 5px 5px #e8e8e8;
}

.product-card:hover .wa-link,
.product-card:hover .btn {
  visibility: visible;
  opacity: 1;
  z-index: 0;
}

.product-card .image-wrapper {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  background: #F9F9F9;
  height: 230px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
}

.product-card .image-wrapper:focus {
  outline: unset !important;
}

.product-card .image-wrapper .image {
  height: 140px;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-card .stamp-list {
  position: absolute;
  top: 10px;
  left: 15px;
}

.product-card .stamp-list .item {
  margin-bottom: 5px;
}

.product-card .stamp-list .item:last-of-type {
  margin-bottom: 0px;
}

.product-card .stamp-list .stamp {
  width: 35px;
  height: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100%;
  background: white;
  -webkit-box-shadow: 0 3px 6px #cfcfcf;
          box-shadow: 0 3px 6px #cfcfcf;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5px;
}

.product-card .stamp-list .stamp .logo-wrapper {
  text-align: center;
}

.product-card .stamp-list .stamp .logo {
  width: 70%;
  margin: auto;
}

.product-card .stamp-flat-list {
  position: absolute;
  top: 10px;
  right: 15px;
}

.product-card .stamp-flat-list .stamp {
  width: 25px;
  height: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100%;
  background: #313A6D;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 8px;
  font-weight: 500;
  color: white;
}

.product-card .info-wrapper {
  position: relative;
  padding: 15px 10px 0px;
}

.product-card .info-wrapper:focus {
  outline: unset !important;
}

.product-card .info-wrapper .category {
  font-size: 9px;
  margin-bottom: 15px;
  min-height: 15px;
  display: inline-block;
  width: 215px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.product-card .info-wrapper .title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 60px;
  color: #333333;
}

.product-card .info-wrapper .summary {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 0px;
  width: 100%;
}

.product-card .info-wrapper .promotion-section {
  position: absolute;
  right: 10px;
  top: 12px;
  background: red;
  border-radius: 12px;
  color: white;
  padding: 3px 10px;
  font-size: 10px;
}

.product-card .wa-link {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  right: 15px;
  bottom: 15px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5 ease;
  -webkit-transition: all 0.5 ease;
  -moz-transition: all 0.5 ease;
  -o-transition: all 0.5 ease;
  cursor: pointer;
}

.product-card .btn {
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5 ease;
  -webkit-transition: all 0.5 ease;
  -moz-transition: all 0.5 ease;
  -o-transition: all 0.5 ease;
}

.img-left-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.img-left-section .image-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
}

.img-left-section .text-section {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 55%;
          flex: 1 1 55%;
  -ms-flex-item-align: center;
      align-self: center;
}

.img-left-section .text-section .text-wrapper {
  width: 85%;
  margin: auto;
}

.img-left-section .text-section .text-wrapper .description {
  font-size: 16px;
  padding-top: 20px;
}

.about-detail-description-section .description-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.about-detail-description-section .description-flex .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 48%;
          flex: 1 1 48%;
}

.about-detail-description-section .description-flex .banner {
  margin-right: 40px;
}

.about-detail-description-section .description-flex .banner img {
  height: 90%;
}

.about-detail-description-section .description-flex .default-description {
  font-size: 17px;
  width: 95%;
  line-height: 25px;
  margin-top: 20px;
}

.pagination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination-wrapper .simple-pagination ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.pagination-wrapper .simple-pagination ul li {
  display: inline-block;
}

.pagination-wrapper .simple-pagination ul li .next,
.pagination-wrapper .simple-pagination ul li .prev {
  border: 1px solid #313A6D;
  border-radius: 50%;
}

.pagination-wrapper .simple-pagination .disabled .current {
  background: transparent !important;
  color: #C9CDDA;
  border: 2px solid #C9CDDA;
}

.pagination-wrapper .light-theme a,
.pagination-wrapper .light-theme span {
  background: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.pagination-wrapper .simple-pagination li a,
.pagination-wrapper .simple-pagination li span {
  color: #313A6D;
  padding: 5px 13px;
  text-decoration: none;
  border: transparent;
  background-color: transparent;
  font-weight: 700;
  margin: 0 10px;
}

.pagination-wrapper .simple-pagination .current {
  color: #FFF;
  background-color: #313A6D !important;
  border-color: transparent;
  border-radius: 50%;
}

.pagination-wrapper .simple-pagination .prev.current,
.pagination-wrapper .simple-pagination .next.current {
  background: #e04e60;
}

.custom-scroller {
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.custom-scroller ::-webkit-scrollbar {
  width: 5px;
}

.custom-scroller ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 grey;
          box-shadow: inset 0 0 0 grey;
  border-radius: 10px;
}

.custom-scroller ::-webkit-scrollbar-thumb {
  background: rgba(157, 157, 157, 0.5);
  border-radius: 10px;
}

.custom-scroller ::-webkit-scrollbar-thumb:hover {
  background: #9d9d9d;
}

.floating-wpp-button {
  right: 25px;
  bottom: 25px;
}

.no-subscribe {
  margin-bottom: 70px !important;
}

.no-subscribe-contact {
  margin-bottom: 650px !important;
}

.video-player {
  border-radius: 12px;
}

#use-video .background-centered {
  width: 253px !important;
}

#use-video:hover .background-centered {
  bottom: 6px !important;
}

.loader-wrapper {
  position: relative;
  height: 250px;
  width: 100%;
  /* Add animation to "page content" */
}

.loader-wrapper .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: -75px 0 0 -75px;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #30B7BC;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loader-wrapper .animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 0;
    opacity: 1;
  }
}

input:focus {
  outline: none !important;
  outline-offset: unset !important;
}

input[type="checkbox" i]:focus {
  outline: none !important;
  outline-offset: unset !important;
}

#home .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg {
  margin: 0px;
  padding: 0;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

#home .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg > li {
  padding: 0 7px;
}

#home .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg > li a {
  background: #313A6D;
}

#home .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg > li.active a {
  width: 25px;
  background: #30B7BC;
}

#home .slick-dots li {
  cursor: pointer;
  display: inline-block;
  margin: 0 8px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

#home .slick-dots button {
  background-color: #313A6D;
  border-radius: 30px;
  display: inline-block;
  height: 8px;
  overflow: hidden;
  text-indent: -999em;
  width: 8px;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

#home .slick-dots button:before {
  display: none;
}

#home .slick-dots .slick-active {
  margin: 0 15px;
}

#home .slick-dots .slick-active button {
  background: #30B7BC;
  width: 25px !important;
  height: 8px;
}

#home .banner-slider .banner-item {
  height: 100vh;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#home .banner-slider .banner-item .box-banner {
  padding: 65px 45px;
  background: rgba(48, 183, 188, 0.3);
  border-radius: 10px;
  min-width: 425px;
  min-height: 375px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

#home .banner-slider .banner-item .box-banner .title {
  font-size: 34px;
  font-weight: 700;
  color: #313A6D;
  margin-bottom: 30px;
}

#home .banner-slider .banner-item .box-banner .subtitle {
  margin-bottom: 35px;
  font-size: 20px;
}

#home .product-section-home {
  padding-bottom: 20px !important;
}

#home .product-section-home .slick-prev:before,
#home .product-section-home .slick-next:before {
  color: #e6e6e6;
  font-size: 30px;
}

#home .product-section-home .slick-prev {
  left: -45px !important;
}

#home .product-section-home #product-slider {
  overflow-x: unset;
}

#home .article-section {
  padding-top: 20px;
  padding-bottom: 25px;
}

#home .article-section .inner-section {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #F9F9F9;
  border-bottom-left-radius: 12px;
}

#home .article-section .featured-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}

#home .article-section .featured-section .image-wrapper {
  height: 300px;
  width: 104%;
  overflow: hidden;
}

#home .article-section .featured-section .image-wrapper .image {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 12px;
}

#home .article-section .featured-section .info-wrapper {
  padding: 30px;
}

#home .article-section .featured-section .info-wrapper .date {
  font-size: 10px;
  margin-bottom: 15px;
}

#home .article-section .featured-section .info-wrapper .title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #313A6D;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#home .article-section .featured-section .info-wrapper .title:hover {
  color: #30B7BC;
}

#home .article-section .featured-section .info-wrapper .summary {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 15px;
}

#home .article-section .list-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  padding: 50px;
  background: #313A6D;
  border-radius: 10px;
}

#home .article-section .list-section .default-title {
  color: white;
}

#home .article-section-home .article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
  padding: 10px;
  padding-bottom: 30px;
}

#home .article-section-home .article-list:focus {
  outline: unset !important;
}

#home .article-section-home .article-list .center-wrapper {
  margin: auto;
}

#home .article-section-home .article-list .img-wrapper {
  height: 180px;
  width: 100%;
  border-radius: 12px;
}

#home .article-section-home .article-list .img-wrapper iframe {
  border-radius: 12px;
}

#home .article-section-home .article-list .img-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

#home .article-section-home .article-list .text-wrapper {
  margin: auto;
}

#home .article-section-home .article-list .text-wrapper .date {
  font-size: 11px;
  color: #9d9d9d;
  margin-bottom: 5px;
}

#home .article-section-home .article-list .text-wrapper .title {
  font-size: 18px;
  color: #313a6d;
  font-weight: 600;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#home .article-section-home .article-list .text-wrapper .title:hover {
  color: #30b7bc;
}

#home .article-section-home .article-list .text-wrapper .description {
  font-size: 14px;
  color: #9d9d9d;
  width: 90%;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

#home .client-section-home {
  padding-top: 25px;
  padding-bottom: 70px;
}

#home .client-section-home .slick-prev:before,
#home .client-section-home .slick-next:before {
  color: #e6e6e6;
  font-size: 30px;
}

#home .client-section-home .slick-prev {
  left: -45px !important;
}

#home .client-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*.title, .title-prod {
            font-weight: bolder;
            height: 21px;
            font-size: 11px;
        }

        .desc, .desc-prod {
            height: 21px;
            font-size: 11px;
        }

        .title-prod, .desc-prod {
            height: 85px !important;
        }

        .item-client {
            flex: 1 0 35%;
            margin-right: 10px;
        }*/
}

#home .client-list .item {
  /*flex: 0 1 23%;
            margin-right: 20px;
            margin-bottom: 20px;*/
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
  margin-right: 10px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 0 10px;
  height: 240px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  text-align: center;
  /*justify-content: center;
            align-items: center;*/
  position: relative;
}

#home .client-list .item .card-client {
  height: 100%;
}

#home .client-list .item .card-client .client-box {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#home .client-list .item .logo-wrapper {
  width: 70%;
  margin: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#home .client-list .item .logo-wrapper .logo {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#home .client-list .item .text-wrapper {
  /*visibility: hidden;
                opacity: 0;*/
  display: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  /*transform: translate(0 , -50%);
                top: 50%;
                left: 7.5%;
                right: 7.5%;
                position: absolute;
                width: 85%;*/
  /*.title-client {
                    font-size: 11px;
                    font-weight: 600;
                    margin-bottom: 5px;
                }

                .client-value {
                    font-size: 10px;
                    width: 80%;
                    margin: auto;

                    height: 41px;
                    margin-bottom: 15px;
                }

                .client-country {
                    font-size: 10px;
                    padding-bottom: 15px;
                    width: 80%;
                    margin: auto;
                    height: 30px;
                }*/
}

#home .client-list .item .text-wrapper .title {
  font-weight: 600;
}

#home .client-list .item:hover .logo-wrapper {
  width: 50%;
}

#home .client-list .item:hover .logo {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

#home .client-list .item:hover .img-after {
  visibility: visible;
  opacity: 1;
}

#home .client-list .item:hover .text-wrapper {
  display: block;
}

#home .client-list .img-after {
  position: relative;
  padding-bottom: 15px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#home .client-list .img-after:after {
  content: "";
  position: absolute;
  top: -5px;
  background: #30b7bc;
  left: 50%;
  width: 35px;
  height: 2px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

#home .article-card {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

#home .article-card:hover .info-wrapper .title {
  color: #30B7BC;
}

#home .article-card .img-wrapper {
  height: 60px;
  margin-right: 15px;
  border-radius: 5px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

#home .article-card .img-wrapper .img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 80px;
  height: 60px;
}

#home .article-card .info-wrapper {
  color: white;
}

#home .article-card .info-wrapper .date {
  font-size: 9px;
  margin-bottom: 0px;
}

#home .article-card .info-wrapper .title {
  color: white;
  font-weight: 700;
  margin-bottom: 0px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

#about-section {
  overflow-x: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
}

#about-section .about-main-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  /*height: 85vh;*/
  padding: 25px 0;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about-section .about-main-section .img-wrapper img {
  z-index: -3 !important;
}

#about-section .about-main-section.type-right .img-wrapper {
  right: -7%;
}

#about-section .about-main-section .description {
  padding-top: 20px;
  font-size: 16px;
  word-spacing: 6px;
  line-height: 32px;
  z-index: 1;
}

#about-section .about-main-section .btn {
  margin-top: 20px;
}

#about-section .about-main-section .col-md-7 {
  z-index: 1;
}

#about-section .about-main-section:target {
  padding-top: 90px;
}

#about-section .principal-about-section {
  padding-bottom: 130px;
  padding-top: 25px;
}

#about-section .principal-about-section:target {
  padding-top: 90px;
}

#about-section .principal-about-section .philosophy-section {
  height: 536px;
}

#about-section .principal-about-section .philosophy-wrapper {
  position: relative;
  height: 665px;
}

#about-section .principal-about-section .philosophy-wrapper .img-wrapper {
  text-align: center;
  padding-top: 195px;
}

#about-section .principal-about-section .philosophy-wrapper .img-wrapper img {
  width: 32%;
  margin: auto;
}

#about-section .principal-about-section .philosophy-wrapper .img-wrapper .mobile-img {
  display: none;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .item {
  background: transparent;
  border: transparent;
  border-radius: 12px;
  -webkit-box-shadow: 1px 3px 10px -4px #777777;
  box-shadow: 1px 3px 10px -4px #777777;
  position: absolute;
  padding: 20px;
  width: 295px;
  height: 175px;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .item .title {
  font-size: 16px;
  font-weight: 600;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .item .value {
  font-size: 14px;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .top {
  width: 340px;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .top-left {
  top: 0;
  left: 0;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .top-mid {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .top-right {
  top: 0;
  right: 0;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .left {
  left: 115px;
  top: 35%;
  width: 235px;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .right {
  right: 115px;
  top: 35%;
  width: 235px;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .bottom {
  bottom: 20px;
  width: 400px;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .bottom-left {
  left: 100px;
}

#about-section .principal-about-section .philosophy-wrapper .text-wrapper .bottom-right {
  right: 100px;
}

#about-section .principal-about-section .default-title {
  margin-bottom: 50px;
}

#about-section .principal-about-section .principals-section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#about-section .principal-about-section .principal-box-section {
  text-align: center;
  width: 257px;
  margin: 10px;
  margin-bottom: 35px !important;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 5px 0px #949494;
  box-shadow: 0px 0px 5px 0px #949494;
}

#about-section .principal-about-section .logo-wrapper {
  position: relative;
}

#about-section .principal-about-section .logo-wrapper:after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 111px;
  width: 25px;
  height: 1px;
  background: #30B7BC;
}

#about-section .principal-about-section .logo-wrapper .logo {
  -o-object-fit: contain;
     object-fit: contain;
  height: 30px;
  width: 30%;
  margin-top: 20px;
  margin-bottom: 25px;
}

#about-section .principal-about-section .form-group {
  font-size: 11px;
}

#about-section .principal-about-section .field {
  font-weight: 900;
  text-transform: uppercase;
}

#about-section .principal-about-section .country {
  text-transform: uppercase;
}

#about-section .principal-about-section .product {
  width: 95%;
  margin: auto;
}

#about-section .principal-about-section .value {
  margin-top: 5px;
}

#contact-section .default-section {
  margin: 65px 0 20px 30px;
}

#contact-section .default-section .default-title {
  font-size: 35px;
}

#contact-section .default-section .description {
  font-size: 20px;
}

#contact-section .title {
  font-size: 16px;
  font-weight: 700;
  padding-top: 20px;
  text-transform: capitalize;
}

#contact-section .description {
  line-height: 28px;
}

#contact-section .contact-information-section .contact-wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  margin-left: 80px;
}

#contact-section .contact-information-section .contact-wrapper-flex .item-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
          flex: 1 1 33%;
}

#contact-section .contact-information-section .contact-wrapper-flex .item-wrapper .wrapper {
  width: 65%;
  margin: auto;
}

#contact-section .contact-information-section .contact-wrapper-flex .item-wrapper .img-contact {
  width: 15%;
}

#contact-section .map-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-bottom: 520px;
}

#contact-section .map-section .item-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
  height: auto;
  margin-top: 65px;
  z-index: 2;
}

#contact-section .map-section .form-section {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  opacity: 1;
  z-index: 0;
}

#contact-section .map-section .form-section .btn:hover {
  background-color: #313A6D;
}

#contact-section .map-section .form-contact {
  color: #252326;
  background-color: #30B7BC;
  position: relative;
  padding: 10%;
  padding-left: 20%;
  border-radius: 12px;
}

#contact-section .map-section .form-contact .form-control {
  border: none;
  background: #f4f5f7;
  border-radius: 5px;
  padding: 10px;
  font-size: 12px;
  color: grey;
}

#contact-section .map-section .form-contact label {
  display: inline-block;
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

#contact-section .map-section .form-contact .default-title {
  color: #ffffff !important;
}

#contact-section .map-section .form-contact .default-title:after {
  background: #313A6D;
}

#contact-section .map-section .form-contact .form-desc {
  color: #2d2b2e;
  margin-bottom: 50px;
  margin-top: 20px;
  font-weight: 600;
}

#contact-section .map-section .form-contact .form-header {
  color: #F6F6F6;
  font-size: 20px;
  line-height: 33px;
  padding-bottom: 30px;
}

#contact-section .map-section .form-contact .btn-text {
  font-size: 14px;
}

#contact-section .map-section .form-contact .contact-btn-submit {
  background-color: transparent;
  border: transparent;
}

#contact-section .map-section .form-contact .has-error .form-error {
  color: red !important;
}

#contact-section .map-section .map-container {
  height: 385%;
}

#contact-section .map-section .map-container iframe {
  border-color: transparent;
  border-width: 0px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

#partnership-section .about-detail-description-section {
  padding-top: 20px;
}

#partnership-section .about-detail-description-section .text-section .default-description {
  margin-top: 20px;
  margin-bottom: 20px;
}

#partnership-section .breadcrumb-section {
  padding-top: 90px;
}

#partnership-section .breadcrumb-section .breadcrumb {
  margin-bottom: 40px;
}

#partnership-section .form-section {
  padding-bottom: 70px;
}

#partnership-section .form-section .form-description {
  text-align: center;
  margin: 30px 0;
  font-size: 13px;
}

#partnership-section .form-section .partnership-form {
  margin: auto;
  text-align: left;
}

#partnership-section .form-section .partnership-form .form-group input,
#partnership-section .form-section .partnership-form .form-group textarea {
  background-color: #F9F9F9;
  border-radius: 12px;
  padding: 12px;
  border: transparent;
  -webkit-box-shadow: 0 2px 12px -4px #C6C6C6;
  box-shadow: 0 2px 12px -4px #C6C6C6;
}

#partnership-section .form-section .row-form .form-error {
  margin-left: 26px !important;
}

#article-section .banner-slider-wrapper {
  padding-top: 100px;
  padding-bottom: 10px;
}

#article-section .banner-slider-wrapper .pager-wrapper {
  padding-top: 25px;
}

#article-section .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg {
  margin: 0px;
  padding: 0;
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

#article-section .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg > li {
  padding: 0 7px;
}

#article-section .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg > li a {
  background: #313A6D;
}

#article-section .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg > li.active a {
  width: 25px;
  background: #30B7BC;
}

#article-section .banner-slider-wrapper .box-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#article-section .banner-slider-wrapper .box-banner .item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

#article-section .banner-slider-wrapper .box-banner .text-wrapper {
  padding-right: 40px;
}

#article-section .banner-slider-wrapper .box-banner .text-wrapper .default-title:hover {
  color: #30B7BC;
}

#article-section .banner-slider-wrapper .box-banner .text-wrapper .description {
  margin-top: 15px;
  font-size: 17px;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#article-section .banner-slider-wrapper .box-banner .img-wrapper img {
  height: 260px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

#article-section .filter-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin: 50px 0;
}

#article-section .filter-section .item {
  width: 22%;
}

#article-section .filter-section .filter-list input {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  letter-spacing: 2px;
  color: #242424;
  padding: 0 15px;
  font-weight: 600;
  text-align: center;
  -webkit-box-shadow: 0 3px 7px -2px #b5b5b5;
  box-shadow: 0 3px 7px -2px #b5b5b5;
}

#article-section .filter-section .SumoSelect {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: #242424;
  padding-left: 15px;
  -webkit-box-shadow: 0 3px 7px -2px #b5b5b5;
  box-shadow: 0 3px 7px -2px #b5b5b5;
}

#article-section .filter-section .SumoSelect .select-all {
  height: 38px !important;
  border-bottom: none;
}

#article-section .filter-section .SumoSelect .CaptionCont {
  border: none;
  background-color: transparent;
  margin: 5px;
}

#article-section .filter-section .SumoSelect .CaptionCont .placeholder {
  color: #242424;
  letter-spacing: 1px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}

#article-section .filter-section .SumoSelect .opt.selected label {
  font-weight: 600;
}

#article-section .filter-section .SumoSelect .optWrapper {
  top: 55px;
  border-color: transparent;
  background-color: white;
  -webkit-box-shadow: 0 0 10px -3px #8a8a8a;
  box-shadow: 0 0 10px -3px #8a8a8a;
  font-size: 13px;
  overflow-x: auto;
}

#article-section .filter-section .SumoSelect .optWrapper .options,
#article-section .filter-section .SumoSelect .optWrapper .select-all {
  background-color: rgba(255, 255, 255, 0.8);
}

#article-section .filter-section .SumoSelect .optWrapper .options span i,
#article-section .filter-section .SumoSelect .optWrapper .select-all span i {
  background-color: transparent;
  border-color: #EAEAEA;
  width: 10px;
  height: 10px;
}

#article-section .article-list-section {
  overflow: hidden;
  margin-bottom: 10px;
}

#article-section .article-list-section .article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  margin-bottom: 20px;
}

#article-section .article-list-section .article-list .center-wrapper {
  margin: auto;
}

#article-section .article-list-section .article-list .img-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 5%;
          flex: 1 1 5%;
  /*border-top-left-radius: 12px;
                border-bottom-left-radius: 12px;*/
  border-radius: 12px;
}

#article-section .article-list-section .article-list .img-wrapper iframe {
  border-radius: 12px;
}

#article-section .article-list-section .article-list .img-wrapper img {
  height: 185px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

#article-section .article-list-section .article-list .text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  margin: auto;
}

#article-section .article-list-section .article-list .text-wrapper .date {
  font-size: 11px;
  color: #9D9D9D;
  margin-bottom: 5px;
}

#article-section .article-list-section .article-list .text-wrapper .date .separator {
  font-size: 6px;
  margin: 0 5px;
}

#article-section .article-list-section .article-list .text-wrapper .title {
  font-size: 18px;
  color: #313A6D;
  font-weight: 600;
  margin-bottom: 10px;
}

#article-section .article-list-section .article-list .text-wrapper .title:hover {
  color: #30B7BC;
}

#article-section .article-list-section .article-list .text-wrapper .description {
  font-size: 14px;
  color: #9D9D9D;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

#career-section .breadcrumb-section {
  padding-top: 90px;
}

#career-section .breadcrumb-section .breadcrumb {
  margin-bottom: 40px;
}

#career-section .about-detail-description-section {
  padding-top: 20px;
  padding-bottom: 70px;
}

#career-section .about-detail-description-section .text-section .default-description {
  margin-top: 20px;
  margin-bottom: 20px;
}

#career-section .team-list-section .box {
  padding: 20px 0;
}

#career-section .team-list-section .default-title {
  font-size: 17px;
}

#career-section .team-list-section .default-title:after {
  width: 22px;
  height: 2px;
  bottom: 10px;
}

#career-section .team-section-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#career-section .team-section-flex .team-wrapper {
  background-color: #f9f9f9;
  text-align: center;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.33%;
          flex: 0 0 31.33%;
}

#career-section .team-section-flex .team-wrapper img {
  width: 22%;
  margin-bottom: 10px;
}

#career-details-section .about-detail-description-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

#career-details-section .breadcrumb-section {
  padding-top: 90px;
}

#career-details-section .breadcrumb-section .breadcrumb {
  margin-bottom: 40px;
}

#career-details-section .about-detail-description-section {
  padding-top: 20px;
  padding-bottom: 70px;
}

#career-details-section .about-detail-description-section .text-section .default-description {
  margin-top: 20px;
  margin-bottom: 20px;
}

#career-details-section .about-detail-description-section .btn {
  margin: 25px 10px;
  padding: 8px 50px;
}

#career-details-section .title {
  padding-bottom: 15px;
  font-weight: 700;
  font-size: 17px;
}

#career-details-section .body {
  line-height: 35px;
  font-size: 14px;
}

#career-details-section .job-description-section {
  padding-bottom: 25px;
}

#career-details-section #career-modal-apply .modal-content {
  border-radius: 40px;
  width: 80%;
  margin: auto;
}

#career-details-section #career-modal-apply .modal-content .form-group {
  width: 80%;
  margin: auto;
  margin-bottom: 25px;
}

#career-details-section #career-modal-apply .modal-header {
  border-bottom: transparent;
}

#career-details-section #career-modal-apply .modal-header .close {
  font-size: 38px;
  margin-right: 14px;
  margin-top: 0;
}

#career-details-section #career-modal-apply .modal-body {
  text-align: center;
}

#career-details-section #career-modal-apply input,
#career-details-section #career-modal-apply textarea {
  border-radius: 12px;
  padding: 12px;
  border: transparent;
  -webkit-box-shadow: 0 2px 3px 1px #d6d6d6;
  box-shadow: 0 2px 3px 1px #d6d6d6;
}

#career-details-section #career-modal-apply .file-upload-information,
#career-details-section #career-modal-apply .file-upload-information-2 {
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}

#career-details-section #career-modal-apply .file-upload-information-2 {
  margin: auto;
  margin-left: 12px !important;
}

#career-details-section #career-modal-apply .description {
  text-align: center;
  width: 49%;
  font-size: 14px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 35px;
}

#career-details-section #career-modal-apply .display-flex,
#career-details-section #career-modal-apply .default-control-list,
#career-details-section #career-modal-apply .default-group-inline,
#career-details-section #career-modal-apply .custom-input.brand-box .checker-box,
.custom-input.brand-box #career-details-section #career-modal-apply .checker-box,
#career-details-section #career-modal-apply .nav-dropdown .dropdown-content .brand-list,
.nav-dropdown .dropdown-content #career-details-section #career-modal-apply .brand-list,
#career-details-section #career-modal-apply #main-navbar .inner-navbar,
#main-navbar #career-details-section #career-modal-apply .inner-navbar,
#career-details-section #career-modal-apply #main-footer .section-list,
#main-footer #career-details-section #career-modal-apply .section-list,
#career-details-section #career-modal-apply #main-footer .socmed-list,
#main-footer #career-details-section #career-modal-apply .socmed-list,
#career-details-section #career-modal-apply .badge-list,
#career-details-section #career-modal-apply #home .banner-slider .banner-item,
#home .banner-slider #career-details-section #career-modal-apply .banner-item,
#career-details-section #career-modal-apply #home .article-section .inner-section,
#home .article-section #career-details-section #career-modal-apply .inner-section,
#career-details-section #career-modal-apply #home .client-list,
#home #career-details-section #career-modal-apply .client-list,
#career-details-section #career-modal-apply #home .article-card,
#home #career-details-section #career-modal-apply .article-card,
#career-details-section #career-modal-apply #product-section .recommendation-section .recommendation-list,
#product-section .recommendation-section #career-details-section #career-modal-apply .recommendation-list,
#career-details-section #career-modal-apply #product-details-section .item-section .img-section .img-list-item .img-wrapper,
#product-details-section .item-section .img-section .img-list-item #career-details-section #career-modal-apply .img-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#career-details-section #career-modal-apply .display-flex .upload-btn-wrapper,
#career-details-section #career-modal-apply .default-control-list .upload-btn-wrapper,
#career-details-section #career-modal-apply .default-group-inline .upload-btn-wrapper,
#career-details-section #career-modal-apply .custom-input.brand-box .checker-box .upload-btn-wrapper,
.custom-input.brand-box #career-details-section #career-modal-apply .checker-box .upload-btn-wrapper,
#career-details-section #career-modal-apply .nav-dropdown .dropdown-content .brand-list .upload-btn-wrapper,
.nav-dropdown .dropdown-content #career-details-section #career-modal-apply .brand-list .upload-btn-wrapper,
#career-details-section #career-modal-apply #main-navbar .inner-navbar .upload-btn-wrapper,
#main-navbar #career-details-section #career-modal-apply .inner-navbar .upload-btn-wrapper,
#career-details-section #career-modal-apply #main-footer .section-list .upload-btn-wrapper,
#main-footer #career-details-section #career-modal-apply .section-list .upload-btn-wrapper,
#career-details-section #career-modal-apply #main-footer .socmed-list .upload-btn-wrapper,
#main-footer #career-details-section #career-modal-apply .socmed-list .upload-btn-wrapper,
#career-details-section #career-modal-apply .badge-list .upload-btn-wrapper,
#career-details-section #career-modal-apply #home .banner-slider .banner-item .upload-btn-wrapper,
#home .banner-slider #career-details-section #career-modal-apply .banner-item .upload-btn-wrapper,
#career-details-section #career-modal-apply #home .article-section .inner-section .upload-btn-wrapper,
#home .article-section #career-details-section #career-modal-apply .inner-section .upload-btn-wrapper,
#career-details-section #career-modal-apply #home .client-list .upload-btn-wrapper,
#home #career-details-section #career-modal-apply .client-list .upload-btn-wrapper,
#career-details-section #career-modal-apply #home .article-card .upload-btn-wrapper,
#home #career-details-section #career-modal-apply .article-card .upload-btn-wrapper,
#career-details-section #career-modal-apply #product-section .recommendation-section .recommendation-list .upload-btn-wrapper,
#product-section .recommendation-section #career-details-section #career-modal-apply .recommendation-list .upload-btn-wrapper,
#career-details-section #career-modal-apply #product-details-section .item-section .img-section .img-list-item .img-wrapper .upload-btn-wrapper,
#product-details-section .item-section .img-section .img-list-item #career-details-section #career-modal-apply .img-wrapper .upload-btn-wrapper {
  margin-top: 6px;
  margin-right: 10px;
}

#career-details-section #career-modal-apply .display-flex .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply .default-control-list .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply .default-group-inline .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply .custom-input.brand-box .checker-box .upload-btn-wrapper .form-error,
.custom-input.brand-box #career-details-section #career-modal-apply .checker-box .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply .nav-dropdown .dropdown-content .brand-list .upload-btn-wrapper .form-error,
.nav-dropdown .dropdown-content #career-details-section #career-modal-apply .brand-list .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #main-navbar .inner-navbar .upload-btn-wrapper .form-error,
#main-navbar #career-details-section #career-modal-apply .inner-navbar .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #main-footer .section-list .upload-btn-wrapper .form-error,
#main-footer #career-details-section #career-modal-apply .section-list .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #main-footer .socmed-list .upload-btn-wrapper .form-error,
#main-footer #career-details-section #career-modal-apply .socmed-list .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply .badge-list .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #home .banner-slider .banner-item .upload-btn-wrapper .form-error,
#home .banner-slider #career-details-section #career-modal-apply .banner-item .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #home .article-section .inner-section .upload-btn-wrapper .form-error,
#home .article-section #career-details-section #career-modal-apply .inner-section .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #home .client-list .upload-btn-wrapper .form-error,
#home #career-details-section #career-modal-apply .client-list .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #home .article-card .upload-btn-wrapper .form-error,
#home #career-details-section #career-modal-apply .article-card .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #product-section .recommendation-section .recommendation-list .upload-btn-wrapper .form-error,
#product-section .recommendation-section #career-details-section #career-modal-apply .recommendation-list .upload-btn-wrapper .form-error,
#career-details-section #career-modal-apply #product-details-section .item-section .img-section .img-list-item .img-wrapper .upload-btn-wrapper .form-error,
#product-details-section .item-section .img-section .img-list-item #career-details-section #career-modal-apply .img-wrapper .upload-btn-wrapper .form-error {
  margin-top: 30px !important;
}

#career-details-section .disabled-input {
  background: transparent;
  margin-bottom: 15px;
}

#career-details-section .icon-cancel-input {
  position: absolute;
  left: 240px;
  top: 8px;
  font-size: 25px;
}

#career-details-section .upload-btn-wrapper {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

#career-details-section .file-upload-information {
  width: 230px;
}

#career-details-section .register-btn-upload-file {
  border: 2px solid #c5c5c5;
  background-color: white;
  padding: 0px 10px;
  height: 35px;
  border-radius: 12px;
  font-family: BrandonTextMedium;
  color: #d7d7d7;
}

#career-details-section .upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

#article-detail-section .breadcrumb-section {
  padding-top: 100px;
}

#article-detail-section .fixed-height {
  height: 100% !important;
}

#article-detail-section .display-flex,
#article-detail-section .default-control-list,
#article-detail-section .default-group-inline,
#article-detail-section .custom-input.brand-box .checker-box,
.custom-input.brand-box #article-detail-section .checker-box,
#article-detail-section .nav-dropdown .dropdown-content .brand-list,
.nav-dropdown .dropdown-content #article-detail-section .brand-list,
#article-detail-section #main-navbar .inner-navbar,
#main-navbar #article-detail-section .inner-navbar,
#article-detail-section #main-footer .section-list,
#main-footer #article-detail-section .section-list,
#article-detail-section #main-footer .socmed-list,
#main-footer #article-detail-section .socmed-list,
#article-detail-section .badge-list,
#article-detail-section #home .banner-slider .banner-item,
#home .banner-slider #article-detail-section .banner-item,
#article-detail-section #home .article-section .inner-section,
#home .article-section #article-detail-section .inner-section,
#article-detail-section #home .client-list,
#home #article-detail-section .client-list,
#article-detail-section #home .article-card,
#home #article-detail-section .article-card,
#article-detail-section #product-section .recommendation-section .recommendation-list,
#product-section .recommendation-section #article-detail-section .recommendation-list,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#article-detail-section .display-flex .article-section,
#article-detail-section .default-control-list .article-section,
#article-detail-section .default-group-inline .article-section,
#article-detail-section .custom-input.brand-box .checker-box .article-section,
.custom-input.brand-box #article-detail-section .checker-box .article-section,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section,
#article-detail-section #main-navbar .inner-navbar .article-section,
#main-navbar #article-detail-section .inner-navbar .article-section,
#article-detail-section #main-footer .section-list .article-section,
#main-footer #article-detail-section .section-list .article-section,
#article-detail-section #main-footer .socmed-list .article-section,
#main-footer #article-detail-section .socmed-list .article-section,
#article-detail-section .badge-list .article-section,
#article-detail-section #home .banner-slider .banner-item .article-section,
#home .banner-slider #article-detail-section .banner-item .article-section,
#article-detail-section #home .article-section .inner-section .article-section,
#home .article-section #article-detail-section .inner-section .article-section,
#article-detail-section #home .client-list .article-section,
#home #article-detail-section .client-list .article-section,
#article-detail-section #home .article-card .article-section,
#home #article-detail-section .article-card .article-section,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
}

#article-detail-section .display-flex .article-section.max-width,
#article-detail-section .default-control-list .article-section.max-width,
#article-detail-section .default-group-inline .article-section.max-width,
#article-detail-section .custom-input.brand-box .checker-box .article-section.max-width,
.custom-input.brand-box #article-detail-section .checker-box .article-section.max-width,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section.max-width,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section.max-width,
#article-detail-section #main-navbar .inner-navbar .article-section.max-width,
#main-navbar #article-detail-section .inner-navbar .article-section.max-width,
#article-detail-section #main-footer .section-list .article-section.max-width,
#main-footer #article-detail-section .section-list .article-section.max-width,
#article-detail-section #main-footer .socmed-list .article-section.max-width,
#main-footer #article-detail-section .socmed-list .article-section.max-width,
#article-detail-section .badge-list .article-section.max-width,
#article-detail-section #home .banner-slider .banner-item .article-section.max-width,
#home .banner-slider #article-detail-section .banner-item .article-section.max-width,
#article-detail-section #home .article-section .inner-section .article-section.max-width,
#home .article-section #article-detail-section .inner-section .article-section.max-width,
#article-detail-section #home .client-list .article-section.max-width,
#home #article-detail-section .client-list .article-section.max-width,
#article-detail-section #home .article-card .article-section.max-width,
#home #article-detail-section .article-card .article-section.max-width,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section.max-width,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section.max-width,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section.max-width,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section.max-width {
  max-width: 60%;
}

#article-detail-section .display-flex .article-section #article-body,
#article-detail-section .default-control-list .article-section #article-body,
#article-detail-section .default-group-inline .article-section #article-body,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body,
#article-detail-section #main-footer .section-list .article-section #article-body,
#main-footer #article-detail-section .section-list .article-section #article-body,
#article-detail-section #main-footer .socmed-list .article-section #article-body,
#main-footer #article-detail-section .socmed-list .article-section #article-body,
#article-detail-section .badge-list .article-section #article-body,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body,
#article-detail-section #home .article-section .inner-section .article-section #article-body,
#home .article-section #article-detail-section .inner-section .article-section #article-body,
#article-detail-section #home .client-list .article-section #article-body,
#home #article-detail-section .client-list .article-section #article-body,
#article-detail-section #home .article-card .article-section #article-body,
#home #article-detail-section .article-card .article-section #article-body,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body {
  overflow-x: auto;
}

#article-detail-section .display-flex .article-section #article-body h1,
#article-detail-section .default-control-list .article-section #article-body h1,
#article-detail-section .default-group-inline .article-section #article-body h1,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body h1,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body h1,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body h1,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body h1,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body h1,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body h1,
#article-detail-section #main-footer .section-list .article-section #article-body h1,
#main-footer #article-detail-section .section-list .article-section #article-body h1,
#article-detail-section #main-footer .socmed-list .article-section #article-body h1,
#main-footer #article-detail-section .socmed-list .article-section #article-body h1,
#article-detail-section .badge-list .article-section #article-body h1,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body h1,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body h1,
#article-detail-section #home .article-section .inner-section .article-section #article-body h1,
#home .article-section #article-detail-section .inner-section .article-section #article-body h1,
#article-detail-section #home .client-list .article-section #article-body h1,
#home #article-detail-section .client-list .article-section #article-body h1,
#article-detail-section #home .article-card .article-section #article-body h1,
#home #article-detail-section .article-card .article-section #article-body h1,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body h1,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body h1,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body h1,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body h1,
#article-detail-section .display-flex .article-section #article-body h2,
#article-detail-section .default-control-list .article-section #article-body h2,
#article-detail-section .default-group-inline .article-section #article-body h2,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body h2,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body h2,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body h2,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body h2,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body h2,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body h2,
#article-detail-section #main-footer .section-list .article-section #article-body h2,
#main-footer #article-detail-section .section-list .article-section #article-body h2,
#article-detail-section #main-footer .socmed-list .article-section #article-body h2,
#main-footer #article-detail-section .socmed-list .article-section #article-body h2,
#article-detail-section .badge-list .article-section #article-body h2,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body h2,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body h2,
#article-detail-section #home .article-section .inner-section .article-section #article-body h2,
#home .article-section #article-detail-section .inner-section .article-section #article-body h2,
#article-detail-section #home .client-list .article-section #article-body h2,
#home #article-detail-section .client-list .article-section #article-body h2,
#article-detail-section #home .article-card .article-section #article-body h2,
#home #article-detail-section .article-card .article-section #article-body h2,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body h2,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body h2,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body h2,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body h2,
#article-detail-section .display-flex .article-section #article-body h3,
#article-detail-section .default-control-list .article-section #article-body h3,
#article-detail-section .default-group-inline .article-section #article-body h3,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body h3,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body h3,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body h3,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body h3,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body h3,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body h3,
#article-detail-section #main-footer .section-list .article-section #article-body h3,
#main-footer #article-detail-section .section-list .article-section #article-body h3,
#article-detail-section #main-footer .socmed-list .article-section #article-body h3,
#main-footer #article-detail-section .socmed-list .article-section #article-body h3,
#article-detail-section .badge-list .article-section #article-body h3,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body h3,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body h3,
#article-detail-section #home .article-section .inner-section .article-section #article-body h3,
#home .article-section #article-detail-section .inner-section .article-section #article-body h3,
#article-detail-section #home .client-list .article-section #article-body h3,
#home #article-detail-section .client-list .article-section #article-body h3,
#article-detail-section #home .article-card .article-section #article-body h3,
#home #article-detail-section .article-card .article-section #article-body h3,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body h3,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body h3,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body h3,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body h3,
#article-detail-section .display-flex .article-section #article-body h4,
#article-detail-section .default-control-list .article-section #article-body h4,
#article-detail-section .default-group-inline .article-section #article-body h4,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body h4,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body h4,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body h4,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body h4,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body h4,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body h4,
#article-detail-section #main-footer .section-list .article-section #article-body h4,
#main-footer #article-detail-section .section-list .article-section #article-body h4,
#article-detail-section #main-footer .socmed-list .article-section #article-body h4,
#main-footer #article-detail-section .socmed-list .article-section #article-body h4,
#article-detail-section .badge-list .article-section #article-body h4,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body h4,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body h4,
#article-detail-section #home .article-section .inner-section .article-section #article-body h4,
#home .article-section #article-detail-section .inner-section .article-section #article-body h4,
#article-detail-section #home .client-list .article-section #article-body h4,
#home #article-detail-section .client-list .article-section #article-body h4,
#article-detail-section #home .article-card .article-section #article-body h4,
#home #article-detail-section .article-card .article-section #article-body h4,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body h4,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body h4,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body h4,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body h4,
#article-detail-section .display-flex .article-section #article-body h5,
#article-detail-section .default-control-list .article-section #article-body h5,
#article-detail-section .default-group-inline .article-section #article-body h5,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body h5,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body h5,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body h5,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body h5,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body h5,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body h5,
#article-detail-section #main-footer .section-list .article-section #article-body h5,
#main-footer #article-detail-section .section-list .article-section #article-body h5,
#article-detail-section #main-footer .socmed-list .article-section #article-body h5,
#main-footer #article-detail-section .socmed-list .article-section #article-body h5,
#article-detail-section .badge-list .article-section #article-body h5,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body h5,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body h5,
#article-detail-section #home .article-section .inner-section .article-section #article-body h5,
#home .article-section #article-detail-section .inner-section .article-section #article-body h5,
#article-detail-section #home .client-list .article-section #article-body h5,
#home #article-detail-section .client-list .article-section #article-body h5,
#article-detail-section #home .article-card .article-section #article-body h5,
#home #article-detail-section .article-card .article-section #article-body h5,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body h5,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body h5,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body h5,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body h5,
#article-detail-section .display-flex .article-section #article-body h6,
#article-detail-section .default-control-list .article-section #article-body h6,
#article-detail-section .default-group-inline .article-section #article-body h6,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body h6,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body h6,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body h6,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body h6,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body h6,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body h6,
#article-detail-section #main-footer .section-list .article-section #article-body h6,
#main-footer #article-detail-section .section-list .article-section #article-body h6,
#article-detail-section #main-footer .socmed-list .article-section #article-body h6,
#main-footer #article-detail-section .socmed-list .article-section #article-body h6,
#article-detail-section .badge-list .article-section #article-body h6,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body h6,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body h6,
#article-detail-section #home .article-section .inner-section .article-section #article-body h6,
#home .article-section #article-detail-section .inner-section .article-section #article-body h6,
#article-detail-section #home .client-list .article-section #article-body h6,
#home #article-detail-section .client-list .article-section #article-body h6,
#article-detail-section #home .article-card .article-section #article-body h6,
#home #article-detail-section .article-card .article-section #article-body h6,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body h6,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body h6,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body h6,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body h6 {
  font-weight: bold;
}

#article-detail-section .display-flex .article-section #article-body p span,
#article-detail-section .default-control-list .article-section #article-body p span,
#article-detail-section .default-group-inline .article-section #article-body p span,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body p span,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body p span,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body p span,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body p span,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body p span,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body p span,
#article-detail-section #main-footer .section-list .article-section #article-body p span,
#main-footer #article-detail-section .section-list .article-section #article-body p span,
#article-detail-section #main-footer .socmed-list .article-section #article-body p span,
#main-footer #article-detail-section .socmed-list .article-section #article-body p span,
#article-detail-section .badge-list .article-section #article-body p span,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body p span,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body p span,
#article-detail-section #home .article-section .inner-section .article-section #article-body p span,
#home .article-section #article-detail-section .inner-section .article-section #article-body p span,
#article-detail-section #home .client-list .article-section #article-body p span,
#home #article-detail-section .client-list .article-section #article-body p span,
#article-detail-section #home .article-card .article-section #article-body p span,
#home #article-detail-section .article-card .article-section #article-body p span,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body p span,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body p span,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body p span,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body p span {
  line-height: inherit !important;
}

#article-detail-section .display-flex .article-section #article-body ul li span,
#article-detail-section .default-control-list .article-section #article-body ul li span,
#article-detail-section .default-group-inline .article-section #article-body ul li span,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body ul li span,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body ul li span,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body ul li span,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body ul li span,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body ul li span,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body ul li span,
#article-detail-section #main-footer .section-list .article-section #article-body ul li span,
#main-footer #article-detail-section .section-list .article-section #article-body ul li span,
#article-detail-section #main-footer .socmed-list .article-section #article-body ul li span,
#main-footer #article-detail-section .socmed-list .article-section #article-body ul li span,
#article-detail-section .badge-list .article-section #article-body ul li span,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body ul li span,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body ul li span,
#article-detail-section #home .article-section .inner-section .article-section #article-body ul li span,
#home .article-section #article-detail-section .inner-section .article-section #article-body ul li span,
#article-detail-section #home .client-list .article-section #article-body ul li span,
#home #article-detail-section .client-list .article-section #article-body ul li span,
#article-detail-section #home .article-card .article-section #article-body ul li span,
#home #article-detail-section .article-card .article-section #article-body ul li span,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body ul li span,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body ul li span,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body ul li span,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body ul li span {
  line-height: inherit !important;
}

#article-detail-section .display-flex .article-section #article-body a,
#article-detail-section .default-control-list .article-section #article-body a,
#article-detail-section .default-group-inline .article-section #article-body a,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body a,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body a,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body a,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body a,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body a,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body a,
#article-detail-section #main-footer .section-list .article-section #article-body a,
#main-footer #article-detail-section .section-list .article-section #article-body a,
#article-detail-section #main-footer .socmed-list .article-section #article-body a,
#main-footer #article-detail-section .socmed-list .article-section #article-body a,
#article-detail-section .badge-list .article-section #article-body a,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body a,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body a,
#article-detail-section #home .article-section .inner-section .article-section #article-body a,
#home .article-section #article-detail-section .inner-section .article-section #article-body a,
#article-detail-section #home .client-list .article-section #article-body a,
#home #article-detail-section .client-list .article-section #article-body a,
#article-detail-section #home .article-card .article-section #article-body a,
#home #article-detail-section .article-card .article-section #article-body a,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body a,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body a,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body a,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body a {
  color: #0000ee;
  text-decoration: underline !important;
}

#article-detail-section .display-flex .article-section #article-body a:hover,
#article-detail-section .default-control-list .article-section #article-body a:hover,
#article-detail-section .default-group-inline .article-section #article-body a:hover,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body a:hover,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body a:hover,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body a:hover,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body a:hover,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body a:hover,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body a:hover,
#article-detail-section #main-footer .section-list .article-section #article-body a:hover,
#main-footer #article-detail-section .section-list .article-section #article-body a:hover,
#article-detail-section #main-footer .socmed-list .article-section #article-body a:hover,
#main-footer #article-detail-section .socmed-list .article-section #article-body a:hover,
#article-detail-section .badge-list .article-section #article-body a:hover,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body a:hover,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body a:hover,
#article-detail-section #home .article-section .inner-section .article-section #article-body a:hover,
#home .article-section #article-detail-section .inner-section .article-section #article-body a:hover,
#article-detail-section #home .client-list .article-section #article-body a:hover,
#home #article-detail-section .client-list .article-section #article-body a:hover,
#article-detail-section #home .article-card .article-section #article-body a:hover,
#home #article-detail-section .article-card .article-section #article-body a:hover,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body a:hover,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body a:hover,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body a:hover,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body a:hover {
  color: #0000ee;
}

#article-detail-section .display-flex .article-section #article-body a:focus,
#article-detail-section .default-control-list .article-section #article-body a:focus,
#article-detail-section .default-group-inline .article-section #article-body a:focus,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body a:focus,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body a:focus,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body a:focus,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body a:focus,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body a:focus,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body a:focus,
#article-detail-section #main-footer .section-list .article-section #article-body a:focus,
#main-footer #article-detail-section .section-list .article-section #article-body a:focus,
#article-detail-section #main-footer .socmed-list .article-section #article-body a:focus,
#main-footer #article-detail-section .socmed-list .article-section #article-body a:focus,
#article-detail-section .badge-list .article-section #article-body a:focus,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body a:focus,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body a:focus,
#article-detail-section #home .article-section .inner-section .article-section #article-body a:focus,
#home .article-section #article-detail-section .inner-section .article-section #article-body a:focus,
#article-detail-section #home .client-list .article-section #article-body a:focus,
#home #article-detail-section .client-list .article-section #article-body a:focus,
#article-detail-section #home .article-card .article-section #article-body a:focus,
#home #article-detail-section .article-card .article-section #article-body a:focus,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body a:focus,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body a:focus,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body a:focus,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body a:focus {
  color: #0000ee;
}

#article-detail-section .display-flex .article-section #article-body img,
#article-detail-section .default-control-list .article-section #article-body img,
#article-detail-section .default-group-inline .article-section #article-body img,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body img,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body img,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body img,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body img,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body img,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body img,
#article-detail-section #main-footer .section-list .article-section #article-body img,
#main-footer #article-detail-section .section-list .article-section #article-body img,
#article-detail-section #main-footer .socmed-list .article-section #article-body img,
#main-footer #article-detail-section .socmed-list .article-section #article-body img,
#article-detail-section .badge-list .article-section #article-body img,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body img,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body img,
#article-detail-section #home .article-section .inner-section .article-section #article-body img,
#home .article-section #article-detail-section .inner-section .article-section #article-body img,
#article-detail-section #home .client-list .article-section #article-body img,
#home #article-detail-section .client-list .article-section #article-body img,
#article-detail-section #home .article-card .article-section #article-body img,
#home #article-detail-section .article-card .article-section #article-body img,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body img,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body img,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body img,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body img {
  -o-object-fit: contain;
     object-fit: contain;
  height: unset !important;
  max-width: 100%;
}

#article-detail-section .display-flex .article-section #article-body table,
#article-detail-section .default-control-list .article-section #article-body table,
#article-detail-section .default-group-inline .article-section #article-body table,
#article-detail-section .custom-input.brand-box .checker-box .article-section #article-body table,
.custom-input.brand-box #article-detail-section .checker-box .article-section #article-body table,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section #article-body table,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section #article-body table,
#article-detail-section #main-navbar .inner-navbar .article-section #article-body table,
#main-navbar #article-detail-section .inner-navbar .article-section #article-body table,
#article-detail-section #main-footer .section-list .article-section #article-body table,
#main-footer #article-detail-section .section-list .article-section #article-body table,
#article-detail-section #main-footer .socmed-list .article-section #article-body table,
#main-footer #article-detail-section .socmed-list .article-section #article-body table,
#article-detail-section .badge-list .article-section #article-body table,
#article-detail-section #home .banner-slider .banner-item .article-section #article-body table,
#home .banner-slider #article-detail-section .banner-item .article-section #article-body table,
#article-detail-section #home .article-section .inner-section .article-section #article-body table,
#home .article-section #article-detail-section .inner-section .article-section #article-body table,
#article-detail-section #home .client-list .article-section #article-body table,
#home #article-detail-section .client-list .article-section #article-body table,
#article-detail-section #home .article-card .article-section #article-body table,
#home #article-detail-section .article-card .article-section #article-body table,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section #article-body table,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section #article-body table,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section #article-body table,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section #article-body table {
  width: 100% !important;
}

#article-detail-section .display-flex .article-section img,
#article-detail-section .default-control-list .article-section img,
#article-detail-section .default-group-inline .article-section img,
#article-detail-section .custom-input.brand-box .checker-box .article-section img,
.custom-input.brand-box #article-detail-section .checker-box .article-section img,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section img,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section img,
#article-detail-section #main-navbar .inner-navbar .article-section img,
#main-navbar #article-detail-section .inner-navbar .article-section img,
#article-detail-section #main-footer .section-list .article-section img,
#main-footer #article-detail-section .section-list .article-section img,
#article-detail-section #main-footer .socmed-list .article-section img,
#main-footer #article-detail-section .socmed-list .article-section img,
#article-detail-section .badge-list .article-section img,
#article-detail-section #home .banner-slider .banner-item .article-section img,
#home .banner-slider #article-detail-section .banner-item .article-section img,
#article-detail-section #home .article-section .inner-section .article-section img,
#home .article-section #article-detail-section .inner-section .article-section img,
#article-detail-section #home .client-list .article-section img,
#home #article-detail-section .client-list .article-section img,
#article-detail-section #home .article-card .article-section img,
#home #article-detail-section .article-card .article-section img,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section img,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section img,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section img,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section img {
  -o-object-fit: cover;
     object-fit: cover;
  height: unset;
  border-radius: 12px;
}

#article-detail-section .display-flex .article-section .date,
#article-detail-section .default-control-list .article-section .date,
#article-detail-section .default-group-inline .article-section .date,
#article-detail-section .custom-input.brand-box .checker-box .article-section .date,
.custom-input.brand-box #article-detail-section .checker-box .article-section .date,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .date,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .date,
#article-detail-section #main-navbar .inner-navbar .article-section .date,
#main-navbar #article-detail-section .inner-navbar .article-section .date,
#article-detail-section #main-footer .section-list .article-section .date,
#main-footer #article-detail-section .section-list .article-section .date,
#article-detail-section #main-footer .socmed-list .article-section .date,
#main-footer #article-detail-section .socmed-list .article-section .date,
#article-detail-section .badge-list .article-section .date,
#article-detail-section #home .banner-slider .banner-item .article-section .date,
#home .banner-slider #article-detail-section .banner-item .article-section .date,
#article-detail-section #home .article-section .inner-section .article-section .date,
#home .article-section #article-detail-section .inner-section .article-section .date,
#article-detail-section #home .client-list .article-section .date,
#home #article-detail-section .client-list .article-section .date,
#article-detail-section #home .article-card .article-section .date,
#home #article-detail-section .article-card .article-section .date,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .date,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .date,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .date,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .date {
  font-size: 10px;
  letter-spacing: 1px;
  color: #9d9d9d;
  margin-top: 15px;
}

#article-detail-section .display-flex .article-section .title,
#article-detail-section .default-control-list .article-section .title,
#article-detail-section .default-group-inline .article-section .title,
#article-detail-section .custom-input.brand-box .checker-box .article-section .title,
.custom-input.brand-box #article-detail-section .checker-box .article-section .title,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .title,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .title,
#article-detail-section #main-navbar .inner-navbar .article-section .title,
#main-navbar #article-detail-section .inner-navbar .article-section .title,
#article-detail-section #main-footer .section-list .article-section .title,
#main-footer #article-detail-section .section-list .article-section .title,
#article-detail-section #main-footer .socmed-list .article-section .title,
#main-footer #article-detail-section .socmed-list .article-section .title,
#article-detail-section .badge-list .article-section .title,
#article-detail-section #home .banner-slider .banner-item .article-section .title,
#home .banner-slider #article-detail-section .banner-item .article-section .title,
#article-detail-section #home .article-section .inner-section .article-section .title,
#home .article-section #article-detail-section .inner-section .article-section .title,
#article-detail-section #home .client-list .article-section .title,
#home #article-detail-section .client-list .article-section .title,
#article-detail-section #home .article-card .article-section .title,
#home #article-detail-section .article-card .article-section .title,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .title,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .title,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .title,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .title {
  font-size: 32px;
  color: #313a6d;
  font-weight: 600;
  margin-bottom: 25px;
}

#article-detail-section .display-flex .article-section .description,
#article-detail-section .default-control-list .article-section .description,
#article-detail-section .default-group-inline .article-section .description,
#article-detail-section .custom-input.brand-box .checker-box .article-section .description,
.custom-input.brand-box #article-detail-section .checker-box .article-section .description,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .description,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .description,
#article-detail-section #main-navbar .inner-navbar .article-section .description,
#main-navbar #article-detail-section .inner-navbar .article-section .description,
#article-detail-section #main-footer .section-list .article-section .description,
#main-footer #article-detail-section .section-list .article-section .description,
#article-detail-section #main-footer .socmed-list .article-section .description,
#main-footer #article-detail-section .socmed-list .article-section .description,
#article-detail-section .badge-list .article-section .description,
#article-detail-section #home .banner-slider .banner-item .article-section .description,
#home .banner-slider #article-detail-section .banner-item .article-section .description,
#article-detail-section #home .article-section .inner-section .article-section .description,
#home .article-section #article-detail-section .inner-section .article-section .description,
#article-detail-section #home .client-list .article-section .description,
#home #article-detail-section .client-list .article-section .description,
#article-detail-section #home .article-card .article-section .description,
#home #article-detail-section .article-card .article-section .description,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .description,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .description,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .description,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .description {
  font-size: 15px;
  line-height: 30px;
  color: #9d9d9d;
  margin-bottom: 35px;
  text-align: justify;
}

#article-detail-section .display-flex .article-section .description p img,
#article-detail-section .default-control-list .article-section .description p img,
#article-detail-section .default-group-inline .article-section .description p img,
#article-detail-section .custom-input.brand-box .checker-box .article-section .description p img,
.custom-input.brand-box #article-detail-section .checker-box .article-section .description p img,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .description p img,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .description p img,
#article-detail-section #main-navbar .inner-navbar .article-section .description p img,
#main-navbar #article-detail-section .inner-navbar .article-section .description p img,
#article-detail-section #main-footer .section-list .article-section .description p img,
#main-footer #article-detail-section .section-list .article-section .description p img,
#article-detail-section #main-footer .socmed-list .article-section .description p img,
#main-footer #article-detail-section .socmed-list .article-section .description p img,
#article-detail-section .badge-list .article-section .description p img,
#article-detail-section #home .banner-slider .banner-item .article-section .description p img,
#home .banner-slider #article-detail-section .banner-item .article-section .description p img,
#article-detail-section #home .article-section .inner-section .article-section .description p img,
#home .article-section #article-detail-section .inner-section .article-section .description p img,
#article-detail-section #home .client-list .article-section .description p img,
#home #article-detail-section .client-list .article-section .description p img,
#article-detail-section #home .article-card .article-section .description p img,
#home #article-detail-section .article-card .article-section .description p img,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .description p img,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .description p img,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .description p img,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .description p img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#article-detail-section .display-flex .article-section .section-title,
#article-detail-section .default-control-list .article-section .section-title,
#article-detail-section .default-group-inline .article-section .section-title,
#article-detail-section .custom-input.brand-box .checker-box .article-section .section-title,
.custom-input.brand-box #article-detail-section .checker-box .article-section .section-title,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .section-title,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .section-title,
#article-detail-section #main-navbar .inner-navbar .article-section .section-title,
#main-navbar #article-detail-section .inner-navbar .article-section .section-title,
#article-detail-section #main-footer .section-list .article-section .section-title,
#main-footer #article-detail-section .section-list .article-section .section-title,
#article-detail-section #main-footer .socmed-list .article-section .section-title,
#main-footer #article-detail-section .socmed-list .article-section .section-title,
#article-detail-section .badge-list .article-section .section-title,
#article-detail-section #home .banner-slider .banner-item .article-section .section-title,
#home .banner-slider #article-detail-section .banner-item .article-section .section-title,
#article-detail-section #home .article-section .inner-section .article-section .section-title,
#home .article-section #article-detail-section .inner-section .article-section .section-title,
#article-detail-section #home .client-list .article-section .section-title,
#home #article-detail-section .client-list .article-section .section-title,
#article-detail-section #home .article-card .article-section .section-title,
#home #article-detail-section .article-card .article-section .section-title,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .section-title,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .section-title,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .section-title,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .section-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

#article-detail-section .display-flex .article-section .tags-section,
#article-detail-section .default-control-list .article-section .tags-section,
#article-detail-section .default-group-inline .article-section .tags-section,
#article-detail-section .custom-input.brand-box .checker-box .article-section .tags-section,
.custom-input.brand-box #article-detail-section .checker-box .article-section .tags-section,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .tags-section,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .tags-section,
#article-detail-section #main-navbar .inner-navbar .article-section .tags-section,
#main-navbar #article-detail-section .inner-navbar .article-section .tags-section,
#article-detail-section #main-footer .section-list .article-section .tags-section,
#main-footer #article-detail-section .section-list .article-section .tags-section,
#article-detail-section #main-footer .socmed-list .article-section .tags-section,
#main-footer #article-detail-section .socmed-list .article-section .tags-section,
#article-detail-section .badge-list .article-section .tags-section,
#article-detail-section #home .banner-slider .banner-item .article-section .tags-section,
#home .banner-slider #article-detail-section .banner-item .article-section .tags-section,
#article-detail-section #home .article-section .inner-section .article-section .tags-section,
#home .article-section #article-detail-section .inner-section .article-section .tags-section,
#article-detail-section #home .client-list .article-section .tags-section,
#home #article-detail-section .client-list .article-section .tags-section,
#article-detail-section #home .article-card .article-section .tags-section,
#home #article-detail-section .article-card .article-section .tags-section,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .tags-section,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .tags-section,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .tags-section,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .tags-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 25px;
}

#article-detail-section .display-flex .article-section .tags-section .tag,
#article-detail-section .default-control-list .article-section .tags-section .tag,
#article-detail-section .default-group-inline .article-section .tags-section .tag,
#article-detail-section .custom-input.brand-box .checker-box .article-section .tags-section .tag,
.custom-input.brand-box #article-detail-section .checker-box .article-section .tags-section .tag,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .tags-section .tag,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .tags-section .tag,
#article-detail-section #main-navbar .inner-navbar .article-section .tags-section .tag,
#main-navbar #article-detail-section .inner-navbar .article-section .tags-section .tag,
#article-detail-section #main-footer .section-list .article-section .tags-section .tag,
#main-footer #article-detail-section .section-list .article-section .tags-section .tag,
#article-detail-section #main-footer .socmed-list .article-section .tags-section .tag,
#main-footer #article-detail-section .socmed-list .article-section .tags-section .tag,
#article-detail-section .badge-list .article-section .tags-section .tag,
#article-detail-section #home .banner-slider .banner-item .article-section .tags-section .tag,
#home .banner-slider #article-detail-section .banner-item .article-section .tags-section .tag,
#article-detail-section #home .article-section .inner-section .article-section .tags-section .tag,
#home .article-section #article-detail-section .inner-section .article-section .tags-section .tag,
#article-detail-section #home .client-list .article-section .tags-section .tag,
#home #article-detail-section .client-list .article-section .tags-section .tag,
#article-detail-section #home .article-card .article-section .tags-section .tag,
#home #article-detail-section .article-card .article-section .tags-section .tag,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .tags-section .tag,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .tags-section .tag,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .tags-section .tag,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .tags-section .tag {
  background-color: #29509f;
  color: white;
  margin-right: 5px;
  padding: 4px 10px;
  font-size: 10px;
  border-radius: 5px;
  cursor: pointer;
}

#article-detail-section .display-flex .article-section .tags-section .tag:hover,
#article-detail-section .default-control-list .article-section .tags-section .tag:hover,
#article-detail-section .default-group-inline .article-section .tags-section .tag:hover,
#article-detail-section .custom-input.brand-box .checker-box .article-section .tags-section .tag:hover,
.custom-input.brand-box #article-detail-section .checker-box .article-section .tags-section .tag:hover,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .tags-section .tag:hover,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .tags-section .tag:hover,
#article-detail-section #main-navbar .inner-navbar .article-section .tags-section .tag:hover,
#main-navbar #article-detail-section .inner-navbar .article-section .tags-section .tag:hover,
#article-detail-section #main-footer .section-list .article-section .tags-section .tag:hover,
#main-footer #article-detail-section .section-list .article-section .tags-section .tag:hover,
#article-detail-section #main-footer .socmed-list .article-section .tags-section .tag:hover,
#main-footer #article-detail-section .socmed-list .article-section .tags-section .tag:hover,
#article-detail-section .badge-list .article-section .tags-section .tag:hover,
#article-detail-section #home .banner-slider .banner-item .article-section .tags-section .tag:hover,
#home .banner-slider #article-detail-section .banner-item .article-section .tags-section .tag:hover,
#article-detail-section #home .article-section .inner-section .article-section .tags-section .tag:hover,
#home .article-section #article-detail-section .inner-section .article-section .tags-section .tag:hover,
#article-detail-section #home .client-list .article-section .tags-section .tag:hover,
#home #article-detail-section .client-list .article-section .tags-section .tag:hover,
#article-detail-section #home .article-card .article-section .tags-section .tag:hover,
#home #article-detail-section .article-card .article-section .tags-section .tag:hover,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .tags-section .tag:hover,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .tags-section .tag:hover,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .tags-section .tag:hover,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .tags-section .tag:hover {
  background-color: #30B7BC;
}

#article-detail-section .display-flex .article-section .share-section,
#article-detail-section .default-control-list .article-section .share-section,
#article-detail-section .default-group-inline .article-section .share-section,
#article-detail-section .custom-input.brand-box .checker-box .article-section .share-section,
.custom-input.brand-box #article-detail-section .checker-box .article-section .share-section,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .share-section,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .share-section,
#article-detail-section #main-navbar .inner-navbar .article-section .share-section,
#main-navbar #article-detail-section .inner-navbar .article-section .share-section,
#article-detail-section #main-footer .section-list .article-section .share-section,
#main-footer #article-detail-section .section-list .article-section .share-section,
#article-detail-section #main-footer .socmed-list .article-section .share-section,
#main-footer #article-detail-section .socmed-list .article-section .share-section,
#article-detail-section .badge-list .article-section .share-section,
#article-detail-section #home .banner-slider .banner-item .article-section .share-section,
#home .banner-slider #article-detail-section .banner-item .article-section .share-section,
#article-detail-section #home .article-section .inner-section .article-section .share-section,
#home .article-section #article-detail-section .inner-section .article-section .share-section,
#article-detail-section #home .client-list .article-section .share-section,
#home #article-detail-section .client-list .article-section .share-section,
#article-detail-section #home .article-card .article-section .share-section,
#home #article-detail-section .article-card .article-section .share-section,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .share-section,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .share-section,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .share-section,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .share-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #313a6d;
}

#article-detail-section .display-flex .article-section .share-section .fa-facebook,
#article-detail-section .default-control-list .article-section .share-section .fa-facebook,
#article-detail-section .default-group-inline .article-section .share-section .fa-facebook,
#article-detail-section .custom-input.brand-box .checker-box .article-section .share-section .fa-facebook,
.custom-input.brand-box #article-detail-section .checker-box .article-section .share-section .fa-facebook,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .share-section .fa-facebook,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .share-section .fa-facebook,
#article-detail-section #main-navbar .inner-navbar .article-section .share-section .fa-facebook,
#main-navbar #article-detail-section .inner-navbar .article-section .share-section .fa-facebook,
#article-detail-section #main-footer .section-list .article-section .share-section .fa-facebook,
#main-footer #article-detail-section .section-list .article-section .share-section .fa-facebook,
#article-detail-section #main-footer .socmed-list .article-section .share-section .fa-facebook,
#main-footer #article-detail-section .socmed-list .article-section .share-section .fa-facebook,
#article-detail-section .badge-list .article-section .share-section .fa-facebook,
#article-detail-section #home .banner-slider .banner-item .article-section .share-section .fa-facebook,
#home .banner-slider #article-detail-section .banner-item .article-section .share-section .fa-facebook,
#article-detail-section #home .article-section .inner-section .article-section .share-section .fa-facebook,
#home .article-section #article-detail-section .inner-section .article-section .share-section .fa-facebook,
#article-detail-section #home .client-list .article-section .share-section .fa-facebook,
#home #article-detail-section .client-list .article-section .share-section .fa-facebook,
#article-detail-section #home .article-card .article-section .share-section .fa-facebook,
#home #article-detail-section .article-card .article-section .share-section .fa-facebook,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .share-section .fa-facebook,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .share-section .fa-facebook,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .share-section .fa-facebook,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .share-section .fa-facebook {
  font-size: 18px;
  border: 1px solid #29509f;
  border-radius: 15px;
  padding: 6px 10px;
  margin-right: 20px;
}

#article-detail-section .display-flex .article-section .share-section .fa-facebook:hover,
#article-detail-section .default-control-list .article-section .share-section .fa-facebook:hover,
#article-detail-section .default-group-inline .article-section .share-section .fa-facebook:hover,
#article-detail-section .custom-input.brand-box .checker-box .article-section .share-section .fa-facebook:hover,
.custom-input.brand-box #article-detail-section .checker-box .article-section .share-section .fa-facebook:hover,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .share-section .fa-facebook:hover,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .share-section .fa-facebook:hover,
#article-detail-section #main-navbar .inner-navbar .article-section .share-section .fa-facebook:hover,
#main-navbar #article-detail-section .inner-navbar .article-section .share-section .fa-facebook:hover,
#article-detail-section #main-footer .section-list .article-section .share-section .fa-facebook:hover,
#main-footer #article-detail-section .section-list .article-section .share-section .fa-facebook:hover,
#article-detail-section #main-footer .socmed-list .article-section .share-section .fa-facebook:hover,
#main-footer #article-detail-section .socmed-list .article-section .share-section .fa-facebook:hover,
#article-detail-section .badge-list .article-section .share-section .fa-facebook:hover,
#article-detail-section #home .banner-slider .banner-item .article-section .share-section .fa-facebook:hover,
#home .banner-slider #article-detail-section .banner-item .article-section .share-section .fa-facebook:hover,
#article-detail-section #home .article-section .inner-section .article-section .share-section .fa-facebook:hover,
#home .article-section #article-detail-section .inner-section .article-section .share-section .fa-facebook:hover,
#article-detail-section #home .client-list .article-section .share-section .fa-facebook:hover,
#home #article-detail-section .client-list .article-section .share-section .fa-facebook:hover,
#article-detail-section #home .article-card .article-section .share-section .fa-facebook:hover,
#home #article-detail-section .article-card .article-section .share-section .fa-facebook:hover,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .share-section .fa-facebook:hover,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .share-section .fa-facebook:hover,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .share-section .fa-facebook:hover,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .share-section .fa-facebook:hover {
  color: #29509f;
  -webkit-box-shadow: 0 1px 10px -2px #b5b5b5;
  box-shadow: 0 1px 10px -2px #b5b5b5;
  border: transparent;
}

#article-detail-section .display-flex .article-section .share-section .fa-twitter,
#article-detail-section .default-control-list .article-section .share-section .fa-twitter,
#article-detail-section .default-group-inline .article-section .share-section .fa-twitter,
#article-detail-section .custom-input.brand-box .checker-box .article-section .share-section .fa-twitter,
.custom-input.brand-box #article-detail-section .checker-box .article-section .share-section .fa-twitter,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .share-section .fa-twitter,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .share-section .fa-twitter,
#article-detail-section #main-navbar .inner-navbar .article-section .share-section .fa-twitter,
#main-navbar #article-detail-section .inner-navbar .article-section .share-section .fa-twitter,
#article-detail-section #main-footer .section-list .article-section .share-section .fa-twitter,
#main-footer #article-detail-section .section-list .article-section .share-section .fa-twitter,
#article-detail-section #main-footer .socmed-list .article-section .share-section .fa-twitter,
#main-footer #article-detail-section .socmed-list .article-section .share-section .fa-twitter,
#article-detail-section .badge-list .article-section .share-section .fa-twitter,
#article-detail-section #home .banner-slider .banner-item .article-section .share-section .fa-twitter,
#home .banner-slider #article-detail-section .banner-item .article-section .share-section .fa-twitter,
#article-detail-section #home .article-section .inner-section .article-section .share-section .fa-twitter,
#home .article-section #article-detail-section .inner-section .article-section .share-section .fa-twitter,
#article-detail-section #home .client-list .article-section .share-section .fa-twitter,
#home #article-detail-section .client-list .article-section .share-section .fa-twitter,
#article-detail-section #home .article-card .article-section .share-section .fa-twitter,
#home #article-detail-section .article-card .article-section .share-section .fa-twitter,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .share-section .fa-twitter,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .share-section .fa-twitter,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .share-section .fa-twitter,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .share-section .fa-twitter {
  font-size: 18px;
  border: 1px solid #29509f;
  border-radius: 15px;
  padding: 6px 7px;
}

#article-detail-section .display-flex .article-section .share-section .fa-twitter:hover,
#article-detail-section .default-control-list .article-section .share-section .fa-twitter:hover,
#article-detail-section .default-group-inline .article-section .share-section .fa-twitter:hover,
#article-detail-section .custom-input.brand-box .checker-box .article-section .share-section .fa-twitter:hover,
.custom-input.brand-box #article-detail-section .checker-box .article-section .share-section .fa-twitter:hover,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-section .share-section .fa-twitter:hover,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-section .share-section .fa-twitter:hover,
#article-detail-section #main-navbar .inner-navbar .article-section .share-section .fa-twitter:hover,
#main-navbar #article-detail-section .inner-navbar .article-section .share-section .fa-twitter:hover,
#article-detail-section #main-footer .section-list .article-section .share-section .fa-twitter:hover,
#main-footer #article-detail-section .section-list .article-section .share-section .fa-twitter:hover,
#article-detail-section #main-footer .socmed-list .article-section .share-section .fa-twitter:hover,
#main-footer #article-detail-section .socmed-list .article-section .share-section .fa-twitter:hover,
#article-detail-section .badge-list .article-section .share-section .fa-twitter:hover,
#article-detail-section #home .banner-slider .banner-item .article-section .share-section .fa-twitter:hover,
#home .banner-slider #article-detail-section .banner-item .article-section .share-section .fa-twitter:hover,
#article-detail-section #home .article-section .inner-section .article-section .share-section .fa-twitter:hover,
#home .article-section #article-detail-section .inner-section .article-section .share-section .fa-twitter:hover,
#article-detail-section #home .client-list .article-section .share-section .fa-twitter:hover,
#home #article-detail-section .client-list .article-section .share-section .fa-twitter:hover,
#article-detail-section #home .article-card .article-section .share-section .fa-twitter:hover,
#home #article-detail-section .article-card .article-section .share-section .fa-twitter:hover,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-section .share-section .fa-twitter:hover,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-section .share-section .fa-twitter:hover,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-section .share-section .fa-twitter:hover,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-section .share-section .fa-twitter:hover {
  color: #29509f;
  -webkit-box-shadow: 0 1px 10px -2px #b5b5b5;
  box-shadow: 0 1px 10px -2px #b5b5b5;
  border: transparent;
}

#article-detail-section .display-flex .article-divider,
#article-detail-section .default-control-list .article-divider,
#article-detail-section .default-group-inline .article-divider,
#article-detail-section .custom-input.brand-box .checker-box .article-divider,
.custom-input.brand-box #article-detail-section .checker-box .article-divider,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .article-divider,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .article-divider,
#article-detail-section #main-navbar .inner-navbar .article-divider,
#main-navbar #article-detail-section .inner-navbar .article-divider,
#article-detail-section #main-footer .section-list .article-divider,
#main-footer #article-detail-section .section-list .article-divider,
#article-detail-section #main-footer .socmed-list .article-divider,
#main-footer #article-detail-section .socmed-list .article-divider,
#article-detail-section .badge-list .article-divider,
#article-detail-section #home .banner-slider .banner-item .article-divider,
#home .banner-slider #article-detail-section .banner-item .article-divider,
#article-detail-section #home .article-section .inner-section .article-divider,
#home .article-section #article-detail-section .inner-section .article-divider,
#article-detail-section #home .client-list .article-divider,
#home #article-detail-section .client-list .article-divider,
#article-detail-section #home .article-card .article-divider,
#home #article-detail-section .article-card .article-divider,
#article-detail-section #product-section .recommendation-section .recommendation-list .article-divider,
#product-section .recommendation-section #article-detail-section .recommendation-list .article-divider,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .article-divider,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .article-divider {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10%;
          flex: 1 1 10%;
}

#article-detail-section .display-flex .product-list-section,
#article-detail-section .default-control-list .product-list-section,
#article-detail-section .default-group-inline .product-list-section,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section,
#article-detail-section #main-navbar .inner-navbar .product-list-section,
#main-navbar #article-detail-section .inner-navbar .product-list-section,
#article-detail-section #main-footer .section-list .product-list-section,
#main-footer #article-detail-section .section-list .product-list-section,
#article-detail-section #main-footer .socmed-list .product-list-section,
#main-footer #article-detail-section .socmed-list .product-list-section,
#article-detail-section .badge-list .product-list-section,
#article-detail-section #home .banner-slider .banner-item .product-list-section,
#home .banner-slider #article-detail-section .banner-item .product-list-section,
#article-detail-section #home .article-section .inner-section .product-list-section,
#home .article-section #article-detail-section .inner-section .product-list-section,
#article-detail-section #home .client-list .product-list-section,
#home #article-detail-section .client-list .product-list-section,
#article-detail-section #home .article-card .product-list-section,
#home #article-detail-section .article-card .product-list-section,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper,
#article-detail-section .badge-list .product-list-section .product-list-wrapper,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper {
  position: sticky;
  top: 100px;
  margin-bottom: 35px;
  margin-left: 35px;
  width: 100%;
  border-radius: 12px;
  -webkit-box-shadow: 0 1px 10px -2px #b5b5b5;
  box-shadow: 0 1px 10px -2px #b5b5b5;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-list,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-list,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-list,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-list,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-list,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-list,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-list,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-list,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-list,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-list,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-list,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-list,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-list,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-list,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-list,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-list,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-list,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-list,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-list,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-list,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-list,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-list,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-list,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-list,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-list,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-list {
  padding-bottom: 15px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .title,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .title,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .title,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .title,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .title,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .title,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .title,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .title,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .title,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .title,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .title,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .title,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .title,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .title,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .title,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .title,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .title,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .title,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .title,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .title,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .title,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .title,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .title,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .title,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .title,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .title {
  padding: 20px;
  padding-left: 15px !important;
  font-size: 16px;
  font-weight: 500;
  color: #313a6d;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper {
  margin: 0 15px;
  margin-bottom: 15px;
  position: relative;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card {
  position: relative;
  padding-bottom: 0;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card:hover,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card:hover {
  background: transparent;
  -webkit-box-shadow: 0 0 0 #ffffff;
          box-shadow: 0 0 0 #ffffff;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper {
  border-radius: 12px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .image-wrapper .image {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list {
  position: absolute;
  top: 2px;
  left: 8px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item {
  margin-bottom: 2px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .item:last-of-type {
  margin-bottom: 0px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp {
  width: 60px;
  height: 60px;
  margin-top: 10px;
  margin-left: 5px;
  font-size: 3px;
  margin-bottom: 0;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-list .stamp .logo {
  width: 100%;
  margin: auto;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list {
  position: absolute;
  top: 2px;
  right: 8px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .product-card .stamp-flat-list .stamp {
  width: 60px;
  height: 60px;
  margin-top: 10px;
  font-size: 11px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .text-wrapper,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .text-wrapper {
  max-width: 235px;
  color: white;
  z-index: 0;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .category {
  font-size: 11px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .text-wrapper .title-product {
  font-size: 13px;
  font-weight: 500;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper {
  content: "";
  position: absolute;
  height: 0px;
  bottom: 0;
  z-index: 1;
  width: 100%;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #50bdbe;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(80, 189, 190, 0.4)), to(rgba(80, 189, 190, 0.9)));
  background: linear-gradient(180deg, rgba(80, 189, 190, 0.4) 0%, rgba(80, 189, 190, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#50bdbe", endColorstr="#50bdbe", GradientType=1);
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
}

#article-detail-section .display-flex .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section .default-control-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section .default-group-inline .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section .custom-input.brand-box .checker-box .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
.custom-input.brand-box #article-detail-section .checker-box .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section .nav-dropdown .dropdown-content .brand-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
.nav-dropdown .dropdown-content #article-detail-section .brand-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #main-navbar .inner-navbar .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#main-navbar #article-detail-section .inner-navbar .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #main-footer .section-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#main-footer #article-detail-section .section-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #main-footer .socmed-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#main-footer #article-detail-section .socmed-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section .badge-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #home .banner-slider .banner-item .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#home .banner-slider #article-detail-section .banner-item .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #home .article-section .inner-section .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#home .article-section #article-detail-section .inner-section .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #home .client-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#home #article-detail-section .client-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #home .article-card .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#home #article-detail-section .article-card .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #product-section .recommendation-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#product-section .recommendation-section #article-detail-section .recommendation-list .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#article-detail-section #product-details-section .item-section .img-section .img-list-item .img-wrapper .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper,
#product-details-section .item-section .img-section .img-list-item #article-detail-section .img-wrapper .product-list-section .product-list-wrapper .product-wrapper:hover .background-text-wrapper {
  height: 85px;
}

#article-detail-section .related-article-section {
  margin-bottom: 50px;
}

#article-detail-section .related-article-section .default-title {
  font-size: 22px;
  margin-bottom: 40px;
}

#article-detail-section .related-article-section .default-title:after {
  width: 40px;
  height: 2px;
}

#article-detail-section .related-article-section .item-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#article-detail-section .related-article-section .item-list .item {
  position: relative;
  color: white;
}

#article-detail-section .related-article-section .item-list .item img {
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

#article-detail-section .related-article-section .item-list .item .centered {
  z-index: 2;
  margin: 10px 20px;
  opacity: 1;
}

#article-detail-section .related-article-section .item-list .item .centered .date {
  margin-bottom: 5px;
}

#article-detail-section .related-article-section .item-list .item .centered .title {
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: nowrap;
  text-wrap: wrap;
}

#article-detail-section .related-article-section .item-list .item .background-centered {
  position: absolute;
  width: 100%;
  height: 115px;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #50bdbe;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(80, 189, 190, 0.4)), to(rgba(80, 189, 190, 0.9)));
  background: linear-gradient(180deg, rgba(80, 189, 190, 0.4) 0%, rgba(80, 189, 190, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#50bdbe", endColorstr="#50bdbe", GradientType=1);
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#product-section .form-group input,
#product-section .form-group select {
  border-radius: 12px;
  border: transparent;
  -webkit-box-shadow: 0 3px 7px -2px #b5b5b5;
  box-shadow: 0 3px 7px -2px #b5b5b5;
}

#product-section .form-group select > option {
  border-radius: 12px;
  border: transparent;
  -webkit-box-shadow: 0 3px 7px -2px #b5b5b5;
  box-shadow: 0 3px 7px -2px #b5b5b5;
}

#product-section .form-group #search-product-input {
  width: 100%;
  padding-top: 4px;
  padding-left: 19px;
  font-size: 12px;
  height: 40px;
}

#product-section .form-group .nice-select {
  line-height: 1.5 !important;
  padding-right: 100px;
}

#product-section .form-group .nice-select .option {
  padding-right: 100px;
}

#product-section .recommendation-section {
  display: none;
  position: absolute;
  z-index: 99;
  background: white;
  padding: 10px;
  white-space: nowrap;
  top: calc(100% + 10px);
  -webkit-box-shadow: 0 3px 7px -2px #b5b5b5;
  box-shadow: 0 3px 7px -2px #b5b5b5;
  border-radius: 12px;
  max-width: 320px;
}

#product-section .recommendation-section.section-show {
  display: block !important;
}

#product-section .recommendation-section .title {
  color: #707070;
  font-size: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid;
  margin-bottom: 15px;
}

#product-section .recommendation-section .recommendation-list {
  font-size: 10px;
  margin-left: -10px;
  margin-right: -10px;
}

#product-section .recommendation-section .recommendation-list > li {
  width: 100%;
}

#product-section .recommendation-section .recommendation-list > li > .recommendation-link {
  display: block;
  cursor: pointer;
  padding: 7.5px 10px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#product-section .recommendation-section .recommendation-list > li > .recommendation-link:hover {
  background: #858585;
  color: white;
}

#product-section .product-card {
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* !* create the ... *!
        .summary:before {
            !* points in the end *!
            content: '...';
            !* absolute position *!
            position: absolute;
            !* set position to right bottom corner of block *!
            right: 0;
            bottom: 0;
        }*/
  /* hide ... if we have text, which is less than or equal to max lines */
}

#product-section .product-card .info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#product-section .product-card .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: auto !important;
}

#product-section .product-card .summary {
  margin-top: 10px;
  font-size: 11px;
  /* hide text if it more than N lines  */
  overflow: hidden;
  /* for set '...' in absolute position */
  position: relative;
  /* use this value to count block height */
  line-height: 1.2em;
  /* max-height = line-height (1.2) * lines max number (3) */
  max-height: 3.4em;
  /* fix problem when last visible word doesn't adjoin right side  */
  text-align: left;
  /* place for '...' */
  margin-right: -1em;
  padding-right: 1em;
}

#product-section .product-card .summary:after {
  /* points in the end */
  content: "";
  /* absolute position */
  position: absolute;
  /* set position to right bottom corner of text */
  right: 0;
  /* set width and height */
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  /* bg color = bg color under block */
  background: white;
}

#product-section .product-card .image-wrapper {
  background-size: cover;
  border-radius: 12px;
}

#product-section .product-flex-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#product-section .product-flex-section .filter-section {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 22%;
          flex: 1 1 22%;
  width: 22%;
  margin-right: 3%;
}

#product-section .product-flex-section .filter-section .img-principal-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25.333333%;
          flex: 0 0 25.333333%;
  max-width: 25.333333%;
  margin: 10px 8px;
}

#product-section .product-flex-section .filter-section .img-principal-section .img-principal-wrapper {
  background-color: #f9f9f9;
  width: 65px;
  height: 65px;
  text-align: center;
  border-radius: 50%;
}

#product-section .product-flex-section .filter-section .img-principal-section .img-principal-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 45px;
  padding-top: 18px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#product-section .product-flex-section .filter-section .img-principal-section .img-principal-wrapper:hover {
  background-color: #ffffff;
  /*-webkit-box-shadow: 0 3px 7px -2px rgba(181,181,181,1);
                        -moz-box-shadow: 0 3px 7px -2px rgba(181,181,181,1);
                        box-shadow: 0 3px 7px -2px rgba(181,181,181,1);*/
  border: 2px solid #313A6D;
}

#product-section .product-flex-section .filter-section .img-principal-section .img-principal-wrapper:hover img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

#product-section .product-flex-section .filter-section .img-principal-section .active {
  background-color: #ffffff;
  /*-webkit-box-shadow: 0 3px 7px -2px rgba(181,181,181,1);
                    -moz-box-shadow: 0 3px 7px -2px rgba(181,181,181,1);
                    box-shadow: 0 3px 7px -2px rgba(181,181,181,1);*/
  border: 2px solid #313A6D;
}

#product-section .product-flex-section .filter-section .img-principal-section .active img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

#product-section .product-flex-section .filter-section .has-search {
  position: relative;
}

#product-section .product-flex-section .filter-section .has-search .search-toggle {
  position: absolute;
  right: 35px;
  top: 2px;
  cursor: pointer;
}

#product-section .product-flex-section .filter-section .has-search .form-control {
  padding-left: 1.375rem;
}

#product-section .product-flex-section .filter-section .has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

#product-section .product-flex-section .filter-section .has-search .select2-selection {
  border: transparent;
  border-radius: 12px;
  padding: 2px;
  height: 38px;
  -webkit-box-shadow: 0 3px 7px -2px #b5b5b5;
  box-shadow: 0 3px 7px -2px #b5b5b5;
}

#product-section .product-flex-section .filter-section .has-search .select2-selection__rendered {
  width: 215px;
  padding: 5px;
  padding-left: 15px;
}

#product-section .product-flex-section .filter-section .has-search .select2-selection__arrow {
  display: none;
}

#product-section .product-flex-section .filter-section .has-search .select2-selection__placeholder {
  font-size: 12px;
  color: #313a6d;
}

#product-section .product-flex-section .product-list {
  -webkit-box-flex: 3;
      -ms-flex: 3 1 70%;
          flex: 3 1 70%;
}

#product-section .product-flex-section .product-list .container {
  padding: 0 !important;
}

#product-section .product-flex-section .product-list .filter-product-list-section {
  margin-bottom: 20px;
}

#product-section .product-flex-section .product-list .filter-product-list-section .choose-view-section {
  margin-left: 1%;
}

#product-section .product-flex-section .product-list .filter-product-list-section .choose-view-section .item {
  margin-right: 10px;
  cursor: pointer;
}

#product-section .product-flex-section .product-list .filter-product-list-section .choose-view-section .active {
  position: relative;
  display: inline-block;
  z-index: 2;
}

#product-section .product-flex-section .product-list .filter-product-list-section .choose-view-section .active:after {
  z-index: -1;
  content: "";
  position: absolute;
  background-color: #30B7BC;
  left: 51%;
  top: 16px;
  height: 1.4px;
  width: 100%;
  -webkit-transform: translateX(-51%);
          transform: translateX(-51%);
}

#product-section .product-flex-section .product-list .product-list-section {
  /*display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                flex-wrap: wrap;*/
  overflow: hidden;
  margin-bottom: 20px;
}

#product-section .product-flex-section .product-list .product-list-section .product-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.333333%;
          flex: 0 0 31.333333%;
  margin-bottom: 40px;
  margin-right: 1%;
  margin-left: 1%;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 5px #e8e8e8;
          box-shadow: 0 5px 5px #e8e8e8;
}

#product-section .product-flex-section .product-list .product-list-section .product-wrapper:nth-child(3n) {
  margin-right: 0;
}

#product-section .product-flex-section .product-list .pagination-wrapper {
  margin-bottom: 5px;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#product-section *,
#product-section *:before,
#product-section *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#product-section #integration-list {
  display: table;
}

#product-section #integration-list ul {
  padding: 0;
  margin-bottom: 20px;
  color: #555;
}

#product-section #integration-list ul > li {
  list-style: none;
}

#product-section .expand {
  text-decoration: none;
  color: #555;
  cursor: pointer;
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 12px;
  padding: 4px;
  -webkit-box-shadow: 0 3px 7px -2px #b5b5b5;
  box-shadow: 0 3px 7px -2px #b5b5b5;
  border: transparent;
}

#product-section .filter-section ul h2 {
  margin-top: 10px;
  margin-left: 15px;
  font-size: 12px;
  font-weight: 600;
  color: #313a6d;
}

#product-section .detail a {
  text-decoration: none;
  color: #c0392b;
  border: 1px solid #c0392b;
  padding: 6px 10px 5px;
  font-size: 14px;
}

#product-section .detail a.type-link {
  text-decoration: none;
  color: unset;
  border: unset;
  padding: unset;
  font-size: unset;
}

#product-section .detail {
  margin: 10px 0 10px 0px;
  display: none;
  line-height: 22px;
  /*height: 150px;
        overflow-x: auto;*/
}

#product-section .detail.type-principal {
  overflow-x: unset !important;
  height: 100% !important;
}

#product-section .detail.type-principal .col-md-4 {
  padding-left: 0;
}

#product-section .detail span {
  margin: 0;
}

#product-section .right-arrow {
  width: 10px;
  height: 100%;
  float: right;
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
}

#product-section .filter-search {
  width: 100%;
}

#product-details-section #nav-feature h1,
#product-details-section #nav-feature h2,
#product-details-section #nav-feature h3,
#product-details-section #nav-feature h4,
#product-details-section #nav-feature h5,
#product-details-section #nav-feature h6 {
  font-weight: bold;
}

#product-details-section #nav-feature a {
  color: #0000EE;
  text-decoration: underline !important;
}

#product-details-section #nav-feature a:hover {
  color: #0000EE;
}

#product-details-section #nav-feature a:focus {
  color: #0000EE;
}

#product-details-section .breadcrumb-section {
  padding-top: 90px;
}

#product-details-section .breadcrumb-section .breadcrumb {
  margin-bottom: 40px;
}

#product-details-section .item-section {
  padding-bottom: 35px;
}

#product-details-section .item-section .img-section .stamp-list {
  position: absolute;
  top: 15px;
  left: 30px;
  z-index: 1;
}

#product-details-section .item-section .img-section .stamp-list .item {
  margin-bottom: 5px;
  cursor: pointer;
}

#product-details-section .item-section .img-section .stamp-list .item:last-of-type {
  margin-bottom: 0px;
}

#product-details-section .item-section .img-section .stamp-list .stamp {
  width: 70px;
  height: 70px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100%;
  background: white;
  -webkit-box-shadow: 0 3px 6px #cfcfcf;
          box-shadow: 0 3px 6px #cfcfcf;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5px;
}

#product-details-section .item-section .img-section .stamp-list .stamp .logo-wrapper {
  text-align: center;
}

#product-details-section .item-section .img-section .stamp-list .stamp .logo {
  width: 70%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

#product-details-section .item-section .img-section .stamp-flat-list {
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 1;
}

#product-details-section .item-section .img-section .stamp-flat-list .stamp {
  width: 65px;
  height: 65px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100%;
  background: #313A6D;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

#product-details-section .item-section .img-section .img-list-item {
  background-color: #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#product-details-section .item-section .img-section .img-list-item.type-google-drive .video-drive-wrapper {
  height: 90vh !important;
}

#product-details-section .item-section .img-section .img-list-item .img-wrapper {
  position: relative;
  margin: auto;
  border-radius: 12px !important;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#product-details-section .item-section .img-section .img-list-item .img-item {
  background: transparent;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

#product-details-section .item-section .lSPager li {
  background-color: #eaeaea;
}

#product-details-section .item-section .lSPager li img {
  background: transparent;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100px;
  width: 100px;
  margin-right: 0 !important;
  max-width: 100%;
}

#product-details-section .item-section .detail-section .category {
  padding-bottom: 20px;
  color: #AFB0B0;
}

#product-details-section .item-section .detail-section .promotion {
  background: red;
  border-radius: 12px;
  color: white;
  padding: 3px 10px;
  font-size: 10px;
  width: 15%;
  margin-bottom: 20px;
}

#product-details-section .item-section .detail-section .title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 15px;
}

#product-details-section .item-section .detail-section .sub-title {
  font-size: 14px;
  color: #313A6D;
  margin-bottom: 5px;
}

#product-details-section .item-section .detail-section .description {
  font-size: 15px;
  line-height: 32px;
  color: #AFB0B0;
  padding-bottom: 25px;
}

#product-details-section .item-section .detail-section .btn {
  font-size: 16px;
  margin-right: 20px;
}

#product-details-section .item-section .detail-section .wa-link {
  width: 8%;
}

#product-details-section .item-section .detail-section .variant-section {
  padding-bottom: 20px;
}

#product-details-section .item-section .detail-section .variant-section .variant-title {
  font-weight: 500;
  padding-bottom: 12px;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-right: unset !important;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #F9F9F9), color-stop(50%, transparent));
  background: linear-gradient(to right, #F9F9F9 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 10px;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper:hover {
  background-position: left bottom;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper:hover .text-wrapper {
  color: #30B7BC;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper {
  margin: auto;
  background-color: #F9F9F9;
  border-radius: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper img {
  height: 65px;
  width: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .new-list-section {
  position: absolute;
  top: 5px;
  right: 5px;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .new-list-section .stamp {
  width: 15px;
  height: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100%;
  background: #313A6D;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3px;
  font-weight: 500;
  color: white;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .img-client-section {
  position: absolute;
  top: 5px;
  left: -10px;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .img-client-section .item {
  margin-bottom: 5px;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .img-client-section .item:last-of-type {
  margin-bottom: 0px;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .img-client-section .stamp {
  width: 15px;
  height: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100%;
  background: white;
  -webkit-box-shadow: 0 3px 6px #cfcfcf;
          box-shadow: 0 3px 6px #cfcfcf;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5px;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .img-client-section .stamp .logo-wrapper {
  text-align: center;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .img-wrapper .img-client-section .stamp .logo {
  width: 70%;
  margin: auto;
}

#product-details-section .item-section .detail-section .variant-section .variant-wrapper .text-wrapper {
  margin: auto;
  font-size: 11px;
  font-weight: 500;
  word-wrap: break-word;
  padding: 0 10px;
  text-overflow: ellipsis;
}

#product-details-section .item-section .detail-section .share-section {
  padding-bottom: 20px;
}

#product-details-section .item-section .detail-section .share-section .share-title {
  font-weight: 500;
  padding-bottom: 12px;
}

#product-details-section .item-section .detail-section .share-section .share-list-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #313A6D;
}

#product-details-section .item-section .detail-section .share-section .share-list-section .fa-facebook {
  font-size: 18px;
  border: 1px solid #29509F;
  border-radius: 15px;
  padding: 6px 10px;
  margin-right: 20px;
}

#product-details-section .item-section .detail-section .share-section .share-list-section .fa-twitter {
  font-size: 18px;
  border: 1px solid #29509F;
  border-radius: 15px;
  padding: 6px 7px;
  margin-right: 20px;
}

#product-details-section .item-section .detail-section .share-section .share-list-section .instagram {
  font-size: 18px;
  border: 1px solid #29509F;
  border-radius: 15px;
  padding: 6px 7px;
  margin-right: 20px;
}

#product-details-section .item-section .detail-section .share-section .share-list-section .tiktok-icon {
  font-size: 12px;
  border: 1px solid #29509F;
  border-radius: 15px;
  padding: 6px 10px;
  margin-right: 20px;
}

#product-details-section .item-section .detail-section .share-section .share-list-section .tiktok-icon .tiktok {
  fill: #707070;
}

#product-details-section .item-section .detail-section .share-section .share-list-section .tiktok-icon .tiktok:hover {
  fill: #29509F;
}

#product-details-section .item-section .detail-section .share-section .share-list-section .tiktok-icon:hover {
  color: #29509F;
  -webkit-box-shadow: 0 1px 10px -2px #b5b5b5;
  box-shadow: 0 1px 10px -2px #b5b5b5;
  border: transparent;
}

#product-details-section .item-section .detail-section .share-section .share-list-section .fa-whatsapp {
  font-size: 18px;
  border: 1px solid #29509F;
  border-radius: 15px;
  padding: 6px 8px;
  margin-right: 20px;
  /*&:before {
                            background: #707070;
                            border-radius: 12px;
                            color: white;
                            padding: 2px 3px;
                        }*/
}

#product-details-section .item-section .detail-section .share-section .share-list-section .fa:hover {
  color: #29509F;
  -webkit-box-shadow: 0 1px 10px -2px #b5b5b5;
  box-shadow: 0 1px 10px -2px #b5b5b5;
  border: transparent;
  /*&.fa-whatsapp:before {
                            background: #29509F;
                        }*/
}

#product-details-section .item-section .detail-section .product-button-section .btn {
  font-size: 12px;
  width: 100%;
}

#product-details-section .brochure-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 15px;
}

#product-details-section .brochure-wrapper .brochure-file-label {
  font-weight: 700;
  color: #313A6D;
  position: relative;
  padding-bottom: 15px;
  font-size: 22px;
}

#product-details-section .product-tab {
  margin-bottom: 100px;
}

#product-details-section .product-tab .nav-tabs {
  border-bottom: 3px solid #F9F9F9;
}

#product-details-section .product-tab .nav-tabs .nav-item {
  font-size: 18px;
  width: 33.33%;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#product-details-section .product-tab .nav-tabs .nav-link {
  border: transparent;
}

#product-details-section .product-tab .nav-tabs .active {
  color: #313A6D;
  border-bottom: 3px solid #30B7BC;
}

#product-details-section .product-tab .tab-content {
  color: #707070;
}

#product-details-section .product-tab .tab-content .tab-pane {
  padding-top: 40px;
  font-size: 16px;
}

#product-details-section .product-tab .tab-content .tab-pane p {
  line-height: 35px;
}

#product-details-section .product-tab .tab-content .tab-pane .m-auto {
  width: 80%;
  line-height: 55px;
}

#product-details-section .product-tab .tab-content .title {
  font-weight: bolder;
}

#product-details-section .product-tab .tab-content table {
  width: 100% !important;
}

#product-details-section .product-tab .tab-content table tr td {
  line-height: 2;
}

#product-details-section .product-tab .tab-content .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin: 0 15px;
  height: 100%;
  line-height: 2;
}

#product-details-section .related-product-section {
  margin-bottom: 50px;
}

#product-details-section .related-product-section .default-title {
  font-size: 22px;
}

#product-details-section .related-product-section .product-wrapper {
  margin-right: 20px;
}

#product-details-section .related-product-section .product-wrapper:nth-child(4n) {
  margin-right: 0 !important;
}

#product-details-section .related-product-section .slick-slide {
  min-height: 525px !important;
}

#product-details-section .related-article-section {
  margin-bottom: 50px;
}

#product-details-section .related-article-section .default-title {
  font-size: 22px;
  margin-bottom: 60px;
}

#product-details-section .related-article-section .default-title:after {
  width: 40px;
  height: 2px;
}

#product-details-section .related-article-section .item-list .item {
  position: relative;
  color: white;
  overflow: hidden;
}

#product-details-section .related-article-section .item-list .item img {
  height: 245px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

#product-details-section .related-article-section .item-list .item .centered {
  z-index: 2;
  margin: 10px 20px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#product-details-section .related-article-section .item-list .item .centered .date {
  margin-bottom: 5px;
}

#product-details-section .related-article-section .item-list .item .centered .title {
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: nowrap;
  text-wrap: wrap;
}

#product-details-section .related-article-section .item-list .item .background-centered {
  content: '';
  position: absolute;
  width: 100%;
  height: 115px;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #50bdbe;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(80, 189, 190, 0.4)), to(rgba(80, 189, 190, 0.9)));
  background: linear-gradient(180deg, rgba(80, 189, 190, 0.4) 0%, rgba(80, 189, 190, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#50bdbe", endColorstr="#50bdbe", GradientType=1);
  z-index: 1;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#product-details-section .lSSlideWrapper {
  border-radius: 10px;
}

#product-details-section #product-modal-inquiry .modal-content {
  border-radius: 40px;
  width: 80%;
  margin: auto;
}

#product-details-section #product-modal-inquiry .modal-content .form-group {
  width: 80%;
  margin: auto;
  margin-bottom: 25px;
}

#product-details-section #product-modal-inquiry .modal-header {
  border-bottom: transparent;
}

#product-details-section #product-modal-inquiry .modal-header .close {
  font-size: 38px;
  margin-right: 14px;
  margin-top: 0;
}

#product-details-section #product-modal-inquiry .modal-body {
  text-align: center;
}

#product-details-section #product-modal-inquiry input,
#product-details-section #product-modal-inquiry textarea {
  border-radius: 12px;
  padding: 12px;
  border: transparent;
  -webkit-box-shadow: 0 2px 3px 1px #d6d6d6;
  box-shadow: 0 2px 3px 1px #d6d6d6;
}

#product-details-section #product-modal-inquiry .description {
  text-align: center;
  width: 65%;
  font-size: 14px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 35px;
}

#product-details-section #product-modal-inquiry .display-flex,
#product-details-section #product-modal-inquiry .default-control-list,
#product-details-section #product-modal-inquiry .default-group-inline,
#product-details-section #product-modal-inquiry .custom-input.brand-box .checker-box,
.custom-input.brand-box #product-details-section #product-modal-inquiry .checker-box,
#product-details-section #product-modal-inquiry .nav-dropdown .dropdown-content .brand-list,
.nav-dropdown .dropdown-content #product-details-section #product-modal-inquiry .brand-list,
#product-details-section #product-modal-inquiry #main-navbar .inner-navbar,
#main-navbar #product-details-section #product-modal-inquiry .inner-navbar,
#product-details-section #product-modal-inquiry #main-footer .section-list,
#main-footer #product-details-section #product-modal-inquiry .section-list,
#product-details-section #product-modal-inquiry #main-footer .socmed-list,
#main-footer #product-details-section #product-modal-inquiry .socmed-list,
#product-details-section #product-modal-inquiry .badge-list,
#product-details-section #product-modal-inquiry #home .banner-slider .banner-item,
#home .banner-slider #product-details-section #product-modal-inquiry .banner-item,
#product-details-section #product-modal-inquiry #home .article-section .inner-section,
#home .article-section #product-details-section #product-modal-inquiry .inner-section,
#product-details-section #product-modal-inquiry #home .client-list,
#home #product-details-section #product-modal-inquiry .client-list,
#product-details-section #product-modal-inquiry #home .article-card,
#home #product-details-section #product-modal-inquiry .article-card,
#product-details-section #product-modal-inquiry #product-section .recommendation-section .recommendation-list,
#product-section .recommendation-section #product-details-section #product-modal-inquiry .recommendation-list,
#product-details-section #product-modal-inquiry .item-section .img-section .img-list-item .img-wrapper,
#product-details-section .item-section .img-section .img-list-item #product-modal-inquiry .img-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#product-details-section #product-modal-inquiry .display-flex .upload-btn-wrapper,
#product-details-section #product-modal-inquiry .default-control-list .upload-btn-wrapper,
#product-details-section #product-modal-inquiry .default-group-inline .upload-btn-wrapper,
#product-details-section #product-modal-inquiry .custom-input.brand-box .checker-box .upload-btn-wrapper,
.custom-input.brand-box #product-details-section #product-modal-inquiry .checker-box .upload-btn-wrapper,
#product-details-section #product-modal-inquiry .nav-dropdown .dropdown-content .brand-list .upload-btn-wrapper,
.nav-dropdown .dropdown-content #product-details-section #product-modal-inquiry .brand-list .upload-btn-wrapper,
#product-details-section #product-modal-inquiry #main-navbar .inner-navbar .upload-btn-wrapper,
#main-navbar #product-details-section #product-modal-inquiry .inner-navbar .upload-btn-wrapper,
#product-details-section #product-modal-inquiry #main-footer .section-list .upload-btn-wrapper,
#main-footer #product-details-section #product-modal-inquiry .section-list .upload-btn-wrapper,
#product-details-section #product-modal-inquiry #main-footer .socmed-list .upload-btn-wrapper,
#main-footer #product-details-section #product-modal-inquiry .socmed-list .upload-btn-wrapper,
#product-details-section #product-modal-inquiry .badge-list .upload-btn-wrapper,
#product-details-section #product-modal-inquiry #home .banner-slider .banner-item .upload-btn-wrapper,
#home .banner-slider #product-details-section #product-modal-inquiry .banner-item .upload-btn-wrapper,
#product-details-section #product-modal-inquiry #home .article-section .inner-section .upload-btn-wrapper,
#home .article-section #product-details-section #product-modal-inquiry .inner-section .upload-btn-wrapper,
#product-details-section #product-modal-inquiry #home .client-list .upload-btn-wrapper,
#home #product-details-section #product-modal-inquiry .client-list .upload-btn-wrapper,
#product-details-section #product-modal-inquiry #home .article-card .upload-btn-wrapper,
#home #product-details-section #product-modal-inquiry .article-card .upload-btn-wrapper,
#product-details-section #product-modal-inquiry #product-section .recommendation-section .recommendation-list .upload-btn-wrapper,
#product-section .recommendation-section #product-details-section #product-modal-inquiry .recommendation-list .upload-btn-wrapper,
#product-details-section #product-modal-inquiry .item-section .img-section .img-list-item .img-wrapper .upload-btn-wrapper,
#product-details-section .item-section .img-section .img-list-item #product-modal-inquiry .img-wrapper .upload-btn-wrapper {
  margin-left: 50px;
  margin-top: 6px;
}

#product-details-section .item-list .slick-list .slick-track .slick-slide {
  padding: 0 15px;
}

.checkbox {
  padding-left: 20px;
}

.checkbox.type-link {
  padding-left: 36px !important;
}

.checkbox.type-link:hover label:after {
  content: '';
}

.checkbox.type-link:hover label:before {
  content: '';
}

.checkbox:hover label:after {
  font-family: "FontAwesome";
  content: "\F00C";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: -2px;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
  opacity: 0.2;
}

.checkbox:hover label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox input,
.checkbox label {
  cursor: pointer;
}

.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
  width: 85%;
}

.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: -2px;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}

.checkbox input[type="checkbox"]:checked ~ label {
  font-weight: 600;
}

.checkbox input[type="checkbox"]:checked ~ label:after {
  opacity: 1;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}

.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
  /*outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;*/
}

.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  font-family: "FontAwesome";
  content: "\F00C";
}

.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}

.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}

.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox.checkbox-sm label::before {
  width: 30px;
  height: 30px;
  top: -13px;
}

.checkbox.checkbox-sm label::after {
  width: 30px;
  height: 30px;
  padding-left: 4px;
  font-size: 20px;
  left: 1px;
  top: -13px;
}

.checkbox.checkbox-sm label {
  padding-left: 18px;
  top: 13px;
}

.checkbox.checkbox-md label::before {
  width: 34px;
  height: 34px;
  top: -17px;
}

.checkbox.checkbox-md label::after {
  width: 34px;
  height: 34px;
  padding-left: 4px;
  font-size: 24px;
  left: 1px;
  top: -18px;
}

.checkbox.checkbox-md label {
  padding-left: 22px;
  top: 17px;
}

.checkbox.checkbox-lg label::before {
  width: 46px;
  height: 46px;
  top: -28px;
}

.checkbox.checkbox-lg label::after {
  width: 46px;
  height: 46px;
  padding-left: 4px;
  font-size: 36px;
  left: 1px;
  top: -31px;
}

.checkbox.checkbox-lg label {
  padding-left: 34px;
  top: 32px;
}

@media screen and (max-width: 425px) {
  #product-section .product-list .product-list-section .product-wrapper {
    max-width: 48% !important;
    margin-left: 0;
    margin-right: 2%;
  }
}

@media screen and (max-width: 1024px) {
  #product-section .product-list .product-list-section .product-wrapper {
    max-width: 30%;
  }
}

@media screen and (min-width: 1100px) and (max-width: 1152px) {
  .socmed-list .item {
    margin-right: 5px !important;
  }

  .principal-about-section .philosophy-wrapper .text-wrapper .item {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 1024px) {
  /* Global */

  .breadcrumb {
    margin-bottom: 30px;
  }

  .default-title {
    font-size: 30px;
  }

  .default-title:after {
    width: 35px;
  }

  .product-card .wa-link,
  .product-card .btn {
    visibility: visible;
    opacity: 1;
  }

  .product-card .stamp-list .stamp {
    width: 28px;
    height: 28px;
  }

  #subscribe .subscribe-content {
    position: relative;
  }

  .loader-wrapper .loader {
    left: 60%;
  }

  #main-footer {
    text-align: center;
  }

  #main-footer .footer-title:after {
    left: 45% !important;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }

  #main-footer .section-list .section-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% / 1);
            flex: 0 1 calc(100% / 1);
    margin-bottom: 30px;
  }

  #main-footer .section-list .section-item p {
    width: 80%;
    margin: auto;
  }

  #main-footer .socmed-list {
    width: 100%;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #main-footer table {
    margin: 0 auto;
  }

  #main-footer .phone-number-footer {
    text-align: -webkit-left;
  }

  .btn {
    font-size: 10px;
    padding: 4px 4px;
  }

  .about-detail-description-section {
    padding: 60px 0;
  }

  .about-detail-description-section .banner {
    margin: 0 15px !important;
  }

  .about-detail-description-section .description-flex .default-description {
    width: 100%;
  }

  .about-detail-description-section #apply-career-btn {
    margin-bottom: 15px !important;
  }

  .pagination-wrapper {
    margin: 50px 0;
  }

  /* EndGlobal */

  /* Header */

  #main-navbar {
    padding: 5px 10px;
    position: fixed;
    top: 0px;
    background: white;
    z-index: 99;
  }

  #main-navbar .navbar-brand .logo {
    width: 80px;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-left: 15px;
  }

  #main-navbar .toggler-icon span {
    height: 2px;
  }

  #main-navbar #navbar-container {
    display: block;
    position: fixed;
    left: -100%;
    top: 70px;
    width: 100%;
    height: 100vh;
    z-index: 89;
    background: white;
  }

  #main-navbar #navbar-container.active {
    left: 0px;
  }

  #main-navbar #navbar-container .navbar-nav {
    text-align: center;
    font-size: 18px;
    margin-top: 100px;
  }

  #main-navbar #navbar-container .navbar-nav .nav-item {
    margin-bottom: 30px;
    margin-right: 0;
  }

  #main-navbar #navbar-container .navbar-nav .nav-item:after {
    right: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  #main-navbar #navbar-container .navbar-nav:hover .dropdown-content {
    display: none;
  }

  #main-navbar #navbar-container .navbar-nav .dropdown-content {
    display: none;
    position: relative;
    background: #eaeaea;
  }

  #main-navbar .brand-wrapper {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  /* END Header */

  /* HOME */

  #home #product-slider {
    overflow-x: hidden !important;
  }

  #home #client-list-home-responsive {
    overflow-x: hidden !important;
  }

  #home .article-section .inner-section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  #home .article-section .featured-section {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }

  #home .article-section .featured-section .image-wrapper {
    height: 200px;
    width: 100%;
  }

  #home .article-section .featured-section .image-wrapper .image {
    height: 200px;
    width: 100%;
  }

  #home .article-section .list-section {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding: 30px;
  }

  #home .article-card .img-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20%;
            flex: 1 1 20%;
  }

  #home .article-card .img-wrapper .img {
    width: 100px;
    height: 100px;
  }

  #home .article-card .info-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }

  #home .banner-slider .banner-item .box-banner {
    margin-left: 0;
    width: 100%;
    min-width: unset;
    padding: 20px 15px;
    min-height: unset;
    /*.title {
                        font-size: 18px;
                        margin-bottom: 10px;
                    }

                    .subtitle {
                        margin-bottom: 20px;
                        font-size: 14px;
                    }*/
  }

  #home .client-list .item {
    padding: 10px;
  }

  #home .client-list .slick-slide {
    margin: 0 5px;
  }

  /* END Home */

  #about-section {
    padding-top: 100px;
    overflow: hidden;
  }

  #about-section .first-order {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  #about-section .last-order {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  #about-section .about-main-section {
    position: unset;
    height: 100%;
    margin-bottom: 50px;
  }

  #about-section .about-main-section .text-wrapper {
    text-align: center;
  }

  #about-section .about-main-section .text-wrapper .default-title {
    text-align: left;
  }

  #about-section .about-main-section .text-wrapper .description {
    text-align: left;
  }

  #about-section .about-main-section .text-section {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 55%;
            flex: 1 1 55%;
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  #about-section .about-main-section .img-wrapper {
    position: unset;
    -webkit-transform: unset;
            transform: unset;
    width: 85%;
    margin: auto;
    padding-bottom: 20px;
  }

  #about-section .about-main-section .btn {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  #about-section .principal-about-section {
    padding-bottom: 0;
  }

  #about-section .principal-about-section .philosophy-section {
    height: 100% !important;
  }

  #about-section .principal-about-section .philosophy-wrapper {
    position: unset;
    height: 100%;
    margin-bottom: 40px;
  }

  #about-section .principal-about-section .philosophy-wrapper .img-wrapper {
    padding-top: 0;
  }

  #about-section .principal-about-section .philosophy-wrapper .img-wrapper img {
    width: 85%;
    margin: auto;
  }

  #about-section .principal-about-section .philosophy-wrapper .img-wrapper .main-img {
    display: none;
  }

  #about-section .principal-about-section .philosophy-wrapper .img-wrapper .mobile-img {
    display: block;
    margin-bottom: 20px;
  }

  #about-section .principal-about-section .philosophy-wrapper .text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
  }

  #about-section .principal-about-section .philosophy-wrapper .text-wrapper .item {
    position: unset;
    width: 100% !important;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-right: 0;
    min-height: 100px;
  }

  #about-section .principal-about-section .philosophy-wrapper .text-wrapper .item .title {
    font-size: 14px;
  }

  #about-section .principal-about-section .philosophy-wrapper .text-wrapper .item .value {
    font-size: 12px;
  }

  #about-section .principal-about-section .philosophy-wrapper .text-wrapper .top-mid,
  #about-section .principal-about-section .philosophy-wrapper .text-wrapper .bottom {
    -webkit-transform: unset;
            transform: unset;
  }

  #partnership-section .form-section {
    padding-bottom: 85px;
  }

  #partnership-section .form-section .partnership-form {
    width: 90%;
  }

  #career-section .team-list-section {
    padding-top: 0 !important;
  }

  #career-section .team-wrapper {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 48.33% !important;
            flex: 0 0 48.33% !important;
  }

  #product-section .product-flex-section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  #product-section .product-flex-section .filter-section {
    margin-right: 0 !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 50% !important;
            flex: 1 1 50% !important;
  }

  #product-section .product-flex-section .product-list .filter-product-list-section .choose-view-section {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    padding: 13px 15px;
    margin-left: 0;
  }

  #product-section .product-list .nice-select {
    padding-right: 50px !important;
  }

  #product-section .product-list .product-list-section .product-wrapper {
    max-width: 30%;
  }

  #product-section .product-list .product-list-section .product-wrapper .image-wrapper {
    height: 175px;
  }

  #product-section .product-list .product-list-section .product-wrapper .image-wrapper .image {
    height: 80px;
  }

  #product-section .product-list .product-list-section .product-wrapper:nth-child(2n) {
    margin-right: 0 !important;
  }

  #product-section .product-card .title {
    margin-bottom: 7px;
    height: 60px;
    font-size: 12px;
    text-overflow: ellipsis;
  }

  #product-section .product-card .summary {
    height: 99px;
    text-overflow: ellipsis;
  }

  #product-section .product-card .wa-link {
    width: 25px;
    height: 25px;
  }

  #product-section .recommendation-section {
    left: -140px;
    max-width: 320px;
  }

  #product-details-section {
    /*.item-section .img-section .img-list-item {
            height: 225px !important;
        }

        .item-section .img-section .img-list-item .img-item {
            height: 35.125vmax !important;
        }*/
  }

  #product-details-section .item-section .lSSlideWrapper {
    height: 100%;
  }

  #product-details-section .item-section .img-section .stamp-list .stamp {
    width: 40px;
    height: 40px;
  }

  #product-details-section .item-section .img-section .img-list-item .stamp-flat-list .stamp {
    height: 40px;
    font-size: 11px;
    width: 40px;
  }

  #product-details-section .detail-section .title {
    font-size: 25px;
    padding-bottom: 20px;
  }

  #product-details-section .detail-section .description {
    padding-bottom: 35px;
  }

  #product-details-section .detail-section .category {
    padding-bottom: 10px;
    padding-top: 40px;
  }

  #product-details-section .variant-section .variant-wrapper .img-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 25%;
            flex: 1 0 25%;
  }

  #product-details-section .variant-section .variant-wrapper .text-wrapper {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 70% !important;
            flex: 0 0 70% !important;
  }

  #product-details-section .product-tab .nav-tabs .nav-item {
    font-size: 12px;
  }

  #product-details-section .product-tab .tab-content .item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 55%;
            flex: 1 0 55%;
    margin: 0;
  }

  #product-details-section .product-tab .tab-content .text-right {
    text-align: center !important;
  }

  #product-details-section .product-tab .tab-content .text-left {
    text-align: center !important;
  }

  #product-details-section .product-tab .tab-content .tab-pane {
    font-size: 14px;
  }

  #product-details-section .related-article-section .item-list .item .centered .title {
    font-size: 15px !important;
  }

  #product-details-section .related-article-section .item-list .item .background-centered {
    -webkit-transform: unset;
            transform: unset;
  }

  #product-details-section .related-product-section,
  #product-details-section .related-article-section {
    overflow: hidden;
  }

  #product-details-section .related-product-section .col-md-3,
  #product-details-section .related-article-section .col-md-3 {
    padding-bottom: 50px;
  }

  #article-section .banner-slider .box-banner {
    padding: 0 20px;
  }

  #article-section .banner-slider .box-banner .text-wrapper {
    padding-left: 0;
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  #article-section .banner-slider .box-banner .img-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 55%;
            flex: 1 1 55%;
    padding-bottom: 25px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  #article-section .banner-slider-wrapper .lSSlideOuter .lSPager.lSpg {
    top: unset !important;
  }

  #article-section .filter-section .item {
    width: 100%;
    margin-bottom: 25px;
  }

  #article-section .filter-section .filter-list input {
    padding: 10px;
  }

  #article-section .article-list-section .article-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  #article-section .article-list-section .article-list .img-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 55%;
            flex: 1 1 55%;
    padding-bottom: 25px;
  }

  #article-section .text-wrapper {
    padding-right: unset !important;
  }

  #article-section .text-wrapper .date,
  #article-section .text-wrapper .description,
  #article-section .text-wrapper .title,
  #article-section .text-wrapper .default-title {
    text-align: left;
  }

  #article-section .text-wrapper .default-title {
    font-size: 24px;
  }

  #article-section .text-wrapper .default-title.type-banner {
    padding-bottom: 0;
  }

  #article-section .text-wrapper .btn {
    margin-bottom: 40px;
  }

  #article-detail-section .max-width {
    max-width: 100% !important;
  }

  #article-detail-section .title {
    font-size: 18px !important;
  }

  #article-detail-section .article-divider {
    display: none !important;
  }

  #article-detail-section .product-list-section {
    margin-top: 35px;
    -webkit-box-flex: 100% !important;
        -ms-flex: 100% !important;
            flex: 100% !important;
    height: 100% !important;
  }

  #article-detail-section .product-list-section .product-list-wrapper {
    position: unset !important;
    margin-left: 0 !important;
  }

  #article-detail-section .product-list-section .product-list-wrapper .product-wrapper .background-text-wrapper {
    opacity: 1 !important;
    height: 65px !important;
  }

  #article-detail-section .related-article-section .item-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
  }

  #article-detail-section .related-article-section .item-list .item .centered {
    opacity: 1;
  }

  #article-detail-section .related-article-section .item-list .item .centered .title {
    font-size: 15px !important;
  }

  #article-detail-section .related-article-section .item-list .item .background-centered {
    width: 100%;
    opacity: 1;
    height: 115px;
  }

  #article-detail-section .article-section {
    width: 100%;
  }

  #article-detail-section .article-section .description a {
    word-wrap: break-word;
  }

  #contact-section {
    text-align: center;
  }

  #contact-section .default-title:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  #contact-section .contact-information-section {
    margin-bottom: 40px !important;
  }

  #contact-section .contact-information-section .contact-wrapper-flex {
    margin-left: 0 !important;
  }

  #contact-section .contact-information-section .contact-wrapper-flex .item-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-bottom: 30px;
  }

  #contact-section .no-subscribe-contact {
    margin-bottom: 40px !important;
  }

  #contact-section .map-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }

  #contact-section .map-section .item-section {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
    width: 85%;
    margin: auto;
  }

  #contact-section .map-section .form-section {
    position: unset;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: 85%;
    margin: auto;
  }

  #contact-section .map-section .form-contact {
    text-align: center;
    padding-left: 10% !important;
  }
}

