@font-face {
  font-family: "Quicksand-Medium";
  src: url("../fonts/Quicksand-Medium.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand-Regular";
  src: url("../fonts/Quicksand-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, ol, ul, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-type: none;
}

img, picture, svg, video {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
}

html, body {
  height: 100%;
}

body {
  font-size: 16px;
  color: #8d8d8d;
  line-height: 26px;
  font-family: "Quicksand-Medium", sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  border: 1px dotted #ccc;
}

.accent-btn {
  border: none;
  font-size: 16px;
  line-height: 26px;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  background-color: #fe3e57;
  padding: 15px 35px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 7px 20px 0px rgba(255, 17, 48, 0.3);
          box-shadow: 0px 7px 20px 0px rgba(255, 17, 48, 0.3);
}

.default-btn {
  border: 1px solid #fe3e57;
  font-size: 16px;
  line-height: 26px;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  background-color: transparent;
  padding: 15px 35px;
  text-transform: uppercase;
  color: #29282d;
  cursor: pointer;
  display: inline-block;
}

.dark-btn {
  border: none;
  font-size: 16px;
  line-height: 26px;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #29282d;
  padding: 15px 35px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dark-btn:hover {
  background-color: #fe3e57;
}

.section-title {
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 700;
  color: #29282d;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 26px;
  margin-bottom: 28px;
  text-align: center;
}

.page-title {
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #29282d;
}

.filters-title {
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
  color: #29282d;
  margin-bottom: 30px;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.breadcrumbs__list::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/icons/home-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px;
  color: #fe3e57;
}
.breadcrumbs__item {
  position: relative;
  padding-left: 26px;
}
.breadcrumbs__item:last-child {
  color: #ccccce;
}
.breadcrumbs__item + .breadcrumbs__item {
  margin-left: 15px;
}
.breadcrumbs__item + .breadcrumbs__item::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/icons/angle-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
}
.breadcrumbs__link {
  color: #fe3e57;
}

.header--page-404 {
  background-color: #f6f6f6;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo-link {
  display: block;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__item + .menu__item {
  margin-left: 38px;
}
.menu__link {
  color: #29282d;
  text-transform: uppercase;
  padding: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
}
.menu__link:hover {
  color: #fe3e57;
  border-bottom: 1px solid #fe3e57;
}
.menu__link--active {
  color: #fe3e57;
  border-bottom: 1px solid #fe3e57;
}

.user-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.user-nav__item + .user-nav__item {
  margin-left: 25px;
}
.user-nav__link {
  height: 20px;
  width: 20px;
  background-image: url(../img/icons/user.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  display: block;
  position: relative;
}
.user-nav__item:nth-child(2) .user-nav__link {
  background-image: url(../img/icons/search.svg);
}
.user-nav__item:nth-child(3) .user-nav__link {
  background-image: url(../img/icons/heart.svg);
}
.user-nav__item:nth-child(3) .user-nav__link {
  background-image: url(../img/icons/cart.svg);
}
.user-nav__number {
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: #fe3e57;
  border-radius: 50%;
  top: -50%;
  right: -50%;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.top-slider {
  background-color: #f6f6f6;
  background-image: url(../img/slider/bg-slider.png);
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 632px;
}
.top-slider__container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 15px;
  padding-left: 145px;
  border: 1px dotted #ccc;
}
.top-slider__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-slider__content {
  max-width: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.top-slider__title {
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 68px;
  color: #29282d;
  margin-bottom: 40px;
}
.top-slider__text {
  margin-bottom: 60px;
}
.top-slider__btn {
  display: inline-block;
}
.top-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -70px;
}
.top-slider .slick-dots li {
  margin: 0 5px;
}
.top-slider .slick-dots button {
  width: 28px;
  height: 28px;
  color: transparent;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
}
.top-slider .slick-dots button::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #8d8d8d;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-slider .slick-dots li.slick-active button {
  border: 1px solid #fe3e57;
}
.top-slider .slick-dots li.slick-active button::before {
  background-color: #fe3e57;
}

.info {
  padding: 110px 0;
  background-image: url(../img/decor/info-left.png), url(../img/decor/info-right.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top 310px left, top 310px right;
  background-size: initial;
}

.advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 0px;
  margin-bottom: 110px;
  position: relative;
}
.advantages__list::before {
  content: "";
  position: absolute;
  top: -44px;
  left: -44px;
  width: 122px;
  height: 122px;
  background-image: url(../img/decor/advantages-left-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}
.advantages__list::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -56px;
  width: 122px;
  height: 122px;
  background-image: url(../img/decor/advantages-right-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}
.advantages__item {
  width: 370px;
  padding: 60px 40px;
  -webkit-box-shadow: 20px 0px 60px 0px rgba(202, 202, 202, 0.35);
          box-shadow: 20px 0px 60px 0px rgba(202, 202, 202, 0.35);
  background-color: #fff;
}
.advantages__img {
  width: 60px;
  height: 60px;
  background-color: #ffb534;
  background-image: url(../img/decor/car.png);
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 40px;
}
.advantages__item:nth-child(2) .advantages__img {
  background-color: #34c3ff;
  background-image: url(../img/decor/circle.png);
}
.advantages__item:nth-child(3) .advantages__img {
  background-color: #fe3e57;
  background-image: url(../img/decor/hand.png);
}
.advantages__title {
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  color: #29282d;
  margin-bottom: 20px;
}

.top-categories {
  padding: 0px 0px;
}
.top-categories__text {
  max-width: 570px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 55px;
}
.top-categories__list {
  display: grid;
  min-height: 635px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 30px;
}
.top-categories__item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 40px;
}
.top-categories__item:nth-child(1) {
  grid-row: span 2;
}
.top-categories__item:nth-child(1) .top-categories__item-accent {
  color: #5800e4;
}
.top-categories__item:nth-child(1) .top-categories__item-link:hover {
  color: #5800e4;
  text-decoration: underline;
}
.top-categories__item:nth-child(2) {
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-categories__item:nth-child(2) .top-categories__item-accent {
  color: #fe3e57;
}
.top-categories__item:nth-child(2) .top-categories__item-link:hover {
  color: #fe3e57;
  text-decoration: underline;
}
.top-categories__item:nth-child(3) .top-categories__item-accent {
  color: #ffb534;
}
.top-categories__item:nth-child(3) .top-categories__item-link:hover {
  color: #ffb534;
  text-decoration: underline;
}
.top-categories__item:nth-child(4) .top-categories__item-accent {
  color: #34c3ff;
}
.top-categories__item:nth-child(4) .top-categories__item-link:hover {
  color: #34c3ff;
  text-decoration: underline;
}
.top-categories__item-accent {
  margin-bottom: 8px;
}
.top-categories__item-title {
  font-family: "Roboto-Medium", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #29282d;
  margin-bottom: 10px;
}
.top-categories__item-link {
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #29282d;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.video {
  background-color: #f6f6f6;
  background-image: url(../img/decor/pattern-bg-video.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0;
}
.video__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.video__box {
  max-width: 535px;
  width: 100%;
  height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.video__descr {
  max-width: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.video__descr-accent {
  color: #fe3e57;
  font-family: "Quicksand-Medium", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 25px;
}
.video__descr-text {
  margin-bottom: 60px;
}

.trending-product {
  padding: 120px 0;
  text-align: center;
}
.trending-product__text {
  margin-bottom: 60px;
}
.trending-product .default-btn {
  margin-top: 60px;
}

.product-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px 30px;
}

.product-item {
  max-width: 370px;
}
.product-item__img-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.product-item__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 370px;
  height: 370px;
}
.product-item__link-box {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translate(-50%, 200%);
          transform: translate(-50%, 200%);
  background-color: #fff;
  padding: 15px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 5px 30px 0px rgba(152, 152, 152, 0.2);
          box-shadow: 0px 5px 30px 0px rgba(152, 152, 152, 0.2);
  border-radius: 22px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-item__link {
  width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-item__link path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.product-item__link:hover path {
  fill: #fe3e57;
}
.product-item__link + .product-item__link {
  border-left: 1px solid #ececec;
}
.product-item:hover {
  cursor: pointer;
}
.product-item:hover .product-item__link-box {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.product-item__stars-box {
  margin-bottom: 20px;
  text-align: center;
}
.product-item__title {
  margin-bottom: 20px;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  color: #29282d;
  text-align: center;
}
.product-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #ccccce;
}
.product-item__old-price {
  margin: 0 15px;
  text-decoration: line-through;
}
.product-item__actual-price {
  margin: 0 15px;
  color: #29282d;
  font-family: "Roboto-Medium", sans-serif;
  font-weight: 500;
  text-decoration: none;
}
.product-item--sale .product-item__img-box::before {
  content: "sale";
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 5px 10px;
  text-transform: uppercase;
  color: #fff;
  background-color: #fe3e57;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  -webkit-box-shadow: 0px 7px 20px 0px rgba(254, 62, 87, 0.25);
          box-shadow: 0px 7px 20px 0px rgba(254, 62, 87, 0.25);
}

.sale {
  background-image: url(../img/bg-sale.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 130px 0;
}
.sale__content {
  max-width: 570px;
  margin-left: auto;
  text-align: center;
}
.sale__accent {
  color: #fe3e57;
  text-transform: uppercase;
  font-family: "Quicksand-Medium", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 25px;
  display: inline-block;
}
.sale .default-btn {
  margin-top: 50px;
}
.sale .section-title {
  margin-bottom: 55px;
}

.sale-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sale-timer__item {
  background-color: #fff;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(187, 187, 187, 0.3);
          box-shadow: 0px 10px 40px 0px rgba(187, 187, 187, 0.3);
}
.sale-timer__item span {
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 26px;
  color: #29282d;
  margin-bottom: 8px;
  margin-top: 12px;
  display: block;
}

.brands {
  padding: 100px 0;
}
.brands__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog {
  padding: 10px 0 110px 0;
  background-image: url(../img/blog/decor-bg.svg);
  background-repeat: no-repeat;
  background-position: top 330px center;
}
.blog__text {
  text-align: center;
  margin-bottom: 60px;
}

.blog-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.blog-box::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -30px;
  width: 140px;
  height: 140px;
  background-image: url(../img/decor/blog-right-top.svg);
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}
.blog-box__item {
  max-width: 370px;
  border: 1px solid #ececec;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-box__item:hover {
  -webkit-box-shadow: 20px 0px 60px 0px rgba(202, 202, 202, 0.35);
          box-shadow: 20px 0px 60px 0px rgba(202, 202, 202, 0.35);
  border: none;
}
.blog-box__item:hover .blog-box__link {
  color: #fe3e57;
}
.blog-box__item:hover .blog-box__link::before {
  background-image: url(../img/decor/blog-arrow-accent.svg);
}
.blog-box__img-link {
  display: block;
}
.blog-box__img-link img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 370px;
  height: 280px;
}
.blog-box__item-content {
  padding: 40px 30px;
}
.blog-box__info {
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-box__author-link, .blog-box__date {
  color: #8d8d8d;
  position: relative;
  padding-left: 30px;
}
.blog-box__author-link::before, .blog-box__date::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/decor/blog-user.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}
.blog-box__date::before {
  background-image: url(../img/decor/blog-clock.svg);
}
.blog-box__title-link {
  display: block;
  margin-bottom: 22px;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #29282d;
}
.blog-box__link {
  display: inline-block;
  color: #8d8d8d;
  position: relative;
  padding-right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-box__link::before {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background-image: url(../img/decor/blog-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
}

.top__wrapper-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  max-width: 1700px;
  margin: 0 auto;
}
.top__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 354px;
}

.login {
  padding: 120px 0;
}
.login__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto-Regular", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #ccccce;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.login__titles a {
  color: #fe3e57;
}
.login__titles-item {
  margin: 0 30px;
}

.login-form {
  max-width: 570px;
  margin: 0 auto;
}
.login-form__label {
  margin-bottom: 40px;
  display: block;
}
.login-form__input {
  display: block;
  width: 100%;
  border: none;
  background-color: #f6f6f6;
  padding: 15px 10px;
}
.login-form .dark-btn {
  display: block;
  width: 100%;
}
.login-form__forgot {
  margin-top: 10px;
  color: #fe3e57;
  display: inline-block;
}
.login-form__text {
  margin-bottom: 35px;
}

.page-404 {
  padding: 120px 0;
}
.page-404__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-404__content {
  max-width: 570px;
  width: 100%;
}
.page-404__title {
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 26px;
  margin-bottom: 35px;
  color: #28384f;
}
.page-404__text {
  margin-bottom: 60px;
}
.page-404__img {
  width: 570px;
}

.catalog {
  padding: 110px 0;
}
.catalog__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.catalog__filters {
  width: 370px;
  border: 1px dotted blueviolet;
}
.catalog__filters-item {
  padding: 40px 30px;
  border: 1px solid #ececec;
  margin-bottom: 40px;
}
.catalog__content {
  max-width: 772px;
  border: 1px dotted blueviolet;
}

.search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search__input {
  padding: 15px 20px;
  background-color: #f6f6f6;
  border: none;
  width: 260px;
}
.search .accent-btn {
  padding: 15px 28px;
  background-image: url(../img/icons/search-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px 18px;
}

.price-filter__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.irs--flat .irs-line {
  top: 12px;
  height: 6px;
  background-color: #ececec;
  border-radius: 0px;
}

.irs--flat .irs-bar {
  top: 12px;
  height: 6px;
  background-color: #fe3e57;
}

.irs--flat .irs-handle {
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 13px 0px rgba(90, 90, 90, 0.2);
          box-shadow: 0px 0px 13px 0px rgba(90, 90, 90, 0.2);
  cursor: pointer;
}

.irs--flat .irs-handle > i:first-child {
  display: none;
}

.irs--flat .irs-from, .irs--flat .irs-to {
  display: none;
}

.irs--flat .irs-min, .irs--flat .irs-max {
  display: none;
}

.irs--flat {
  height: 30px;
}

.color-filter__item {
  padding-bottom: 18px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 18px;
}
.color-filter__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.color-filter__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.color-filter__input[type=checkbox]:checked + .color-filter__checkmark::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.color-filter__checkmark {
  position: relative;
  width: 18px;
  height: 18px;
}
.color-filter__checkmark--blue {
  background-color: #00aeef;
}
.color-filter__checkmark--red {
  background-color: #f52574;
}
.color-filter__checkmark--green {
  background-color: #24d4ac;
}
.color-filter__checkmark--orange {
  background-color: #ff7e00;
}
.color-filter__checkmark--black {
  background-color: #000000;
}
.color-filter__checkmark--purple {
  background-color: #923899;
}

.size-filter__item + .size-filter__item {
  margin-top: 20px;
}
.size-filter__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.size-filter__input[type=checkbox]:checked + .size-filter__checkmark {
  border: 1px solid #fe3e57;
}
.size-filter__input[type=checkbox]:checked + .size-filter__checkmark::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fe3e57;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.size-filter__input[type=checkbox]:checked + .size-filter__checkmark + .size-filter__size {
  color: #fe3e57;
}
.size-filter__checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #8d8d8d;
  display: block;
  border-radius: 50%;
  position: relative;
  margin-right: 15px;
}

.category-filter__item {
  margin-bottom: 15px;
}
.category-filter__input[type=checkbox]:checked + .category-filter__checkmark {
  background-color: #fe3e57;
  color: #fff;
}
.category-filter__checkmark {
  background-color: #f6f6f6;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #29282d;
  cursor: pointer;
}

.popular-tags__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.popular-tags__item {
  margin-bottom: 20px;
}
.popular-tags__input[type=checkbox]:checked + .popular-tags__tag {
  border: 1px solid #fe3e57;
  background-color: #fe3e57;
  color: #fff;
}
.popular-tags__tag {
  padding: 12px 20px;
  border: 1px solid #8d8d8d;
  background-color: #fff;
  display: block;
  cursor: pointer;
}

.catalog-sort {
  border: 1px solid #ebebeb;
  padding: 15px 30px;
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.catalog-sort__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.catalog-sort__btn {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
}
.catalog-sort__btn--active path {
  fill: #fe3e57;
}

.jq-selectbox__select {
  height: 32px;
  padding: 0 30px 0 10px;
  border: 1px solid transparent;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  font-size: 16px;
  color: #8d8d8d;
  line-height: 32px;
  font-family: "Quicksand-Medium", sans-serif;
  font-weight: 500;
}
.jq-selectbox__select:hover {
  background: transparent;
}

.jq-selectbox__trigger {
  border-left: none;
}

.jq-selectbox__trigger-arrow {
  width: 10px;
  height: 5px;
  border: none;
  background-image: url(../img/icons/angle-down.svg);
}

.jq-selectbox li.selected {
  background-color: #8d8d8d;
}

.jq-selectbox li:hover {
  background-color: #fe3e57;
}

.catalog-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog-box.catalog-box--list {
  display: block;
}

.product-item__text, .product-item .dark-btn {
  display: none;
}

.catalog-box--list .product-item {
  max-width: 770px;
  border: 1px solid #ececec;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog-box--list .product-item:hover .product-item__link-box {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.catalog-box--list .product-item__img-box {
  margin-bottom: 0;
  margin-right: 30px;
}
.catalog-box--list .product-item__img-box::before {
  top: 0;
  left: 0;
}
.catalog-box--list .product-item__img {
  width: 200px;
  height: 250px;
}
.catalog-box--list .product-item__link-box {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.catalog-box--list .product-item__link {
  width: 50px;
  height: 50px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  margin: 0 7px;
  border: none;
}
.catalog-box--list .product-item__link path {
  fill: #8f8f8f;
}
.catalog-box--list .product-item__link:hover path {
  fill: #fe3e57;
}
.catalog-box--list .product-item__link:nth-child(2) {
  display: none;
}
.catalog-box--list .product-item__content-box {
  max-width: 530px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.catalog-box--list .product-item__text, .catalog-box--list .dark-btn {
  display: block;
}
.catalog-box--list .product-item__actual-price {
  margin: 0 15px 0 0;
}
.catalog-box--list .product-item__stars-box {
  margin-bottom: 5px;
  margin-left: -4px;
}
.catalog-box--list .product-item__title {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: 10px;
}
.catalog-box--list .product-item__price {
  margin-bottom: 5px;
}
.catalog-box--list .product-item__text {
  margin-bottom: 15px;
}
.catalog-box--list .product-item:hover .dark-btn {
  background-color: #fe3e57;
}
.catalog-box--list .dark-btn {
  text-transform: none;
}

.footer {
  background-color: #f6f6f6;
}

.footer-title {
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 36px;
  color: #29282d;
  font-family: "Roboto-Medium", sans-serif;
  font-weight: 500;
}

.footer-top {
  padding: 70px 0 40px 0;
  border-bottom: 1px solid #ececec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-top__item + .footer-top__item {
  margin-left: 30px;
}
.footer-top__contact {
  width: 270px;
}
.footer-top__contact .footer-top__list {
  margin-bottom: 30px;
}
.footer-top__info {
  width: 170px;
}
.footer-top__subscribe {
  max-width: 470px;
}
.footer-top__subscribe p {
  margin-bottom: 30px;
}
.footer-top__list-link {
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
  color: #8d8d8d;
  font-family: "Quicksand-Medium", sans-serif;
  font-weight: 500;
}
.footer-top__list-link:hover {
  text-decoration: underline;
}
.footer-top__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-top__form-input {
  background-color: #fff;
  padding: 15px 20px;
  max-width: 320px;
  width: 100%;
  border: none;
  -webkit-box-shadow: 0px 7px 20px 0px rgba(192, 192, 192, 0.3);
          box-shadow: 0px 7px 20px 0px rgba(192, 192, 192, 0.3);
}

.footer-bottom {
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
}

.accept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accept__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.accept__item {
  margin-left: 22px;
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-list__item + .social-list__item {
  margin-left: 20px;
}
.social-list__link path {
  fill: #8d8d8d;
}
.social-list__link:hover path {
  fill: #fe3e57;
}