<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --green: #00A94F;
  --green2: #0c2c09;
  --green3: #083811;
  --green-color-3: #00a94f;
  --green-color-6: #16c691;
  --gray: #666;
  --gray2: #EAEAEA;
  --gray3: #333;
  --gray4: #f8f8f8;
  --gray5: #f4f4f4;
  --gray6: #D9D9D9;
  --gray7: #E8E8E8;
  --gray-color-1: #999;
  --gray-color-2: #666;
  --light-gray-3: #e9e9e9;
  --gray-color-4: #707070;
  --light-gray-2: #eaeaea;
  --light-gray-4: #ddd;
  --light-gray-5: #eee;
  --gray-color-4: #707070;
  --red-color-1: #ee0000;
  --red-color-4: #fe1d1a;
  --red-color-3: #ee0f00;
  --red-color-5: #c81814;
  --red-color-6: #ed2226;
  --dark-color-1: #333;
  --orange-color-1: #ff6700;
  --yellow-color-1: #fdc32d;

    --cr-light: #fffFFF;
    --cr-dark: #333333;
    --cr-gray: #666666;
    --cr-black: #111111;
    --cr-lightgray: #999999;
    --cr-green: #00A94F;
    --cr-green2: #007938;
    --cr-border: #E7E7E7;
    --radius: 8px;


}

/*================ default ==================*/
  

h2 {
  margin: 0;
  color: #333;
}

.webchatbox {
  right: 17px !important;
}

.opa {
  opacity: 0;
  z-index: -1;
}



.hide {
  display: none;
}


.mb-10 {
  margin-bottom: 10px;
}

.container-1200 {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

.container-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.nw {
  white-space: nowrap !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.show-md {
  display: none;
}

.hide-md {
  display: block;
}

.box-load-more {
  text-align: center;
}

.result-btn {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 16px 48px;
  position: relative;
  left: -5px;
}

.load-more-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 48px;
  color: white;
  border-radius: 25px;
  background-color: var(--green);
  cursor: pointer;
  transition: .3s ease-in-out;
  display: inline-block;
  line-height: 48px;
  font-weight: 600;
  text-align: center;
}

.load-more-btn:hover {
  color: white;
  background-color: #009445;
}

@keyframes loading {
  0% {
      transform: translateY(0px);
      opacity: 0;
  }

  100% {
      transform: translateY(-10px);
      opacity: 1;
  }
}

.shadow-load-more {
  position: sticky;
  width: 100%;
  display: block;
  height: 100px;
  bottom: -20px;
  background: -webkit-linear-gradient(top, rgba(248, 248, 248, 0) 0, rgba(248, 248, 248, 0.9) 75%);
  background: linear-gradient(to bottom, rgba(248, 248, 248, 0) 0, rgba(248, 248, 248, 0.9) 75%);
  margin-top: -90px;
}

.g-load-div.light {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--gray4);
}

.g-load-div2 .g-loader-wrapper {
  position: relative;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-load-div.dark {
  background: transparent;
}

.g-loader-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.g-loader {
  border: 5px solid #ccc;
  border-radius: 100%;
  border-top: 5px solid #00a950;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2000ms linear infinite;
  animation: spin 2000ms linear infinite;
  margin: 0 auto;
}

.g-load-div2.dark {
  background: rgba(248, 248, 248, 0.8);
  padding: 30px 20px;
  /* box-shadow: 0 0 6px rgb(0 0 0 / 15%); */
  border-radius: 10px;
  max-width: 300px;
  margin: 0 auto;
}

.g-load-div2 .g-loader {
  margin: 0;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border: 6px solid #ccc;
  border-top: 6px solid #00a950;
}

.g-load-div2.dark .g-loader-caption {
  margin-top: 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 600;
}

.g-loader-caption {
  color: #FFF;
  margin-top: 10px;
  font-family: Kanit, sans-serif;
  line-height: 20px;
}

.dark .g-loader-caption {
  color: var(--gray);
}

.hide {
  display: none;
}


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

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


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

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

.reset-data {
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  border-top: 1px solid var(--gray6);
  padding: 20px 0;
  text-align: center;
  margin-right: 30px;
  display: block;
}

.reset-data input {
  width: 0;
  height: 0;
}

.reset-data span {
  margin-left: 6px;
  vertical-align: middle;
}

.hash-active {
  opacity: 0;
}

.hide-xs {
  display: block !important;
}

.show-xs {
  display: none !important;
}

#search-property {
  background-color: var(--gray4);
  padding-top: 65px;
}

#search-property&gt;div {
  background: url(../img/bg-search.png) no-repeat;
  background-position: bottom center;
  background-size: contain;
  /* padding-bottom: 180px; */
}

#search-property .sp-title {
  padding-bottom: 32px;
  font-size: 33px;
  line-height: 50px;
  margin: 0;
}

#sc-document {
  display: block;
  font-weight: 400;
  color: #00a94f;
  text-align: center;
  margin: 0 auto;
  background-color: var(--gray5);
  padding-top: 30px;
}

#sc-document a:hover span {
  text-decoration: underline;
}

#sc-document a {
  text-decoration: none;
}

#sc-document span {
  margin-left: 5px;
  color: #00a94f;
}

._breadcrumbs {
  display: flex;
  align-items: center;
  padding: 20px;
}

#breadcrumbs {
  background: #FAFAFA;
}

#breadcrumbs a {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: 10px;
  line-height: 20px;
  font-size: 14px;
  color: #666;
  font-weight: 400 !important;
}

#breadcrumbs a::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -4px;
  margin-top: -2px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--gray-color-2);
  border-bottom: 2px solid var(--gray-color-2);
  transform: rotate(-45deg);
}

#breadcrumbs a:hover {
  text-decoration: underline;
}

#breadcrumbs .current-page {
  font-weight: 600 !important;
  color: #00a94f;
  margin-bottom: 0;
  font-size: 16px;
  padding-left: 10px;
}

#title-page {
  text-align: center;
  padding: 48px 16px;
  background: url(../img/bg-campaign.png) repeat-x;
  background-position: left bottom;
  background-size: 1440px;

}

#title-page h1,#title-page .h1 {
  font-size: 33px;
  line-height: 50px;
  font-weight: 600;
  margin: 0 0 8px;
}

#title-page h1 {
  color: var(--dark-color-1);
}

.mb-0 {
  margin-bottom: 0 !important;
}

#title-page h2,#title-page .h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  color: var(--gray3);
  margin: 0;
}

/* ################## double koom ################## */
#double-koom {
  background-color: var(--green2);
  text-align: center;
}

.dk-box-title {
  padding: 64px 20px;
}

#double-koom .dk-box-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--green);
}

.dk-box-title div {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
}

.swiper-pagination-fraction {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  color: #fff;
  left: auto;
  width: auto;
  padding: 2px 12px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  margin: 16px 0 0;
}

.assets-swiper-container {
  padding: 0 0 60px 20px;
  position: relative;
  min-height: 520px;
}

.assets-swiper-container .thumbnail {
  margin-bottom: 0;
  width: 320px;
  max-width: 320px;
  padding: 0;
}

.assets-swiper-container .result-img::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../img/npa-logo-campaign-doublekoom.png);
  background-size: contain;
  top: 10px;
  right: 10px;
}

.swiper {
  padding-bottom: 0;
}

.swiper-slide {
  width: 320px !important;
  margin-right: 20px !important;
}

.pag-num {
  color: #FFF;
}

.current-page {
  font-size: 20px;
  font-weight: 600;
}

.property-prev-1.slick-disabled,
.property-next-1.slick-disabled {
  opacity: 0.5;
}

.scroll-pagi {
  width: fit-content;
  height: 6px;
  border-radius: 10px;
  background-color: var(--light-gray-3);
  display: flex;
  align-items: center;
  left: 50% !important;
  transform: translateX(-50%);
  width: unset !important;
  bottom: 4px !important;
}

#icw .scroll-pagi .swiper-pagination-bullet {
  width: 20px !important;
  height: 6px !important;
  border-radius: 5px !important;
  margin: 0 !important;
  background-color: var(--light-gray-2) !important;
  display: block;
}

