

/* Start:/html/components-template/pagination/style.css?17482872781209*/
.pagination {
  --darkgrey_bg: var(--light, #f4f4f4) var(--dark, #2b2b2b);
  display: flex;
  justify-content: center; }
  .pagination__btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    border-radius: 8px; }
    .pagination__btn .icon {
      fill: rgba(0, 0, 0, 0);
      stroke: var(--fill_dark_light); }
    .pagination__btn.is-hidden {
      opacity: 0;
      visibility: hidden; }
    .pagination__btn:hover {
      background-color: var(--darkgrey_bg); }
  .pagination__btn--prev {
    transform: scale(-1, -1); }
  .pagination__list {
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .pagination__item {
    margin: 0 2px;
    display: inline-block;
    width: 46px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    color: #333;
    color: var(--white_text_black);
    border-radius: 8px; }
  .pagination__item:not(.pagination__item--current):hover {
    background-color: var(--darkgrey_bg); }
  .pagination__item--current {
    background-color: var(--theme-base-color);
    color: #fff; }

/* End */


/* Start:/html/components-template/mixin__countdown/style.css?1748287278477*/
.countdown {
  padding-left: 4px;
  display: flex; }
  .countdown__item {
    text-transform: lowercase;
    color: #222;
    color: var(--white_text_black);
    padding: 4px 3px 0 3px;
    font-size: 12px;
    width: auto;
    display: inline-block;
    position: relative;
    line-height: 1;
    height: 25px;
    font-weight: 700; }
    .countdown__item:not(:last-child)::after {
      letter-spacing: -3px;
      content: ':';
      position: relative;
      left: 1px; }

/* End */


/* Start:/html/components-template/sales/style.css?17482872781999*/
.sales__text {
  margin-bottom: 41px;
  color: #666;
  color: var(--lite_basic_text_black); }

.sales__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px; }

.tabs-nav-v2 {
  margin-bottom: 49px;
  overflow: hidden;
  overflow-x: auto; }
  .tabs-nav-v2::-webkit-scrollbar {
    width: 6px;
    height: 6px; }
  .tabs-nav-v2::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #ccc;
    background: var(--gray_bg_black);
    border: 1px solid #fff;
    border-color: var(--black_bg_black); }
  .tabs-nav-v2::-webkit-scrollbar-track {
    border-radius: 5px; }
  .tabs-nav-v2__list {
    display: flex;
    white-space: nowrap;
    min-width: auto;
    overflow: visible;
    z-index: 1;
    transform: translateX(0px);
    border-bottom: 1px solid #ededed;
    border-bottom-color: var(--stroke_black); }
  .tabs-nav-v2__item {
    margin: 0 23px 0 3px;
    cursor: pointer;
    display: block;
    padding: 18px 0 19px 0;
    color: #555;
    color: var(--basic_text_black); }
    .tabs-nav-v2__item:hover:not(.active) {
      color: #333;
      color: var(--theme-base-color); }
    .tabs-nav-v2__item.active {
      position: relative; }
      .tabs-nav-v2__item.active::after {
        content: "";
        position: absolute;
        left: -1px;
        right: -1px;
        bottom: 0;
        z-index: 1;
        height: 2px;
        -moz-border-radius-topleft: 3px;
        -webkit-border-top-left-radius: 3px;
        border-top-left-radius: 3px;
        -moz-border-radius-topright: 3px;
        -webkit-border-top-right-radius: 3px;
        border-top-right-radius: 3px;
        background: #9e9e9e;
        background: var(--theme-base-color); }

@media (max-width: 1199.75px) {
  .sales__list {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 600.75px) {
  .sales__list {
    grid-template-columns: repeat(1, 1fr); }
    .sales__list .sales-item {
      width: 100%;
      margin-right: 0 !important; } }

/* End */


/* Start:/html/components-template/sales-section/style.css?17482872781673*/
.sales-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f8f8f8;
  background: var(--darkerblack_bg_black); }
  .sales-section__header {
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; }
  .sales-section__inner {
    display: grid;
    gap: 24px 40px;
    grid-template-columns: repeat(3, 1fr); }

.sales-item__img-wrap {
  position: relative;
  padding-top: 67%;
  border-radius: 12px;
  overflow: hidden; }

.sales-item__img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover; }

.sales-item__badges {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 16px;
  bottom: 20px; }

.sales-item__content {
  padding: 15px 16px 0; }

.sales-item__title {
  color: #222;
  color: var(--white_text_black);
  font-size: 1.125rem;
  line-height: calc(1em + 7px);
  font-weight: 500; }

.sales-item__text {
  margin-top: 8px;
  font-size: .875rem;
  line-height: calc(1em + 7px); }

.sales-item:hover .sales-item__title {
  color: #000;
  color: var(--fill_dark_lite_hover); }

@media (max-width: 991.75px) {
  .sales-section__inner {
    grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 767.75px) {
  .sales-section {
    padding-top: 40px;
    padding-bottom: 40px; } }

@media (max-width: 600.75px) {
  .sales-section__inner {
    display: flex;
    grid-gap: 0;
    overflow: auto;
    padding: 15px 24px !important;
    margin: -15px -24px !important; }
  .sales-item {
    width: 260px;
    min-width: 260px; }
    .sales-item:not(:last-child) {
      margin-right: 24px; } }

/* End */
/* /html/components-template/pagination/style.css?17482872781209 */
/* /html/components-template/mixin__countdown/style.css?1748287278477 */
/* /html/components-template/sales/style.css?17482872781999 */
/* /html/components-template/sales-section/style.css?17482872781673 */
