@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@font-face{font-family:Roboto-Medium;font-style:normal;src:url("../fonts/Roboto-Medium.ttf") format("truetype");font-display:swap}
svg {
  flex-shrink: 0;
  display: block;
  width: 0;
  height: 0;
  transition: 0.3s all;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  background: #ffffff;
  color: #393939;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
}

.section-title {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 420px) {
  .section-title {
    font-size: 26px;
  }
}

h2 {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 420px) {
  h2 {
    font-size: 26px;
  }
}

h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.43;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: 0.3s all;
}

ul {
  list-style: none;
}
ul li {
  position: relative;
}
ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

ol {
  margin: 0;
}
ol li:last-child {
  margin-bottom: 0;
}

p {
  line-height: 1.6;
}
@media (max-width: 1000px) {
  p {
    font-size: 14px;
  }
}

input,
textarea {
  display: inline-block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background-color: #ffffff;
  color: #222222;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  border-radius: 10px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  outline: none;
  transition: all linear 0.1s;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #888888;
}
input::placeholder,
textarea::placeholder {
  color: #888888;
}
input:focus,
textarea:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

input:focus {
  background-color: #ffffff;
}

input::-moz-placeholder {
  color: #A6AEB9;
  opacity: 1;
}

input::placeholder {
  color: #A6AEB9;
  opacity: 1;
}

input,
textarea,
select,
input:active,
textarea:active {
  outline: none transparent !important;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -moz-outline: none !important;
  font-family: "Montserrat", sans-serif;
}

textarea {
  overflow: auto;
  min-height: 150px;
  padding: 20px;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset],
input[type=radio],
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

a:active, a:focus, div:active, div:focus, button:active, button:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: "Montserrat", sans-serif;
}

.inner {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
}

.wrapper {
  box-sizing: border-box;
  min-height: 100vh;
}

.content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 5;
}

.img {
  display: flex;
  overflow: hidden;
  position: relative;
}
.img img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

img {
  display: block;
  width: 100%;
}

.page-link {
  display: block;
  padding: 10px 30px;
  font-size: 18px;
}

.button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  text-align: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  border: 0px;
  border-radius: 0px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  transition: all linear 0.3s;
  font-size: 14px;
  font-weight: 700;
}
.button-yellow {
  background-color: var(--accent-color);
}
.button-yellow img {
  flex-shrink: 0;
  margin-right: 10px;
  width: 18px;
}

.breadcrumbs {
  margin: 17px 0 50px;
}
@media (max-width: 850px) {
  .breadcrumbs {
    margin-bottom: 20px;
  }
}
.breadcrumbs-small {
  margin-bottom: 27px;
}
.breadcrumbs__list {
  display: flex;
}
@media (max-width: 576px) {
  .breadcrumbs__list {
    flex-wrap: wrap;
  }
}
.breadcrumbs__item {
  position: relative;
  margin-right: 20px;
  font-size: 14px;
  color: #888888;
}
@media (max-width: 576px) {
  .breadcrumbs__item {
    margin-bottom: 10px;
  }
}
.breadcrumbs__item:last-child::before {
  display: none;
}
.breadcrumbs__item:last-child a {
  cursor: default;
}
.breadcrumbs__item::before {
  content: "/";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -12px;
}