#icw .scroll-pagi .swiper-pagination-bullet-active {
  background-color: var(--green) !important;
}

#icw .property-next-1,
#icw .property-prev-1 {
  display: block;
  background-color: var(--green);
  border: 2px solid #FFF;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  top: 160px;
}

#icw .property-next-1:after,
#icw .property-prev-1::after {
  content: '';
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #FFF;
  border-right: 2px solid #FFF;
  display: block;
  position: absolute;
  top: 12px
}

#icw .property-next-1:after {
  transform: rotate(-45deg);
  left: 10px;
}

.property-prev-1::after {
  transform: rotate(135deg);
  right: 10px;
}

/* ################## Koom 5 tor ################## */
#koom5tor {
  background-color: var(--green3);
  /* padding: 110px 35px 60px; */
  padding: 0 35px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* position: relative;
  overflow: hidden; */
}

#koom5tor .dk-box-title h2 {
  font-size: 28px;
  line-height: 39px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.wrapper-k-wrap-box {
  position: relative;
}

.k-bg {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 185px;
  /* transform: translateY(-50%); */
  transform: matrix(1, 0, 0, 1, 0, 0) scale(1.5);
}

.k-bg:nth-child(2) {
  top: 345px;
  transform: matrix(1, 0, 0, 1, 0, 0) scale(1.5);
}

.k-bg:nth-child(3) {
  top: 500px;
  transform: matrix(1, 0, 0, 1, 0, 0) scale(1.5);
}

.k-box {
  position: relative;
  height: 626px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin-top: 50px;
}

.k-wrap-box .slick-list {
  overflow: visible;
}

@media screen and (min-width: 992px) {
  .k-wrap-box .slick-list .slick-track {
    max-width: 900px;
    display: flex;
    margin: 0 auto;
  }
  .k-box {
    margin-top: 0;
  }
}
.wrapper-arrow {
  max-width: 1140px;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: 20px;
}

.k-box&gt;div {
  position: relative;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;

  width: 420px;
  padding: 25px 20px;
  background-color: #D6E6D9;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;

  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

/* .k-box.slick-center &gt; div {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
} */

.k-box.slick-current.slick-active.slick-center &gt; div {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.k-box h2 {
  color: var(--green);
  margin-bottom: 6px;
  margin-top: 10px;
  font-size: 35px;
  font-weight: 600;
}

.k-box a.link{
  color: var(--green);
  text-decoration: underline;
}

.k-text-p {
  font-size: 14px;
  line-height: 20px;
  color: var(--gray);
  margin-top: 15px !important;
}

.k-text-p.left {
  text-align: left;
  margin-top: 10px !important;
}

.k-circle {
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  top: -50px;
}

.k-circle img {
  margin: 0 auto;
}

.k-box span {
  color: var(--dark-color-1);
  line-height: 24px;
  font-weight: 600;
}

.k-box span.nomal {
  font-weight: 400;
  display: inline;
  color: var(--gray);
}

.k-box-next,
.k-box-prev {
  display: block;
  background-color: var(--green);
  border: 2px solid #FFF;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-top: 0px;
}

.k-box-next:after,
.k-box-prev::after {
  content: '';
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #FFF;
  border-right: 2px solid #FFF;
  display: block;
  position: absolute;
  top: 12px;
}

.k-box-prev::after {
  transform: rotate(135deg);
  right: 10px;
}

.k-box-next:after {
  transform: rotate(-45deg);
  left: 10px;
}

.k-link {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
}

.k-link a {
  font-size: 14px;
  line-height: 24px;
  color: var(--green);
  font-weight: 600;
  position: relative;
  margin: 0 16px;
}

.k-text ul {
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  color: var(--gray);
  padding-left: 25px;
  margin: 0;
}

.k-link a::after {
  content: '';
  position: absolute;
  bottom: 50%;
  right: -10px;
  margin-bottom: -5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.k-link a:hover {
  text-decoration: underline;
}

.box-link-download {
  margin-top: 64px;
}

.btn-link-download {
  color: #FFF;
  display: inline-block;
  border-radius: 40px;
}

.btn-link-download span {
  text-decoration: underline;
  vertical-align: middle;
  font-weight: 600;
}

.btn-link-download:hover {
  color: #FFF;
}

.btn-link-download span {
  margin-left: 8px;
}

/* ################## col Left ################## */
.sp-wrap-col {
  display: flex;
  align-items: flex-start;
  max-width: 1940px;
  margin: 0 auto;
}

.sp-title {
  color: #333;
  text-align: center;
  padding: 0 20px 60px;
}

.sp-col-l {
  width: 370px;
  min-width: 370px;
  padding-left: 20px;
  padding-top: 20px;
  position: sticky;
  position: -webkit-sticky;
  top: 90px;
  overflow-y: auto;
  height: calc(100vh - 90px);
  padding-bottom: 20px;

  transition: .3s ease-in-out;

  left: 0;
  margin-right: 20px;
  opacity: 1;
}

.sp-col-r {
  padding-right: 10px;
  position: relative;
  min-height: 500px;
  z-index: 1;
  width: 100%;
  /* overflow: scroll; */
}

#sp-r-all-thumb {
  margin-right: -10px;
  margin-left: -10px;
  padding: 0 34px;
}

.not-found-card {
  padding: 0 20px;
}

.not-found-card&gt;* {
  text-align: center;
  border-radius: 10px;
  color: var(--green);
  max-width: 600px;
  height: 270px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.not-found-card h3 {
  font-size: 20px;
  margin-top: 20px;
}

.sp-l-title {
  color: var(--gray3);
  font-weight: 600;
  margin-bottom: 20px;
}

.sp-l-box-choice {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0 0 0 -16px;
  width: 100%;
}

.sp-l-chioce-squre {
  margin-bottom: 20px;
  flex: 25%;
  position: relative;
}

.sp-l-chioce-squre.disable {
  opacity: 0.3;
  pointer-events: none;
}

.sp-l-chioce-squre .squre {
  width: 60px;
  height: 60px;
  -webkit-box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  margin: 0 auto;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.sp-l-chioce-squre .squre i {
  font-size: 30px;
  line-height: 60px;
}

.sp-l-chioce-squre input {
  width: 0;
  height: 0;
  margin: 0 auto;
  display: block;
  opacity: 0;
}

.sp-l-chioce-squre.active .squre {
  border: 2px solid var(--green);
}

.sp-l-chioce-squre.active .squre i {
  color: var(--green);
}

.sp-l-chioce-squre span {
  color: var(--gray);
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  cursor: pointer;
  display: block;
  text-align: center;
  margin-top: 10px;
}

.sp-l-box-ellipse {
  padding-bottom: 15px;
}

.sp-l-chioce-ellipse {
  background-color: var(--gray2);
  border: 2px solid var(--gray2);
  padding: 0 15px;
  cursor: pointer;
  display: inline-block;
  border-radius: 20px;
  margin-bottom: 10px;
  margin-right: 6px;
  position: relative;
}

.sp-l-chioce-ellipse.disable {
  opacity: 0.3;
  pointer-events: none;
}

.sp-l-chioce-ellipse img {
  width: 18px;
  margin-left: 10px;
}

.sp-l-chioce-ellipse input {
  display: none;
}

.sp-l-chioce-ellipse.active {
  background-color: #FFF;
  border: 2px solid var(--green);
}

.sp-l-chioce-ellipse.active .checkmark {
  display: inline-block;
}

.sp-l-chioce-ellipse.active span {
  color: var(--green);
}

.sp-l-chioce-ellipse .checkmark {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0;
  margin-right: 6px;
  border-radius: 100%;
  background-color: var(--green);
  position: relative;
  display: none;
}

.sp-l-chioce-ellipse .checkmark::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  border-bottom: 2px solid #FFF;
  border-right: 2px solid #FFF;
  top: 6px;
  left: 8px;
  transform: rotate(45deg);
  z-index: 9;
}

.sp-l-chioce-ellipse span {
  color: var(--gray);
  line-height: 29px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}

/* Custom scroll bar */
/* Hide scrollbar for Chrome, Safari and Opera */
#leftGrid::-webkit-scrollbar,
.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE and Edge */
#leftGrid {
  height: calc(100vh - 285px);
  /* height: calc(100vh - 215px); */
  -ms-overflow-style: none;
}

#leftGrid .simple-scroll {
  /* height: calc(84vh - 175px); */
  /* overflow: auto; */
  padding: 10px 20px;
}

.property-nav-wrap .simplebar-scrollbar,
#leftGrid .simplebar-scrollbar {
  border-radius: 10px;
  background-color: var(--gray-color-1);
}

