html {
  font-size: 14px;
  height: 100%;
}

body {
  background: #F2F2F2;
  font-family: "Open Sans", sans-serif;
  color: #1A1A1A;
  font-size: 1rem;
  line-height: 1.357;
  padding: 0;
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

h1, h2 {
  font-size: 1.4286rem;
  line-height: 1.35;
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  h1, h2 {
    text-align: center;
  }
}

h3 {
  font-size: 1.15rem;
  line-height: 1.37;
  margin: 0 0 10px;
}

h4 {
  font-size: 1rem;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: #2A9FD2;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input, textarea, button {
  font-family: "Open Sans", sans-serif;
}

.l-content {
  max-width: 1164px;
  padding: 0 15px;
  margin: 0 auto;
}

.u-flex-right {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .u-flex-right .c-button {
    width: 100%;
  }
}

.c-button {
  background: #2A9FD2;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.19;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  margin: 0;
  border: 0;
  outline: 0;
  padding: 0.65em 1em;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
}
.c-button:hover {
  text-decoration: none;
}
.c-button.block {
  display: block;
  width: 100%;
}
.c-button.secondary {
  background: #fff;
  color: #636363;
  padding: 0.56em 1em;
  border: 2px solid #E9EDEE;
}
.c-button.contact {
  font-size: 1rem;
  line-height: 1.357;
  padding: 0.65em 1em;
  display: inline-flex;
  align-items: center;
}
.c-button.contact:before {
  content: "";
  display: block;
  background: url("../img/button-contact.svg") no-repeat;
  width: 15px;
  height: 15px;
  margin-right: 1em;
}
.c-button.file {
  padding: 1.09em 1em;
}
.c-button.file:before {
  content: "";
  display: inline-block;
  background: url("../img/button-download.svg") no-repeat;
  width: 23px;
  height: 21px;
  vertical-align: bottom;
  margin-right: 1em;
}
.c-button.file.small {
  padding: 0.5em 0.5em;
}

.c-checkbox {
  width: 20px;
  height: 20px;
  position: relative;
  border-radius: 3px;
  border: 2px solid #9E9E9E;
  box-sizing: border-box;
}
.c-checkbox input {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.c-checkbox input:checked + i {
  display: block;
}
.c-checkbox i {
  background: #69E782 url("../img/tick.svg") no-repeat center center;
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 3px;
  pointer-events: none;
  display: none;
}

.c-code-field {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .c-code-field {
    background: #FAFAFA;
    border: 2px solid #E9EDEE;
    border-radius: 3px;
    display: flex;
    align-items: center;
  }
}
.c-code-field input {
  background: transparent;
  font-size: 1.15rem;
  line-height: 1.19;
  font-weight: 700;
  padding: 18px 20px;
  border: 0;
  outline: 0;
  flex: 1 1 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-code-field input {
    background: #FAFAFA;
    font-size: 13px;
    width: 100%;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 3px;
    border: 2px solid #E9EDEE;
  }
}
.c-code-field .c-button {
  font-size: 1.15rem;
  line-height: 1.19;
  padding: 0.53em 0.9em;
  margin: 10px 10px 10px 0;
}
@media screen and (max-width: 767px) {
  .c-code-field .c-button {
    display: block;
    margin: 0;
    width: 100%;
  }
}

.c-form-field {
  margin-bottom: 10px;
}
.c-form-field:last-child {
  margin-bottom: 0;
}
.c-form-field__label {
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  margin-top: 15px;
}
.c-form-field input, .c-form-field textarea {
  width: 100%;
  font-size: 1rem;
  padding: 18px 20px;
  border-radius: 3px;
  border: 2px solid #E9EDED;
  box-shadow: inset 0 0 6px 0 #DADADA;
  box-sizing: border-box;
  margin: 0;
  outline: 0;
  display: block;
}
.c-form-field textarea {
  height: 160px;
  padding: 20px;
  resize: none;
}
.c-form-field__error {
  color: #EC3F3F;
  font-weight: 700;
  text-align: right;
  margin-top: 5px;
}
.c-form-field.checkbox {
  display: flex;
  align-items: flex-start;
}
.c-form-field.checkbox .c-checkbox {
  flex: 0 0 auto;
  margin-right: 10px;
}
.c-form-field.checkbox label {
  font-size: 0.86rem;
  line-height: 1.42;
  margin: 2px 0 0;
}
.c-form-field.error input, .c-form-field.error textarea {
  border-color: #EC3F3F;
}
.c-form-field.error .c-form-field__error {
  display: block;
}

.c-lang-picker {
  border: 2px solid #E9EDEE;
  border-radius: 3px;
  position: relative;
  width: 130px;
  cursor: pointer;
}
.c-lang-picker:hover .c-lang-picker__list {
  display: block;
}
.c-lang-picker__current {
  display: flex;
  align-items: center;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .c-lang-picker__current {
    padding: 5px;
  }
}
.c-lang-picker img {
  margin-right: 10px;
}
.c-lang-picker span {
  font-weight: 700;
}
.c-lang-picker__list {
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 2px solid #E9EDEE;
  border-radius: 0 0 3px 3px;
  border-top: 0;
  position: absolute;
  top: 100%;
  left: -2px;
  right: -2px;
  box-sizing: border-box;
  overflow: hidden;
  display: none;
}
.c-lang-picker__list li {
  display: flex;
  align-items: center;
  padding: 10px;
}
.c-lang-picker__list li a {
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.c-upload-field {
  position: relative;
  overflow: hidden;
}
.c-upload-field__file {
  width: 250%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.c-message {
  border: 2px solid #E9EDED;
  border-radius: 3px;
  margin-bottom: 15px;
  padding: 15px 20px;
}
.c-message__head {
  font-size: 0.86rem;
  line-height: 1.42;
  margin-bottom: 15px;
}
.c-message__content {
  margin-bottom: 10px;
}
.c-message__attachments {
  color: #2A9FD2;
  font-size: 0.86rem;
  line-height: 1.42;
  margin-bottom: 15px;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.l-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  font-size: 0.86rem;
  line-height: 1.42;
}
@media screen and (max-width: 767px) {
  .l-breadcrumbs {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.l-breadcrumbs li:after {
  content: "/";
  margin: 0 5px;
}
.l-breadcrumbs li:last-child:after {
  content: none;
}

.l-complaints {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  counter-reset: complaints;
}
.l-complaints li {
  counter-increment: complaints;
  margin-bottom: 15px;
}
.l-complaints li:last-child {
  margin-bottom: 0;
}
.l-complaints__head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.l-complaints__head:before {
  content: counter(complaints) ".";
  font-weight: 700;
  margin-right: 5px;
}
.l-complaints__head a {
  font-size: 0.86rem;
  line-height: 1.42;
  margin-left: 15px;
}

.l-footer {
  background: #fff;
  color: #636363;
  box-shadow: 0 0 6px 0 rgba(189, 189, 189, 0.5);
  flex: 0 0 auto;
}
.l-footer .l-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media screen and (max-width: 767px) {
  .l-footer .l-content {
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer .l-content {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .l-footer .l-content {
    height: auto;
    padding: 20px 15px;
  }
}
.l-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__nav {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer__nav {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav li {
    margin-bottom: 5px;
  }
  .l-footer__nav li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__nav li {
    margin-right: 32px;
  }
  .l-footer__nav li:last-child {
    margin-right: 0;
  }
}
.l-footer__nav a {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    width: 140px;
    text-align: right;
  }
}
@media screen and (max-width: 1024px) {
  .l-footer__copyright {
    font-size: 0.86rem;
    line-height: 1.42;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer__copyright {
    order: 1;
  }
}

.l-header {
  background: #fff;
  box-shadow: 0 0 6px 0 rgba(189, 189, 189, 0.5);
  flex: 0 0 auto;
}
.l-header .l-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
@media screen and (max-width: 767px) {
  .l-header .l-content {
    height: 48px;
  }
  .l-header .l-content img {
    max-height: 100%;
  }
}

.l-main {
  flex: 1 1 auto;
  padding: 32px 0;
}
.l-main .l-content {
  max-width: 928px;
}
@media screen and (max-width: 767px) {
  .l-main .l-content {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .l-main__head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .l-main__products-heading {
    text-align: center;
  }
}
.l-main__box {
  background: #fff;
  padding: 2.8rem;
  border-radius: 3px;
  margin-bottom: 16px;
  box-shadow: 0 0 4px 0 rgba(218, 218, 218, 0.5);
}
@media screen and (max-width: 767px) {
  .l-main__box {
    padding: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-main__box {
    padding: 2.8rem 5.72rem;
  }
}
.l-main__box:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .l-main__box.sidebar {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .l-main__box.info h3 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-main__box.info p {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .l-main__content {
    flex: 1 1 auto;
    padding-right: 2.8rem;
  }
}
.l-main__complaint {
  color: #9E9E9E;
}
@media screen and (max-width: 1024px) {
  .l-main__complaint {
    display: block;
    text-align: center;
  }
}

.l-sidebar {
  flex: 0 0 260px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .l-sidebar {
    border-top: 2px solid #E9EDEE;
    padding-top: 2.4rem;
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .l-sidebar {
    border-left: 2px solid #E9EDEE;
    padding-left: 2.4em;
  }
}
.l-sidebar h3 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .l-sidebar h3 {
    font-size: 1.4286rem;
    line-height: 1.35;
    text-align: center;
  }
}
.l-sidebar__info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-sidebar__info li {
  word-break: break-all;
  margin-bottom: 20px;
}
.l-sidebar__complaint-solved {
  padding: 15px;
  border-radius: 3px;
  border: 2px solid #2A9FD2;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .l-sidebar__complaint-solved span {
    display: block;
  }
}
.l-sidebar__complaint-success {
  padding: 15px;
  border-radius: 3px;
  border: 2px solid #69E782;
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .l-sidebar__complaint-success span {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-sidebar .c-button.contact {
    width: 100%;
    justify-content: center;
  }
}

.l-status {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-status {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .l-status {
    display: flex;
    align-items: center;
  }
}
.l-status:before {
  content: "";
  display: block;
  background: #fff url("../img/status.png") no-repeat center center;
  width: 123px;
  height: 123px;
  border: 3px solid #69E782;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-right: 24px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-status:before {
    background-size: 34px 24px;
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
  }
}
.l-status:after {
  content: "";
  display: block;
  background: #69E782;
  width: 2.8rem;
  height: 3px;
  position: absolute;
  left: -2.8rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-status:after {
    width: 50%;
    left: -15px;
    top: 45px;
    bottom: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-status:after {
    width: 5.8rem;
    left: -5.8rem;
  }
}
@media screen and (min-width: 768px) {
  .l-status p {
    max-width: 370px;
  }
}

.l-form__attachments {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-form__attachments {
    margin-bottom: 15px;
  }
}
.l-form__attachments strong, .l-form__attachments li {
  margin-bottom: 4px;
}
.l-form__attachments strong {
  display: block;
}
.l-form__attachments button {
  background: url("../img/remove-button.svg") no-repeat;
  width: 15px;
  height: 15px;
  padding: 0;
  margin: 0 0 0 5px;
  border: 0;
  outline: 0;
  cursor: pointer;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .l-form__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .l-form__buttons {
    flex: 0 0 100%;
  }
}
@media screen and (min-width: 768px) {
  .l-form__buttons {
    display: flex;
    align-items: center;
  }
  .l-form__buttons .c-upload-field {
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-form__buttons .c-button, .l-form__buttons .c-upload-field {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
}
.l-form .payment-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.l-form .payment-container .payment-btn-container {
  flex: 0 calc(50% - 10px);
  margin: 5px;
}
.l-form .payment-container .payment-btn-container input {
  opacity: 0;
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
}
.l-form .payment-container .payment-btn-container input:hover ~ .checkmark {
  border: 2px solid #2A9FD2;
}
.l-form .payment-container .payment-btn-container input:checked ~ .checkmark {
  border: 2px solid #2A9FD2;
  background-color: rgba(42, 159, 210, 0.1);
}
@media screen and (max-width: 767px) {
  .l-form .payment-container .payment-btn-container {
    flex: 0 100%;
    width: 100%;
  }
}
.l-form .payment-container .checkmark {
  position: relative;
  align-items: center;
  height: 100px;
  width: 100%;
  border: 2px solid #E9EDEE;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.l-form .payment-container .checkmark span {
  font-size: 14px;
  font-weight: normal;
  padding-bottom: 8px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-form .payment-container .checkmark span {
    font-size: 12px;
  }
}
.l-form .payment-container .checkmark img {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
}

.l-alert {
  padding: 15px;
  border: 2px solid;
  border-radius: 3px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.l-alert.success {
  border-color: #69E782;
}
.l-alert.success:before {
  content: "";
  display: block;
  background: url("../img/success.svg") no-repeat;
  width: 30px;
  height: 30px;
  margin: 0 24px 0 4px;
  flex: 0 0 auto;
}
.l-alert.warning {
  border-color: #E8900C;
}
.l-alert.warning:before {
  content: "";
  display: block;
  background: url("../img/info.svg") no-repeat;
  width: 30px;
  height: 30px;
  margin: 0 24px 0 4px;
  flex: 0 0 auto;
}

.l-purchase {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-purchase {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .l-purchase {
    display: flex;
    align-items: center;
  }
}
.l-purchase img {
  height: 143px;
  width: 143px;
}
.l-purchase__bitmap {
  height: 143px;
  width: 143px;
  background-color: #2A9FD2;
}
.l-purchase__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding-left: 25px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-purchase__content {
    position: inherit;
    padding-left: 0;
    width: 100%;
  }
  .l-purchase__content h3 {
    text-align: center;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-purchase__rating-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  .l-purchase__rating-container {
    justify-content: space-between;
  }
}
.l-purchase__rating {
  position: absolute;
  top: 20%;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .l-purchase__rating {
    position: inherit;
    margin-left: 90px;
  }
}
@media screen and (max-width: 400px) {
  .l-purchase__rating {
    margin-left: 0;
  }
}
.l-purchase__rating .counter-rating {
  font-size: 0.86rem;
  font-weight: normal;
}
.l-purchase__price span {
  font-size: 1.3rem;
  font-weight: 600;
}
.l-purchase__quantity {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.l-purchase__quantity .counter-quantity {
  font-size: 1.15rem;
}
.l-purchase__quantity button {
  cursor: pointer;
  margin: 0 10px;
  font-size: 0.9rem;
  height: 28.8px;
  width: 31.68px;
  border: none;
  border-radius: 2.16px;
  background-color: #E9EDEE;
  color: #A9ABAC;
}
.l-purchase__quantity button:hover {
  background-color: #2A9FD2;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .l-purchase p {
    max-width: 370px;
  }
}

/*# sourceMappingURL=../css/style.css.map */
