.kc-list-view-content-wrapper {
  background-color: white;
  display: flex;
  justify-content: center;
}

.kc-list-view-container {
  width: 1124px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
.kc-list-view-container {
    width: 720px;
    padding: 0 15px 40px 15px;
  }
}

@media screen and (max-width: 767px) {
.kc-list-view-container {
    width: 100%;
  }
}

.kc-list-view-container > .breadcrumbs-wrapper {
  max-width: 800px;
}

.kc-view-wrapper {
  display: grid;
  grid-column-gap: 34px;
  grid-template-columns: 800px 1fr;
}

@media screen and (max-width: 1200px) {
  .kc-view-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.kc-widgets-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-x: hidden;
}
@media screen and (max-width: 1200px) {
  .kc-widgets-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .kc-widgets-wrapper .kc-price-widget{
    flex: 1;
  }
  .kc-widgets-wrapper .kc-banners-wrapper{
    order: 3;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .kc-widgets-wrapper {
    flex-direction: column;
  }
  .kc-widgets-wrapper .kc-banners-wrapper{
    order: initial;
  }
}

.kc-banners-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-x: hidden;
}

.kc-banners-wrapper-with-content{
  padding: 24px 20px;
  background-color: #f5f5f5;
}

@media screen and (max-width: 1200px) {
  .kc-banners-wrapper {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.kc-list-view-content {
  padding: 0 24px 40px 24px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  height: min-content;
}

.kc-list-view-content.sticky {
  position: sticky;
  top: 40px;
}

@media screen and (max-width: 1200px) {
  .kc-list-view-content {
    position: static !important;
    top: unset;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
    width: inherit;
  }
}

.kc-list-view-content > .title-wrapper {
  padding: 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
.kc-list-view-content > .title-wrapper {
    display: block;
  }
}

.kc-view-wrapper .kc-right-widgets {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