.property-nav-wrap .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before,
#leftGrid .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  background-color: var(--gray-color-1);
}

#leftGrid .simplebar-track.simplebar-vertical {
  background-color: var(--light-gray-2);
  border-radius: 10px;
  width: 6px;
  margin: 70px 0;
}

.property-nav-wrap .simplebar-track.simplebar-horizontal {
  height: 6px;
  background-color: var(--light-gray-2);
  border-radius: 10px;
  margin: 0 20px 10px;
  /* max-width: 590px; */
}

.property-nav-wrap .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: 0;
}

.result-wrapper .left .simplebar-mask,
.result-wrapper .left .simplebar-offset,
.result-wrapper .left .simplebar-content-wrapper {
  border-color: transparent !important;
  border-radius: 10px;
}


/* ################## col Right ################## */

.sp-r-result {
  color: var(--gray3);
  text-align: right;
}

.sp-r-result span {
  font-size: 18px;
  font-weight: 600;
}

.swiper-wrapper {
  margin-bottom: 30px;
}

.thumbnail {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-bottom: 20px;
  padding: 0 0px;
  width: 100%;
  /* max-width: 330px; */
}

@media screen and (min-width: 576px) {
.thumbnail {
  max-width: 330px;
  padding: 0 10px;
}
}

.thumbnail.waiting {
  display: none;
}

.thumbnail.sold-out::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  z-index: 10;
}

.thumbnail.sold-out::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 177px;
  height: 130px;
  background: url(https://www.kasikornbank.com/SiteCollectionDocuments/assets/PFS2022/pages/home/img/double-koom/SVG.svg);
  background-position: -247px -125px;
  z-index: 10;
  margin: 0 auto;
  margin-top: -60px;
}

.result-card {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 0 auto;
  background-color: #FFF;
}

.result-img {
  width: 100%;
  height: 192px;
  max-height: 192px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  overflow: hidden;
  display: block;
}

.BTS .result-img::before,
.MRT .result-img::before {
  content: '';
  background-color: #FFF;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 8;
  border-radius: 8px;
}

.BTS .result-img::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/bts.png);
  background-size: cover;
  top: 15px;
  right: 15px;
  z-index: 9;
}

.MRT .result-img::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 20px;
  background: url(../img/mrt.png);
  background-size: cover;
  top: 14px;
  right: 13px;
  z-index: 9;
}

.result-img img {
  width: 100%;
  height: 192px;
  object-fit: cover;
}

.result-img .multi-img {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  padding: 5px 8px;
  z-index: 9;
  position: absolute;
  bottom: 8px;
  right: 5px;
  display: none;
}

.result-img .multi-img i {
  font-size: 12px;
  color: #FFF;
}

.result-content {
  padding: 12px;
}

.box-comparision {
  display: inline-block;
  padding-left: 10px;
  position: relative;
}

.box-comparision::after {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 25px;
  background-color: var(--light-gray-2);
}

.box-comparision i {
  font-size: 25px;
  color: var(--green-color-3);
  cursor: pointer;
}

.result-text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.result-text a {
  flex-basis: 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
  max-width: 100%;
  display: inline-block;
}

#icw .result-text h2 {
  color: var(--green-color-3);
  font-size: 18px;
  line-height: 27px;
  margin: 8px 0;
}

.result-text a:hover {
  text-decoration: underline;
  color: var(--green-color-3);
}

#npa-specialprice-mar-jun-2024 .result-text h2 {
  font-size: 18px;
  line-height: 25px;
  width: 80%;
  height: 50px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--green-color-3);
  text-align: left;
}

.like-btn {
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px var(--light-gray-4);
}

.like-btn.active {
  background-color: var(--green-color-3);
}

.like-btn i.ic-npa-icon-like {
  font-size: 20px;
  color: var(--green-color-3);
}

.like-btn i.ic-npa-icon-like-active {
  color: white;
  font-size: 20px;
}

.location {
  display: flex;
  align-content: center;
  color: var(--gray-color-2);
  margin-bottom: 15px;
}

.location i.ic-npa {
  font-size: 14px;
  margin-right: 5px;
  line-height: 1rem;
}

.location p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1rem;
  margin-bottom: 0;
}

.result-detail {
  display: flex;
  justify-content: space-between;
  color: var(--gray-color-2);
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray-2);
}

.result-detail&gt;* {
  width: 30%;
}

.result-detail&gt;*:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 65%;
}

.result-detail&gt;*:last-child .title {
  text-align: right;
}

.result-detail .room {
  display: flex;
  align-items: center;
}

.result-detail p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 14px;
}

.result-detail .title {
  font-size: 14px;
  margin-bottom: 8px;
}

.result-detail .room .spacer {
  width: 1px;
  height: 14px;
  background-color: var(--gray-color-4);
  margin: 0 10px;
}

.result-detail p i.ic-npa {
  font-size: 14px;
  margin-right: 5px;
  color: var(--gray-color-4);
}

.result-detail .area span {
  margin-right: 5px;
}

.result-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.result-footer p {
  margin-bottom: 0;
  margin-left: auto;
  font-weight: 600;
}

.special-badge,
.lower-badge {
  padding: 2px 8px;
  color: white;
  background: linear-gradient(140deg, var(--red-color-4), var(--red-color-5));
  border-radius: 3px;
}

.lower-badge {
  padding: 2px 0px;
  color: var(--red-color-6);
  background: transparent;
}

.special-badge p,
.lower-badge p {
  font-size: 14px;
  font-weight: 400;
}

#icw .spacial-price,
#icw .lower-price {
  color: var(--red-color-1);
  line-height: 1.5rem;
}

#icw .spacial-price span {
  font-size: 24px;
  font-weight: 600;
}

.lower-price {
  color: var(--dark-color-1);
}

#icw .assets-swiper .spacial-price span,
#icw .assets-swiper .lower-price span {
  font-size: 24px;
}

#icw .old-price {
  width: fit-content;
  margin: 0 0 0 auto;
  font-size: 14px;
  color: var(--gray-color-1);
  position: relative;
  font-weight: 400;
}

#icw .old-price::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--gray-color-1);
  position: absolute;
  top: 50%;
  left: 0;
}

.price-area {
  text-align: right;
}

/* ################## go to search page ################## */
#go-to-search-page {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  margin-top: -145px;
  overflow: hidden;
}

#go-to-search-page h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-color-1);
  text-align: center;
  line-height: 100px;
  background-color: #FFF;
}

#go-to-search-page&gt;div {
  background-color: var(--gray5);
  padding: 30px 50px;
  margin-right: -10px;
  margin-left: -10px;
  text-align: center;
}

#go-to-search-page .gt-card {
  width: 160px;
  height: 100px;
  max-width: 160px;
  min-width: 160px;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgb(0 169 79 / 10%);
  background: #FFF;
  color: var(--dark-color-1);
  font-weight: 600;
  padding: 15px 12px 0;
  margin-bottom: 20px;
  border: 2px solid #FFF;
  position: relative;
  margin: 0 10px 20px;
}

#go-to-search-page .gt-card::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 12px;
  width: 75px;
  height: 60px;
  background: url(../img/SVG.svg);
  background-position: -189px 0;
}

#go-to-search-page .gt-card:nth-child(2):after {
  background-position: -276px 0;
  width: 87px;
}

#go-to-search-page .gt-card:nth-child(3):after {
  background-position: -372px 0;
  width: 86px;
}

