.dealer-list__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
}
@media screen and (min-width: 1000px) {
  .dealer-list__content {
    flex-direction: row;
    gap: var(--spacing-l);
  }
}

@media screen and (min-width: 1000px) {
  .dealer-list__search {
    max-height: 50vh;
    overflow-y: auto;
    flex: 1 1 auto;
  }
}

.dealer-list__list {
  padding: var(--spacing) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing);
}
@media screen and (min-width: 1000px) {
  .dealer-list__list {
    justify-content: space-between;
    gap: var(--spacing-m);
  }
}

.dealer-list__map-block {
  flex: 0 0 70%;
}

.dealer-list__map {
  width: 100%;
  height: 50vh;
}

.dealer-set__item-text {
  box-sizing: border-box;
  color: var(--cl-haze);
}

.dealer-set__item {
  padding: var(--spacing) 0;
  box-sizing: border-box;
  border-bottom: 1px solid var(--cl-background);
  cursor: pointer;
}
.dealer-set__item:last-child {
  border-bottom: none;
}

.link-simple {
  color: var(--cl-haze);
  transition: var(--transition-main);
  line-height: 110%;
}
.link-simple:hover {
  color: var(--cl-accent);
}
@media screen and (min-width: 1000px) {
  .link-simple {
    font-size: 20px;
  }
}

.link-text {
  text-decoration: none;
  color: var(--cl-blue-technical);
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
}
.link-text:hover {
  text-decoration: underline;
}

.title-block .title-block__item {
  margin-bottom: 8px;
}
@media screen and (min-width: 1000px) {
  .title-block .title-block__item {
    margin-bottom: 16px;
  }
}
.title-block .title-block__item:last-child {
  margin-bottom: 0;
}

.header-section {
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}
.header-section:before {
  content: "";
  width: 100%;
  height: 1px;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
}
.header-section--light::before {
  background: var(--cl-void);
}
.header-section--dark::before {
  background: #ffffff;
}
@media screen and (min-width: 1000px) {
  .header-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}

.marketplaces-list {
  display: flex;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .marketplaces-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.marketplaces-list .marketplaces-list__logo-block {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marketplaces-list .marketplaces-list__item {
  padding: 30px;
  flex: 0 0 fit-content;
}
@media screen and (min-width: 1000px) {
  .marketplaces-list .marketplaces-list__item {
    padding: 25px 35px;
    flex: 0 0 calc(33% - 140px);
  }
}
.marketplaces-list .marketplaces-list__links {
  margin: -4px;
}
.marketplaces-list .marketplaces-list__link {
  padding: 4px;
  display: block;
  text-align: center;
}

.marketplaces-list--small .marketplaces-list__item {
  width: 100%;
  padding: 0;
}
.marketplaces-list--small .marketplaces-list__logo-block {
  margin-bottom: 8px;
  justify-content: flex-start;
}
@media screen and (min-width: 1000px) {
  .marketplaces-list--small .marketplaces-list__logo-block {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .marketplaces-list--small .marketplaces-list__logo-img {
    width: 200px;
    height: auto;
  }
}
.marketplaces-list--small .marketplaces-list__link {
  font-size: 18px;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .marketplaces-list--small {
    justify-content: flex-start;
  }
}

.section-open {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.section-open::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 32px 32px 0 0;
  position: absolute;
  top: 0;
  z-index: -1;
}
.section-open--light {
  background: var(--cl-void);
  color: var(--cl-void);
}
.section-open--light::before {
  background: #ffffff;
}
.section-open--light .text-main {
  color: #999;
}
.section-open--dark {
  background: #ffffff;
  color: #ffffff;
}
.section-open--dark::before {
  background: var(--cl-void);
}
.section-open--dark .text-main {
  color: #ffffff;
}

.distributors-props {
  width: 100%;
  font-size: 14px;
}
@media screen and (min-width: 1000px) {
  .distributors-props {
    font-size: 18px;
  }
}

.columns-desktop {
  display: flex;
  flex-direction: column;
  gap: var(--spacing);
}
@media screen and (min-width: 1000px) {
  .columns-desktop {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--spacing-l);
  }
}
@media screen and (min-width: 1000px) {
  .columns-desktop .columns-desktop__item .text-accent {
    max-width: 70%;
  }
}
@media screen and (min-width: 1000px) {
  .columns-desktop .columns-desktop__item {
    flex: 0 0 calc((100% - var(--spacing-l)) / 2);
    box-sizing: border-box;
  }
}

.accordion__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing);
}

.accordion__content {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in;
}

.accordion__icon {
  width: 16px;
  height: 16px;
  transition: var(--transition-main);
}
.accordion__icon svg {
  width: 100%;
  height: auto;
}

.accordion.open .accordion__content {
  height: auto;
}
.accordion.open .accordion__icon {
  transform: rotate(180deg);
  transition: var(--transition-main);
}

.stores {
  padding-top: 40px;
}
@media screen and (min-width: 1000px) {
  .stores {
    padding-top: 80px;
  }
}

.stores__title-block {
  margin-bottom: 8px;
}
@media screen and (min-width: 1000px) {
  .stores__title-block {
    margin-bottom: 0;
  }
}

.stores__official {
  margin-bottom: 60px;
}
@media screen and (min-width: 1000px) {
  .stores__official {
    margin-bottom: 160px;
  }
}

.stores__marketplaces {
  margin-bottom: 60px;
}
@media screen and (min-width: 1000px) {
  .stores__marketplaces {
    margin-bottom: 160px;
  }
}

.stores__marketplaces-container {
  margin-bottom: 40px;
}
.stores__marketplaces-container:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .stores__marketplaces-container {
    margin-bottom: 85px;
  }
}

.stores__marketplaces-block {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
}
.stores__marketplaces-block::-webkit-scrollbar {
  height: 6px;
}
.stores__marketplaces-block::-webkit-scrollbar-thumb {
  background: var(--cl-light-haze);
  border-radius: 3px;
}
.stores__marketplaces-block::-webkit-scrollbar-thumb:hover {
  background: var(--cl-haze);
}
@media screen and (min-width: 1000px) {
  .stores__marketplaces-block {
    overflow-x: visible;
  }
}

.distributors__title {
  color: var(--cl-light);
}

.distributors .container {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .distributors .container {
    padding-top: 80px;
    padding-bottom: 86px;
  }
}

.distributors__header-block {
  margin-bottom: 24px;
}
@media screen and (min-width: 1000px) {
  .distributors__header-block {
    margin-bottom: 40px;
  }
}

.distributors__text-block {
  margin-bottom: 24px;
}
/*# sourceMappingURL=kaufen.css.map */
