@import '../../reset.css';
.html_v2,
.body_v2 {
  min-height: 100%;
  overflow: inherit;
}

.body_v2 {
  display: flex;
  flex-direction: column;
}

.content_v2 {
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .content_v2 {
    padding-bottom: 3rem;
  }
}

.header {
  box-sizing: border-box;
}
.header *,
.header *::before,
.header *::after {
  box-sizing: inherit;
}

.header {
  height: 76px;
  min-width: 300px;
  background-color: white;
  width: 100%;
  position: fixed;
  top: 0;
  transition: all ease-in-out 0.3s;
  z-index: 11;
}
@media (min-width: 1200px) {
  .header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 122px;
  }
  .body_v2--scrolled .header {
    height: 76px;
  }
}
.body_v2--scrolled .header {
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.1);
}

.header__safe-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 1200px) {
  .header__safe-area {
    background-color: white;
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.body_v2 {
  box-sizing: border-box;
  padding-top: 76px;
}
@media (min-width: 1200px) {
  .body_v2 {
    padding-top: 122px;
    transition: all ease-in-out 0.3s;
  }
  .body_v2--scrolled {
    padding-top: 76px;
  }
}

.v2--noscroll {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .v2--noscroll {
    overflow: inherit;
  }
}

.navigation {
  position: fixed;
  overflow: auto;
  top: 76px;
  height: calc(100vh - 76px);
  max-width: 500px;
  width: 100%;
  left: -500px;
  transition: all ease-in 0.3s;
}
.navigation--opened {
  left: 0px;
}
@media (min-width: 1200px) {
  .navigation {
    display: flex;
    align-items: center;
    overflow: visible;
    position: static;
    height: auto;
    max-width: inherit;
    transform: none;
    width: auto;
  }
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .logo {
    margin-right: 30px;
  }
}
@media (min-width: 1330px) {
  .logo {
    margin-right: 60px;
  }
}

.menu {
  background-color: #F8F8F8;
  left: 0;
  height: 100%;
  overflow: auto;
  width: 100%;
}
@media (min-width: 1200px) {
  .menu {
    background-color: white;
    display: flex;
    height: auto;
    position: static;
    width: auto;
    transform: none;
  }
}
.menu-trigger {
  cursor: pointer;
  padding: 15px;
}
.menu-trigger__inner {
  display: block;
  width: 28px;
  height: 20px;
  position: relative;
}
.menu-trigger__line {
  background-color: #b4b4b4;
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all ease-in 0.3s;
}
.menu-trigger__line--top {
  top: 0;
}
.menu-trigger--opened .menu-trigger__line--top {
  transform: rotate(585deg);
  transform-origin: 50% 50%;
  top: 50%;
  margin-top: -1px;
}
.menu-trigger__line--middle {
  top: 50%;
  margin-top: -1px;
}
.menu-trigger--opened .menu-trigger__line--middle {
  opacity: 0;
  visibility: hidden;
}
.menu-trigger__line--bottom {
  bottom: 0;
}
.menu-trigger--opened .menu-trigger__line--bottom {
  transform: rotate(-585deg);
  transform-origin: 50% 50%;
  top: 50%;
  margin-top: -1px;
}
@media (min-width: 1200px) {
  .menu-trigger {
    display: none;
  }
}
.menu__item {
  border-bottom: solid 1px #E2E2E2;
}
@media (min-width: 1200px) {
  .menu__item {
    border-bottom-width: 0;
  }
}
@media (min-width: 1200px) {
  .menu__item--has-submenu {
    transition: all ease-in 0.15s;
  }
  .menu__item--has-submenu:hover {
    background-color: #DFDBD2;
  }
}
@media (min-width: 1200px) {
  .menu__item--language {
    display: none;
  }
}
.menu__item--social {
  padding: 25px 20px;
  border-bottom-color: transparent;
}
@media (min-width: 1200px) {
  .menu__item--social {
    display: none;
  }
}
.menu__link {
  color: #4c4d5b;
  display: block;
  text-decoration: none;
  font: 400 16px "Montserrat", sans-serif;
  padding: 10px 20px;
  letter-spacing: 0.5px;
}
@media (min-width: 1200px) {
  .menu__link {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 10px;
  }
  .menu__link:hover {
    color: #000000;
  }
}
@media (min-width: 1330px) {
  .menu__link {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.menu-social-icon {
  display: inline-block;
  margin-right: 20px;
  text-decoration: none;
  color: #a0a0a0;
}

.sub-menu {
  background-color: #DFDBD2;
  padding: 15px;
  display: none;
}
@media (min-width: 1200px) {
  .sub-menu {
    position: absolute;
    display: flex !important;
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all ease-in 0.2s;
    transition-delay: 0.1s;
  }
}
@media (min-width: 1200px) {
  .menu__item:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.sub-menu__item {
  padding-right: 10px;
}
.sub-menu__link {
  color: #000000;
  font: 400 16px "Montserrat", sans-serif;
  display: block;
  padding: 5px 10px;
  text-decoration: none;
}
@media (min-width: 1200px) {
  .sub-menu__link:hover {
    color: #535252;
  }
}
@media (min-width: 1200px) {
  .sub-menu__link {
    font-size: 14px;
  }
}
.sub-menu__list--collections {
  display: grid;
  grid-template-columns: repeat(2, auto);
}
.sub-menu__list--collections .sub-menu__link {
  font-size: 12px;
}
@media (min-width: 1200px) {
  .sub-menu__list--collections {
    grid-template-columns: repeat(3, auto);
  }
}
.sub-menu__image {
  display: none;
  visibility: invisible;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
@media (min-width: 1200px) {
  .sub-menu__image {
    display: block;
  }
}
.sub-menu__image--hover {
  opacity: 1;
  visibility: visible;
}

.navigation-search {
  cursor: pointer;
  padding: 15px;
}
@media (min-width: 1330px) {
  .navigation-search {
    margin-left: 40px;
    margin-right: 40px;
  }
}
.navigation-search__inner {
  display: block;
  width: 23px;
  height: 23px;
}
.navigation-search__icon {
  display: block;
}
.body_v2--search-opened .navigation-search__icon {
  display: none;
}
.navigation-search__close {
  display: none;
}
.navigation-search__close::before, .navigation-search__close::after {
  content: "";
  height: 2px;
  width: 23px;
  background-color: #868585;
  position: absolute;
  transform-origin: 50% 50%;
  top: 41%;
}
@media (min-width: 1200px) {
  .navigation-search__close::before, .navigation-search__close::after {
    top: 50%;
  }
}
.navigation-search__close::before {
  transform: rotate(-45deg);
}
.navigation-search__close::after {
  transform: rotate(45deg);
}
.body_v2--search-opened .navigation-search__close {
  display: block;
}

.languages-menu {
  display: none;
  position: relative;
  border: solid 1px transparent;
}
@media (min-width: 1200px) {
  .languages-menu {
    display: block;
    margin-right: 15px;
  }
}
.languages-menu--opened {
  border-color: #DFDBD2;
}
.languages-menu__current::after {
  content: url(../images/language-dropdown-arrow.png);
  position: absolute;
  right: -15px;
  top: -4px;
  transition: all ease-in 0.1s;
}
.languages-menu--opened .languages-menu__current::after {
  top: -2px;
  transform: rotate(180deg);
}
.languages-menu__link {
  color: #868585;
  font: 500 14px "Montserrat", sans-serif;
  padding: 4px;
  text-decoration: none;
}
.languages-menu__others {
  display: none;
  position: absolute;
}
.languages-menu--opened .languages-menu__others {
  display: block;
}

.search-dropdown_v2 {
  background-color: #868585;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  overflow: hidden;
  width: 100%;
  position: fixed;
  top: 76px;
  transition: all ease-in-out 0.3s;
  z-index: 10;
}
.body_v2--search-opened .search-dropdown_v2 {
  height: 80px;
}
@media (min-width: 1200px) {
  .search-dropdown_v2 {
    top: 122px;
  }
}
.body_v2--scrolled .search-dropdown_v2 {
  top: 76px;
}
.search-dropdown_v2__form {
  display: flex;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
.search-dropdown_v2__input {
  color: #e6e2d9;
  background: none;
  border: none;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  width: calc(95% - 130px);
  outline: none;
}
.search-dropdown_v2__input::placeholder {
  color: #e6e2d9;
}
.search-dropdown_v2__input:focus::placeholder {
  color: white;
}
.search-dropdown_v2__button {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  width: 130px;
  height: 40px;
  background: none;
  border: 1px solid #797979;
  color: #454545;
  transition: all ease-in-out 0.3s;
}
.search-dropdown_v2__not-found .search-dropdown_v2__button {
  height: 30px;
}
@media (min-width: 768px) {
  .search-dropdown_v2__not-found .search-dropdown_v2__button {
    height: 40px;
  }
}
@media (min-width: 1200px) {
  .search-dropdown_v2__button:hover {
    background: #454545;
    color: white;
  }
}
.search-dropdown_v2__not-found {
  display: none;
  text-align: center;
}
.search-dropdown_v2__not-found-text {
  color: #e6e2d9;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 8px;
  display: block;
}
@media (min-width: 768px) {
  .search-dropdown_v2__not-found-text {
    display: inline;
  }
}

.footer {
  font-family: "Montserrat", sans-serif;
  color: #868585;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #fff;
  float: left;
}
.footer__toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 26px;
  padding: 10px calc(50% - 320px);
}
@media (min-width: 992px) {
  .footer__toggle {
    display: none;
  }
}
.footer__toggle-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 26px;
  height: 26px;
}
.footer__toggle-menu-line {
  background-color: #868585;
  display: block;
  height: 2px;
}
.footer__toggle--opened .footer__toggle-menu-line--top {
  transform: rotate(40deg);
  transform-origin: 0 0;
  position: relative;
  left: 1px;
}
.footer__toggle--opened .footer__toggle-menu-line--middle {
  visibility: hidden;
  opacity: 0;
}
.footer__toggle--opened .footer__toggle-menu-line--bottom {
  transform: rotate(-40deg);
  transform-origin: 0 0;
  position: relative;
  top: -1px;
}
.footer__content {
  display: none;
  padding-top: 15px;
}
@media (min-width: 992px) {
  .footer__content {
    display: block !important;
  }
}
.footer__safe-area {
  text-align: center;
}
@media (min-width: 1200px) {
  .footer__safe-area {
    background-color: white;
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__measure {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.footer__title {
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  line-height: 1.5;
}
.footer_p {
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.footer_p--serif {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}
.footer-margin {
  margin-top: 35px;
  margin-bottom: 35px;
}
.footer__link {
  display: inline-block;
  color: #80a3ad;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: solid 1px currentColor;
  margin: 0 25px 10px;
}
.footer__legal {
  border: 1px solid #E2E2E2;
  color: #787878;
  font-size: 12px;
  line-height: 1.6;
  padding: 15px 20px;
}
@media (min-width: 768px) {
  .footer__legal {
    padding: 25px 30px;
    margin: 50px -30px;
  }
}
.footer__legal-link {
  border-bottom: solid 1px #dddddd;
  font: 300 13px "Montserrat", sans-serif;
  color: #787878;
  display: inline-block;
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer__legal-link {
    margin-left: 45px;
  }
}
.footer__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: row;
  align-items: flex-end;
}
.footer__logo-wrapper {
  height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.footer__logo {
  color: #868585;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  margin: 20px;
}
@media (min-width: 992px) {
  .footer__logo--dokumaci {
    width: 128px;
    height: 85px;
  }
  .footer__logo--romo {
    width: 110px;
    height: 22px;
  }
  .footer__logo--black-edition {
    width: 134px;
    height: 61px;
  }
}
.footer__logo--black-edition {
  margin-bottom: -10px;
}
.footer__logo--zinc-textile {
  margin-bottom: 10px;
}
.footer__logo--jab-anstoetz {
  margin-bottom: 12px;
}
.footer__bottom {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 15px 20px;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}
@media (min-width: 1200px) {
  .footer__bottom {
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
  }
}
.footer__copyright-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__copyright-wrapper {
    display: inline-block;
    width: auto;
  }
}
.footer__copyright {
  font: 300 13px "Montserrat", sans-serif;
}

.kreatif {
  color: #868585;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  text-decoration: none;
  max-width: 150px;
  margin-left: auto;
  margin-top: 15px;
}
.kreatif span {
  float: left;
  margin-top: 14px;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .kreatif {
    margin-top: 0;
  }
}

.footer__bottom_line {
  width: 100%;
  height: 1px;
  width: 100%;
  background-color: #DFDBD2;
  float: left;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}