#go-to-search-page .gt-card:nth-child(4):after {
  background-position: -472px 0;
  width: 78px;
}

#go-to-search-page .gt-card:nth-child(5):after {
  background-position: -575px 0;
  width: 71px;
}

#go-to-search-page .gt-card:nth-child(6):after {
  background-position: -661px 0;
  width: 96px;
}

#go-to-search-page .gt-card:nth-child(7):after {
  background-position: -191px -68px;
  width: 76px;
}

#go-to-search-page .gt-card:nth-child(8):after {
  background-position: -277px -68px;
  width: 86px;
}

#go-to-search-page .gt-card:nth-child(9):after {
  background-position: -376px -65px;
  width: 86px;
}

#go-to-search-page .gt-card:nth-child(10):after {
  background-position: -467px -67px;
  width: 82px;
  bottom: -3px;
}

#go-to-search-page .gt-card:nth-child(11):after {
  background-position: -560px -67px;
  width: 102px;
}

#go-to-search-page .gt-card:nth-child(12):after {
  background-position: -670px -67px;
  width: 77px;
}


#go-to-search-page .gt-card:hover {
  border: 2px solid var(--green);
}

/* ################## condition campaign ################## */
#condition-campaign {
  max-width: 1030px;
  margin: 30px auto 50px;
  padding: 0 15px;
}

#condition-campaign&gt;* {
  border-bottom: 1px solid var(--gray6);
}

.cc-title {
  border-top: 1px solid var(--gray6);
  cursor: pointer;
  position: relative;
  padding: 15px 0;
}

.cc-title::after {
  content: '';
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--dark-color-1);
  border-right: 2px solid var(--dark-color-1);
  display: block;
  position: absolute;
  top: 19px;
  right: 3px;
  transform: rotate(45deg);
}

.cc-title.active::after {
  transform: rotate(225deg);
}

.title-condition {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-color-1);
}

.border-bottom {
  border-bottom: 1px solid var(--gray6);
}

.cc-content {
  font-size: 14px;
  line-height: 24px;
  color: var(--dark-color-1);
  text-align: left;
}

.cc-content ul {
  padding-left: 20px;
  margin: 0;
  font-family: 'kurious-looped' !important;
}

.cc-content ul li ul li {
  list-style-type: "-";
  padding-left: 5px;
}

.cc-content strong {
  font-family: 'kurious-looped' !important;
}

.cc-content a {
  font-family: 'kurious-looped' !important;
  color: var(--green);
  text-decoration: underline;
  font-weight: 600;
}

.cc-content a:hover {
  color: #039D4C;
}

.wrapper-title {
  text-align: center;
}

.title-strong-popup {
  font-size: 24px;
  line-height: 40px;
  font-weight: 600;
  color: var(--dark-color-1);
  /* margin-bottom: 16px; */
}

.title-strong-popup2 {
  font-size: 22px;
  color: var(--green);
  font-weight: 600;
}

.desc-popup {
  font-size: 14px;
  line-height: 24px;
  color: var(--dark-color-1);
}

.line-text {
  font-size: 18px;
  color: var(--dark-color-1);
  line-height: 27px;
  font-weight: 600;
  position: relative;
  text-align: center;
  margin: 30px 0 50px;
}

.line-text span {
  background-color: #FFF;
  padding: 0 13px;
  position: relative;
  z-index: 2;
}

.line-text::after {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  top: 15px;
  height: 1px;
  background-color: var(--dark-color-1);
}

.wrapper-box-popup {
  margin-right: -10px;
  margin-left: -10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.wrapper-box-popup .box {
  border-radius: 8px;
  margin: 0 10px;
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 20px;
}

.box-content {
  background-color: #E2F5EB;
  padding: 20px 0 0 30px;
  display: flex;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  min-height: 330px;
}

.box-content.short {
  min-height: 280px;
}

.box-content-title {
  font-size: 24px;
  line-height: 35px;
  color: var(--green);
  font-weight: 600;
}

.box-content-desc {
  color: var(--dark-color-1);
}

.box-content-desc strong {
  font-weight: 600;
}

.box-content-r {
  min-width: 170px;
  position: relative;
}

.box-content-r&gt;div {
  position: absolute;
  top: 50%;
}

.img1 {
  margin-top: -105px;
}

.img2 {
  margin-top: -104px;
}

.img3 {
  margin-top: -107px;
}

.img4 {
  bottom: 0;
  top: unset !important;
}

.box-content-l {
  width: calc(100% - 170px);
}

/* ################## rate interest ################## */

#rate-interest {
  background-color: var(--gray5);
  padding-bottom: 48px;
  padding-top: 64px;
}

#icw .ri-container h2,
.ri-container h2 { 
  font-size: 33px;
  font-weight: 600;
  color: var(--dark-color-1);
  text-align: center;
  margin: 0;
}

.ri-container {
  text-align: center;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.ri-container p {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--dark-color-1);
}

.swipe-guide {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}

/* Global Table */
/* #tableSpecialInterest {
  width: 1200px;
} */

table {
  width: 100%;
  /* overflow: hidden; */
  border-spacing: 0;
  border-radius: 10px;
  border: solid 1px var(--gray7);
}

table thead tr th {
  color: white;
  padding: 15px 0;
  text-align: center;
  background: #00A94F;
  font-size: 16px;
  width: 10%;
}

.table-2-col tr th {
  width: 50%;
}

.table-2-col strong {
  font-family: Kanit, notosansthai, Arial, sans-serif !important;
  font-weight: 600;
  margin: 0;
}

table thead tr th {
  border-right: solid 1px var(--gray7);
  border-bottom: solid 1px var(--gray7);
  padding: 8px;
}

table tbody tr td {
  padding: 8px;
  color: #666666;
  text-align: center;
  background: white;
  font-size: 16px;
}

table tbody tr td:not(:last-child) {
  border-right: solid 1px var(--gray7);
}

table tbody tr:not(:last-child) td {
  border-bottom: solid 1px var(--gray7);
}

table thead tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

table thead tr:first-child th:last-child {
  border-top-right-radius: 10px;
  width: 10%;
}

table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

table#tableSpecialInterest thead tr:last-child th {
  border-right: solid 1px var(--gray7);
  border-top: solid 1px var(--gray7);
}

/* Global Table */

.table-2-col {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Scroll Overflow Y */
.scroll-y-wrapper.ps {
  position: relative;
  padding-bottom: 0;
}

.scroll-y-wrapper.ps .ps__rail-x {
  opacity: 1;
  height: 10px;
  background: #E7F7EE;
}

.scroll-y-wrapper.ps .ps__rail-x {
  display: none;
}

.scroll-y-wrapper.ps .ps__rail-x .ps__thumb-x {
  bottom: 0;
  height: 10px;
  background: #00A94F;
}

/* Scroll Overflow Y */

.text-remark {
  color: var(--gray);
  font-size: 14px;
  text-align: center;
}

.ri-sub-title {
  color: var(--dark-color-1);
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  align-items: center;
}

.ri-sub-title strong {
  font-size: 22px;
}

.green {
  color: var(--green);
}

.red {
  color: var(--red-color-6);
}

.thin {
  font-weight: 400;
}

.ri-sub-title&gt;div {
  margin: 0 15px;
}

.ri-circle {
  display: flex;
}

.ri-circle&gt;div {
  display: inline-block;
  margin-right: 15px;
}

.ri-circle .ri-ic {
  width: 103px;
}

.ri-circle .ri-ic2 {
  width: 51px;
}

.ri-circle .ri-ic3 {
  width: 118.5px;
}

#btn-back {
  text-align: center;
  padding: 0 20px 50px;
  background-color: var(--gray5);
}

#btn-back a {
  background-color: var(--green);
  border-radius: 23px;
  color: #FFF;
  font-weight: 600;
  /* padding: 0 44px; */
  line-height: 45px;
  display: inline-block;
  transition: .3s ease-in-out;
  width: 270px;
  max-width: 100%;
}

#btn-back a:hover {
  background-color: #009445;
}