.header {
  position: relative;
  z-index: 20;
  background-color: #393939;
  color: #ffffff;
  /* nav-icon-5 */
}
.header .nav-open {
  width: 35px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: none;
}
@media (max-width: 1000px) {
  .header .nav-open {
    display: block;
    margin-left: auto;
  }
}
.header .nav-open span {
  background-color: #ffffff;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 4px;
  transition-duration: 500ms;
}
.header .nav-open span:nth-child(1) {
  top: 0px;
  left: 0px;
}
.header .nav-open span:nth-child(2) {
  top: 13px;
  left: 0px;
  opacity: 1;
}
.header .nav-open span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}
.header .nav-open.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}
.header .nav-open.open span:nth-child(2) {
  opacity: 0;
}
.header .nav-open.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
}
.header__top {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__mob {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .header__mob {
    position: absolute;
    z-index: 30;
    top: 60px;
    right: 0;
    width: 330px;
    display: none;
    background-color: #393939;
    padding: 20px;
  }
}
@media (max-width: 420px) {
  .header__mob {
    width: 100%;
  }
}
.header__mob .header__option {
  display: none;
}
@media (max-width: 1000px) {
  .header__mob .header__option {
    display: block;
  }
}
.header__feedback {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .header__feedback {
    display: block;
  }
}
.header__contact {
  display: flex;
  align-items: center;
  margin-right: 52px;
  font-size: 18px;
}
.header__contact:last-child {
  margin-right: 0;
}
@media (max-width: 1000px) {
  .header__contact {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.header__contact i {
  flex-shrink: 0;
  margin: -1px 5px 0 0;
  font-size: 15px;
  color: var(--accent-color);
}
.header__main {
  display: flex;
  align-items: center;
  padding: 11px 0 15px;
}
@media (max-width: 600px) {
  .header__main {
    flex-wrap: wrap;
  }
}
.header__catalogue {
  flex: 0 0 210px;
  margin-right: 30px;
}
@media (max-width: 600px) {
  .header__catalogue {
    flex: 0 1 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.header__catalogue-head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: var(--accent-color);
  color: #222222;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.header__catalogue-head img {
  flex-shrink: 0;
  width: 16px;
  margin-right: 8px;
}
.header__catalogue-drop {
  width: 100%;
  z-index: 20;
  position: absolute;
  left: 15px;
  top: 150px;
  background-color: #ffffff;
  width: 100%;
  color: #393939;
  display: none;
}
@media (max-width: 1500px) {
  .header__catalogue-drop {
    left: 0;
  }
}
@media (max-width: 700px) {
  .header__catalogue-drop {
    top: 130px;
  }
}
.header__sublist {
  width: 330px;
  padding: 10px 0 15px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1500px) {
  .header__sublist {
    width: 270px;
  }
}
@media (max-width: 700px) {
  .header__sublist {
    width: 100%;
  }
}
.header__subitem a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 20px;
}
.header__subitem a img {
  width: 8px;
}
.header__subitem a:hover {
  background-color: var(--accent-color);
}
.header__nav {
  display: none;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 330px;
  padding: 20px 30px;
  width: calc(100% - 330px);
  background-color: #ffffff;
}
@media (max-width: 1500px) {
  .header__nav {
    padding: 20px 15px;
    width: calc(100% - 330px);
    left: 270px;
  }
}
@media (max-width: 700px) {
  .header__nav {
    position: relative;
    left: 0;
    width: 100%;
    padding: 10px 15px;
  }
}
.header__nav.active {
  z-index: 20;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__subitem {
  position: static;
}
.header__title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1150px) {
  .header__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.header__wrap {
  flex: 0 1 800px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1500px) {
  .header__wrap {
    flex: 0 1 700px;
  }
}
@media (max-width: 1150px) {
  .header__wrap {
    flex: 0 1 600px;
  }
}
.header__section {
  width: 48%;
  margin-bottom: 25px;
}
@media (max-width: 1150px) {
  .header__section {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .header__section {
    width: 100%;
  }
}
.header__subitem .header__subtitle {
  font-weight: 600;
  margin-bottom: 15px;
  padding: 0;
  background: none!important;
}
@media (max-width: 1150px) {
  .header__subtitle {
    font-size: 14px;
  }
}
.header__lastitem {
  margin-bottom: 13px;
}
.header__lastitem a {
  display: block;
  height: auto;
  padding: 0;
  color: #888888;
}
@media (max-width: 1150px) {
  .header__lastitem a {
    font-size: 14px;
  }
}
.header__lastitem a:hover {
  background-color: transparent;
  color: #393939;
}
.header__bg {
  flex: 0 0 300px;
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
  margin-left: 10px;
}
@media (max-width: 1500px) {
  .header__bg {
    flex: 0 0 250px;
    height: 300px;
  }
}
@media (max-width: 1150px) {
  .header__bg {
    flex: 0 0 200px;
    height: 250px;
  }
}
@media (max-width: 1000px) {
  .header__bg {
    display: none;
  }
}
.header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__search {
  display: flex;
  align-items: center;
  flex: 0 1 810px;
}
@media (max-width: 600px) {
  .header__search {
    flex: 0 1 100%;
  }
}
.header__input {
  position: relative;
  flex: 1 1 auto;
}
.header__input input {
  height: 40px;
  border-radius: 0;
  padding: 0 13px;
  font-size: 14px;
}
.header__input input::-moz-placeholder {
  color: #888888;
}
.header__input input::placeholder {
  color: #888888;
}
.header__input-clear {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header__input-clear img {
  width: 16px;
}
.header__btn {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
}
.header__option {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .header__option {
    display: none;
  }
}
.header__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 27px;
  font-size: 14px;
}
@media (max-width: 1000px) {
  .header__item {
    flex-direction: row;
    align-items: center;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.header__ico {
  position: relative;
  margin: 0 -3px 2px;
  font-size: 29px;
  color: var(--accent-color);
}
.header__ico img {
  max-width: 35px;
  max-height: 35px;
}
@media (max-width: 1000px) {
  .header__ico {
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.header__value {
  position: absolute;
  top: -6px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #222222;
  font-size: 12px;
  font-weight: 700;
}
.hidden {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.main-nav__item {
  margin-right: 30px;
}
@media (max-width: 1000px) {
  .main-nav__item {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.main-nav__item:last-child {
  margin-right: 0;
}
.main-nav__item a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .main-nav__item a {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  .main-nav {
    display: block;
    margin-bottom: 25px;
  }
}

.logo {
  flex: 0 0 118px;
  margin-right: 122px;
}
.logo img {
  max-height: 35px;
}

.footer {
  background-color: #393939;
  color: #ffffff;
}
.footer .header__main {
  padding: 20px 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .header__top {
  padding: 15px 0 17px;
  border-bottom: none;
}
@media (max-width: 576px) {
  .footer .header__top {
    flex-direction: column;
    align-items: center;
    padding: 25px 0 17px;
  }
}
@media (max-width: 768px) {
  .footer .logo {
    margin-right: 25px;
  }
}
@media (max-width: 576px) {
  .footer .logo {
    flex: 0 1 auto;
    margin-right: 0;
    margin-bottom: 25px;
    width: 90px;
  }
}
@media (max-width: 576px) {
  .footer .main-nav {
    margin-left: 0;
  }
}

.heading {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .heading {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.heading__list {
  flex: 0 1 975px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 576px) {
  .heading__list {
    flex: 0 1 100%;
    margin-top: 0;
    margin-bottom: 25px;
  }
}
.heading__item {
  width: 47%;
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .heading__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.heading__item i {
  font-size: 30px;
  color: var(--accent-color);
  width: 50px;
  margin-right: 10px;
  text-align: center;
}
.heading__item a {
  display: flex;
  align-items: center;
  font-size: 22px;
}
@media (max-width: 1200px) {
  .heading__item a {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .heading__item a {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .heading__item a {
    font-size: 14px;
  }
}
.heading__item a img {
  flex-shrink: 0;
  width: 30px;
  margin-right: 15px;
}
@media (max-width: 576px) {
  .heading__item a img {
    width: 25px;
    margin-right: 10px;
  }
}
.heading__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 330px;
  height: 155px;
  margin-left: 10px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 900px) {
  .heading__logo {
    flex: 0 0 180px;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .heading__logo {
    margin-left: 0;
  }
}
@media (max-width: 420px) {
  .heading__logo {
    flex: 0 1 100%;
  }
}
.heading__logo img {
  width: 190px;
}
@media (max-width: 900px) {
  .heading__logo img {
    width: 100px;
  }
}

.categories {
  padding-top: 90px;
}
@media (max-width: 1200px) {
  .categories {
    padding-top: 50px;
  }
}
.categories-inside {
  padding-top: 0;
}
.categories__title {
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 800px) {
  .categories__title {
    margin-bottom: 20px;
  }
}
.categories__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
@media (max-width: 1500px) {
  .categories__list {
    margin-left: -6px;
  }
}
@media (max-width: 576px) {
  .categories__list {
    margin: 0;
    justify-content: space-between;
  }
}
.categories__item {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18.3%;
  height: 260px;
  margin: 0 12px 30px;
  border-radius: 10px;
  border: 6px solid transparent;
  transition: 0.3s all;
}
@media (max-width: 1500px) {
  .categories__item {
    margin: 0 0.8vw 2vw;
    height: 17.33vw;
  }
}
@media (max-width: 1000px) {
  .categories__item {
    width: 23.3%;
    height: 21vw;
  }
}
@media (max-width: 800px) {
  .categories__item {
    width: 31.4%;
    height: 28vw;
  }
}
@media (max-width: 576px) {
  .categories__item {
    width: 49%;
    height: 40vw;
    margin: 0 0 10px;
    border: none;
    border: none;
  }
}
.categories__item:hover {
  border: 6px solid var(--accent-color);
}
.categories__item:hover .bg {
  border-radius: 6px;
}
@media (max-width: 576px) {
  .categories__item:hover .bg {
    border-radius: 8px;
  }
}
@media (max-width: 576px) {
  .categories__item:hover {
    border: none;
  }
}
.categories__item:hover .categories__name {
  color: var(--accent-color);
}
.categories__item .bg {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s all;
}
.categories__item .bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.categories__name {
  position: relative;
  z-index: 5;
  max-width: 160px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s all;
}
@media (max-width: 1000px) {
  .categories__name {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .categories__name {
    font-size: 12px;
  }
}

.benefits {
  margin: 18px 0 23px;
}
.benefits__title {
  margin-bottom: 30px;
}
.benefits__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.benefits__item {
  display: flex;
  align-items: center;
  width: 49%;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
  padding-right: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .benefits__item {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .benefits__item {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .benefits__item {
    font-size: 12px;
  }
}
.benefits__ico {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  background-color: var(--accent-color);
}
@media (max-width: 800px) {
  .benefits__ico {
    margin-right: 10px;
  }
}
@media (max-width: 420px) {
  .benefits__ico {
    width: 70px;
  }
}
.benefits__ico img {
  width: auto;
  max-height: 50px;
  max-width: 95%;
}

.about {
  margin-bottom: 55px;
}
.about__title {
  margin-bottom: 25px;
}
.about p {
  margin-bottom: 27px;
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .about p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .about p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.about p:last-child {
  margin-bottom: 0;
}

.error {
  padding-bottom: 80px;
}
@media (max-width: 850px) {
  .error {
    padding-bottom: 50px;
  }
}
.error__title {
  margin-bottom: 50px;
}
@media (max-width: 850px) {
  .error__title {
    margin-bottom: 35px;
  }
}
.error__img {
  width: 790px;
  margin: 0 auto 60px;
}
@media (max-width: 850px) {
  .error__img {
    width: 100%;
    margin: 0 auto 40px;
  }
}
.error__link {
  position: relative;
  left: 20px;
  width: 330px;
  margin: 0 auto;
}
@media (max-width: 850px) {
  .error__link {
    left: 0;
  }
}
@media (max-width: 420px) {
  .error__link {
    width: 100%;
  }
}

section.page {
  padding-bottom: 90px;
}

.delivery {
  padding-bottom: 460px;
}
@media (max-width: 1500px) {
  .delivery {
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .delivery {
    padding-bottom: 50px;
  }
}
.delivery__title {
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .delivery__title {
    margin-bottom: 20px;
  }
}
.delivery__list {
  margin-top: 60px;
}
.delivery__item {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  padding-left: 210px;
  padding-right: 40px;
  min-height: 190px;
  margin-bottom: 60px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1000px) {
  .delivery__item {
    padding-right: 15px;
  }
}
@media (max-width: 576px) {
  .delivery__item {
    flex-wrap: wrap;
    padding-left: 15px;
    justify-content: center;
  }
}
.delivery__item:last-child {
  margin-bottom: 0;
}
.delivery__ico {
  position: absolute;
  left: -90px;
  top: -35px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 270px;
  height: 270px;
  padding-right: 35px;
  padding-bottom: 10px;
  border-radius: 50%;
  border: 10px solid var(--accent-color);
  color: var(--accent-color);
  background-color: #393939;
  font-size: 80px;
}
@media (max-width: 576px) {
  .delivery__ico {
    position: relative;
    left: 0px;
    top: 0px;
    width: 130px;
    height: 130px;
    justify-content: center;
    padding: 0;
    border: 4px solid var(--accent-color);
    margin-bottom: 15px;
    font-size: 45px;
  }
}
.delivery__ico img {
  width: 80px;
}
@media (max-width: 576px) {
  .delivery__ico img {
    width: 45px;
  }
}
.delivery__subtitle {
  margin-bottom: 7px;
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .delivery__subtitle {
    font-size: 22px;
    text-align: center;
  }
}
.delivery__main a {
  color: #1665cc;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .delivery__main {
    text-align: center;
  }
}

.waranty__title {
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .waranty__title {
    margin-bottom: 20px;
  }
}
.page-content {
  margin-top: 53px;
}
@media (max-width: 1000px) {
  .page-content {
    margin-top: 35px;
  }
}
.waranty__section {
  margin-bottom: 48px;
}
@media (max-width: 1000px) {
  .waranty__section {
    margin-bottom: 35px;
  }
}
.page-content h2 {
  margin-bottom: 17px;
  font-size: 25px;
  text-align: left;
}
@media (max-width: 576px) {
  .page-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.page-content p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.66;
}
@media (max-width: 1000px) {
  .page-content p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .page-content p {
    font-size: 14px;
  }
}
.page-content ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.66;
}
@media (max-width: 1000px) {
  .page-content ul li {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .page-content ul li {
    font-size: 14px;
  }
}
.page-content ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  transform: rotate(45deg);
}

.catalogue {
  margin: 28px 0;
}
.catalogue .sort {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}
@media (max-width: 420px) {
  .catalogue .sort {
    flex-wrap: wrap;
  }
}
.catalogue .sort__title {
  color: #888888;
  margin-right: 15px;
}
@media (max-width: 420px) {
  .catalogue .sort__title {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.catalogue .sort__inline {
  display: flex;
  align-items: center;
}
.catalogue .sort__item {
  margin-right: 23px;
  text-decoration: underline;
}
.catalogue .sort__item.sort__active {
  font-weight: 600;
}
.catalogue__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px;
}
@media (max-width: 700px) {
  .catalogue__list {
    margin: 0;
    justify-content: space-between;
  }
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 18%;
  margin: 0 14px 30px;
  padding: 20px;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1500px) {
  .card {
    margin: 0 0.93vw 2vw;
    padding: 20px 10px;
  }
}
@media (max-width: 1250px) {
  .card {
    width: 23%;
  }
}
@media (max-width: 920px) {
  .card {
    width: 31%;
  }
}
@media (max-width: 700px) {
  .card {
    width: 49%;
    margin: 0 0 15px;
  }
}
@media (max-width: 480px) {
  .card {
    width: 100%;
    margin: 0 0 15px;
  }
}
.card__img {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.card__img img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.card__title {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
}
.card__inline {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 10px;
}
.card__price-inline {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.card__price-old {
  font-size: 12px;
  color: #888888;
  text-decoration: line-through;
  margin-right: 10px;
  flex-shrink: 0;
}
.card__price-actual {
  font-weight: 600;
}
.card__discount {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 15px;
  font-size: 10px;
  font-weight: 600;
  padding: 0 5px;
  border-radius: 3px;
  background-color: var(--accent-color);
}
.card__aside {
  text-align: right;
}
.card__stock {
  display: inline-block;
  position: relative;
  color: #44a63f;
  font-size: 12px;
  font-weight: 600;
  padding-left: 15px;
  margin-bottom: 13px;
  top: -4px;
}
.card__stock::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.card__stock.card__available::before {
  background-image: url(../img/layout/general/check-gray.png);
}
.card__stock.card__unavailable {
  color: #cc2222;
}
.card__stock.card__unavailable::before {
  background-image: url(../img/layout/general/cross-red.png);
}
.card__delivery {
  font-size: 12px;
  color: #888888;
}
.card__btn {
  width: 100%;
  height: 40px;
  font-size: 12px;
}
.card__btn img {
  flex-shrink: 0;
  width: 17px;
  margin-right: 10px;
}

.contacts {
  padding-bottom: 340px;
}
@media (max-width: 1500px) {
  .contacts {
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .contacts {
    padding-bottom: 50px;
  }
}
.contacts__title {
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .contacts__title {
    margin-bottom: 20px;
  }
}
.contacts .requisites {
  margin-top: 100px;
}
@media (max-width: 1000px) {
  .contacts .requisites {
    margin-top: 50px;
  }
}
.contacts .requisites__title {
  margin-bottom: 35px;
}
.contacts .requisites__list {
  padding: 20px;
  background-color: #f9f9f9;
}
@media (max-width: 5760px) {
  .contacts .requisites__list {
    padding: 20px 15px;
  }
}
.contacts p {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.35;
}
@media (max-width: 1000px) {
  .contacts p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .contacts p {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.contacts .requisites__item div {
  display: inline;
}
.contacts .requisites__subtitle {
  font-weight: 600;
}

.order {
  padding-bottom: 70px;
}
.order.order-done .order__heading {
  display: none;
}
.order.order-done .basket__check {
  display: none;
}
.order.order-done .basket__desc {
  display: none;
}
.order.order-done .basket__delete {
  display: none;
}
.order.order-done .order__btn {
  display: none;
}
.order.order-done .order__bottom {
  justify-content: center;
}
.order.order-done .result {
  margin-right: 0;
}
.order .total {
  display: flex;
  align-items: center;
}
.order .total__value {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  height: 40px;
  min-width: 40px;
  padding: 0 4px;
  background-color: #f9f9f9;
}
.order .thanks {
  text-align: center;
  margin-bottom: 55px;
}
@media (max-width: 576px) {
  .order .thanks {
    margin-bottom: 35px;
  }
}
.order .thanks__title {
  margin-bottom: 17px;
}
@media (max-width: 576px) {
  .order .thanks__title {
    font-size: 25px;
  }
}
.order .thanks p {
  font-size: 25px;
  text-align: center;
}
@media (max-width: 576px) {
  .order .thanks p {
    font-size: 16px;
  }
}
.order .thanks p span {
  font-weight: 600;
}
.order__heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
}
.order__section {
  margin-bottom: 10px;
}
.order__title {
  margin-bottom: 0;
  text-align: left;
}
.order__value {
  font-size: 14px;
  color: #888888;
  margin-bottom: 4px;
  margin-left: 10px;
}
.order__data-head {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .order__data-head {
    flex-wrap: wrap;
  }
}
.order__subtitle {
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .order__subtitle {
    margin-bottom: 30px;
  }
}
.order__drop {
  display: none;
}
.order__drop.active {
  display: block;
}
.order__inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1050px;
}
.order__input {
  width: 32%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .order__input {
    width: 100%;
    margin-bottom: 20px;
  }
}
.order__input input {
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.15);
  height: 50px;
  border-radius: 5px;
}
.order__input input::-moz-placeholder {
  color: #393939;
}
.order__input input::placeholder {
  color: #393939;
}
.order .data-radio {
  margin-right: 30px;
}
@media (max-width: 480px) {
  .order .data-radio {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }
  .order .data-radio:last-child {
    margin-bottom: 0;
  }
}
.order .data-radio:last-child {
  margin-right: 0;
}
.order .data-radio .radio {
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
}
.order .data-radio .radio + label {
  position: relative;
  padding-left: 45px;
  cursor: pointer;
  display: block;
}
.order .data-radio .radio + label:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
.order .data-radio .radio + label i {
  content: "";
  position: absolute;
  font-size: 14px;
  top: 3px;
  left: 5px;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.2s;
  color: var(--accent-color);
}
.order .data-radio .radio:checked + label i {
  opacity: 1;
}
.order .data-radio .radio:checked + label:before {
  border: 1px solid var(--accent-color);
  box-shadow: none;
}
.order__delivery {
  margin-top: -4px;
}
.order__delivery-head {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .order__delivery-head {
    flex-wrap: wrap;
  }
}
.order__delivery .order__input {
  width: 100%;
}
.order__radio {
  width: 330px;
  margin-right: 30px;
}
@media (max-width: 600px) {
  .order__radio {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .order__radio:last-child {
    margin-bottom: 0;
  }
}
.order__radio:last-child {
  margin-right: 0;
}
.order__radio-ico {
  flex-shrink: 0;
  width: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 23px;
  font-size: 30px;
  color: #888;
}
.order__radio-ico img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.order__radio-ico .img-hidden {
  display: none;
}
.order__radio-title {
  margin-bottom: 5px;
  font-weight: 600;
}
.order__radio-value {
  font-size: 12px;
}
.order__radio .radio {
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
}
.order__radio .radio + label {
  position: relative;
  padding: 0 0 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  border: 2px solid transparent;
}
.order__radio .radio:checked + label {
  border: 2px solid var(--accent-color);
  box-shadow: none;
}
.order__radio .radio:checked + label .order__radio-ico {
  color: var(--accent-color);
}
.order .buying {
  margin-top: 55px;
}
.order .buying__list {
  display: flex;
  margin-bottom: 25px;
}
@media (max-width: 1000px) {
  .order .buying__list {
    flex-wrap: wrap;
  }
}
.order .buying__info {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .order .buying__info {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .order .buying__info {
    margin-bottom: 5px;
  }
}
.order .buying__item {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-right: 57px;
}
@media (max-width: 700px) {
  .order .buying__item {
    margin-right: 20px;
  }
}
@media (max-width: 480px) {
  .order .buying__item {
    margin-bottom: 20px;
  }
}
.order .buying__item div:first-child {
  margin-right: 4px;
}
.order .buying__radio {
  width: 330px;
  margin-right: 30px;
}
@media (max-width: 1000px) {
  .order .buying__radio {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .order .buying__radio:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .order .buying__radio {
    width: 100%;
    margin-right: 0;
  }
}
.order .buying__radio .radio {
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
}
.order .buying__radio .radio + label {
  position: relative;
  padding: 0 0 0 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  border: 2px solid transparent;
}
.order .buying__radio .radio + label:before {
  content: "";
  position: absolute;
  top: 25px;
  left: 20px;
  width: 32px;
  height: 32px;
  border: 3px solid rgb(242, 242, 242);
  border-radius: 50%;
}
.order .buying__radio .radio + label:after {
  content: "";
  position: absolute;
  top: 33px;
  left: 28px;
  width: 16px;
  height: 16px;
  background-color: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: 0.2s;
}
.order .buying__radio .radio:checked + label:after {
  opacity: 1;
}
.order .buying__radio .radio:checked + label:before {
  border: 3px solid var(--accent-color);
  box-shadow: none;
}
.order .buying__radio .radio:checked + label {
  border: 2px solid var(--accent-color);
  box-shadow: none;
}
.order__text textarea {
  min-height: 80px;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.15);
  padding: 15px;
}
.order__bottom {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 15px 30px;
  background-color: #f2f2f2;
}
@media (max-width: 1000px) {
  .order__bottom {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .order__bottom {
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
  }
}
.order .result {
  display: flex;
  font-size: 25px;
  font-weight: 600;
  margin-right: 318px;
}
@media (max-width: 1000px) {
  .order .result {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .order .result {
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
  }
}
.order .result div:first-child {
  margin-right: 4px;
}
.order__btn {
  width: 330px;
}
@media (max-width: 420px) {
  .order__btn {
    width: 100%;
  }
}

.basket {
  margin-bottom: 30px;
}
.basket__table {
  padding: 0 30px;
  border-radius: 5px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1100px) {
  .basket__table {
    padding: 0 15px;
  }
}
.basket__row {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid rgb(230, 230, 230);
}
@media (max-width: 800px) {
  .basket__row {
    flex-wrap: wrap;
    position: relative;
  }
}
.basket__check {
  flex-shrink: 0;
  width: 30px;
  margin-right: 30px;
  align-self: center;
}
@media (max-width: 1100px) {
  .basket__check {
    margin-right: 15px;
  }
}
@media (max-width: 800px) {
  .basket__check {
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .basket__check {
    width: 100%;
    margin-bottom: 45px;
  }
}
.basket__img {
  flex: 0 0 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 1100px) {
  .basket__img {
    margin-right: 15px;
  }
}
@media (max-width: 900px) {
  .basket__img {
    flex: 0 0 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .basket__img {
    flex: 0 0 150px;
    height: 150px;
    margin: 0 auto 25px;
  }
}
.basket__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.basket__main {
  flex: 1 1 auto;
  margin-right: 15px;
}
@media (max-width: 800px) {
  .basket__main {
    flex: 0 1 70%;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .basket__main {
    flex: 0 1 100%;
  }
}
.basket__title {
  margin-bottom: 15px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .basket__title {
    margin-bottom: 5px;
  }
}
.basket__desc {
  font-size: 14px;
  line-height: 1.71;
  color: #888888;
}
.basket__aside {
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 800px) {
  .basket__aside {
    flex: 0 1 100%;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
  }
}
.basket .number {
  display: flex;
  background-color: #f2f2f2;
  width: 100px;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .basket .number {
    margin-right: 20px;
  }
}
.basket .number__text {
  width: 33.33%;
  text-align: center;
  border-radius: 0;
  padding: 0;
  height: 35px;
  font-size: 14px;
  color: #888888;
  background-color: transparent;
}
.basket .number .plus, .basket .number .minus {
  width: 33.33%;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.basket .number .plus img, .basket .number .minus img {
  width: 10px;
}
.basket__price {
  margin-bottom: 38px;
  font-weight: 600;
}
@media (max-width: 800px) {
  .basket__price {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }
}
.basket__delete {
  display: flex;
  align-items: center;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #1665cc;
}
@media (max-width: 800px) {
  .basket__delete {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .basket__delete {
    position: absolute;
    top: 25px;
    right: 10px;
  }
}
.basket__delete img {
  flex-shrink: 0;
  width: 14px;
  margin-right: 8px;
}
.basket__result {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 25px;
}
@media (max-width: 600px) {
  .basket__result {
    justify-content: flex-start;
  }
}
.basket__result-title {
  font-size: 25px;
  font-weight: 600;
  margin-right: 30px;
}
@media (max-width: 600px) {
  .basket__result-title {
    font-size: 22px;
    margin-right: 10px;
  }
}
.basket__result-inline {
  display: flex;
  align-items: center;
}
.basket__result-actual {
  font-size: 25px;
  font-weight: 600;
  margin-left: 35px;
}
@media (max-width: 600px) {
  .basket__result-actual {
    font-size: 22px;
    margin-left: 15px;
  }
}
.basket__result-old {
  font-weight: 600;
  color: #888888;
  text-decoration: line-through;
}
.basket .checkbox {
  display: block;
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
}
.basket .checkbox + label {
  position: relative;
  cursor: pointer;
  display: block;
  padding-left: 30px;
  top: -12px;
}
.basket .checkbox + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
.basket .checkbox + label:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 30px;
  background-image: url(../img/layout/general/check-yellow.png);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.2s;
}
.basket .checkbox:checked + label:after {
  opacity: 1;
}
.basket .checkbox:checked + label:before {
  border: 1px solid var(--accent-color);
  box-shadow: none;
}

.payment {
  padding-bottom: 460px;
}
@media (max-width: 1500px) {
  .payment {
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .payment {
    padding-bottom: 50px;
  }
}
.payment__title {
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .payment__title {
    margin-bottom: 20px;
  }
}
.payment__list {
  margin-top: 60px;
}
.payment__item {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  padding-left: 210px;
  padding-right: 40px;
  height: 190px;
  margin-bottom: 60px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1100px) {
  .payment__item {
    padding-right: 15px;
    min-height: 190px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .payment__item {
    flex-wrap: wrap;
    padding-left: 15px;
    justify-content: center;
  }
}
.payment__item:last-child {
  margin-bottom: 0;
}
.payment__ico {
  position: absolute;
  left: -90px;
  top: -35px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 270px;
  height: 270px;
  padding-right: 35px;
  padding-bottom: 10px;
  border-radius: 50%;
  border: 10px solid var(--accent-color);
  color: var(--accent-color);
  background-color: #393939;
  font-size: 80px;
}
@media (max-width: 576px) {
  .payment__ico {
    position: relative;
    left: 0px;
    top: 0px;
    width: 130px;
    height: 130px;
    justify-content: center;
    padding: 0;
    border: 4px solid var(--accent-color);
    margin-bottom: 15px;
    font-size: 45px;
  }
}
.payment__ico img {
  width: 80px;
}
@media (max-width: 576px) {
  .payment__ico img {
    width: 45px;
  }
}
.payment__subtitle {
  margin-bottom: 7px;
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 576px) {
  .payment__subtitle {
    font-size: 22px;
    text-align: center;
  }
}
.payment__main a {
  color: #1665cc;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .payment__main {
    text-align: center;
  }
}
.payment .help {
  margin-top: 20px;
}
.payment .help__title {
  margin-bottom: 10px;
  font-weight: 600;
  text-align: left;
}
.payment .help__list {
  display: flex;
  flex-wrap: wrap;
}
.payment .help__list li {
  margin-right: 30px;
  margin-bottom: 15px;
  padding-left: 20px;
  line-height: 1.2;
  text-align: left;
}
@media (max-width: 420px) {
  .payment .help__list li {
    font-size: 14px;
  }
}
.payment .help__list li span {
  font-weight: 600;
}
.payment .help__list li:last-child {
  margin-right: 0;
}
.payment .help__list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  transform: rotate(45deg);
}
.payment .card__list {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media (max-width: 900px) {
  .payment .card__list {
    flex-wrap: wrap;
  }
}
.payment .card__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  margin-right: 35px;
}
@media (max-width: 900px) {
  .payment .card__item {
    margin-right: 10px;
    margin-bottom: 15px;
  }
}
.payment .card__item:last-child {
  margin-right: 0;
}
.payment .card__item img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.payment__inner {
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .payment__inner {
    flex-wrap: wrap;
  }
}
.payment .banking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 0 245px;
  margin-left: 60px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .payment .banking {
    flex: 0 1 100%;
    margin-left: 0;
    margin-top: 10px;
    flex-wrap: wrap;
  }
}
.payment .banking__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .payment .banking__item {
    margin-bottom: 30px;
    margin-right: 15px;
  }
}
.payment .banking__item:last-child {
  margin-right: 0;
}
.payment .banking__item img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

.search {
  padding-bottom: 90px;
}
@media (max-width: 1500px) {
  .search {
    padding-bottom: 90px;
  }
}
@media (max-width: 576px) {
  .search {
    padding-bottom: 50px;
  }
}
.search .heading {
  margin-bottom: 25px;
}
.search__section {
  margin-bottom: 25px;
}
.search__title {
  margin-bottom: 25px;
  text-align: left;
  font-size: 35px;
}
@media (max-width: 576px) {
  .search__title {
    font-size: 30px;
  }
}
.search__subtitle {
  margin-bottom: 20px;
  text-align: left;
  font-size: 25px;
}

.product {
  padding: 5px 0;
}
.product__title {
  margin-bottom: 28px;
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .product__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.product__inline {
  display: flex;
  align-items: flex-start;
  margin-bottom: 45px;
}
@media (max-width: 860px) {
  .product__inline {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.product__gallery {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 570px;
  margin-right: 30px;
}
@media (max-width: 1200px) {
  .product__gallery {
    margin-right: 15px;
  }
}
@media (max-width: 860px) {
  .product__gallery {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 600px) {
  .product__gallery {
    flex-wrap: wrap;
    width: 100%;
  }
}
.product__gallery-aside {
  position: relative;
  width: 110px;
  margin-right: 20px;
}
@media (max-width: 1200px) {
  .product__gallery-aside {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .product__gallery-aside {
    width: 100%;
    margin-right: 0;
    margin-top: 15px;
    order: 2;
  }
}
.product .slider-product {
  width: 100%;
  height: 465px;
  display: inline-block;
  overflow: hidden;
  padding: 10px;
  padding-bottom: 15px;
}
@media (max-width: 600px) {
  .product .slider-product {
    height: 110px;
    padding-bottom: 15px;
  }
}
.product .slider-product .swiper-slide {
  width: 90px;
  height: 90px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  opacity: 1;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .product .slider-product .swiper-slide {
    width: 24%;
  }
}
.product .slider-product .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid var(--accent-color);
  box-shadow: none;
}
.product .slider-product .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.product .slider-image {
  width: 455px;
  height: 455px;
  overflow: hidden;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .product .slider-image {
    width: 95vw;
    height: 93.58vw;
  }
}
.product .slider-image .swiper-slide {
  height: 100%;
}
.product .slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product__img {
  display: block;
  width: 100%;
  height: 100%;
}
.product__inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 860px) {
  .product__inner {
    flex: 0 1 100%;
  }
}
.product__preview {
  flex: 0 1 450px;
  margin-right: 30px;
}
@media (max-width: 1200px) {
  .product__preview {
    display: none;
  }
}
.product__preview p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42;
  color: #888888;
}
.product__main {
  flex: 0 1 330px;
}
@media (max-width: 860px) {
  .product__main {
    flex: 0 1 100%;
  }
}
.product__article {
  display: flex;
  font-size: 12px;
  margin-bottom: 20px;
}
.product__article div {
  margin-right: 3px;
}
.product__status {
  display: inline-block;
  position: relative;
  color: #44a63f;
  font-size: 14px;
  font-weight: 600;
  padding-left: 22px;
  margin-bottom: 23px;
  top: -4px;
}
.product__status::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.product__status.product__instock::before {
  background-image: url(../img/layout/general/check-gray.png);
}
.product__status.product__not_instock {
  color: #cc2222;;
}
.product__status.product__not_instock::before {
  background-image: url(../img/layout/general/cross-red.png);
}
.product .options {
  margin-bottom: 5px;
}
.product .options__item {
  margin-bottom: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgb(230, 230, 230);
}
.product .options__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.product .options__item div {
  display: inline;
}
.product .options__title {
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  margin-right: 7px;
}
.product .options__value {
  font-size: 12px;
  margin-right: 7px;
}
.product .options__note {
  font-size: 12px;
  color: #888888;
}
.product .options__img {
  display: block;
  width: 70px;
  margin-top: 10px;
}
.product__price {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.product__price-old {
  text-decoration: line-through;
  color: #888888;
  font-size: 18px;
  margin-right: 40px;
}
@media (max-width: 1500px) {
  .product__price-old {
    margin-right: 15px;
  }
}
.product__price-actual {
  font-size: 25px;
  font-weight: 600;
}
.product__add {
  width: 100%;
}
.product__subtitle {
  margin-bottom: 18px;
  text-align: left;
  font-size: 25px;
}
@media (max-width: 480px) {
  .product__subtitle {
    font-size: 20px;
  }
}
.product__desc {
  margin-bottom: 50px;
}
.product__desc p {
  margin-bottom: 10px;
  line-height: 1.37;
}
.product .settings__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*max-width: 1290px;*/
  margin-top: 25px;
}
.product .settings__item {
  width: 46%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgb(230, 230, 230);
}
@media (max-width: 700px) {
  .product .settings__item {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .product .settings__item {
    font-size: 14px;
  }
}
.product .settings__name {
  font-weight: 600;
}

.asame {
  margin-top: 30px;
  padding-bottom: 60px;
}
.asame__title {
  margin-bottom: 50px;
}
@media (max-width: 1000px) {
  .asame__title {
    margin-bottom: 30px;
  }
}
.asame__gallery {
  position: relative;
}
.asame__swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0 10px 10px;
}
.asame .swiper-slide {
  text-align: left;
  font-size: 16px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.15);
}
.asame__item {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.asame__img {
  display: block;
  height: 190px;
}
.asame__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.asame__main {
  padding: 20px;
}
@media (max-width: 1000px) {
  .asame__main {
    padding: 20px 10px;
  }
}
.asame__name {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
.asame__inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.asame__price {
  font-weight: 600;
}
.asame__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  border-radius: 5px;
}
.asame__btn img {
  width: 22px;
}
.asame .swiper-button-next, .asame .swiper-button-prev {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%);
  width: 40px !important;
  height: 40px !important;
  margin-top: 0 !important;
  z-index: 30;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent !important;
  transition: 0.3s all;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1600px) {
  .asame .swiper-button-next, .asame .swiper-button-prev {
    background-color: #ffffff;
    top: 45% !important;
  }
}
.asame .swiper-button-next {
  right: -70px !important;
  background-image: url(../img/layout/general/arroe-right.png);
}
@media (max-width: 1600px) {
  .asame .swiper-button-next {
    right: 20px !important;
  }
}
.asame .swiper-button-prev {
  left: -70px !important;
  background-image: url(../img/layout/general/arroe-left.png);
}
@media (max-width: 1600px) {
  .asame .swiper-button-prev {
    left: 20px !important;
  }
}

.pagination-list {
  text-align: center;
}
.pagination-list * {
  padding: 3px 5px;
  margin: 2px 0;
  display: inline-block;
}
.pagination-list .active {
  padding: 3px 9px;
  background: var(--accent-color);
  font-weight: normal;
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 100 !important;
  padding: 80px 0 !important;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.3) !important;
  text-align: center;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative !important;
  z-index: 200 !important;
  max-width: 930px !important;
  box-sizing: border-box;
  width: 100% !important;
  padding: 45px 30px !important;
  text-align: left !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: none !important;
}
@media (max-width: 1100px) {
  .modal {
    width: 96% !important;
  }
}
@media (max-width: 576px) {
  .modal {
    padding: 30px 10px 25px !important;
    border-radius: 10px !important;
  }
}

.popup__title {
  text-align: left;
  font-size: 25px;
}
@media (max-width: 576px) {
  .popup__title {
    font-size: 22px;
  }
}
.popup .basket__table {
  padding: 0;
  box-shadow: none;
}
.popup .basket__wrap {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.popup .basket .number {
  flex-shrink: 0;
  margin-right: 30px;
}
.popup .basket__price {
  margin-bottom: 0;
  font-size: 25px;
}
.popup__bottom {
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .popup__bottom {
    flex-wrap: wrap;
  }
}
.popup__next {
  width: 330px;
  border: 2px solid var(--accent-color);
  margin-right: 30px;
}
@media (max-width: 576px) {
  .popup__next {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.popup__add {
  width: 330px;
}
.popup__add img {
  flex-shrink: 0;
  margin-right: 10px;
  width: 18px;
}
/*# sourceMappingURL=style.css.map */

.sort-checkbox.checked:after,.sort-checkbox:before{content:"";width:12px;height:12px;position:absolute;top:0;left:0;pointer-events:none}.sort-checkbox.checked:after{background:url(https://www.planeta-led.ru/static/check-mark.png) no-repeat 50%;border:1px solid transparent;z-index:2}.sort-checkbox:last-child{margin-bottom:0}.sort-checkbox.disabled{pointer-events:none;opacity:.45}.collapse.two-column .sort-checkbox{width:50%;float:left}


.sort-checkbox {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    position: relative
}

.sort-checkbox input {
    margin-left: 0;
    display: none
}

.sort-checkbox:before {
    display: block;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    z-index: 1
}

.sort-checkbox.checked:after, .sort-checkbox:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none
}

.sort-checkbox.checked:after {
    background: url(https://www.planeta-led.ru/static/check-mark.png) no-repeat 50%;
    border: 1px solid transparent;
    z-index: 2
}

.sort-checkbox:last-child {
    margin-bottom: 0
}

.sort-checkbox.disabled {
    pointer-events: none;
    opacity: .45
}

.collapse.two-column .sort-checkbox {
    width: 50%;
    float: left
}

.collapse.two-column .sort-checkbox:nth-child(odd) {
    clear: both
}

.sort-group label {
    font-family: Roboto-Medium;
    display: block;
    margin-bottom: 0;
    cursor: pointer;
    padding-bottom: 8px;
    font-size: 16px
}

.collapse-group label img {
    margin-right: 3px;
    width: auto;
    display: inline;
}

.collapse-group.open img {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.collapse-group.open .collapse, .collapse.open {
    max-height: 900px
}

.collapse {
    max-height: 965px;
    overflow: hidden;
    -webkit-transition: all .8s linear;
    transition: all .8s linear
}

.collapse.two-column > .sort-checkbox:nth-child(2), .collapse > .sort-checkbox:first-child {
    border-top: 10px solid transparent
}

.collapse-group .collapse {
    max-height: 0
}

.sidebar-sort a, .sidebar-sort a:focus, .sidebar-sort a:hover {
    text-decoration: none;
    color: #212121;
    padding-left: 18px;
    font-family: sans-serif;
}

.mt-5{
    margin-top: 5px;
}
.d-flex{
    display: flex;
}

.justify-between{
    justify-content: space-between;
}

.btn-fillter{
    padding: 10px;

}

.sort-group{
    margin-right: 15px;
}


.left-column {
    width: 260px;
    margin-right: 20px;
    min-width: 230px;
}

/*.right-column {*/
/*    width: calc(100% - 290px);*/
/*}*/

.right-column .card{
    width: 22%;
    min-width: 270px;
    margin-right: 10px;
    max-width: max-content;
}

.sort-group label::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent #2072b5;
    line-height: 0;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    content: "";
    margin-right: 10px;
    display: inline-block;
}

.sort-group label::after {
    margin-right: 7px;
    border-width: 8px  6px  0 6px;
    border-color:  var(--accent-color) transparent transparent transparent;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sort-group.open label::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.row:after {
    content: "";
    display: block;
    clear: both;
}
.sidebar-sort {
    background: #f1eaf1;
    margin: 10px 0;
    padding: 15px 20px;
    font-weight: 500;
    font-family: roboto;
}

.sidebar-title {
    font-family: Roboto-Medium;
    font-size: 18px;
}

.sort-group {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.sort-group label {
    font-family: Roboto-Medium;
    display: block;
    margin-bottom: 0;
    cursor: pointer;
    padding-bottom: 8px;
    font-size: 16px;
}

.price {
    font-weight: 400;
}

.price-input {
    float: left;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.price input[type=number] {
    width: 45px;
    padding: 0 5px;
    margin: 0 4px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #ccc;
    -moz-appearance: textfield;
}
.middle-range {
    text-align: center;
    font-size: 13px;
    margin: 0 0 5px;
    clear: both;
    position: relative;
}

.middle-range:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 105%;
    left: 50%;
    background: #ccc;
}


#price-range {
    clear: both;
    cursor: pointer;
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
}
.ui-widget.ui-widget-content {
    background: #ffdc08;
    border: 0;
}

/*** Reviews ***/
.star-rating {
    background: url("../img/star_off.svg") !important
}

.star-rating .star-value {
    background: url("../img/star.svg") !important
}


/*** Reviews ***/
.reviews-title {
    /*color: #2072b5;*/
    font-weight: 500
}

.reviews-header{
    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: 10px 0;
}

.reviews-description {
    margin: 27px 0
}

.review-rater {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.reviews-count {
    font-family: Roboto, "sans-serif";
    font-size: 14px;
    margin-left: 10px;
    /*color: #2072b5*/
}

.reviews-more {
    text-align: center
}

.review-message {
    padding: 10px;
    /*color: #861c61;*/
    margin-top: 15px;
    font-size: 14px;
    background-color: #f3e8ef
}

.review-message.hide {
    display: none
}

.review-create {
    border: 1px solid #dedede;
    -webkit-box-shadow: 0 1px 3px rgba(4, 6, 7, .1);
    box-shadow: 0 1px 3px rgba(4, 6, 7, .1);
    padding: 20px 15px;
    margin: 27px 0 20px
}

.review-create .form-group {
    margin-bottom: 10px
}

.review-create input {
    margin-top: 5px
}

.review-create label {
    font-size: 14px;
    font-family: roboto, sans-serif
}

.review-create-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.review-create-rating label {
    margin-right: 5px
}

.review-create .g-recaptcha {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0
}

.review, .review-create .g-recaptcha {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.review {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    border: 1px solid #dedede;
    -webkit-box-shadow: 0 1px 3px rgba(4, 6, 7, .1);
    box-shadow: 0 1px 3px rgba(4, 6, 7, .1);
    padding: 20px 15px;
    margin-bottom: 15px
}

.review-items-inverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.review-heading {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px
}

.review-heading, .review-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.review-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 20px
}

.review-product-title {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    /*color: #861c61*/
}

.review-product-img, .review-product-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.review-product-img {
    padding: 0 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.review-product-img img {
    max-width: 200px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover
}

.review-product-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #f4f4f4;
    padding: 10px;
    margin-top: 5px;
    font-family: roboto, sans-serif
}

.review-product-info, .review-product-prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.review-product-prices {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 14px;
    line-height: 18px
}

.review-product-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.review-product-price-old {
    color: #ed1c24;
    position: relative
}

.review-product-price-old:before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 10px);
    top: 10px;
    left: -4px;
    height: 1px;
    background-color: #ed1c24
}

.review-product-price-value {
    font-weight: 700
}

.review-product-quantity-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.review-product-quantity {
    width: 41px;
    line-height: 24px;
    border: 1px solid #848484;
    border-radius: 4px;
    background-color: #fff;
    font-size: 18px;
    text-align: center;
    color: #212121;
    outline: none
}

.review-product-buttons {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    margin-top: 10px
}

.review-body, .review-product-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.review-body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0
}

.review-item {
    font-size: 12px;
    margin-bottom: 15px
}

.review-item, .review-user {
    font-family: Roboto, "sans-serif"
}

.review-user {
    font-weight: 700;
    font-size: 14px
}

.review-city {
    color: #b2bec3
}

.review-label {
    font-weight: 700;
    margin-bottom: 5px;
    font-family: Roboto, "sans-serif";
    font-size: 12px
}

.review-like {
    /*color: #861c61;*/
    text-decoration: underline;
    cursor: pointer
}
.review-like:hover, .review-response:hover{
    color: black;
}

.review-response {
    /*color: #861c61;*/
    font-size: 12px
}

.review-helpful {
    position: absolute;
    right: 15px;
    top: 20px;
    font-family: Roboto, "sans-serif";
    font-size: 14px;
    color: #6f6f6f;
    text-align: right
}

.pagination-wrap .pagination {
    margin: 20px 0 10px
}

.ml-0{
    margin-left: 0 !important;
}

.row{
    clear: both;
}
.row:after {
    content: "";
    display: block;
    clear: both;
}

header{
    margin-bottom: 10px;
}

.mt-4{
    margin-top: 15px;
}
.button{
    padding: 0 15px;
}


.review-create input.form-control, textarea.form-control {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    background-color: #f6f6f6;
    color: #212121;
    outline: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.m-auto{
    margin: auto;
}
.product-description .content p {
    margin-top: 18px;
}

.text-content p {
    margin-top: 1em;
    margin-bottom: 1em;
}

.product-description .content {
    font-size: 13px;
    line-height: 18px;
    font-family: "roboto", sans-serif;
    margin-top: 0;
    margin-left: 2px;
}
.row-flex {
    display: flex;
}
button[disabled]{
    background: lightgrey;
    cursor: unset;
}
@media (max-width: 1155px) {
    .right-column .card{
        min-width: 320px;
        margin-right: auto;
    }
}

@media (max-width: 910px) {
    .right-column .card{
        min-width: 280px;
        width: 30%;
        margin-right: auto;
    }
}
@media (max-width: 590px) {
    .right-column .card{
        min-width: 350px;
        margin: 15px auto;
    }

    .row-flex {
        display: block;
    }
}
