@import "/fonts/nautilus.css";
@import "/fonts/museosanscyrl.css";
html,
body {
  width: 100%;
  height: 100%;
}
body {
  font-family: "Museo Sans Cyrl";
  color: #021E20;
  font-size: 18px;
}
.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
}
.con {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}
.con-sm {
  max-width: 800px;
  margin: 0 auto;
}
header .header-menu {
  display: flex;
  gap: 20px;
  background: #efefef;
  padding: 10px 15px;
  margin-bottom: 20px;
}
header .header-menu a {
  color: #595959;
  text-decoration: none;
  text-transform: lowercase;
  font-size: 13px;
}
header .header-con {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
}
header .logo {
  font-size: 56px;
  font-family: 'Nautilus Pompilius';
  color: #000;
  text-decoration: none;
}
header .logo small {
  font-size: 26px;
}
header .logo span {
  font-size: 12px;
  font-family: "Museo Sans Cyrl";
}
h1 {
  font-size: 26px;
  line-height: 32px;
  font-weight: bolder;
  border-bottom: 1px solid #999;
  padding-bottom: 10px;
  margin: 20px 0;
  text-align: center;
  text-transform: uppercase;
  color: #021E20;
}
h2 {
  font-size: 26px;
  margin: 40px 0 30px 0;
  color: #B96B85;
}
h3 {
  margin: 15px 0;
  font-size: 18px;
}
.seo-text {
  background: #f6f6f6;
  margin: 20px 0;
  padding: 15px;
  font-size: 14px;
  line-height: 18px;
}
.seo-text p {
  margin-bottom: 10px;
}
.popular-categories ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  text-align: center;
}
.popular-categories ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px;
  background: #021E20;
}
.popular-categories ul li a:hover {
  background: #000;
}
.pagination {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 20px 0;
  justify-content: center;
  display: flex;
  column-gap: 20px;
  margin: 40px 0;
}
#search-form {
  display: grid;
  grid-template-columns: 1fr 80px;
  column-gap: 10px;
}
#search-form input,
#search-form button {
  height: 40px;
}
#search-form input {
  border: 1px solid #021E20;
  padding: 0 20px;
}
#search-form button {
  background: #021E20;
  color: #fff;
  border: 1px solid #021E20;
}
.top-nav {
  background: #005067;
  display: flex;
  margin-top: 20px;
}
.top-nav a {
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}
.top-nav a:hover {
  background: #6b7280;
}
.pagination {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 20px 0;
  justify-content: center;
  display: flex;
  column-gap: 20px;
  margin: 40px 0;
}
.pagination .item.active a {
  background: #666;
  color: #fff;
}
.pagination .item a {
  border-radius: 4px;
  display: flex;
  text-decoration: none;
  height: 38px;
  min-width: 20px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  background: #021E20;
  color: #fff;
}
.pagination .item a:hover {
  background: #666;
}
.redirect-con {
  text-align: center;
}
.redirect-con h2 {
  padding: 20px 0;
}
.redirect-con a {
  background: #021E20;
  color: #fff;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 4px;
}
.breadcrumbs {
  background: #f5f5f5;
  padding: 5px 10px 8px 10px;
  margin: 15px 0 10px 0;
  text-transform: lowercase;
  list-style: none;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs a {
  color: #021E20;
  font-size: 0.8em;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs a:after {
  content: ">";
  padding-left: 5px;
}
.breadcrumbs span {
  color: #666;
  font-size: 0.8em;
}
.sort {
  font-size: 14px;
  padding: 20px 0;
}
.sort a {
  text-decoration: none;
  color: #999;
  margin-left: 10px;
}
.sort a.active {
  text-decoration: underline;
}
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}
.brands .letter {
  text-transform: uppercase;
  font-size: 24px;
  grid-column: 1 / -1;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px;
  padding-top: 10px;
}
.brands a {
  color: #021E20;
  text-decoration: none;
}
.brands a:hover {
  text-decoration: underline;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: #021E20;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 15px;
}
.products.swiper-wrapper {
  gap: normal;
}
.products .product {
  border: 1px solid #e8e8e8;
  padding: 10px;
  position: relative;
  cursor: pointer;
}
.products .product:hover {
  border: 1px solid #ccc;
}
.products .product .sale-label {
  background: #ffcf11;
  padding: 3px 5px;
  font-weight: 700;
  font-size: 0.8em;
  position: absolute;
  top: 10px;
  left: 10px;
}
.products .product .prices {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  font-weight: 700;
  font-size: 1em;
}
.products .product .prices span:first-child {
  color: #B96B85;
}
.products .product .prices span:last-child {
  justify-content: right;
  font-size: 0.8em;
  font-weight: normal;
  text-decoration: line-through;
}
.products .product .title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  position: relative;
  overflow: hidden;
  height: 38px;
  margin-bottom: 10px;
  line-height: 18px;
  font-size: 14px;
  color: #005067;
}
.products .product .vendor {
  font-size: 0.8em;
  margin-top: 10px;
}
.products .product .vendor span {
  color: #999;
}
.products .product .image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.products .product .image img {
  max-width: 100%;
  max-height: 100%;
}
.products .product .goto {
  margin-top: 20px;
  margin-bottom: 10px;
}
.products .product .goto span {
  background: #021E20;
  color: #fff;
  padding: 5px 20px;
  font-weight: 500;
  font-size: 1.1em;
  cursor: pointer;
}
.products .product .goto span:hover {
  text-decoration: none;
}
.top-brands a {
  background: #048399;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  padding: 4px 10px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
}
.popular-brands {
  padding: 10px 0;
}
.popular-brands h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.popular-brands ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.popular-brands ul a {
  text-decoration: none;
  color: #005067;
  font-size: 14px;
}
.popular-brands ul a:hover {
  text-decoration: underline;
}
.page {
  line-height: 30px;
}
.page p {
  margin-bottom: 10px;
}
.page h4,
.page h5 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 40px;
}
footer {
  margin-top: 80px;
  padding: 40px 0 0 0;
  background: #021E20;
  color: #fff;
  font-size: 14px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer .copyright {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
}
footer ul li {
  margin-bottom: 10px;
}
.content-widget {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
  border-top: 1px solid #efefef;
}
.content-widget h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.top-tags {
  margin: 40px 0;
}
.top-tags h5 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
  color: #005067;
}
.top-tags ul li {
  display: inline-block;
  padding-right: 10px;
}
.top-tags a {
  text-decoration: none;
  line-height: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #048399;
}
.top-tags a:hover {
  text-decoration: underline;
}
.post-view {
  display: grid;
  gap: 20px;
}
.post-view img {
  max-width: 100%;
  margin: 20px 0;
}
.post-view .post-info {
  border-top: 1px solid #999;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  gap: 25px;
}
.post-view .post-content {
  font-size: 20px;
  line-height: 30px;
}
.post-view .post-content p {
  margin-bottom: 10px;
}
.post-view .post-content h2 {
  font-weight: bold;
  font-size: 30px;
  margin: 40px 0 20px 0;
}
.post-view .post-content h3 {
  font-weight: bold;
  font-size: 26px;
  color: #c69d6d;
  border-left: 5px solid;
  padding-left: 10px;
}
.post-view .post-content ul {
  list-style: disc;
  padding-left: 40px;
  margin: 10px 0;
}
.post-view .post-content ul li {
  margin-bottom: 20px;
}
.post-view .post-content ul li:last-child {
  margin-bottom: 0;
}
.post-view .post-content ol {
  list-style: decimal;
  padding: 20px 20px 20px 40px;
  background: #efefef;
  margin: 10px 0;
}
.post-view .post-content ol li {
  margin-bottom: 20px;
}
.post-view .post-content ol li:last-child {
  margin-bottom: 0;
}
.top-tags-header a {
  background: #048399;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 14px;
}
.top-tags-header a:hover {
  background: #005067;
}
.feedback .column {
  margin-bottom: 20px;
}
.feedback label {
  display: block;
  margin-bottom: 5px;
}
.feedback input,
.feedback textarea {
  border: 1px solid #021E20;
  width: 100%;
  padding: 10px;
  min-height: 36px;
}
.feedback textarea {
  height: 200px;
}
.feedback button {
  background: #021E20;
  color: #fff;
  border: none;
  padding: 10px 30px;
  margin-top: 20px;
  cursor: pointer;
}
.feedback .errors {
  margin-top: 10px;
  color: red;
  font-size: 14px;
}
.posts-container {
  display: grid;
  grid-template-columns: 4fr 320px;
  gap: 30px;
}
.posts-container.new {
  padding-top: 20px;
  grid-template-columns: 1fr;
}
.posts-container.new h3 {
  font-size: 26px;
  margin-bottom: 0;
  color: #B96B85;
}
.posts-container.new .post-list-block {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.posts-container.new .post-list-block .post {
  background: #f4f4f4;
  padding: 15px;
}
.posts-container.new .post-list-block .post div.title {
  height: 45px;
  padding: 0;
  font-size: 22px;
  line-height: 22px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}
.popular-posts h5 {
  font-size: 24px;
  margin-bottom: 15px;
}
.popular-posts .popular-post {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  line-height: 20px;
}
.popular-posts .popular-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.popular-posts .popular-post .date {
  margin-top: 10px;
  font-size: 14px;
  color: #999;
}
.post-list-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.post-list-block .post img.promo {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.post-list-block .post div.title {
  padding: 10px 0;
  font-size: 22px;
  line-height: 28px;
  color: #005067;
}
.post-list-block .post div.preview {
  color: #999;
  font-size: 16px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.post-list-block .post div.info {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  font-size: 16px;
}
.post-list-block .post a {
  color: #021E20;
  text-decoration: none;
}
.post-list-block .post-1 {
  grid-column: 1 / -1;
}
.post-list-block .post-1 img.promo {
  height: 400px;
}
.similar-products-list {
  padding-top: 30px;
}
.similar-products-list h5 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #005067;
}
.product-container {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 20px;
}
.product-container .other-info {
  font-size: 16px;
  line-height: 24px;
  color: #999;
}
.product-container .other-info ul li.title {
  font-weight: bold;
  color: #005067;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.product-container .product-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-container .product-price {
  color: #B96B85;
  font-size: 28px;
}
.product-container .top-tags-header {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
}
.product-container .top-tags-header h5 {
  font-size: 20px;
  margin-bottom: 20px;
}
.product-container .buy-button {
  background: #021E20;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
  padding: 10px 20px;
}
.product-container .list-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 15px;
  padding-top: 15px;
}
.product-container .list-images img {
  border: 1px solid transparent;
  width: 100%;
  cursor: pointer;
}
.product-container .list-images img.active {
  border-color: #999;
}
.product-container #main-image {
  width: 100%;
}
.product-container .similar-products h5 {
  font-size: 22px;
  margin-bottom: 20px;
}
.product-container .similar-products ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-container .similar-products ul li {
  margin-bottom: 20px;
  gap: 10px;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) 5fr;
}
.product-container .similar-products ul li a {
  color: #021E20;
  text-decoration: none;
}
.product-container .similar-products img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1200px) {
  .post-list-block .post img.promo {
    height: 200px;
  }
}
@media only screen and (max-width: 900px) {
  .post-list-block {
    grid-template-columns: 1fr;
  }
  .post-list-block .post img.promo {
    height: 200px;
  }
  .popular-brands ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .products {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .product-container {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 800px) {
  .product-container .product-info {
    grid-template-columns: 1fr;
  }
  .posts-container {
    grid-template-columns: 1fr;
  }
  .posts-container.new .post-list-block {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600px) {
  header .header-con {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  header .logo span {
    display: none;
  }
  #search-form {
    width: 100%;
  }
  .popular-brands ul {
    grid-template-columns: 1fr 1fr;
  }
  .pagination {
    column-gap: 10px;
  }
  .pagination .item a {
    padding: 0 10px;
    font-size: 16px;
  }
}
/*# sourceMappingURL=app.css.map */