/* ########################## Popup ########################## */
.mfp-close-btn-in .mfp-close:after {
  font-size: 14px;
  color: #FFF;
}

.popop-logo {
  border-bottom: 1px solid var(--gray7);
}

.popop-logo img {
  width: 70px;
  height: 70px;
}

.popop-logo span {
  color: var(--dark);
  font-weight: 600;
  line-height: 18px;
  margin-left: 14px;
}

.popup-caption {
  color: var(--dark2);
  text-align: center;
  padding: 20px 0 40px;
  line-height: 24px;
}

.popup-btn {
  border-radius: 23px;
  font-weight: 600;
  line-height: 47px;
  display: inline-block;
  width: 140px;
  text-align: center;
  margin: 0 5px;
}

.mfp-wrap.mfp-ready .mfp-container {
  padding: 15px;
}

.popup-btn-box {
  text-align: center;
  margin-right: -7px;
  margin-left: -7px;
}

#icw .btn-cancel {
  background: var(--gray);
  color: var(--green2);
}

#icw .btn-confirm {
  background: var(--green2);
  color: #FFF;
}

.content-popup {
  border-top: 5px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(90deg, rgba(0, 169, 79, 1) 0%, rgba(46, 60, 52, 1) 100%);
}

.mfp-content .title-condition {
  padding-bottom: 10px;
}

.mfp-content .title-strong {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: var(--dark-color-1);
}

.mfp-content .ri-sub-title {
  margin-bottom: 20px;
}

.mfp-content .table-2-col tr th {
  width: auto;
}

.mfp-content .table-2-col {
  max-width: unset;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
}

/* .mfp-content table tbody tr td {
  padding: 16px 0;
} */

.text-red {
  font-weight: 600;
  color: var(--red-color-6);
}

.text-mark {
  position: relative;
}

.text-mark::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--gray-color-1);
  position: absolute;
  top: 50%;
  left: 0;
}

.mt-25 {
  margin-top: 25px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* ########################## Popup ########################## */

/* mfp */
.mfp-content {
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  padding: 60px 40px;
}

.mfp-content .white-popup-block {
  padding: 60px 20px 30px;
}

.mfp-close {
  opacity: 1;
}

.mfp-close-btn-in .mfp-close {
  font-size: 0;
  padding: 0;
  top: 21px;
  right: 21px;
  text-align: center;
  color: inherit;
  background-color: var(--green);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -22px;
  right: -22px;
}

.ic-close-popup {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: -1;
}

.ic-close-popup::before {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 2px;
  height: 22px;
  background-color: #FFF;
  transform: rotate(45deg);
}

.ic-close-popup::after {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 2px;
  height: 22px;
  background-color: #FFF;
  transform: rotate(135deg);
}

.mfp-close-btn-in .mfp-close:hover {
  color: #00a950;
}

.mfp-close-btn-in .cc-content ul li ul li {
  list-style-type: disc;
}

/* .mfp-image-holder .mfp-close, 
.mfp-iframe-holder .mfp-close {
  width: 44px;
  line-height: 44px; 
  right: -44px;
  color: #bbb;
} */
.mfp-iframe-holder .mfp-close {
  top: -44px;
}

.mfp-image-holder .mfp-close {
  top: 16px !important;
}

.mfp-bg,
.mfp-wrap .mfp-content,
.mfp-wrap .mfp-container {
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-wrap.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  visibility: visible;
  border-top: 5px solid var(--green);
  margin-bottom: 20px;
  margin-top: 20px;
}

.mfp-bg.mfp-removing,
.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-image-holder .mfp-content {
  background-color: transparent;
}

.mfp-image-holder img.mfp-img {
  padding: 60px 0;
}

.mfp-image-holder .mfp-figure:after {
  top: 60px;
  bottom: 60px;
}

.mfp-image-holder .mfp-bottom-bar {
  margin-top: -45px;
  padding-bottom: 15px;
}

.mfp-image-holder .mfp-title {
  font-size: 14px;
  color: #bbb;
  line-height: inherit;
}

.mfp-image-holder .mfp-figure {
  line-height: inherit;
}

.mfp-image-holder .mfp-arrow {
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mfp-image-holder .mfp-arrow:before,
.mfp-image-holder .mfp-arrow:after {
  border: 0;
  margin: 0;
  position: static;
  width: auto;
  height: auto;
  text-align: center;
}

.mfp-image-holder .mfp-arrow:before {
  font-family: 'icokbank';
  font-size: 35px;
  color: #bbb;
}

.mfp-arrow-left:before {
  content: "\e908";
}

.mfp-arrow-right:before {
  content: "\e909";
}

.mfp-image-holder .mfp-arrow:hover:before {
  color: #00a950;
}

.mfp-image-holder .mfp-content,
.mfp-iframe-holder .mfp-content {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mfp-image-holder .mfp-counter {
  color: #bbb;
  line-height: 22px;
}

/* Product - Popup Content */
#icw-popup-content.mfp-bg {
  background: #fff;
}

#icw-popup-content.mfp-bg.mfp-ready {
  opacity: 1;
}

#icw-popup-content .mfp-container {
  padding: 0;
  border-top: 3px solid #00a950;
  position: fixed;
  max-height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

#icw-popup-content .mfp-content {
  max-width: 100%;
}

#icw-popup-content .main-container {
  padding: 100px 0;
}

.popup-headline {
  margin-bottom: 30px;
}

.back-to-top {
  position: fixed;
  bottom: 5px;
  right: 15px;
  max-width: 50px;
  z-index: 100;
  box-shadow: 0px 2px 15px rgb(0, 0, 0, 0.1);
  border-radius: 50%;
  display: none;
}

/* tab */
.sp-tab-all {
  display: flex;
  justify-content: center;
  grid-template-columns: auto auto auto auto auto;
  background: #FFF;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.03);
  max-width: 1940px;
  margin: 0 auto 48px;
}

.sp-tab {
  color: #333;
  font-family: kanit;
  font-size: 16px;
  line-height: 24px;
  padding: 11px 40px 16px;
  border-top: 5px solid transparent;
  transition: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  font-family: 'kurious-looped';
  font-weight: 600;
}

.sp-tab i {
  font-size: 30px;
  margin-right: 10px;
}

.sp-tab:not(:last-child):after {
  content: "";
  border-right: 1px solid #DCDCDC;
  position: absolute;
  right: 0;
  height: 48px;
}

.sp-tab.active {
  border-top: 5px solid #00A94F;
  color: #00A94F;
  font-weight: 600 !important;
}

.sp-tab:hover {
  color: #00A94F;
}

#icw .btn-filter {
  border-radius: 0;
  border: 2px solid #00A94F;
  background: #00A94F;
  height: 45px;
  width: 270px;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  transition: .3s ease-in-out;
}

#icw .btn-filter.disable {
  opacity: 0.3;
  pointer-events: none;
}

#icw .btn-filter i {
  margin-right: 1px;
  position: relative;
  top: 2px;
}

#icw .btn-filter:hover {
  color: #fff;
  background: #0BC160;
}

#icw .btn-filter.active {
  border: 2px solid #00A94F;
  background: #00A94F;
  color: #fff;
}

.sp-left {
  width: 370px;
  min-width: 370px;
  padding-left: 44px;
  position: sticky;
  position: -webkit-sticky;
  top: 20px;
  overflow-y: auto;
}

.sp-wrap-col.sp-filter {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.sp-right {
  margin-left: 45px;
  width: 100%;
  padding-right: 44px;
  position: relative;
}

.tab-dropdown {
  display: none;
}

/* end tab */

.nw {
  white-space: nowrap !important;
}

.scroll-y-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 32px;
}

/* .scroll-y-wrapper::-webkit-scrollbar {
  display: none;
} */


.scroll-y-wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ebebeb;
}


.scroll-y-wrapper::-webkit-scrollbar {
  height: 3px;
  background-color: #ebebeb;
  border-radius: 10px;
}


.scroll-y-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #00A94F;
}


.ri-container table {
  /* margin-bottom: 16px; */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}


.f-13 {
  font-size: 13px !important;
}

.f-16 {
  font-size: 16px !important;
}

