.ui\:slider {
  width: 100%;
  padding: 1rem 0;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overflow-y: hidden;
  overflow-x: auto;
  cursor: -webkit-grabbing;
  cursor: grabbing;
  position: relative;
}
.ui\:slider::-webkit-scrollbar {
  display: none;
}
.ui\:slider-box {
  position: relative;
  scroll-snap-align: center;
  min-width: 100%;
}
@media screen and (min-width: 38.75rem) {
  .ui\:slider-box {
    min-width: 60%;
  }
}
@media screen and (min-width: 48rem) {
  .ui\:slider-box {
    min-width: 48%;
  }
}
@media screen and (min-width: 64rem) {
  .ui\:slider-box {
    min-width: 32%;
  }
}
@media screen and (min-width: 81.25rem) {
  .ui\:slider-box {
    min-width: 24%;
  }
}
.ui\:slider-item {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.ui\:dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ui\:dots-item {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 2rem;
  pointer-events: none;
}

.ui\:catalog-item {
  width: 100%;
}
@media screen and (min-width: 38.75rem) {
  .ui\:catalog-item {
    width: 50%;
  }
}
@media screen and (min-width: 64rem) {
  .ui\:catalog-item {
    width: 25%;
  }
}
.ui\:catalog-item w-button {
  opacity: 0.65;
}
.ui\:catalog-item w-button:hover {
  opacity: 1;
}
.ui\:catalog-multicolor {
  width: 16px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3rem;
}
.ui\:catalog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: block;
  position: relative;
}
.ui\:catalog-image .discountIcon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  cursor: initial;
}
@media screen and (min-width: 64rem) {
  .ui\:catalog-image {
    height: 300px;
  }
}
.ui\:catalog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
.ui\:catalog-image img.change {
  opacity: 0;
}
.ui\:catalog-info {
  position: relative;
  padding: 0.5rem 1rem;
}
.ui\:catalog-controls {
  z-index: 2;
  position: relative;
  margin-top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.48, 0.32, 0.83, 0.67);
  -o-transition: all 0.2s cubic-bezier(0.48, 0.32, 0.83, 0.67);
  transition: all 0.2s cubic-bezier(0.48, 0.32, 0.83, 0.67);
}
.ui\:catalog .button_icon {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ui\:catalog .button_icon.active, .ui\:catalog .button_icon:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: #000000;
}
.ui\:catalog-color {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  overflow: hidden;
  border-radius: 2rem;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.ui\:catalog-color img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.ui\:catalog-color:not(:last-child) {
  margin-right: 0.5rem;
}
.ui\:catalog-color:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.catalog_item_container {
  background-color: white;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.05);
}
.catalog_item_container:hover {
  -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.ui\:picture-contain, .ui\:picture {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  display: block;
}

.ui\:picture source, .ui\:picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ui\:picture-contain source, .ui\:picture-contain img {
  -o-object-fit: contain;
     object-fit: contain;
}

.grid {
  display: -ms-grid;
  display: grid;
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  padding: 1rem;
}

.grid-item {
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  -ms-grid-column-span: 20;
  grid-column: span 20;
  min-height: 300px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

picture img {
  height: 100%;
  width: 100%;
}

.grid-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.grid-item .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.grid-item:hover .background {
  -webkit-transform: scale(1.01);
      -ms-transform: scale(1.01);
          transform: scale(1.01);
}

.grid-item.ignore:before {
  display: none;
}

.grid-item.ignore {
  color: #000;
}

.grid-item .container {
  z-index: 2;
}

.demo {
  background-color: black;
}

.t\:center {
  text-align: center;
}

.grid-item.header {
  min-height: 200px;
}

.homeImageContainer {
  overflow: hidden;
  border-radius: 10px;
}

.homeImageContainer img {
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 980px) {
  .grid {
    grid-auto-rows: 600px;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(20, 1fr);
    padding: 0;
    grid-gap: 2rem;
  }

  .grid.ignore {
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
  }

  .grid-item {
    -ms-grid-column-span: 10;
    grid-column: span 10;
  }

  .tielCities {
    margin: 2rem 0;
  }
}
.slidecitiesMobile {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  overflow-x: auto;
  width: 100%;
}
.slidecitiesMobile .ui\:catalog-item {
  min-width: 100%;
}
@media screen and (min-width: 38.75rem) {
  .slidecitiesMobile .ui\:catalog-item {
    min-width: 48%;
  }
}
@media screen and (min-width: 48rem) {
  .slidecitiesMobile .ui\:catalog-item {
    min-width: 30%;
  }
}
@media screen and (min-width: 64rem) {
  .slidecitiesMobile .ui\:catalog-item {
    min-width: 25%;
  }
}

@media screen and (min-width: 12.5rem) {
  .sold{
    margin-left: 13rem;
    margin-top: -27rem;
    text-align: center;
    color: white;
    width: 243px;
    height: 28px;
    font-weight: bold;
    font-size: 22px;
    z-index: 4;
    transform: rotate(35deg);
    background-color: #f10e0e;
  }
}

@media screen and (min-width: 460px) and (max-width: 599px) {
  .sold{
    margin-left: 17rem;
    margin-top: -25rem;
    text-align: center;
    color: white;
    width: 400px;
    height: 28px;
    font-weight: bold;
    font-size: 22px;
    z-index: 4;
    transform: rotate(35deg);
    background-color: #f10e0e;
  }
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .sold{
    margin-left: 13rem;
    margin-top: -27rem;
    text-align: center;
    color: white;
    width: 400px;
    height: 28px;
    font-weight: bold;
    font-size: 22px;
    z-index: 4;
    transform: rotate(35deg);
    background-color: #f10e0e;
  }
}

@media screen and (min-width: 768px) {
  .sold{
    margin-left: 5rem;
    margin-top: -26rem;
    text-align: center;
    color: white;
    width: 243px;
    height: 28px;
    font-weight: bold;
    font-size: 22px;
    z-index: 4;
    transform: rotate(35deg);
    background-color: #f10e0e;
  }
}

@media screen and (min-width: 850px) and (max-width: 1023px) {
  .sold{
    margin-left: 7rem;
    margin-top: -27rem;
    text-align: center;
    color: white;
    width: 400px;
    height: 28px;
    font-weight: bold;
    font-size: 22px;
    z-index: 4;
    transform: rotate(35deg);
    background-color: #f10e0e;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1333px) {
  .sold{
    margin-left: 8rem;
    margin-top: -33rem;
    text-align: center;
    color: white;
    width: 350px;
    height: 28px;
    font-weight: bold;
    font-size: 22px;
    z-index: 4;
    transform: rotate(35deg);
    background-color: #f10e0e;
  }
}

@media screen and (min-width: 1333px) {
  .sold{
    margin-left: 13rem;
    margin-top: -34rem;
    text-align: center;
    color: white;
    width: 243px;
    height: 28px;
    font-weight: bold;
    font-size: 22px;
    z-index: 4;
    transform: rotate(35deg);
    background-color: #f10e0e;
  }
}