:root {
  --main_color: #e4b95b;
  --secondary_color: #c7a17a;
  --dark_color: #63470c;
  --light-yellow-color: #edd500;
  --gold_color: #edd500;
  --gray_color: #f8f8f8;
  --gradient_color: left, #edbc23 0%, #f5dcac 37%, #b7872f 61%, #feedbe 89%;
  --swiper-navigation-size: 24px;
  --swiper-theme-color: var(--main_color, #e4b95b);
  --swiper-pagination-size: 12px;
  --header-height: 100px;
  --header-background: var(--dark_color, #63470c);
  --header-color: var(--white, #FFFFFF);
  --header-color-lv2: var(--white, #FFFFFF);
  --header-color-hover: var(--main_color, #e4b95b);
  --header-color-hover-lv2: var(--dark_color, var(--white, #FFFFFF));
  --header-background-lv2: var(--main_color, #e4b95b);
  --header-font-size: 16px;
  --header-lv2-font-size: 14px;
  --footer-color: var(--white, #FFFFFF);
  --footer-heading-color: var(--main_color, #e4b95b);
  --heading-title-color: #373737;
  --heading-title-font-size: 30px;
  --heading-title-font-weight: 700;
  --heading-title-text-transform: uppercase;
  --heading-desc-color: #999;
  --heading-desc-font-size: 14px;
  --heading-desc-max-width: 660px;
  --heading-divider-color: var(--main_color, #e4b95b);
  --heading-divider-width: 100px;
  --heading-divider-height: 3px;
}

/*Define section*/
.section {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/*Define heading title*/
.section-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.section-title .heading__title {
  font-size: var(--heading-title-font-size, 30px);
  font-weight: var(--heading-title-font-weight, 700);
  margin: 0;
  padding: 0;
  color: var(--heading-title-color, #373737);
  text-transform: var(--heading-title-text-transform, uppercase);
  position: relative;
}
.section-title .heading__desc {
  font-size: var(--heading-desc-font-size, 14px);
  max-width: var(--heading-desc-max-width, 660px);
  color: var(--heading-desc-color, #999);
}
.section-title .divider {
  height: var(--heading-divider-height, 3px);
  display: block;
  margin: 10px 0 20px;
  width: 100%;
  max-width: var(--heading-divider-width, 100px);
  background-color: var(--heading-divider-color, #3858ea);
}
.section-title.text-center .heading__title {
  text-align: center;
}
.section-title.text-center .heading__desc {
  margin-left: auto;
  margin-right: auto;
}
.section-title.text-center .divider {
  margin-left: auto;
  margin-right: auto;
}

.aside-title .title {
  background: var(--main_color, #e4b95b);
  background: -webkit-linear-gradient(var(--gradient_color, left, #edbc23 0%, #f5dcac 37%, #b7872f 61%, #feedbe 89%));
  background: linear-gradient(to var(--gradient_color, left, #edbc23 0%, #f5dcac 37%, #b7872f 61%, #feedbe 89%));
  font-weight: 700;
  padding: 12px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid #e4b95b;
  position: relative;
  font-size: 17px;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
}

.heading-title {
  color: #464646;
  position: relative;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/*Customize header*/
.header {
  transition: all 0.3s ease 0s;
  background-color: var(--header-background, var(--dark_color, #63470c));
}
@media (min-width: 991px) {
  .header {
    height: var(--header-height, 100px);
  }
}
.header.sticky {
  -webkit-animation: stuckMoveDown 0.6s;
  animation: stuckMoveDown 0.6s;
  transition: all 0.3s ease 0s;
}
@media (min-width: 991px) {
  .header.sticky {
    --header-height: 80px;
  }
}

@keyframes stuckMoveDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes stuckMoveUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/***Breadcrumb***/
.breadcrumb {
  background: var(--white, #FFFFFF);
  padding: 0 0 10px;
  border-bottom: 1px solid #e8e8e8;
  margin: 20px 0 15px;
  font-size: 16px;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li > a > span {
  color: #e4b95b;
}
.breadcrumb li .icon-custom i {
  padding: 0;
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #666;
  font-size: 0;
  transform: rotate(45deg);
  vertical-align: 7px;
  margin: 0 5px;
}

/**Swiper**/
.swiper-pagination-bullet {
  width: var(--swiper-pagination-width-size, var(--swiper-pagination-size, 12px));
  height: var(--swiper-pagination-height-size, var(--swiper-pagination-size, 12px));
}

.swiper-button-prev,
.swiper-button-next {
  font-weight: bolder;
}

/**Module Slider**/
.section-slider .swiper-button-prev,
.section-slider .swiper-button-next {
  --swiper-theme-color: var(--white, var(--white, #FFFFFF));
}

/**Module Service**/
.section-abouts {
  background: var(--gray_color, #f8f8f8);
}
.section-abouts .abouts__list {
  row-gap: 40px;
}
.section-abouts .abouts__list [class*=col-]:nth-child(odd) .about__item {
  flex-direction: row-reverse;
  text-align: right;
}
.section-abouts .abouts__list [class*=col-]:nth-child(odd) .about__item .title::before {
  right: 0px;
  left: auto;
}
.section-abouts .about__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-abouts .about__item__icon {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section-abouts .about__item__content .title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}
.section-abouts .about__item__content .title::before {
  content: "";
  display: inline-block;
  width: 66px;
  height: 2px;
  background: var(--main_color, #e4b95b);
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.section-abouts .about__item__content .description {
  font-size: 14px;
  color: #888;
  min-height: 85px;
}

/** Define News Item **/
.news__item-default {
  box-shadow: 1px 1px 25px -4px rgba(0, 0, 0, 0.74);
}
.news__item-default .news__item__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news__item-default .news__item__thumb img {
  width: 100%;
  object-fit: cover;
  height: 180px;
  transition: all 0.3s ease 0s;
}
.news__item-default .news__item__info {
  padding: 10px;
}
.news__item-default .news__item__title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 50px;
  display: -webkit-box;
}
.news__item-default .news__item__desc {
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 50px;
  display: -webkit-box;
}
.news__item-default:hover .news__item__thumb img {
  transform: scale(1.05);
}
.news__item-special {
  text-align: center;
}
.news__item-special .news__item__thumb {
  text-align: center;
  margin-bottom: 20px;
}
.news__item-special .news__item__thumb a {
  display: inline-block;
  text-align: center;
  padding: 0px;
  border: 3px solid var(--main_color, #e4b95b);
  border-radius: 50%;
}
.news__item-special .news__item__thumb img {
  object-fit: cover;
  height: 190px;
  width: 190px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.news__item-special .news__item__link {
  display: block;
}
.news__item-special .news__item__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  margin: 20px 0 10px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 60px;
  display: -webkit-box;
}
.news__item-special .news__item__desc {
  margin-bottom: 15px;
  font-size: 14px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 70px;
  display: -webkit-box;
}
.news__item-column {
  display: flex;
  gap: 10px;
}
.news__item-column .news__item__thumb {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  flex-shrink: 0;
}
.news__item-column .news__item__thumb img {
  object-fit: cover;
  transition: all 0.4s ease 0s;
}
.news__item-column .news__item__thumb:hover img {
  transform: scale(1.05);
}
.news__item-column .news__item__title {
  font-weight: bold;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  min-height: 20px;
  display: -webkit-box;
}
.news__item-column .news__item__desc {
  font-size: 14px;
}
.news__item-column + .news__item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dotted #999;
}
.news__item-big {
  --news-item-big-color: var(--white, #FFFFFF);
  position: relative;
  color: var(--news-item-big-color, var(--white, #FFFFFF));
}
.news__item-big .news__item__thumb {
  width: 100%;
  margin-bottom: 10px;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news__item-big .news__item__thumb img {
  opacity: 0.7;
  object-fit: cover;
  transition: all 0.4s ease 0s;
}
.news__item-big .news__item__thumb:hover img {
  transform: scale(1.05);
}
.news__item-big .news__item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
}
.news__item-big .news__item__title {
  color: var(--news-item-big-color, var(--white, #FFFFFF));
  font-size: 20px;
  font-weight: 600;
}
.news__item-big .news__item__desc {
  font-size: 14px;
}

.btn-read-more {
  background: var(--main_color, #e4b95b);
  color: var(--white, #FFFFFF);
  font-size: 13px;
  font-weight: bold;
  border-radius: 3px;
  padding: 0px 20px;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid var(--main_color, #e4b95b);
}
.btn-read-more:hover {
  background: var(--white, #FFFFFF);
  color: var(--main_color, #e4b95b);
}

/**Module News Special**/
.news__list-slide .swiper-container {
  padding-bottom: 30px;
}

.section-news-special .news-special-list__grid.row {
  row-gap: 30px;
}

/**Module Feedbacks**/
.section-feedbacks #carousel {
  margin-top: 0px;
  height: 500px;
  position: relative;
  clear: both;
  overflow: hidden;
  background: #FFF;
  display: inline-block;
  width: 100%;
}
.section-feedbacks #carousel #next,
.section-feedbacks #carousel #prev {
  position: absolute;
  z-index: 10;
  font-size: 50px;
  right: 10px;
  color: #555;
  top: 50%;
  transform: translateY(-50%);
}
.section-feedbacks #carousel #prev {
  left: 10px;
  right: auto;
}
.section-feedbacks .center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.section-feedbacks img.basic {
  margin-left: auto;
  margin-right: auto;
}

/**Module Testimonial**/
.section-testimonial .testimonials__list .swiper-container {
  padding-bottom: 30px;
}
.section-testimonial .testimonial__item {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-testimonial .testimonial__item__thumb {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
}
.section-testimonial .testimonial__item__content .title {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bolder;
}
.section-testimonial .testimonial__item__content .position {
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section-testimonial .testimonial__item__content .description {
  font-size: 15px;
}
.section-testimonial .swiper-pagination {
  bottom: 0;
}

/**Module Video Popup**/
.section-video_popup .video_popup__list {
  row-gap: 30px;
}
.section-video_popup .video_popup__item {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #333;
  position: relative;
  text-align: center;
}
.section-video_popup .video_popup__item.pointer {
  cursor: pointer;
}
.section-video_popup .video_popup__item::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--white, #FFFFFF);
  transition: all 0.5s;
  opacity: 0;
  z-index: 2;
}
.section-video_popup .video_popup__item img {
  position: relative;
  transition: all 0.5s;
  z-index: 1;
  will-change: transform;
  margin: 0;
}
.section-video_popup .video_popup__item:hover::before {
  opacity: 1;
}
.section-video_popup .video_popup__item:hover img {
  opacity: 0.7;
  transform: scale(1.05);
}
.section-video_popup .video_popup__item + .video_popup__item {
  margin-top: 30px;
}

/**Module News-4-item**/
.section-news-4-item {
  background-color: var(--gray_color, #f8f8f8);
}
.section-news-4-item .news-4-item-list__grid.row {
  row-gap: 30px;
}
.section-news-4-item .news__item-big {
  height: 100%;
}
.section-news-4-item .news__item-big .news__item__thumb {
  height: 100%;
}

/**Custom News Grid**/
.news__list__grid.row {
  row-gap: 30px;
}

/* News Aside */
.aside-item .list-blogs {
  border: 1px solid #cdcdcd;
  padding: 5px 10px;
  border-top: none;
}
.aside-item .list-blogs .blog-item {
  overflow: hidden;
  padding: 5px 0;
  margin: 5px 0;
}
.aside-item .list-blogs .blog-item + .blog-item {
  border-top: 1px solid #ebebeb;
}
.aside-item .list-blogs .blog-item-name {
  font-weight: 700;
  position: relative;
  font-size: 14px;
  margin: 0;
}
.aside-item .list-blogs .blog-item-name a {
  font-weight: normal;
}

/* Custom Footer */
.grecaptcha-badge {
  display: none;
}

.footer {
  margin-top: 50px;
  padding-top: 60px;
  color: var(--footer-color, var(--white, #FFFFFF));
  background-color: var(--footer-background, var(--dark_color, #63470c));
}
.footer .title-menu {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  display: block;
  color: var(--footer-heading-color, var(--footer-color, var(--white, #FFFFFF)));
  letter-spacing: 0.5px;
  margin-top: 36px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .footer .title-menu {
    margin-top: 12px;
  }
}
.footer a {
  color: var(--footer-color, var(--white, #FFFFFF));
}
.footer a:hover {
  color: var(--footer-color-hover, var(--main_color, #e4b95b));
}
.footer .content-contact {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}
.footer .content-contact i {
  height: 25px;
  width: 25px;
  font-size: 16px;
  float: left;
  margin-top: 3px;
  color: inherit;
}
.footer .content-contact .fa-phone {
  transform: rotate(-265deg) translateY(5px);
}
.footer .list-menu {
  padding: 0;
  margin: 0;
}
.footer .list-menu li {
  color: var(--white, #FFFFFF);
  list-style: none;
  margin-bottom: 5px;
}
.footer .list-menu li a {
  transition: all 150ms ease-in-out;
}
.footer .list-menu li:hover a {
  padding-left: 5px;
}
.footer .footer__social {
  padding: 0;
  margin: 0;
}
.footer .footer__social-item {
  display: inline-flex;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  margin-right: 8px;
  font-size: 16px;
  margin-top: 0px;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.footer .footer__social-item:hover {
  background-color: var(--white, #FFFFFF);
}
.footer .footer__social-item img {
  width: 20px;
  position: relative;
}
.footer-copyright {
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .footer-copyright {
    margin-top: 30px;
  }
}

.page-news__categories {
  margin-bottom: 50px;
}

.pagination {
  margin-top: 30px;
  justify-content: center;
}

@media (min-width: 992px) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: var(--sticky-top, 100px);
    align-self: self-start;
  }
}
.categories-box {
  background: none;
  border: 1px solid #cdcdcd;
  padding: 0 12px;
  border-top: none;
}
.categories-box ul {
  padding: 0;
  margin: 0;
}
.categories-box ul li a {
  font-size: 14px;
  display: block;
  border-bottom: 1px dashed #cdcdcd;
  line-height: 18px;
  padding: 10px 0px;
}
.categories-box ul li:last-child a {
  border-bottom: none;
}

.news-related .blog_related {
  margin-top: 20px;
  margin-bottom: 30px;
}
.news-related .blog-item-name {
  font-weight: 400;
  padding-left: 10px;
  position: relative;
  font-size: 14px;
}
.news-related .blog-item-name a:hover {
  color: var(--main_color, #e4b95b);
}
.news-related .blog-item-name .fa {
  font-size: 14px;
  color: inherit;
}
.news-related .blog-item {
  margin-bottom: 8px;
}
.news-related .related-blog-title {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.news-related .related-blog-title h2 {
  text-transform: uppercase;
  font-size: 20px;
  display: inline-block;
  border-bottom: 3px solid #2e3553;
  margin-bottom: -1px;
}

.title-form-coment {
  font-weight: 700;
}

#article-comments {
  margin-bottom: 15px;
}
#article-comments .user-name-comment strong {
  font-weight: 500;
}
#article-comments button {
  padding-top: 0;
  padding-bottom: 0;
  height: 40px;
  line-height: 40px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  min-width: 250px;
}
#article-comments .article-comment {
  margin-bottom: 10px;
}
#article-comments .article-comment-user-image {
  margin: 0;
  float: left;
  width: 50px;
  margin-right: 12px;
}
#article-comments .article-comment-user-comment {
  padding-left: 63px;
  font-size: 14px;
  word-break: break-word;
}
#article-comments .user-name-comment {
  margin: 0;
  color: var(--main_color, #e4b95b);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
#article-comments .article-comment-date-bull {
  padding: 5px 0;
  display: block;
  color: #acacac;
  font-size: 12px;
}

.contact-map iframe {
  width: 100%;
  max-width: 100%;
}

[id^=sub_error], [id^=error] {
  color: red;
  font-size: 12px;
}

.section__newsletter-page-contact form {
  margin-bottom: 0px;
}
.section__newsletter-page-contact form label {
  display: none;
}

.form-control {
  border-radius: 0px;
}

.contact-title {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: block;
  margin-top: 12px;
}

.contact_info ul {
  padding: 0;
  margin: 0;
  font-size: 14px;
  margin-top: 12px;
}
.sortPagiBar {
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}
.sortPagiBar a {
  margin-right: 4px;
  display: inline-block;
  float: left;
}
.sortPagiBar a .button-view-mode {
  display: inline-block;
  float: left;
  margin: 0;
  font-size: 14px;
  transition: 0.3s all ease 0s;
  width: 35px;
  height: 35px;
  line-height: 35px;
  cursor: pointer;
  border-radius: 3px;
  background: var(--white, #FFFFFF);
  border: 1px solid #e5e5e5;
  padding: 0;
}
.sortPagiBar a .button-view-mode:hover, .sortPagiBar a .button-view-mode.active {
  background: var(--main_color, #e4b95b);
  border-color: var(--main_color, #e4b95b);
  color: var(--white, #FFFFFF);
}
.sortPagiBar .tt {
  display: inline-block;
  height: 34px;
  line-height: 38px;
  float: left;
  margin-left: 5px;
}

#sort-by {
  float: right;
  font-size: 12px;
  text-align: left;
}
#sort-by label {
  float: left;
  line-height: 38px;
  font-size: 14px;
  margin-right: 6px;
  margin-bottom: 0;
}
#sort-by ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline;
  float: right;
}
#sort-by ul ul {
  position: absolute;
  visibility: hidden;
  left: -1px;
  top: 35px;
  background: none repeat scroll 0 0 #F8F8F8;
  z-index: 10000;
  border-top: none;
  border: 1px #F0F0F0 solid;
  opacity: 0;
}
#sort-by ul ul ul {
  position: absolute;
  left: 100%;
  top: -2px;
  border: solid 1px transparent;
}
#sort-by li {
  background: none repeat scroll 0 0 var(--white, #FFFFFF);
  cursor: pointer;
  margin: 0 auto;
  outline: medium none;
  padding: 0 20px;
  position: relative;
  width: 200px;
  float: left;
  color: #333;
  border: 1px solid #ebebeb;
  font-size: 14px;
}
#sort-by li:hover > ul {
  visibility: visible;
  opacity: 1;
}
#sort-by li > a {
  display: inline-block;
  width: 100%;
  line-height: 36px;
}
#sort-by li li {
  width: 100%;
  margin-top: 0px;
  border-top: none;
  border-right: none;
  border-left: none;
}
#sort-by li li a:hover {
  color: #007fb8;
}
#sort-by > ul > li {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  text-indent: 0.01px;
  cursor: pointer;
  line-height: 36px;
  background-image: url(/catalog/view/theme/chusalon/image/ico-select.png);
}
#sort-by a:link, #sort-by a:visited {
  color: #333;
  text-decoration: none;
}
#sort-by .button-asc,
#sort-by .button-desc {
  background-color: #f8f8f8;
  box-shadow: none;
  float: right;
  height: 30px;
  line-height: 28px;
  margin-left: 5px;
  text-align: center;
  width: 30px;
}

.product__item__thumb {
  position: relative;
}
.product__item__thumb .thumb {
  padding: 0px;
  border: 1px solid #f1f1f1;
  background: var(--white, #FFFFFF);
  width: 100%;
  text-align: center;
  position: relative;
}
.product__item .sale-flash {
  position: absolute;
  right: 6px;
  top: 6px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--white, #FFFFFF);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  width: 46px;
  height: 28px;
  display: inline-block;
  background: var(--main_color, #e4b95b);
  padding-left: 6px;
  z-index: 1;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 28px;
  border-radius: 0px;
}
.product__item__info .product-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 12px;
}
.product__item__info .product-name a {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.product__item__info .product-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 50px;
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.product__item__price .price-new {
  color: #614a3d;
  font-size: 18px;
  display: inline-block;
  font-weight: 600;
}
.product__item__price .price-old {
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 0 5px;
  display: inline-block;
  color: #999;
}
.product__item:not(.product__item-list) {
  text-align: center;
}

.products-view .product__list {
  --col-gap: 24px;
  --row-gap: 24px;
  --columns: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap) var(--row-gap);
}
.products-view .product__list .product-grid {
  width: calc(100% / var(--columns) - var(--row-gap) + var(--row-gap) / var(--columns));
  position: relative;
  overflow: hidden;
}
@media (min-width: 546px) {
  .products-view .product__list {
    --columns: 3;
  }
}
@media (min-width: 768px) {
  .products-view .product__list {
    --columns: 4;
  }
}
.products-view-grid .product__item {
  text-align: center;
}
.products-view-grid .product__item .product-name a {
  min-height: 50px;
}
.products-view-list .product__list {
  --columns: 1;
}
.products-view-list .product__list .product__item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 546px) {
  .products-view-list .product__list .product__item {
    flex-wrap: nowrap;
    gap: 30px;
  }
}
.products-view-list .product__list .product__item__thumb {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 546px) {
  .products-view-list .product__list .product__item__thumb {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .products-view-list .product__list .product__item__thumb {
    width: 33.33333333%;
  }
}
.products-view-list .product__list .product__item .product-action {
  display: flex;
  align-items: center;
  gap: 6px;
}
.products-view-list .product__list .product__item .product-action a {
  position: relative;
  opacity: 1;
  visibility: visible;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  margin-top: 0;
  border-radius: 0;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.products-view-list .product__list .product__item .product-action a.product-action-add-to-cart {
  order: -1;
}

.col-lg-9 .products-view-grid .product__list {
  --columns: 2;
}
@media (min-width: 546px) {
  .col-lg-9 .products-view-grid .product__list {
    --columns: 3;
  }
}
@media (min-width: 768px) {
  .col-lg-9 .products-view-grid .product__list {
    --columns: 3;
  }
}

.col-lg-6 .products-view-grid .product__list {
  --columns: 2;
}

.tab-content > .active {
  opacity: 1;
}

body > .alert-success {
  position: fixed;
  bottom: -100%;
  left: 20px;
  z-index: 9999;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  font-size: 14px !important;
  width: 300px;
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease;
}
body > .alert-success.active {
  bottom: 80px;
  visibility: visible;
  opacity: 1;
}
body > .alert-success a {
  color: var(--link_color, var(--main_color, #e4b95b));
}
body > .alert-success a:hover {
  text-decoration: underline;
}

.product__review .product-reviews-form {
  max-width: 600px;
  width: 100%;
}

.product-action-view {
  position: absolute;
  left: -45px;
  text-align: center;
  line-height: 30px;
  opacity: 0;
  transition: 0.3s all;
  margin-top: -15px;
  visibility: hidden;
  z-index: 9;
  background: var(--main_color, #e4b95b);
  color: var(--white, #FFFFFF);
  bottom: 0px;
  height: 35px;
  line-height: 30px;
  width: 45px;
  padding: 0px;
  border: none;
  font-size: 16px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__item:hover .product-action-view {
  left: 0px;
  opacity: 1;
  visibility: visible;
}

.product-action-add-to-cart {
  position: absolute;
  transition: 0.3s all;
  opacity: 0;
  visibility: hidden;
  right: -45px;
  margin-top: 0px;
  z-index: 9;
  bottom: 0px;
  border-radius: 0px;
  background: var(--main_color, #e4b95b);
  color: var(--white, #FFFFFF);
  height: 35px;
  line-height: 30px;
  width: 45px;
  padding: 0px;
  font-size: 16px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__item:hover .product-action-add-to-cart {
  right: 0px;
  opacity: 1;
  visibility: visible;
}

.product-action-view:hover,
.product-action-add-to-cart:hover {
  color: var(--white, #FFFFFF);
  background: var(--dark_color, #63470c);
}

.showcart {
  position: relative;
}

.count_item {
  position: absolute;
  background: var(--main_color, #e4b95b);
  color: var(--white, #FFFFFF);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  top: -6px;
  right: -8px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-product-slidebar {
  margin-top: 0;
  border: 1px solid #cdcdcd;
  padding-top: 20px;
  border-top: none;
}
.list-product-slidebar .list-item {
  margin-bottom: 15px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  gap: 12px;
}
.list-product-slidebar .list-item .thumb {
  width: 80px;
  flex-shrink: 0;
}
.list-product-slidebar .list-item .product-name {
  font-size: 14px;
  font-weight: 700;
  max-height: 36px;
  line-height: 18px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.list-product-slidebar .list-item .price-box {
  display: inline-block;
  font-size: 12px;
}
.list-product-slidebar .list-item .price-box .price {
  color: #f62d3e;
  font-weight: 600;
}
.list-product-slidebar .list-item .price-box .old-price {
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 5px;
}
.list-product-slidebar .list-item .price-box .special-price {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.text2line {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#search_mobile {
  padding-bottom: 12px;
}
#search_mobile input {
  border: none;
}
#search_mobile button {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 546px) {
  .main_container {
    order: -1;
  }
}
.open-review-form a,
.sidebox-order_action .btncart-checkout:before {
  background: var(--main_color) !important;
}

.sidebox-order_action .btncart-checkout {
  border-color: var(--main_color) !important;
}

.product-tab {
  margin-top: 30px;
}
.product-tab .tab-content {
  padding: 20px;
  min-height: 100px;
  background: var(--white, #FFFFFF);
  text-align: left;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
}
.product-tab .tab-content > .active {
  display: block;
}
.product-tab .nav-tabs {
  border-bottom: none;
  justify-content: center;
}
.product-tab .nav-tabs .nav-item:first-child .nav-link {
  border-top-left-radius: 10px;
}
.product-tab .nav-tabs .nav-item:last-child .nav-link {
  border-top-right-radius: 10px;
}
.product-tab .nav-tabs .nav-item + .nav-item {
  border-left: 1px solid var(--white, #FFFFFF);
}
.product-tab .nav-tabs .nav-item .nav-link {
  border: none;
  border-radius: 0;
  background: var(--main_color, #e4b95b);
  color: var(--white, #FFFFFF);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
.product-tab .nav-tabs .nav-item.active .nav-link {
  background-color: var(--secondary_color, #63470c);
}

/*** Custom megamenu ***/
.nav-item:hover .mega-content {
  visibility: visible;
  opacity: 1;
}

.header-nav .mega-content {
  transition: all 0.3s ease 0s;
  z-index: 2;
  position: absolute;
  width: 100%;
  padding: 10px 10px 0;
  box-shadow: 0px 0px 16px -3px #999;
  left: 0;
  text-align: left;
  display: block;
  visibility: hidden;
  opacity: 0;
  background-color: var(--header-background-lv2, var(--header-background, var(--main_color, #e4b95b)));
}
.header-nav .mega-content ul {
  margin: 0;
  padding: 0;
}
.header-nav .mega-content .level0-wrapper2 {
  padding: 10px 10px 0;
}
.header-nav .mega-content .mega-content__right {
  width: 33.3333333333%;
}
.header-nav .mega-content .level0 {
  display: flex;
  flex-wrap: wrap;
}
.header-nav .mega-content .level1 {
  margin-top: 10px;
  display: block;
  padding: 0 5px;
}
.header-nav .mega-content .level1.item {
  width: 25%;
  padding: 0 15px;
  margin-bottom: 15px;
}
.header-nav .mega-content .level1.item ul li {
  border-bottom: 1px dashed var(--header-color-lv2, #000);
}
.header-nav .mega-content .level1.item ul li.level2 {
  padding: 10px 0;
}
.header-nav .mega-content .level1.item ul li:last-child {
  border-bottom: none;
}
.header-nav .mega-content .level1.item ul li a {
  font-size: var(--header-lv2-font-size, 14px);
  color: var(--header-color-lv2, #FFFFFF);
  font-weight: normal;
  padding: 0;
  padding-left: 22px;
  display: block;
  position: relative;
}
.header-nav .mega-content .level1.item ul li a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 6px;
  background: url(/catalog/view/theme/chusalon/image/icon-menu.png) no-repeat scroll 0 0;
}
.header-nav .mega-content .level1.item ul li a:hover {
  color: var(--header-color-hover-lv2, var(--dark_color, #63470c));
}
.header-nav .mega-content .title {
  margin-top: 0;
  border-bottom: 2px solid var(--dark_color, #63470c);
  padding-bottom: 12px;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  color: var(--header-color-lv2, #FFFFFF);
}
.header-nav .mega-content .title a {
  color: var(--header-color-lv2, #FFFFFF);
}
.header-nav .mega-content .title a:hover {
  color: var(--header-color-hover-lv2, var(--dark_color, #63470c));
}
.header-nav .mega-content .title:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0px;
  bottom: -2px;
  height: 2px;
  width: 100px;
  background: var(--header-color-lv2, #FFFFFF);
}

.product__module {
  background: #f8f8f8;
}

/*# sourceMappingURL=customize.css.map */