/*
.tableSlide {
  min-width: 1400px;
  user-select: none;
  cursor: pointer;
}
*/



.f-20-18 {
  font-size: 20px !important;
}

.a-left {
  text-align: left !important;
}

@media screen and (min-width: 1200px) {
  .tableSlide {
/*        min-width: 1400px;*/
      user-select: none;
      cursor: pointer;
  }
  .sw-hide{
      display: none;
  }
}


@media screen and (max-width: 1199px) {
  .tableSlide {
      min-width: 1400px;
      user-select: none;
      cursor: pointer;
  }

  .tableSlide.min-800 {
      min-width: 800px;
  }

  .sw-hide{
      display: block;
  }
}

@media screen and (min-width: 1100px) {
  header.header ul.nav-desktop {
      justify-content: end;
  }
}

@media screen and (min-width:1024px) {
  .sp-col-l.hide-col {
      transition: .3s ease-in-out;
      width: 0;
      opacity: 0;
      min-width: 0;
      padding: 0;
      margin-right: 0;
  }
}

@media screen and (max-width: 1023px) {
  

  /* tab */
  .sc-menu {
      position: sticky;
      top: 40px;
      z-index: 10;
      margin-right: -15px;
      margin-left: -15px;
      padding: 0 30px;
      background: #F8F8F8;
      z-index: 52;
      width: 100%;
      padding-right: 0;
      height: 39px;
      height: 0;
  }

  .sc-menu:after {
      content: "";
      border-bottom: 1px solid #DBDBDB;
      position: relative;
      bottom: 0;
      display: block;
      width: 100%;
      display: none;
  }

  .sp-filter {
      z-index: 50;
      background: #F8F8F8;
  }
  .tab {
      position: relative;
      z-index: 2;
      overflow: auto;
      margin-right: 75px;
  }

  .tab .control {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      margin-bottom: 0;
  }

  .tab .control:after {
      content: '';
      display: table;
      clear: both;
  }

  .tab .control a {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px 0 4px;
      font-size: 16px;
      line-height: 24px;
      color: #999;
      text-align: center;
      position: relative;
      z-index: 1;
      -webkit-box-flex: 0;
      flex: 0 0 auto;
      width: auto;
      max-width: none;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      border-top: 0;
      margin-right: 15px;
      transition: none;
  }

  .tab .control a.active {
      color: #333;
      font-weight: 600;
      pointer-events: none;
      border-bottom-color: #00A94F;
      border-bottom-width: 3px;
  }

  .sp-tab.active {
      border-top: 0;
  }

  .sp-tab:not(:last-child):after {
      content: "";
      border-right: 0;
  }

  .sp-tab-all {
      background: #F8F8F8;
  }

  .tab.active {
      overflow: visible;
  }

  .tab.active .control {
      display: block;
      flex-wrap: inherit;
      width: auto;
      margin-left: -15px;
      margin-right: -60px;
      position: relative;
      z-index: 1;
      top: 45px;
      padding: 15px 5px;
      background: #F8F8F8;
      box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.15);
  }

  .tab.active .control:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0px;
      right: 0;
      height: 1px;
      background-color: #e5e5e5;
  }

  .tab.active .control a {
      display: inline-flex;
      padding: 5px 15px;
      border: 2px solid transparent;
      border-radius: 100px;
      background: #EAEAEA;
      margin: 5px;
      color: #666;
      text-align: center;
      font-size: 16px;
      font-weight: 600 !important;
      line-height: 24px;
  }

  .sp-left {
      padding: 20px 15px;
      min-width: auto;
      width: 100%;
  }

  #icw .btn-filter {
      width: 100%;
  }

  .tab.active .control a.active {
      border-color: #00A94F;
      background: #fff;
      color: #00A94F;
  }

  .action-dropdown {
      display: flex;
      position: absolute;
      z-index: 3;
      top: 50%;
      right: 40px;
      transform: translateY(-50%);
      width: 35px;
      align-items: center;
      justify-content: flex-end;
      display: none;
  }

  .action-dropdown.action-dropdown-2 {
      right: 4px;
      top: 30px;
      transform: translateY(0);
  }

  .action-dropdown.action-dropdown-2 .btn-filter {
      min-width: 40px;
      height: 40px;
      border-radius: 0;
      padding: 0;
      border: unset;
  }

  .action-dropdown.action-dropdown-2 .btn-filter.active {
      background-color: var(--gray4);
  }

  .action-dropdown.action-dropdown-2 .btn-filter i {
      margin-right: 0;
  }

  .action-dropdown .link {
      display: block;
      position: relative;
      width: 53px;
      height: 40px;
      font-size: 12px;
      line-height: 32px;
      text-align: right;
      background-color: #F8F8F8;
  }

  .action-dropdown .link:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      border-left: 1px solid #DBDBDB;
      height: 55%;
  }

  .action-dropdown .link:before {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      transition: .3s ease-in-out;
      transform: rotate(135deg);
      top: -5px;
      right: 11px;
      bottom: 0;
      margin: auto;
      border-top: 2px solid #333;
      border-right: 2px solid #333;
  }

  .action-dropdown .link.active:before {
      transform: rotate(-45deg);
      top: 5px;
  }

  .tab::-webkit-scrollbar {
      display: none;
  }

  .tab-control .tab-dropdown {
      position: absolute;
      z-index: 2;
      top: 0px;
      left: 0;
      right: 0;
      opacity: 0;
      visibility: hidden;
      transition: .3s ease-in-out;
      margin-left: 15px;
      display: block;
  }

  .tab-control .tab-dropdown.active {
      opacity: 1;
      visibility: visible;
      background-color: #F8F8F8;
  }

  .tab-control .tab-dropdown .txt {
      font-size: 16px;
      line-height: 39px;
      font-family: 600;
      color: #999;
      padding-left: 15px;
  }

  /* #search-property {
      overflow: hidden;
  } */
  /* end tab */

  .mfp-close-btn-in .mfp-close {
      right: -10px;
  }

  .show-md {
      display: block;
  }

  .hide-md {
      display: none;
  }

  /* ################## search property ################## */

  #npa-specialprice-mar-jun-2024 .result-text h2 {
      height: auto;
  }

  .sp-title {
      padding: 0 0 25px;
  }

  .sp-wrap-col {
      display: block;
      padding-left: 0;
      position: relative;
      position: sticky;
      top: 100px;
  }

  .sp-left {
      display: none;
  }

  .simplebar-content-wrapper {
      overflow: hidden !important;
  }

  #search-property .sp-title {
      /* padding-bottom: 20px; */
      padding-bottom: 0;
    
      font-size: 24px;
      line-height: 36px;
  }

  .sp-col-l {
      width: 100%;
      min-width: 100%;
      padding-left: 0;
      position: sticky;
      height: auto;
      overflow-y: hidden;
      padding-bottom: 0;
      padding-top: 0;
      top: 60px;
      z-index: 5;
      background-color: var(--gray4);
      /* padding-top: 20px; */
      /* position: relative; */
      overflow: visible;
  }

  .sp-col-l:has(.sp-l-inner.show) {
      /* height: 60vh; */
  }

  .sp-col-l&gt;div {
      display: flex;
      padding-left: 16px;
  }

  .sp-l-box-choice {
      display: inline-flex;
      /* flex-wrap: unset; */
      /* margin: 0 20px 0 0; */
  }

  .sp-l-chioce-squre {
      flex: unset;
      margin-right: 6px;
      margin-bottom: 10px;
      border-radius: 20px;
      background-color: var(--gray2);
      border: 2px solid var(--gray2);
      padding: 0 15px;
  }

  .sp-l-chioce-squre.active {
      cursor: pointer;
      display: inline-block;
      border: 2px solid var(--green);
      background: #FFF;
  }

  .sp-l-chioce-squre.active span {
      color: var(--green);
      font-weight: 600;
  }

  .sp-l-chioce-squre input {
      height: 0;
      width: 0;
  }

  .sp-l-chioce-squre .squre {
      display: none;
  }

  .sp-l-chioce-squre span {
      white-space: nowrap;
      margin: 0;
      line-height: 25px;
      font-weight: 600;
  }

  .sp-wrap-choice {
      border-bottom: 0 !important;
      padding-top: 20px !important;
  }

  .sp-l-title {
      margin-bottom: 15px;
  }

  .sp-l-box-choice {
      margin: 0;
      width: 100%;
      overflow: auto;
      /* justify-content: space-between; */
      align-items: center;
      /* margin-left: 10px; */
      /* padding-bottom: 10px; */
  }

  .sp-mobile-filter {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 16px;
  }

  .sp-all-filter {
      color: var(--gray);
      width: 60px;
      position: relative;
      text-align: center;
      border-right: 1px solid var(--gray6);
      padding-bottom: 10px;
      height: 29px;
  }

  .sp-all-filter.active {
      color: var(--green);
  }

  /* .sp-all-filter::before {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: url(../img/SVG.svg);
      left: 0;
      top: 7px;
  }

  .sp-all-filter::after {
      content: '';
      position: absolute;
      width: 9px;
      height: 9px;
      border-bottom: 2px solid var(--gray);
      border-right: 2px solid var(--gray);
      transform: rotate(45deg);
      right: 10px;
      top: 9px;
  }

  .sp-all-filter.active::after {
      border-bottom: 2px solid var(--green);
      border-right: 2px solid var(--green);
      transform: rotate(-135deg);
      top: 12px;
  } */

  #sp-r-all-thumb {
      margin-right: 0;
      margin-left: 0;
      padding: 0;
  }

  .sp-l-inner {
      background-color: #FFF;
      opacity: 0;
      height: 0;
      visibility: hidden;
      /* transition: all 400ms; */
  }

  .sp-l-inner.show {
      opacity: 1;
      height: auto;
      display: block;
      visibility: visible;
      transition: all 400ms;
      position: absolute;
      top: 0;
      overflow-y: auto;
      background: #F8F8F8;
      box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.15);
      padding-right: 15px;
  }

  .sp-l-inner&gt;div {
      padding: 30px 0 0;
      /* border-bottom: 1px solid var(--gray6); */
  }

  .reset-data {
      top: 0;
      position: relative;
      width: 100%;
      display: block;
  }

  .sp-l-box-ellipse {
      padding-bottom: 20px;
  }

  .sp-col-r {
      margin-left: 0;
      padding: 0 5px;
  }

  .sp-col-r .sp-r-result {
      display: none;
  }

  /* ################## search property ################## */

}


@media screen and (max-width: 767px) {


  .f-20-18 {
      font-size: 18px !important;
  }

  .k-box {
      margin-top: 20px;
      height: 734px;
  }

  #search-property {
      padding-top: 48px;
  }

  .load-more-btn {
      display: inline-block;
      max-width: 100%;
  }

  .result-btn {
      left: 0;
      padding: 28px 0 48px;
      margin: 0;
      max-width: 100%;
      text-align: center;
  }
  .sp-l-inner.show {
      height: 60vh;
  }

  #rate-interest {
      padding-bottom: 50px;
  }

  /* .k-box {
      height: 430px;
  } */

  .k-box span {
      display: block;
  }

  .k-box&gt;div {
      width: 280px;
      padding: 30px 15px 48px;
  }

  .k-circle {
      top: -40px;
  }

  .k-box-next {
      right: 0;
  }

  .k-box-prev {
      left: 0;
  }

  .text-remark.mt-20 {
      margin-top: 0;
  }

  .line-text::after {
      left: -8px;
      right: -8px;
  }

  .box-content.short {
      min-height: auto;
  }

  .box-content-r&gt;div {
      position: relative;
      top: unset;
      margin-top: 20px;
  }

  .btn-link-download {
      width: 100%;
  }

  .wrapper-box-popup {
      display: block;
      margin: 0;
  }

  .wrapper-box-popup .box {
      width: 100%;
      margin: 0;
      margin-bottom: 50px;
  }

  .box-content {
      display: block;
      text-align: center;
      padding: 20px 16px 0;
  }

  .box-content-l {
      width: 100%;
      text-align: left;
      margin-bottom: 16px;
  }

  .box-content-r img.show-xs {
      margin: 0 auto;
      margin-bottom: -20px;
      display: inline-block;
  }

  .box-content-r .img4 .show-xs {
      margin-bottom: 0;
  }

  .img4 {
      position: relative;
  }

  .title-strong-popup {
      font-size: 20px;
      line-height: 24px;
  }

  .title-strong-popup2 {
      font-size: 18px;
      line-height: 22px;
  }

  .line-text {
      margin: 24px 0 16px;
  }

  .line-text span {
      display: block;
  }

  .box-content-title {
      font-size: 16px;
  }

  .mfp-wrap.mfp-ready .mfp-content {
      padding: 60px 8px;
  }

  .mfp-content .title-strong {
      font-size: 20px;
  }

  .property-prev-1.slick-disabled,
  .property-next-1.slick-disabled {
      opacity: 0.5;
  }

  #icw .property-next-1,
  #icw .property-prev-1 {
      display: none !important;
  }

  /* #sc-document {
      margin-top: 30px;
  } */

  /* .k-circle img {
      width: 60px;
      height: auto;
  } */
  /* .simplebar-placeholder {
      height: auto !important;
      min-height: 108px;
  } */

  /* .tableSlide {
      min-width: 1200px;
  } */

  .not-found-card {
      padding: 0;
  }

  .hide-xs {
      display: none !important;
  }

  .show-xs {
      display: block !important;
  }

  #title-page {
      padding: 20px 10px 30px;
      background: url(../img/bg-campaign-mb.png) no-repeat;
      background-position: center;
  }

  #title-page h1,#title-page .h1 {
      font-size: 24px;
      line-height: 36px;
  }

  #title-page h2, #title-page .h2 {
      font-size: 20px;
      line-height: 30px;
  }

  .dk-box-title {
      padding: 40px 16px;
  }

  #double-koom .dk-box-title h2,
  #koom5tor .dk-box-title h2 {
      font-size: 22px;
      line-height: 34px;
  }

  .dk-box-title div {
      font-size: 16px;
  }

  .swiper {
      padding-bottom: 0;
  }

  .swiper-wrapper {
      margin-bottom: 0;
  }

  .assets-swiper-container {
      padding-bottom: 40px;
      min-height: 300px;
  }

  .scroll-pagi {
      background: transparent;
      color: #FFF;
  }

  .swiper-slide {
      width: 260px !important;
  }

  .swiper-pagination-current {
      font-size: 20px;
      font-weight: 600;
  }

  .assets-swiper-container .thumbnail {
      width: 260px;
  }

  /* ################## Koom 5 tor ################## */
  #koom5tor {
      padding: 0 15px 40px;
  }

  .k-text {
      padding-top: 35px;
      font-size: 14px;
      width: 100%;
  }

  .k-box h2 {
      margin-top: 0;
      font-size: 20px;
  }

  .k-bg:nth-child(2) {
      top: 300px;
      transform: matrix(1, 0, 0, 1, 0, 0) scale(1.5);
  }

  .k-bg:nth-child(3) {
      top: 450px;
      transform: matrix(1, 0, 0, 1, 0, 0) scale(1.5);
  }

  .k-text-p.left {
      margin-top: 5px !important;
      font-size: 12px;
  }

  .k-text ul {
      font-size: 12px;
      line-height: 18px;

  }

  .k-link {
      bottom: 12px;
      left: 16px;
      right: 16px;
      text-align: center;
  }

  .k-link a {
      margin: 0 16px;
      margin-left: 0;
      display: block;
      width: max-content;
      font-size: 13px;
      display: inline-block;
  }

  .k-link a:hover {
      border-bottom: unset;
  }

  .box-link-download {
      margin-top: 40px;
  }

  .sp-col-r {
      padding: 0 16px;
  }

  #breadcrumbs {
      display: none;
  }

  /* ################## go to search page ################## */

  #search-property&gt;div {
      background: url(../img/bg-search-mb.png) no-repeat;
      background-position: bottom center;
      background-size: contain;
  }

  #go-to-search-page {
      margin-top: -90px;
      margin-right: 15px;
      margin-left: 15px;
  }

  #go-to-search-page h2 {
      font-size: 22px;
      font-weight: 600;
      line-height: 75px;
  }

  #go-to-search-page&gt;div {
      padding: 20px 15px;
  }

  #go-to-search-page .gt-card {
      width: 145px;
      min-width: 145px;
      max-width: 145px;
      padding: 10px 10px 0;
      margin: 0 6px 20px;
  }

  /* ################## condition campaign ################## */
  #condition-campaign {
      margin-bottom: 20px;
  }

  /* ################## rate interest ################## */
  #icw #rate-interest .ri-container h2,.popup-2 .ri-container h2 {
      font-size: 24px;
      /* padding: 25px 0 10px; */
  }

  #icw #rate-interest .ri-container p.mb-16, .popup-2 .ri-container p.mb-16 {
      font-size: 20px;
  }

  .ri-container a.link {
      word-break: break-word;
  }

  .ri-sub-title&gt;div {
      margin: 0;
  }

  .ri-sub-title strong {
      font-size: 18px;
  }

  /* #rate-interest p {
      padding-top: 12px;
  } */

  .ri-sub-title {
      display: block;
      text-align: center;
  }

  .ri-circle {
      justify-content: center;
      padding-top: 10px;
  }

  .ri-sub-title {
      margin-bottom: 20px;
  }

  #btn-back {
      padding: 30px 20px;
  }
}

/* width */
.sp-col-l::-webkit-scrollbar {
  width: 8px;
}

/* Handle */
.sp-col-l::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}


header.header {
  position: fixed;
  width: 100%;
  z-index: 100;
}
main {
  padding-top: 0px;
}

@media screen and (max-width:1024px) {
  main {
      padding-top: 0px;
  }
}

.homepage-container {
  z-index: 1;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: calc(150vh);
}

.show-curtain-screen .homepage-container {
  position: fixed;
  left: 0;
  top: 0;
  margin-top: 0;
  margin-bottom: calc(150vh);
}

#curtain-screen {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  display: none;
  /* display: none !important; */
}

.cs-btn-to-main {
  background-color: var(--green-color-3);
  color: #FFF;
  font-weight: 600;
  display: inline-block;
  line-height: 50px;
  padding: 0 20px;
  width: 100%;
  max-width: 200px;
  text-align: center;
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: 0 0 5px rgb(0 0 0 / 30%);
}

.cs-content {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #748fa2;
}

.cs-box-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.cs-box-img &gt; div {
  margin: 0 auto;
  display: block;
}

.cs-box-img img {
  background: #00d3a8;
  width: 100%;
  padding-top: 8vh;
}

.cs-btn-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 5px rgb(0 0 0 / 70%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
}

.cs-btn-scroll:hover {
  color: #FFF;
}

.cs-btn-scroll i {
  width: 12px;
  height: 12px;
  display: block;
  margin: 5px auto 0;
  border-bottom: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-animation: jumpy 800ms linear infinite;
  animation: jumpy 800ms linear infinite;
}

#icw .header-center ul li a, #icw .header-center ul li span {
  font-weight: 600;
}

.npa-0per {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  background: #00A94FCC;
  padding: 8px;
  height: 40px;
}

.npa-0per .f-13 {
  font-family: 'kurious-looped';
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
}

.npa-0per .f-16 {
    font-size: 16px;
    line-height: 20px;
}

.npa-0per img {
  margin-right: 4px;
  color: #fff;
  max-width: 20px;
  position: relative;
  top: -2px;
  height: auto;
  }

  /*############################ sc-shortcut ###################################*/
  #icw .ri-container .sc-shortcut{background-color: var(--gray5); overflow: hidden;}
  .white-popup .ri-container .sc-shortcut{background-color:#fff; overflow: hidden;}

  .sc-shortcut .container{ margin-left: auto; margin-right: auto; padding-left: 0px;padding-right: 0px; width: 100%;}

  .sc-shortcut.sc-top .sc-inner{padding-top: 90px;}
  .sc-shortcut .sc-inner{padding: 40px 0 0;}
  .sc-shortcut .item-list{position: relative; padding: 0; margin: 0; list-style: none; background-color:#fff;}
  .sc-shortcut .item-list &gt; li{width: 100%; border-bottom: 1px solid var(--cr-border); padding:0 16px;}
  .sc-shortcut .item-list &gt; li+li{margin-top: 8px;}
  .sc-shortcut .wrapper{display: flex; width: 100%;flex-wrap: nowrap; position: relative; padding:8px 0;background:#fff;}
  #icw .sc-shortcut .wrapper{display: flex;width: 100%;flex-wrap: nowrap;position: relative;padding:8px 0;background:transparent;}
  .sc-shortcut .icon{-webkit-box-flex: 0;flex: 0 0 auto; width: auto; max-width: none; height:40px;}
  .sc-shortcut .icon img{height: 20px;display: block;margin: 8px auto 0;}
  .sc-shortcut .content{flex-basis: 0;-webkit-box-flex: 1;flex-grow: 1;max-width: 100%; padding-left: 16px;}
  #icw .ri-container .sc-shortcut .txt{font-size: 16px; color: var(--cr-green); margin: 0; line-height: 1.5em;text-align: start;}
  .ri-container .sc-shortcut .txt{font-size: 16px; color: var(--cr-green); margin: 0; line-height: 1.5em;text-align: start;}
  .sc-shortcut .txt strong{font-size:16px;line-height:20px;font-weight: 600; color: var(--cr-dark);}
  .sc-shortcut .txt .a-link{font-weight: 600;color: var(--cr-green);text-decoration: underline;font-size: 16px;}

  @media screen and (min-width: 768px) { 
    .sc-shortcut .container{ margin-left: auto; margin-right: auto; padding-left: 16px;padding-right: 16px; width: 100%;}
    .sc-shortcut .item-list{margin: -9px; display: flex; justify-content: center;}
    .sc-shortcut .item-list &gt; li {width: calc(100%/3); border: 0; padding: 9px;}
    .sc-shortcut .item-list &gt; li+li{margin-top: 0;}
    #icw .ri-container .sc-shortcut .wrapper{border: 1px solid #EDEDED; border-radius: 8px; padding: 16px;  flex-direction: column; align-items: flex-start;}
    .ri-container .sc-shortcut .wrapper{border: 1px solid #EDEDED; border-radius: 8px; padding: 16px;  flex-direction: column; align-items: flex-start;}
    .sc-shortcut .wrapper:before{display: none;}
    .sc-shortcut .content{padding-left: 0; padding-top: 8px;}
    .sc-shortcut .icon img {height: 25px;}
    #icw .ri-container .sc-shortcut .txt{font-size:16px;line-height: 1.4em; min-height:2.8em; color: var(--cr-dark); text-decoration: none;}
    .ri-container .sc-shortcut .txt{font-size:16px;line-height: 1.4em; min-height:2.8em; color: var(--cr-dark); text-decoration: none;}
      #icw .sc-shortcut .wrapper{display: flex;width: 100%;flex-wrap: nowrap;position: relative;padding:8px 0;background:#fff;}

  }


@media screen and (min-width: 992px) {
  .sc-shortcut .item-list{position: relative; padding: 0; margin: 0; list-style: none; background-color:transparent;}
  .sc-shortcut .item-list &gt; li {width: 215px;}
  .ri-container .sc-shortcut{}
  .white-popup .ri-container .sc-shortcut{background-color:#fff; overflow: hidden;}

  .ri-container .sc-shortcut .item-list &gt; li {width: calc(100%/4);}

}

@media screen and (min-width: 1200px) {
  .sc-shortcut .icon img {height: 27px;}
  .sc-shortcut .wrapper{transition: var(--transition); transform: scale(1.0);}
  .sc-shortcut .wrapper:hover{transform: scale(1.05);}
}

.k-box-next.slick-disabled,
.k-box-prev.slick-disabled {
  display: none !important;
}</pre></body></html>