@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700';
@import 'https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet';

@font-face {
  font-family: 'OpenSans';
  src: url("../fonts/OpenSansRegular.eot") format("eot"), url("../fonts/OpenSansRegular.ttf") format("truetype"), url("../fonts/OpenSansRegular.woff") format("woff");
}

@font-face {
  font-family: 'OpenSansLight';
  src: url("../fonts/OpenSansLight.eot") format("eot"), url("../fonts/OpenSansLight.ttf") format("truetype"), url("../fonts/OpenSansLight.woff") format("woff");
}

@font-face {
  font-family: 'OpenSansBold';
  src: url("../fonts/OpenSansBold.eot") format("eot"), url("../fonts/OpenSansBold.ttf") format("truetype"), url("../fonts/OpenSansBold.woff") format("woff");
}

@font-face {
  font-family: 'OpenSansSemiBold';
  src: url("../fonts/OpenSansSemiBold.eot") format("eot"), url("../fonts/OpenSansSemiBold.ttf") format("truetype"), url("../fonts/OpenSansSemiBold.woff") format("woff");
}

@font-face {
  font-family: 'OpenSansExtraBold';
  src: url("../fonts/OpenSansExtraBold.eot") format("eot"), url("../fonts/OpenSansExtraBold.ttf") format("truetype"), url("../fonts/OpenSansExtraBold.woff") format("woff");
}

/*** RESET STYLES ***/
html,
body,
div,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
div,
input,
textarea,
select,
button {
  display: block;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

[role="button"],
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* Reset `button` and button-style `input` default styles */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  background: none;
  border: 0;
  color: inherit;
  /* cursor: default; */
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button;
  /* for input */
  -webkit-user-select: none;
  /* for button */
  -moz-user-select: none;
  -ms-user-select: none;
}

button,
input[type="submit"] {
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
}

/*** END RESET STYLES ***
/* GENERAL */
a {
  text-decoration: none;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  font: 12px/1.2 "Open Sans", Arial, sans-serif;
  background: #dce1e7;
  color: #444351;
  min-width: 320px;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
}

.wrapper {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.container {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 10px;
}

@media only screen and (max-width: 640px) {
  .container {
    padding: 0 5px;
  }
}

@media only screen and (max-width: 340px) {
  .container {
    padding: 0 2px;
  }
}

.svg-icon {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

.icon_holder {
  display: inline-block;
  vertical-align: middle;
}

/* end GENERAL */
/* Buttons etc */
.btn,
input[type="submit"] {
  display: inline-block;
  vertical-align: top;
  padding: 10px 15px;
  border-radius: 20px;
  background-color: #00acf3;
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  outline: none;
}

.btn:hover,
input[type="submit"]:hover {
  opacity: 0.9;
}

.btn_border {
  color: #464553;
  background-color: #f7f7f7;
}

.btn_orange {
  background-color: #fe9500;
}

.btn_red {
  background-color: #fc5b4a;
}

.show-all {
  color: #00acf3;
  font-size: 11px;
  font-weight: 400;
  text-decoration: underline;
  text-transform: uppercase;
}

.show-all .hide-text {
  display: none;
}

.show-all:hover {
  text-decoration: none;
}

/* EOF Buttons etc */
/* HEADER */
.header-top {
  padding: 7px 0;
  background-color: #464553;
}

.header-top .container {
  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;
}

/* @media only screen and (max-width: 500px) { .header-top .container { -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } } */

.header-top__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body:not(.en) .header-top__block{
  font-size:11px;
}

.header-top__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0 10px;
}

.header-top__box:first-child {
  padding-left: 0;
}

.header-top__box:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #6f7281;
}

@media only screen and (max-width: 940px) {
  .header-top__box:after {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .header-top__box {
    padding: 0 10px;
  }
}

.header-top__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.header-top__tel_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 550px) {
  .header-top__tel_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.header-top__tel_ico {
  margin-right: 10px;
  color: #fff;
}

.header-top__tel_ico .svg-icon {
  font-size: 20px;
}

@media only screen and (max-width: 500px) {
  .header-top__tel_ico {
    margin-right: 4px;
  }
}

@media only screen and (max-width: 360px) {
  .header-top__tel_ico {
    display: none;
  }
}

.header-top__tel_box {
  margin-right: 20px;
  color: #fff;
}

.header-top__tel_box:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 940px) {
  .header-top__tel_box {
    margin-right: 4px;
  }
}

@media only screen and (max-width: 430px) {
  .header-top__tel_box {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 340px) {
  .header-top__tel_box {
    margin-right: 0;
  }
}

.header-top__tel_bold {
  font-family: "OpenSansBold";
}

.header-top__chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.header-top__chat_ico {
  margin-right: 10px;
  color: #fff;
}

.header-top__chat_ico .svg-icon {
  font-size: 20px;
}

.header-top__chat_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.header-top__chat_text-bold {
  margin-right: 5px;
  font-family: "OpenSansBold";
}

.header-top__chat:hover .header-top__chat_text {
  border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 1024px) {
  .header-top .header-top__tel_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 900px) {
  .header-top__chat_ico,
  .header-top__tel_ico {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .header-top__chat {
    display: none;
  }
}

.header-top__banner {
  max-width:160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  margin: 0 5px;
  padding: 4px 2px;
  background-color: #fff;
}

.header-top__banner_bold {
  font-family: "OpenSansBold";
}

@media only screen and (max-width: 1200px) {
  .header-top__banner {
    margin: 0;
  }
}

@media only screen and (max-width: 1070px) {
  .header-top__banner {
    display: none;
  }
}

.header-top__selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 5px;
  max-width: 80px;
}

.header-top__selection_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
  border-radius: 7px;
  background-color: #555464;
  color: #fff;
  text-transform: capitalize;
  position: relative;
}

.header-top__selection_box-currency {
  text-transform: uppercase;
}

.header-top__selection_box_ico {
  margin-left: 7px;
}

/* .header-top__selection_box:hover { background-color: #fff; color: #000; } */

.header-top__selection_box:last-child {
  margin-right: 0;
}

.header-top__selection_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 14px;
}

@media only screen and (max-width: 768px) {
  .header-top__selection {
    padding: 2px;
  }
}

.header-top__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-top__payments_box {
  margin-right: 10px;
}

.header-top__payments_box:last-child {
  margin-right: 0;
}

.header-top__payments_ico {
  width: 34px;
  height: 11px;
}

.header-top__payments_visa {
  background: url(../img/header-visa.png) no-repeat;
}

.header-top__payments_mastercard {
  background: url(../img/header-mastercard.png) no-repeat;
  width: 64px;
  height: 9px;
}

/* .header-top__payments_bitcoin { background: url(../img/header-bitcoin.png) no-repeat; width: 51px; height: 12px; } */

.header-top__payments_bitcoin {
  background: url(../img/header-amex.png) no-repeat;
  width: 38px;
  height: 9px;
}

@media only screen and (max-width: 1170px) {
  .header-top__payments {
    display: none;
  }
}

@media only screen and (max-width: 940px) {
  .header-top__controls {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (max-width: 430px) {
  .header-top {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header-main {
  padding: 20px 0;
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  border-top: 1px solid #e4e8ed;
  border-bottom: 1px solid #e4e8ed;
  background-color: #fff;
}

.header-main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.header-main .logo {
  display: none;
}

@media only screen and (max-width: 940px) {
  .header-main .logo {
    display: block;
  }
}

@media only screen and (max-width: 940px) {
  .header-main .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 0;
    top: 150px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform: translateX(calc(-100% - 20px));
    transform: translateX(calc(-100% - 20px));
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 320px;
    overflow-y: auto;
    background-color: #fff;
    color: #000;
    border-top: none;
    border-radius: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.35);
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.35);
    padding: 15px;
    z-index: 100;
  }
}

.header-menu {
  background-color: #060001;
  position: relative;
}

.header-menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .header-menu {
    padding: 10px 5px;
  }
}

.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.main-menu__link a {
  display: block;
  padding: 20px 18px;
  color: #000;
  font-family: "OpenSansSemiBold";
  position: relative;
  text-transform: lowercase;
}

.main-menu__link_uppercase a {
  text-transform: uppercase;
}

.main-menu__link a:first-letter { text-transform: uppercase; }

.main-menu__link a:hover,
.main-menu__link.active a {
  color: #00acf3;
}

.main-menu__link:last-child a {
  margin-right: 0;
}

.main-menu__link:last-child a:after {
  display: none;
}

.main-menu__link a:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 30px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #dfdfe1;
}

@media only screen and (max-width: 940px) {
  .main-menu__link a:after {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .main-menu__link a {
    padding: 14px;
  }
}

.header-bottom {
  background-color: #f7f7f9;
  background-color: #464956;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dce1e7));
  background-image: linear-gradient(180deg, #fff 0%, #dce1e7 100%);
}

.header-bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #e5e8eb;
}

@media only screen and (max-width: 940px) {
  .header-bottom {
    padding: 20px 0;
  }

  .header-bottom .logo {
    display: none;
  }
}

.block_search .input_search {
  width: 100%;
  border: 1px solid #d3d3d3;
  height: 40px;
  padding: 0 70px 0 15px;
  border-radius: 2px;
}

.logo-mob {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 940px) {
  .logo-mob {
    display: block;
  }
}

.mini-drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #f2f2f2;
  padding: 7px 15px;
  z-index: 200;
  display: none;
}

.mini-drop__link {
  display: block;
  padding: 10px 0;
  color: #000;
}

.mini-drop__link:hover {
  color: #00acf3;
}

.open .header-dropmenu {
  display: block;
}

.open .mini-drop {
  display: block;
}

.open .header-top__selection_wrap {
  background-color: #f2f2f2;
  color: #000;
  border-radius: 7px 7px 0 0;
}

.header-search {
  width: 30%;
  height: 100%;
  position: relative;
}

.header-search form {
  position: relative;
}

.header-search .input_search,
.header-search .input-text {
  width: 100%;
  height: 46px;
  outline: none;
  padding: 0 47px 0 30px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #dfdfe1;
  background-color: #fff;
}

@media only screen and (max-width: 940px) {

  .header-search .input_search,
  .header-search .input-text {
    padding: 0 43px 0 10px;
  }
}

.header-search__btn {
  position: absolute;
  width: 50px;
  height: 100%;
  border-radius: 0 15px 15px 0;
  top: 0;
  right: 0;
  bottom: 0;
  outline: none;
  color: #060001;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.header-search__btn .svg-icon {
  font-size: 16px;
  margin-left: 10px;
}

.header-search__btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 21px;
  background-color: #dbd8d8;
}

.header-search__btn:hover {
  color: #00acf3;
}

@media only screen and (max-width: 940px) {
  .header-search__btn {
    width: 40px;
  }
}

.header-search_mob {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.header-search_mob .input_search {
  width: 100%;
  height: 30px;
  outline: none;
  padding: 0 13% 0 5px;
  overflow: hidden;
  border: 2px solid #f3f3f3;
  background-color: #fff;
}

@media only screen and (max-width: 768px) {
  .header-search_mob {
    display: block;
  }
}

@media only screen and (max-width: 1200px) {
  .header-search {
    width: 38%;
  }
}

@media only screen and (max-width: 940px) {
  .header-search {
    width: 100%;
  }
}

.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-radius: 15px;
  background-color: #fff;
}

.cart__full .cart__quantity,
.cart__full .cart__info {
  display: block;
}

.cart__info {
  color: #060001;
  display: none;
}

.cart__info_top {
  margin-bottom: 3px;
}

.cart__info_middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5px;
}

.cart__info_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 940px) {
  .cart__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    top: 139px;
    -webkit-transform: translateX(calc(100% + 20px));
    transform: translateX(calc(100% + 20px));
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 200px;
    overflow-y: auto;
    background-color: #fff;
    color: #000;
    border-top: none;
    border-radius: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    -webkit-box-shadow: -2px 5px 7px rgba(0, 0, 0, 0.35);
    box-shadow: -2px 5px 7px rgba(0, 0, 0, 0.35);
    z-index: 100;
  }
}

.cart__items {
  color: #444351;
  margin-right: 12px;
}

.cart__title {
  color: #959595;
  text-align: center;
}

.cart__price_title {
  margin-right: 5px;
}

.cart__price_sum {
  font-family: "OpenSansBold";
  font-size: 18px;
}

.cart__price_value {
  margin-left: -3px;
}

.cart__ico {
  color: #fff;
  margin-right: 10px;
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #00acf3;
  border-radius: 50%;
}

.cart__ico_mob {
  display: none;
}

.cart__ico-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart__ico-holder_cart {
  margin: 0 1px 0 15px;
}

.cart__ico-holder_cart .svg-icon {
  font-size: 25px;
}

@media only screen and (max-width: 940px) {
  .cart__ico-holder_cart .svg-icon {
    font-size: 35px;
    color: #00acf3;
  }
}

.cart__ico-holder_arrow .svg-icon {
  font-size: 15px;
}

@media only screen and (max-width: 940px) {
  .cart__ico-holder_arrow {
    display: none;
  }
}

@media only screen and (max-width: 940px) {
  .cart__ico {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    margin-right: 0;
  }

  .cart__ico_mob {
    display: block;
  }
}

.cart__quantity {
  position: absolute;
  top: -7px;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #fc5b4a;
  border-radius: 50%;
  font-size: 11px;
  color: #fff;
}

.cart__quantity_value {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 11px;
  line-height: 21px;
  color: #fff;
}

@media only screen and (max-width: 940px) {
  .cart__quantity {
    top: -6px;
    right: -5px;
    width: 18px;
    height: 18px;
  }
}

.cart__checkout .btn {
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  background-color: transparent;
  font-size: 11px;
  color: #818181;
  border: 1px solid #b0b0b0;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}

.cart__checkout .btn:hover {
  color: #fff;
  background-color: #00acf3;
  border-color: transparent;
}

.cart__checkout .btn-mob {
  display: none;
  margin-right: 2px;
}

@media only screen and (max-width: 940px) {
  .cart__checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
  }

  .cart__checkout .btn {
    padding: 5px;
  }

  .cart__checkout .btn-mob {
    display: block;
  }
}

.expand .main-menu,
.expand-cart .cart__info {
  z-index: 99;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

input[type="radio"]:checked+label .custom-radio__text {
  background-color: #e9e9e9;
}

.custom-radio {
  cursor: pointer;
}

.custom-radio__text {
  color: #7c7c7c;
  font-size: 17px;
  text-transform: uppercase;
  padding: 10px 5px 10px 15px;
}

.custom-radio__text_top {
  font-size: 17px;
  font-weight: 600;
}

@media only screen and (max-width: 430px) {
  .custom-radio__text_top {
    font-size: 13px;
  }
}

.custom-radio__text_bottom {
  font-size: 9px;
}

.wrapper.open-dropmenu .search {
  opacity: 1;
  visibility: visible;
}

.burger-menu {
  position: relative;
  width: 35px;
  height: 30px;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  display: none;
}

.burger-menu span {
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 3px;
  margin-top: -2px;
  background: #00acf3;
}

.burger-menu span::before,
.burger-menu span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00acf3;
  content: '';
}

.burger-menu span::before {
  top: -8px;
}

.burger-menu span::after {
  bottom: -8px;
}

.burger-menu span,
.burger-menu span::before,
.burger-menu span::after {
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.burger-menu span::before {
  -webkit-transition-property: top, -webkit-transform, background;
  -webkit-transition-property: top, background, -webkit-transform;
  transition-property: top, background, -webkit-transform;
  transition-property: top, transform, background;
  transition-property: top, transform, background, -webkit-transform;
}

.burger-menu span::after {
  -webkit-transition-property: bottom, -webkit-transform, background;
  -webkit-transition-property: bottom, background, -webkit-transform;
  transition-property: bottom, background, -webkit-transform;
  transition-property: bottom, transform, background;
  transition-property: bottom, transform, background, -webkit-transform;
}

.burger-menu:hover span,
.burger-menu:hover span::before,
.burger-menu:hover span::after,
.burger-menu.active span::before,
.burger-menu.active span::after {
  background: #00acf3;
}

.burger-menu.active span {
  background: none;
}

.burger-menu.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger-menu.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (max-width: 940px) {
  .burger-menu {
    display: block;
  }
}

.input-text {
  width: 100%;
  height: 62px;
  border: none;
  padding: 0 15px;
  outline: none;
}

.stock {
  position: relative;
  background-color: #fff;
  padding: 15px 0 5px 5px;
}

.stock__holder {
  position: relative;
  z-index: 2;
}

.stock__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}

.stock__img {
  margin-right: 7px;
}

.stock__info {
  text-transform: uppercase;
  color: #585764;
}

.stock__above-title {
  font-size: 9px;
  font-family: "OpenSansSemiBold";
  text-align: right;
}

.stock__title {
  color: #00acf3;
  font-size: 19px;
  line-height: 40px;
  font-family: "OpenSansExtraBold";
}

.stock__subtitle {
  font-size: 13px;
  margin-top: -5px;
}

.stock__banner {
  display: none;
  position: absolute;
  top: -96px;
  left: -45px;
  z-index: 1;
}

.de .stock__banner {
  top: -80px;
}
/*.de .stock__bottom .btn {
  min-width: 280px;
  width: 280px;
}*/

@media only screen and (max-width: 1200px) {
  .stock__banner {
    display: none;
  }
}

.stock__bottom_bold {
  font-family: "OpenSansBold";
}

@media only screen and (max-width: 1200px) {
  .stock {
    background-color: transparent;
  }
}

@media only screen and (max-width: 940px) {
  .stock {
    display: none;
  }
}

.info {
  position: relative;
}

.info__item {
  position: relative;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#aec6db), color-stop(51%, #f9f9f6), to(#bed1e0));
  background: linear-gradient(to right, #aec6db 0%, #f9f9f6 51%, #bed1e0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.info__item:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: url(../img/border.png) repeat-x;
  z-index: 99;
}

.info .container {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 768px) {
  .info .container {
    position: static;
    -webkit-transform: none;
    transform: none;
  }
}

.info__inner-img {
  width: 30%;
  position: relative;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.info__inner-img img {
  max-width: none;
}

.info__inner-img_bage {
  position: absolute;
  top: 77%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1100px) {
  .info__inner-img {
    display: none;
  }
}

.info__title-top {
  color: #fff;
  font-size: 24px;
  font-style: italic;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media only screen and (max-width: 1100px) {
  .info__title-top {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 940px) {
  .info__title-top {
    display: none;
  }
}

.info__title {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1100px) {
  .info__title {
    font-size: 40px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 940px) {
  .info__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 640px) {
  .info__title {
    font-size: 20px;
  }
}

.info__subtitle {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

@media only screen and (max-width: 940px) {
  .info__subtitle {
    display: none;
  }
}

.info__info {
  width: 70%;
  margin: 25px 0 0;
}

.info__info_other {
  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;
}

.info__info_other .main-slider__subtitle {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  margin-bottom: 0;
}

@media only screen and (max-width: 940px) {
  .info__info_other .main-slider__subtitle {
    display: none;
  }
}

@media only screen and (max-width: 1100px) {
  .info__info {
    width: 100%;
  }
}

.info__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.info__top_img {
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .info__top_img {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 430px) {
  .info__top_img {
    margin: 10px 0 0;
  }
}

.info__top_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 430px) {
  .info__top_box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.info__top_title {
  color: #20a8ff;
  font-size: 21px;
}

@media only screen and (max-width: 768px) {
  .info__top_title {
    font-size: 14px;
  }
}

@media only screen and (max-width: 430px) {
  .info__top_title {
    text-align: center;
  }
}

.info__top_subtitle {
  color: #000;
  font-size: 16px;
}

@media only screen and (max-width: 768px) {
  .info__top_subtitle {
    font-size: 14px;
  }
}

@media only screen and (max-width: 430px) {
  .info__top_subtitle {
    text-align: center;
  }
}

.info__middle {
  color: #000;
  font-size: 48px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1100px) {
  .info__middle {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .info__middle {
    font-size: 30px;
  }
}

.info__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.info__bottom_title {
  color: #ffb806;
  margin-right: 10px;
}

.info__bottom_subtitle {
  color: #2eaafd;
  font-size: 14px;
}

.info__bottom span {
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  .info__bottom .btn {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 1100px) {
  .info__bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  .info__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 16px;
  }
}

.info__link {
  color: #000;
}

.info__link_bold {
  font-weight: 700;
}

.info__link:hover .info__link_name {
  text-decoration: underline;
}

.info__products {
  min-height: 290px;
}

.info__products .product-card {
  margin: 0;
  outline: none;
}

.info__products .product-card__category {
  margin-bottom: 0;
}

.info__products a {
  outline: none;
}

.main-slider__title {
  padding: 20px 0;
  color: #403f47;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
}

.main-slider .product-card {
  width: 100%;
  margin: 0;
}

.main-slider .product-card:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.main-slider .product-card:hover .product-card__bottom {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0 0 7px 7px;
  background-color: #fff;
  background-image: none;
  padding: 10px 0;
}

.main-slider .product-card:hover .product-card__btn {
  background-color: #00acf3;
}

.main-slider .product-card:hover .product-card__title,
.main-slider .product-card:hover .product-card__row,
.main-slider .product-card:hover .product-card__text {
  color: inherit;
}

.main-slider .product-card:hover .product-card__category {
  color: #959595;
}

.main-slider .product-card:hover .product-card__descriptions {
  top: 100px;
  opacity: 1;
}

.main-slider .product-card:hover .product-card__photo {
  position: static;
  height: auto;
  -webkit-transform: none;
  transform: none;
}

.main-slider .product-card:hover .product-card__photo img {
  -webkit-transition: none;
  transition: none;
}

.main-slider .product-card:hover .product-card__text {
  border-color: #b0b0b0;
}

.main-slider .product-card .product-card__photo {
  height: auto;
}

.main-slider .product-card a {
  outline: none;
}

.main-slider .product-card__old-price {
  color: #929292;
}

.main-slider__block {
  position: relative;
  padding-bottom: 20px;
  background-color: #fff;
}

/* .main-slider__block:before,
.main-slider__block:after {
  content: '';
  position: absolute;
  top: 0;
  left: -240px;
  width: 246px;
  height: 342px;
}

@media only screen and (max-width: 1200px) {

  .main-slider__block:before,
  .main-slider__block:after {
    display: none;
  }
} */

/* .main-slider__block:before {
  left: inherit;
  right: 99%;
  background: url("../img/main-slider_bg-1.png") no-repeat;
}

.main-slider__block:after {
  width: 250px;
  height: 482px;
  left: 100%;
  background: url("../img/main-slider_bg-2.png") no-repeat;
} */

@media only screen and (max-width: 1100px) {
  .main-slider__block {
    padding-bottom: 45px;
  }
}

.main-slider__item {
  position: relative;
  padding-right: 1px;
}

.main-slider__item:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 310px;
  background-color: #dfdfe1;
}

.main-slider__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-slider__dots li {
  color: transparent;
  outline: none;
  margin-right: 7px;
}

.main-slider__dots li button {
  width: 8px;
  height: 8px;
  outline: none;
  border-radius: 50%;
  background-color: #d0cfcf;
}

.main-slider__dots li:last-child {
  margin-right: 0;
}

.main-slider__dots .slick-active button {
  background-color: #4d9fcf;
}

.main-slider .slick-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: transparent;
  background-color: #fff;
  border-radius: 50%;
  outline: none;
  z-index: 200;
}

.main-slider .slick-arrow:hover {
  background-color: #00acf3;
}

.main-slider .slick-arrow:hover.slick-prev:before,
.main-slider .slick-arrow:hover.slick-next:before {
  border-color: #fff;
}

.main-slider .slick-prev,
.main-slider .slick-next {
  left: -33px;
}

.main-slider .slick-prev:before,
.main-slider .slick-next:before {
  content: '';
  position: absolute;
  border-bottom: 2px solid;
  border-left: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 41%;
  left: 44%;
  width: 6px;
  height: 6px;
  border-color: #00acf3;
  z-index: 200;
}

.main-slider .slick-next {
  left: inherit;
  right: -73px;
}

.main-slider .slick-next:before {
  left: 37%;
  -webkit-transform: rotate(-138deg);
  transform: rotate(-138deg);
}

.main-slider .slick-slide img {
  width: auto;
  max-height: 185px !important;
}

.over-content {
  margin: 10px 0;
  position: relative;
}

.over-content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 50px;
  position: relative;
}

.over-content__text:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background-color: #6f7281;
}

@media only screen and (max-width: 1100px) {
  .over-content__text {
    display: none;
  }
}

.over-content__title {
  color: #959595;
  font-size: 12px;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 1200px) {
  .over-content__title {
    display: none;
  }
}

.over-content__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "OpenSansSemiBold";
  text-transform: uppercase;
  color: #fff;
}

.over-content__name_ico {
  margin-left: 5px;
}

.over-content-holder {
  height: 100%;
  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: 15px 20px 15px 50px;
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  border-radius: 7px;
  background-color: #464956;
}

@media only screen and (max-width: 1100px) {
  .over-content-holder {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0;
  }
}

@media only screen and (max-width: 768px) {
  .over-content-holder {
    padding: 5px 0;
  }
}

.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter__item {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border: 2px solid transparent;
  border-radius: 50%;
  text-transform: uppercase;
  color: #aaafc2;
  font-size: 15px;
  margin-right: 2px;
  text-align: center;
}

.filter__item_all {
  margin-right: 10px;
  text-transform: capitalize;
  width: auto;
  padding: 0 7px;
}

.filter__item:last-child {
  margin-right: 0;
}

.filter__item:hover,
.filter__item_active {
  color: #1b1617;
  border-color: #00acf3;
  background-color: #fff;
}

@media only screen and (max-width: 1100px) {

  .filter__item:hover,
  .filter__item_active {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
  }
}

@media only screen and (max-width: 1100px) {
  .filter__item {
    display: table-cell;
    text-align: center;
    width: auto;
    height: auto;
    border-radius: 0;
  }
}

@media only screen and (max-width: 640px) {
  .filter__item {
    padding: 3px 0;
  }
}

@media only screen and (max-width: 1100px) {
  .filter {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .filter__item_all {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  .filter .filter__item_all {
    display: none;
  }
}

.main {
  padding-bottom: 10px;
}

.main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .content .container {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .main .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1024px) {
  .main__top .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

/* @media only screen and (max-width: 1024px) {
  .main__top .content {
    width: calc(100% - 285px);
  }
} */

.sidebar {
  width: 270px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 10px 0 0;
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  border-radius: 7px;
  padding: 5px 20px 25px;
  background-color: #fff;
}

.sidebar__title {
  color: #000;
  font-family: "OpenSansSemiBold";
  font-size: 27px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media only screen and (max-width: 940px) {
  .sidebar__title {
    text-align: center;
    margin-bottom: 0;
  }
}

.sidebar .advantage {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar .advantage__box {
  padding: 19px 34px;
}

.sidebar .advantage__box:first-child {
  border-radius: 15px 15px 0 0;
}

.sidebar .advantage__box:last-child {
  border-radius: 0 0 15px 15px;
}

@media only screen and (max-width: 1100px) {
  .sidebar {
    margin: 0 15px 0 0;
  }
}

@media only screen and (max-width: 940px) {
  .sidebar {
    margin-right: 0;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 20px;
  }
}

.product-list {
  margin-bottom: 50px;
  background-color: #fff;
}

.product-list__ico {
  margin-right: 10px;
  color: #5aa0d0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.product-list__ico .svg-icon {
  font-size: 8px;
}

.product-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
  color: #000;
  border-bottom: 1px solid #dfdfe1;
  padding: 15px 8px 15px 20px;
  position: relative;
}

.product-list__item_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "OpenSansBold";
  color: #403f47;
}

.product-list__item.active .product-list__ico {
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

@media only screen and (max-width: 940px) {
  .product-list__item {
    border: none;
  }
}

.product-list__quantity {
  font-size: 11px;
  display: none;
}

.product-list__bage {
  padding: 5px 8px;
  border-radius: 3px;
  background-color: #bece7e;
  color: #fff;
  font-size: 11px;
  margin-left: 15px;
  text-transform: uppercase;
}

.product-list__drop-list {
  cursor: pointer;
  margin-bottom: 2px;
}

.product-list__drop-list:last-child {
  margin-bottom: 0;
}

.product-list__drop-list:last-child .product-list__item {
  border: none;
}

@media only screen and (max-width: 940px) {
  .product-list__drop-list {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 640px) {
  .product-list__drop-list {
    width: 100%;
  }
}

.product-list__dropdown {
  display: none;
  font-size: 13px;
}

.product-list__dropdown_item {
  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;
  line-height: 30px;
  padding: 0 25px 0 20px;
  color: #837f7f;
  text-transform: capitalize;
  position: relative;
}

.product-list__dropdown_item:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 50%;
  bottom: 0;
  width: 7px;
  height: 7px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: transparent;
}

.product-list__dropdown_item:hover,
.product-list__dropdown_item.active {
  color: #00acf3;
}

.product-list__dropdown_item:hover:before,
.product-list__dropdown_item.active:before {
  background-color: #00acf3;
}

.product-list__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'OpenSansSemibold';
}

.product-list_ico {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 11px;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 940px) {
  .product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-count: 2;
    column-count: 2;
    display: block;
    padding: 20px 0;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 430px) {
  .product-list {
    -webkit-column-count: 1;
    column-count: 1;
  }
}


.sidebar .product-slider__title {
  color: #403f47;
  font-family: "OpenSansBold";
  font-size: 13px;
  text-transform: uppercase;
  padding: 0 20px 20px;
  border-bottom: 1px solid #dfdfe1;
  margin-bottom: 15px;
}

.sidebar .product-slider__item {
  outline: none;
  padding-bottom: 40px;
}

.sidebar .product-slider a {
  outline: none;
}

.sidebar .product-slider__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  margin-bottom: 15px;
}

.sidebar .product-slider__box:last-child {
  margin-bottom: 0;
}

.sidebar .product-slider__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  padding: 15px 5px;
  -webkit-box-shadow: 0 3px 7px #dcdcdc;
  box-shadow: 0 3px 7px #dcdcdc;
  background-color: rgba(223, 223, 225, 0);
  margin-right: 7px;
}

.sidebar .product-slider__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sidebar .product-slider__category {
  color: #959595;
  font-size: 12px;
  margin-bottom: 5px;
}

.sidebar .product-slider__category:hover {
  text-decoration: underline;
}

.sidebar .product-slider__name {
  font-size: 13px;
  color: #444351;
  margin-bottom: 10px;
}

.sidebar .product-slider__name:hover {
  text-decoration: underline;
}

.sidebar .product-slider__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar .product-slider__price {
  width: 48px;
  text-align: center;
  color: #fff;
  border-radius: 14px;
  line-height: 21px;
  padding: 4px;
  margin-right: 3px;
  text-transform: uppercase;
  background-color: #00acf3;
  font-family: "OpenSansSemiBold";
}

.sidebar .product-slider__bage {
  color: #818181;
  font-size: 8px;
  line-height: 14px;
  padding: 0 5px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #b0b0b0;
}

@media only screen and (max-width: 940px) {
  .sidebar .product-slider {
    display: none;
  }
}

.content {
  width: 70%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.content__main_head {
  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-bottom: 15px;
}

@media only screen and (max-width: 640px) {
  .content__main_head {
    text-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.content__main_head .content__title {
  margin-bottom: 0;
}

.content__title {
  color: #403f47;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

@media only screen and (max-width: 640px) {
  .content__title {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  .content__title {
    text-align: center;
  }
}

@media only screen and (max-width: 640px) {
  .content__title {
    margin-bottom: 10px;
  }
}

.content__top {
  background-color: #fff;
  padding: 30px 30px 5px;
  position: relative;
  border-radius: 7px 7px 0 0;
}

.content__top:after {
  content: '';
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  background-color: #fff;
}

.content__top .content__title {
  margin-bottom: 0;
}

@media only screen and (max-width: 500px) {
  .content__block {
    padding: 10px 5px;
  }
}

.content__form {
  margin-top: 30px;
}

.content__form .form {
  width: 100%;
  padding-left: 10px;
}

@media only screen and (max-width: 500px) {
  .content__form .form {
    padding: 0;
  }
}

.content__form_title {
  color: #403f47;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media only screen and (max-width: 500px) {
  .content__form_title {
    text-align: center;
  }
}

.content__bottom {
  text-align: center;
  margin-top: 30px;
}

.content__bottom .content__title {
  display: none;
}

.content__recently {
  margin-top: 30px;
}

.content__recently .content__title {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .content {
    width: 65%;
  }
}

.sorting {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: -6px 0 0 10px;
  border-bottom: 1px dotted #bdbdbd;
}

.sorting__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 5px 10px;
  margin-right: 5px;
}

.sorting__box:last-child {
  margin-right: 0;
}

.sorting__box:hover,
.sorting__box.active {
  color: #00acf3;
}

.sorting__box:hover .sorting__ico,
.sorting__box.active .sorting__ico {
  visibility: visible;
}

@media only screen and (max-width: 640px) {
  .sorting__box {
    padding: 5px;
  }
}

.sorting__ico {
  visibility: hidden;
}

.sorting__ico .svg-icon {
  color: #000;
}

.sorting__name {
  font-family: "OpenSansSemiBold";
  font-size: 14px;
  margin-right: 10px;
}

@media only screen and (max-width: 640px) {
  .sorting {
    width: 100%;
    margin: 10px 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.products-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0 -1.4%;
}

@media only screen and (max-width: 1100px) {
  .products-block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 940px) {
  .products-block {
    margin: 0 0 0 -0.4%;
  }
}

@media only screen and (max-width: 768px) {
  .products-block {
    margin: 0 0 0 -1.4%;
  }
}

.product-card {
  width: 31%;
  height: 340px;
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  border-radius: 7px;
  background-color: #fff;
  width: calc(33% - 10px);
  margin: 0 0 10px 1.4%;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

@media only screen and (max-width: 940px) {
  .product-card {
    height: auto;
  }
}

.product-card:hover {
  -webkit-box-shadow: 0 3px 27px rgba(0, 0, 0, 0.21);
  box-shadow: 0 3px 27px rgba(0, 0, 0, 0.21);
}

.product-card:hover .product-card__bottom {
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  background-image: linear-gradient(135deg, #0f1758 0%, #0f76c0 50%, #0f1756 100%);
}

.product-card:hover .product-card__btn {
  background-color: #00acf3;
}

.product-card:hover .product-card__category,
.product-card:hover .product-card__title,
.product-card:hover .product-card__row,
.product-card:hover .product-card__text,
.product-card:hover .product-card__btn_ico .svg-icon,
.product-card:hover .product-card__btn_add {
  color: #fff;
}

.product-card:hover .product-card__text {
  border-color: #fff;
}

/*.product-card:hover .product-card__descriptions { top: 81px; opacity: 1; }*/

/*.product-card:hover .product-card__photo { height: 56px; -webkit-transform: translateY(-50px); transform: translateY(-50px); }*/

.product-card__top {
  height: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card__bottom {
  height: 155px;
  padding-top: 10px;
}

.product-card__category {
  display: block;
  color: #959595;
  font-size: 12px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 5px;
}

.product-card__category:hover {
  text-decoration: underline;
}

.product-card__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: height 0.5s, -webkit-transform 0.5s;
  transition: height 0.5s, -webkit-transform 0.5s;
  transition: height 0.5s, transform 0.5s;
  transition: height 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.product-card__photo img {
  margin: auto;
  height: 100%;
}

.product-card__title {
  display: block;
  height: 21px;
  overflow: hidden;
  color: #444351;
  font-size: 16px;
  text-align: center;
  padding: 0 5px;
}

.product-card__title:hover {
  text-decoration: underline;
}

.product-card__box-title {
  color: #fff;
  font-size: 16px;
  padding: 15px 0 5px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.product-card__box-title span {
  max-width: 115px;
  height: 39px;
  display: inline-block;
  overflow: hidden;
}

.product-card__box-title:before,
.product-card__box-title:after {
  content: '';
  position: absolute;
  top: 25px;
  left: 35px;
  width: 50px;
  height: 1px;
  background-color: #fff;
}

@media only screen and (max-width: 1200px) {

  .product-card__box-title:before,
  .product-card__box-title:after {
    display: none;
  }
}

.product-card__box-title:after {
  left: inherit;
  right: 35px;
}

@media only screen and (max-width: 940px) {
  .product-card__box-title {
    padding: 5px 0;
  }
}

.product-card__value {
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  color: #000;
  text-transform: uppercase;
}

.product-card__price {
  font-size: 24px;
  font-family: "OpenSansSemiBold";
  margin-right: 10px;
}

.product-card__old-price {
  color: #ffa802;
  font-size: 14px;
  text-decoration: line-through;
  margin-right: 5px;
}

.product-card__currency {
  margin-right: -5px;
}

.product-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3px;
}

.product-card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 8px;
  border-radius: 8px;
  padding: 3px 5px;
  border: 1px solid #b0b0b0;
  color: #818181;
  text-transform: uppercase;
}

.product-card__btn {
  max-width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #f7f7f7;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 14px 13px;
  color: #464553;
}

.product-card__btn_ico .svg-icon {
  color: #00acf3;
  font-size: 20px;
}

.product-card__btn_add {
  font-family: "OpenSansSemiBold";
  margin-left: 10px;
}

.product-card__bage-sale {
  position: absolute;
  top: 11px;
  left: -23px;
  -webkit-transform: rotate(-38deg);
  transform: rotate(-39deg);
  color: #fff;
  border-bottom: 20px solid #fbae01;
  border-left: 16px solid transparent;
  border-right: 25px solid transparent;
  height: 0;
  width: 67px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.product-card__bage-sale_text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 10%);
  transform: translate(-50%, 10%);
  font-size: 14px;
  text-transform: uppercase;
}

.product-card__descriptions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 10px 20px;
  text-align: center;
  z-index: 11;
  margin: 0 -3px;
  opacity: 0;
  -webkit-transition: top 0.5s, opacity 0.5s;
  transition: top 0.5s, opacity 0.5s;
}

.product-card__subtitle,
.product-card__descriptions>p {
  max-height: 65px;
  overflow: hidden;
  line-height: 16px;
  color: #494949;
}

.product-card__bage {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  font-size: 16px;
  font-family: "OpenSansLight";
  width: 62px;
  height: 62px;
  background-color: #000;
  color: #fff;
}

.product-card__bage_box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-card__bage_bold {
  font-family: "OpenSansBold";
}

@media only screen and (max-width: 1100px) {
  .product-card {
    width: calc(49.8% - 10px);
  }
}

@media only screen and (max-width: 940px) {
  .product-card {
    width: calc(34% - 10px);
    margin: 0 0 25px 0.4%;
    padding: 15px 5px;
  }
}

@media only screen and (max-width: 768px) {
  .product-card {
    width: calc(49.9% - 10px);
    margin: 0 0 15px 1.4%;
  }
}

@media only screen and (max-width: 500px) {
  .product-card {
    width: calc(100% - 10px);
  }
}

.offers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 340px;
  width: calc(66% - 10px);
  margin: 0 0 10px 1.4%;
  border-radius: 7px;
  background: url(../img/offers-bg.png) no-repeat;
  background-size: cover;
}

.offers .product-card {
  width: 50%;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  color: #fff;
  position: relative;
}

.offers .product-card__category,
.offers .product-card__title,
.offers .product-card__subtitle,
.offers .product-card__row {
  color: #fff;
}

.offers .product-card__text {
  border: 1px solid #b0b0b0;
  background-color: #fff;
  color: #818181;
}

.offers .product-card__top {
  height: 143px;
}

.offers .product-card__value {
  margin-bottom: 5px;
}

.offers .product-card__bottom {
  padding-top: 0;
}

.offers .product-card:last-child:after {
  display: none;
}

.offers .product-card:hover .product-card__bottom {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  background-image: none;
}

.offers .product-card:hover .product-card__descriptions {
  top: 55px;
  color: #fff;
}

.offers .product-card:hover .product-card__text {
  color: #818181;
}

.offers .product-card:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50px;
  width: 1px;
  height: 260px;
  background-color: #a19ba1;
}

@media only screen and (max-width: 640px) {
  .offers {
    display: none;
  }
}

.product-hits {
  height: 340px;
  padding: 50px 30px 30px;
  background: url(../img/hits-bg.png) no-repeat;
  background-size: cover;
  color: #fff;
}

.product-hits__above-title {
  font-size: 31px;
  text-transform: uppercase;
}

.product-hits__title {
  font-size: 79px;
  line-height: 50px;
  font-family: "OpenSansExtraBold";
  text-transform: uppercase;
}

.product-hits__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-hits__info_value {
  font-size: 60px;
  font-family: "OpenSansBold";
}

.product-hits__info_rotate {
  font-size: 26px;
  margin: 2px 0 0 -9px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.product-hits__row {
  margin-bottom: 5px;
}

.product-hits__row .btn {
  text-transform: uppercase;
  border: 1px solid #fff;
  background-color: transparent;
  -webkit-transition: background-color 0.7s;
  transition: background-color 0.7s;
}

.product-hits__row .btn:hover {
  background-color: #fff;
  color: #fc5b4a;
}

.product-hits__row:last-child {
  margin-bottom: 0;
}

.product-hits__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-hits__btn .newsletter__btn {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  -webkit-transition: background-color 0.7s;
  transition: background-color 0.7s;
}

.product-hits__btn .newsletter__btn:hover {
  background-color: #fff;
}

.product-hits__btn .newsletter__btn:hover .svg-icon {
  color: #00acf3;
}

.product-hits__btn .newsletter__btn_ico .svg-icon {
  font-size: 15px;
}

.availability {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.availability__ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
  background-color: #ccc;
}

.availability__ring_in {
  background-color: #96f34a;
}

.availability__ring_off {
  background-color: #ee5154;
}

.availability__text {
  color: #9e9e9e;
  font-size: 11px;
}

/*.pagination { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-shadow: 0 3px 7px #f5f5f5; box-shadow: 0 3px 7px #f5f5f5; -webkit-border-radius: 7px; border-radius: 7px; background-color: #f7f7f9; padding: 25px 50px; }*/

.pagination__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination__nav:hover .pagination__text {
  color: #000;
}

.pagination__nav:hover .pagination__ico .svg-icon {
  color: #00acf3;
}

.pagination__ico .svg-icon {
  font-size: 10px;
  color: #454553;
}

.pagination__prev {
  margin-right: 75px;
}

.pagination__prev .pagination__ico {
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .pagination__prev {
    margin: 0;
  }
}

.pagination__next {
  margin-left: 75px;
}

.pagination__next .pagination__ico {
  margin-left: 20px;
}

@media only screen and (max-width: 768px) {
  .pagination__next {
    margin: 0;
  }
}

.pagination__text {
  color: #959595;
  font-size: 12px;
  font-family: "OpenSansSemiBold";
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .pagination__text {
    display: none;
  }
}

.pagination .filter {
  position: relative;
  padding: 0 60px;
}

.pagination .filter:before,
.pagination .filter:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #dfdfe1;
}

.pagination .filter:after {
  left: 100%;
}

@media only screen and (max-width: 1100px) {

  .pagination .filter__item:hover,
  .pagination .filter__item_active {
    color: #00acf3;
    background: none;
  }
}

@media only screen and (max-width: 1100px) {
  .pagination .filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .pagination .filter {
    width: 80%;
  }
}

@media only screen and (max-width: 640px) {
  .pagination .filter {
    padding: 0 25px;
  }
}

@media only screen and (max-width: 940px) {
  .pagination {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .pagination {
    padding: 25px;
  }
}

.advantages {
  margin: 10px 0 20px;
}

.advantages .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  .advantages .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.advantages__item {
  position: relative;
  margin-right: 10px;
}

.advantages__item:last-child {
  margin-right: 0;
}

.advantages__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.advantages__holder_big {
  margin-left: 10px;
}

.advantages__holder_big .advantages__item {
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .advantages__holder_big {
    margin: 10px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .advantages__holder_big {
    display: none;
  }
}

.advantages__text {
  width: 100%;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.advantages__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
}

.advantages__subtitle {
  font-size: 18px;
  font-family: "OpenSansLight";
  margin-bottom: 30px;
}

.advantages__under-text {
  font-size: 12px;
  font-family: "OpenSansLight";
}

.advantages__ico .svg-icon {
  margin: 0 auto;
  font-size: 30px;
}

@media only screen and (max-width: 1024px) {
  .advantages {
    margin: 10px 0;
  }
}

@media only screen and (max-width: 500px) {
  .advantages {
    display: none;
  }
}

.footer {
  color: #fff;
  width: 100%;
  position: relative;
}

.footer-top {
  padding: 25px 100px;
  border-radius: 7px 7px 0 0;
  background-color: #fff;
}

.footer-top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .footer-top .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer-top .main-menu__link {
  color: #444351;
  font-family: "OpenSansSemiBold";
  font-size: 13px;
  text-transform: uppercase;
}

.footer-top .main-menu__link a:after {
  display: none;
}

.footer-top .main-menu__link a:hover {
  color: #00acf3;
}

@media only screen and (max-width: 940px) {
  .footer-top {
    padding: 5px;
  }
}

@media only screen and (max-width: 768px) {
  .footer-top {
    display: none;
  }
}

.footer-menu {
  padding-right: 50px;
}

.footer-menu__link a {
  display: block;
  padding: 5px;
  color: #464553;
  font-size: 14px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-menu__link:last-child {
  margin-bottom: 0;
}

.footer-menu__link a:hover {
  color: #00acf3;
  text-decoration: underline;
}

.footer-menu__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 640px) {
  .footer-menu__holder {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.footer-menu:last-child {
  padding-right: 0;
}

.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-block .logo img {
  margin-bottom: 10px;
}

@media only screen and (max-width: 500px) {
  .footer-block .logo img {
    margin: 0 auto 10px;
  }
}

.footer-block__title {
  color: #9d9898;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media only screen and (max-width: 940px) {
  .footer-block__info {
    display: none;
  }
}

.footer-block__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-block__payments img {
  margin-right: 5px;
}

.footer-block__payments img:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 500px) {
  .footer-block .logo {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 30px;
    text-align: center;
  }
}

@media only screen and (max-width: 940px) {
  .footer-block {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media only screen and (max-width: 500px) {
  .footer-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #f7f7f9;
  color: #464553;
  border-radius: 0 0 7px 7px;
  padding: 50px 70px;
  margin-bottom: 30px;
}

.footer-body__block {
  position: relative;
  padding-right: 40px;
  border-right: 1px solid #dfdfe1;
}

.footer-body__block:last-child {
  width: 26%;
  border: none;
  padding: 0;
}

@media only screen and (max-width: 1024px) {
  .footer-body__block:last-child {
    width: 30%;
  }
}

@media only screen and (max-width: 940px) {
  .footer-body__block_info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    text-align: center;
    border: none;
  }

  .footer-body__block_info .logo img {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1024px) {
  .footer-body__block {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 940px) {
  .footer-body__block {
    width: 50%;
    border: none;
  }

  .footer-body__block:last-child {
    width: 50%;
  }
}

@media only screen and (max-width: 640px) {
  .footer-body__block {
    width: 100%;
    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: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }

  .footer-body__block:last-child {
    width: 100%;
  }
}

.footer-body__copyright {
  margin: 55px 0 78px;
  color: #8e8e8e;
  font-size: 12px;
}

@media only screen and (max-width: 940px) {
  .footer-body__copyright {
    margin: 10px 0;
  }
}

.footer-body .header-top__payments_box {
  margin-right: 15px;
}

.footer-body .header-top__payments_ico {
  height: 13px;
}

.footer-body .header-top__payments_visa {
  width: 40px;
  background: url("../img/visa-footer.png") no-repeat;
}

.footer-body .header-top__payments_mastercard {
  width: 89px;
  background: url("../img/mastercard-footer.png") no-repeat;
}

.footer-body .header-top__payments_paypal {
  width: 57px;
  height: 15px;
  background: url("../img/paypal-footer.png") no-repeat;
  background-size: 55px;
}

.footer-body .header-top__payments_bitcoin {
  width: 73px;
  height: 17px;
  background: url("../img/bitcoin-footer.png") no-repeat;
}

@media only screen and (max-width: 1100px) {
  .footer-body {
    padding: 50px 20px;
  }
}

@media only screen and (max-width: 940px) {
  .footer-body {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 10px;
  }
}

.footer-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer-tel__ico {
  margin-right: 15px;
}

.footer-tel__ico .svg-icon {
  font-size: 42px;
  color: #464553;
}

.footer-tel__box {
  font-size: 14px;
  line-height: 27px;
  text-transform: uppercase;
  color: #000;
}

.footer-tel__title {
  color: #484755;
}

.footer-tel__title:hover {
  text-decoration: underline;
}

.secure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
}

.secure__box {
  margin-right: 15px;
  width: 63px;
}

.secure__box:last-child {
  margin-right: 0;
}

/*.secure__box img { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%); -webkit-filter: gray; filter: gray; /* IE 6-9 */
*/ .secure__box_margin {
     margin-top: 3px;
   }

@media only screen and (max-width: 640px) {
  .secure {
    margin: 20px 0;
  }
}

.support {
  width: 264px;
  min-height: 84px;
  display: block;
  position: relative;
  -webkit-box-shadow: 0 6px 13px 0px rgba(50, 50, 50, 0.37);
  box-shadow: 0 6px 13px 0px rgba(50, 50, 50, 0.37);
  border-radius: 6px;
  -webkit-transition: -webkit-box-shadow 0.9s;
  transition: -webkit-box-shadow 0.9s;
  transition: box-shadow 0.9s;
  transition: box-shadow 0.9s, -webkit-box-shadow 0.9s;
}

.support:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 6px;
  background-color: rgba(67, 66, 80, 0.68);
}

.support img {
  height: 100%;
}

.support:hover {
  -webkit-box-shadow: 0 6px 13px 0px rgba(50, 50, 50, 0.57);
  box-shadow: 0 6px 13px 0px rgba(50, 50, 50, 0.57);
}

.support:hover .support__text {
  color: #fff;
}

.support__text {
  position: absolute;
  width: 60%;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #d2d2d2;
  font-size: 18px;
  z-index: 3;
  -webkit-transition: color 0.9s;
  transition: color 0.9s;
}

.newsletter {
  position: relative;
  margin-bottom: 30px;
}

.newsletter__input {
  width: 100%;
  height: 42px;
  border-radius: 20px;
  font-size: 12px;
  border: none;
  outline: none;
  padding: 10px 50px 10px 20px;
  background-color: #fff;
}

.newsletter__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  background-color: #00acf3;
  border-radius: 50%;
  outline: none;
}

.newsletter__btn_ico {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.newsletter__btn_ico .svg-icon {
  color: #fff;
}

.payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.payments .svg-icon {
  color: #42414f;
  font-size: 14px;
}

.testimonials {
  background-color: #fff;
  margin-bottom: 10px;
}

.testimonials__box {
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid #dfdfe1;
  background-color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.testimonials__box:before {
  content: '';
  position: absolute;
  top: -6px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 7px;
  border-color: transparent transparent #fff;
  z-index: 1;
}

.testimonials__box:after {
  content: '';
  position: absolute;
  top: -8px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 7px;
  border-color: transparent transparent #dfdfe1;
}

.testimonials__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5px;
}

.testimonials__name {
  color: #00acf3;
  font-size: 14px;
  text-transform: uppercase;
}

.testimonials__city {
  color: #9e9e9e;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  margin-left: 5px;
}

.testimonials__date {
  color: #938e8e;
  font-size: 12px;
  text-transform: capitalize;
}

.testimonials__text {
  color: #444351;
  font-size: 13px;
  line-height: 18px;
}

.testimonials__title {
  color: #403f47;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.load-more {
  display: block;
  color: #818181;
  font-size: 11px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #b0b0b0;
  -webkit-transition: color 0.6s, border-color 0.6s;
  transition: color 0.6s, border-color 0.6s;
}

.load-more:hover {
  color: #00acf3;
  border-color: #00acf3;
}

.tabs__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .tabs__caption {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
}

.tabs__content {
  display: none;
  font-size: 13px;
}

.tabs__content.active {
  display: block;
}

.tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 30px;
  margin-right: 2px;
}

.tabs__item.active .tabs__link {
  color: #fff;
  background-color: #00acf3;
  border-color: #00acf3;
}

@media only screen and (max-width: 1200px) {
  .tabs__item {
    margin: 0 5px 10px;
  }
}

.tabs__link {
  padding: 9px 20px;
  font-size: 11px;
  border-radius: 20px;
  color: #818181;
  background-color: #f7f7f7;
  text-transform: uppercase;
}

.right-column {
  width: 290px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0 0 10px;
}

.right-column__title {
  font-family: "OpenSansSemiBold";
  font-size: 27px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1024px) {
  .right-column__title {
    text-align: center;
  }
}

.right-column .recently .product-card {
  width: 100%;
  margin-left: 0;
}

@media only screen and (max-width: 1024px) {
  .right-column .recently .product-card {
    width: calc(32.2% - 10px);
    margin-left: 2.2%;
  }
}

.products-slider {
  width: 573px;
  height: 340px;
  margin: 0 0 45px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 15px;
  background: #f9f6ef;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, #f9f6ef), color-stop(19%, #fcfbf2), color-stop(47%, #fbf7ec), color-stop(71%, #faf9ef), to(#f6f2e9));
  background: linear-gradient(to right, #f9f6ef 1%, #fcfbf2 19%, #fbf7ec 47%, #faf9ef 71%, #f6f2e9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f6ef', endColorstr='#f6f2e9', GradientType=1);
  /* IE6-9 */
}

.products-slider__block {
  width: 52%;
  border-radius: 15px;
  outline: none;
}

.products-slider__block .product-card {
  padding: 25px 15px;
  margin: 0;
  border-color: transparent;
  background-color: transparent;
}

.products-slider__block .product-card__subtitle {
  margin-bottom: 30px;
}

.products-slider__block .product-card__row {
  margin: inherit;
}

.products-slider__block .product-card__btn {
  top: 80%;
  left: 82%;
}

.products-slider__block .product-card:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.products-slider__block .info__dots {
  top: 25px;
  left: 170%;
  z-index: 99;
}

.products-slider__img {
  width: 48%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.products-slider__img_banner {
  width: 271px;
  height: 137px;
  position: absolute;
  top: 72%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}




.recently-slider {
  width: 573px;
  height: 340px;
  width: calc(66% - 10px);
  margin: 0 0 10px 1.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 7px;
  background: #f9f6ef;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, #f9f6ef), color-stop(19%, #fcfbf2), color-stop(47%, #fbf7ec), color-stop(71%, #faf9ef), to(#f6f2e9));
  background: linear-gradient(to right, #f9f6ef 1%, #fcfbf2 19%, #fbf7ec 47%, #faf9ef 71%, #f6f2e9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f6ef', endColorstr='#f6f2e9', GradientType=1);
  /* IE6-9 */
}

.recently-slider__block {
  width: 52%;
  border-radius: 15px;
  outline: none;
}

.recently-slider__block .product-card {
  padding: 25px 15px 10px;
  margin: 0;
  border-color: transparent;
  background-color: transparent;
  border-radius: 7px;
}

.recently-slider__block .product-card__subtitle {
  margin-bottom: 35px;
}

.recently-slider__block .product-card__row {
  margin: inherit;
}

.recently-slider__block .product-card__btn {
  top: 80%;
  left: 82%;
}

.recently-slider__block .product-card:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.recently-slider__block .product-card__photo {
  height: 50px;
  margin-bottom: 20px;
}

.recently-slider__block .product-card:hover .product-card__photo {
  -webkit-transform: none;
  transform: none;
  height: 50px;
}

.recently-slider__block .product-card .product-card__row,
.recently-slider__block .product-card:hover .product-card__row {
  color: #000;
}

.recently-slider__block .product-card__btn {
  background-color: #00acf3;
  color: #fff;
}

.recently-slider__block .product-card__btn_ico .svg-icon {
  color: #fff;
}

.recently-slider__block .info__dots {
  top: 25px;
  left: 170%;
  z-index: 99;
}

.recently-slider__block .product-card:hover .product-card__title {
  color: #444351;
}

.recently-slider__block .product-card:hover .product-card__category {
  color: #959595;
}

.recently-slider__block .product-card:hover .product-card__text {
  border-color: #b0b0b0;
}

.recently-slider__block .product-card:hover .product-card__text {
  border-color: #b0b0b0;
  color: #818181;
}

.recently-slider__img {
  width: 48%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.recently-slider__img_banner {
  width: 271px;
  height: 137px;
  position: absolute;
  top: 72%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1100px) {
  .recently .recently-slider {
    width: calc(80% - 10px);
    margin: 0 0 10px 0;
  }
}

@media only screen and (max-width: 940px) {

  .recently .products-slider,
  .recently .recently-slider {
    display: none;
  }
}

.info__dots {
  position: absolute;
  bottom: 15px;
  right: 0;
  list-style: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info__dots li {
  margin-right: 5px;
}

.info__dots li:last-child {
  margin-right: 0;
}

.info__dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #cecece;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  outline: none;
}

.info__dots .slick-active button {
  background-color: #01a7d7;
}



@media only screen and (max-width: 1024px) {
  .right-column .recently .product-card {
    width: calc(32.2% - 10px);
    margin-left: 1.4%;
  }
}

@media only screen and (max-width: 768px) {
  .right-column .recently .product-card {
    width: calc(49.1% - 10px);
  }
}

@media only screen and (max-width: 500px) {
  .right-column .recently .product-card {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .right-column {
    width: 100%;
    padding: 0;
    margin: 20px 0 0;
  }
}

@media only screen and (max-width: 1024px) {
  .recently {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -1.4%;
  }
}

@media only screen and (max-width: 768px) {
  .recently {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 15px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  border-radius: 7px;
  background-color: #fff;
}

.socials__ico {
  margin: 5px;
}

.socials__ico .svg-icon {
  font-size: 33px;
}

.socials__ico:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 500px) {
  .socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.order-status {
  background-color: #fff;
}

.order-status__top {
  border-bottom: 1px solid #ededed;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.order-status__text {
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 15px;
}

.order-status__text:last-child {
  margin-bottom: 0;
}

.order-status__text_bold {
  font-weight: 700;
}

.order-status__text_link {
  color: #46c384;
  text-decoration: underline;
}

.order-status__text_link:hover {
  text-decoration: none;
}

.order-status__bottom {
  margin-top: 25px;
}

.order-status__bottom .order-status__text {
  margin-bottom: 0;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  position: relative;
}

.form__row:last-child {
  margin-bottom: 0;
}

.form__label {
  width: 36%;
  color: #444351;
  font-size: 13px;
  margin: 15px 10px 0 0;
  text-transform: uppercase;
}

.form__label_under-title {
  color: #959595;
  font-size: 12px;
  text-transform: lowercase;
}

@media only screen and (max-width: 430px) {
  .form__label {
    width: 40%;
  }
}

.form__input,
.form-control {
  width: 100%;
  height: 46px;
  border-radius: 15px;
  border: 1px solid #dfdfe1;
  padding: 0 20px;
  outline: none;
}

.form__input:focus {
  border-color: #00acf3;
}

.form__textarea {
  height: 105px;
  padding: 20px;
  resize: vertical;
}

.form__submit {
  text-align: right;
}

.form__submit .btn {
  padding: 13px 28px;
  outline: none;
  margin-right: 10px;
  font-family: 'PT Sans', sans-serif;
  font-weight: 700;
}

.form__submit .btn:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 500px) {
  .form__submit {
    text-align: center;
  }
}

@media only screen and (max-width: 1024px) {
  .form {
    width: 100%;
  }
}

.captcha {
  width: 100%;
}

.field-contactform-verifycode {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.field-contactform-verifycode .checkout__descriptions {
  top: 34px;
}

.faq__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .faq__top {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.faq__link {
  color: #000;
  border-radius: 3px;
  font-size: 13px;
  padding: 10px 20px;
  margin: 0 10px 20px 0;
  border: 1px solid #e1ebef;
}

.faq__link:hover {
  color: #fff;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background-color: #46c384;
  border: 1px solid transparent;
}

.faq__link:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 500px) {
  .faq__link {
    padding: 10px 6px;
  }
}

.faq__row {
  font-size: 14px;
}

.faq__box {
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 15px;
  border: 1px solid #dfdfe1;
  background-color: #ffffff;
}

.faq__title {
  color: #9e9e9e;
}

.faq__question {
  cursor: pointer;
}

.faq__question .faq__text {
  font-family: "OpenSansBold";
  color: #444351;
}

.faq__question.active+.faq__answer {
  display: block;
}

.faq__answer {
  display: none;
  -webkit-box-shadow: 0 3px 13px rgba(0, 0, 0, 0.35);
  box-shadow: 0 3px 13px rgba(0, 0, 0, 0.35);
  border-radius: 15px;
  position: relative;
}

.faq__answer:before {
  content: '';
  position: absolute;
  top: -8px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 10px;
  border-color: transparent transparent #fff;
  z-index: 1;
}

.faq__answer:after {
  content: '';
  position: absolute;
  top: -9px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 9px;
  border-color: transparent transparent #dfdfe1;
}

.faq__table {
  margin-top: 15px;
}

.faq__table thead tr th {
  padding: 15px 20px;
}

.faq #invoice tbody td:first-child {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .faq #invoice tbody td:first-child {
    text-align: right;
  }
}

@media only screen and (max-width: 640px) {
  .faq .table tbody td span {
    padding-left: 65%;
  }
}

@media only screen and (max-width: 640px) {
  .faq #invoice tbody td:before {
    max-width: 170px;
    max-height: 25px;
    overflow: hidden;
    left: 5px;
  }
}

@media only screen and (max-width: 430px) {
  .faq {
    padding: 30px 0;
  }
}

.table {
  width: 100%;
}

.table thead {
  background-color: #dce1e7;
}

.table thead th {
  padding: 15px 86px 15px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.table thead th a {
  color: #444351;
}

.table tbody tr {
  border-bottom: 1px solid #eaeaea;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.table tbody tr:hover {
  background-color: #eef2f7;
}

.checkout .table tbody tr:last-child {
  border-bottom: none;
}

@media only screen and (max-width: 1024px) {
  .table tbody tr:hover {
    background-color: inherit;
  }
}

.table tbody td {
  padding: 9px 20px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}

.table tbody td img {
  display: inline-block;
}

/* @media only screen and (max-width: 1024px) { .table tbody td img { display: none; } } */

.table tbody td span {
  color: #464956;
  font-size: 14px;
  font-weight: 400;
}

.table tbody td .btn {
  min-width: 70px;
  padding: 8px;
  margin: -12px 0;
  font-size: 10px;
}

.de .table tbody td .btn,
.fr .table tbody td .btn {
  font-size: 13px;
}

@media only screen and (max-width: 1024px) {
  .table tbody td .btn {
    font-size: 13px;
  }
}

.table tbody td .table__bage {
  padding: 5px 15px;
  border-radius: 8px;
  margin-left: 10px;
  color: #fff;
  text-transform: uppercase;
  background-color: #fc5b4a;
  cursor: pointer;
}

@media only screen and (max-width: 1200px) {
  .table tbody td .table__bage {
    display: none;
  }
}

.table tbody td .table__price {
  margin-left: -3px;
}

.table tbody td .table__price_red {
  font-size: 16px;
  color: #1da93b;
}

.table tbody td .table__price_blue {
  font-size: 16px;
  color: #00acf3;
}

.table tbody td .table__price_free {
  color: #fc5b4a;
  font-size: 16px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1024px) {
  .table tbody td .table__price {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1100px) {
  .table tbody td {
    padding: 15px;
  }
}

.table__title-change {
  visibility: hidden;
}

@media only screen and (max-width: 1024px) {
  .table__title-change {
    visibility: visible;
  }
}

.table__remove .svg-icon {
  font-size: 21px;
  color: #d3d3dd;
}

.table__remove:hover .svg-icon {
  color: #fc5b4a;
}

@media only screen and (max-width: 1024px) { #invoice thead, .grid-view thead { display: none; }
  #invoice td, .grid-view td { width: 100%; text-align: center; }
  #invoice tbody td, .grid-view tbody td { max-width: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; padding: 0.7rem 0; position: relative; text-align: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: right;display: block;}
  #invoice tbody td:first-child, .grid-view tbody td:first-child  { display: none; }
  #invoice tbody td:before, .grid-view tbody td:before { content: attr(data-th); position: absolute; top: 20%; left: 10px; color: #00acf3; font-size: 18px; } }

@media only screen and (max-width: 1024px) and (max-width: 340px) { #invoice tbody td:before, .grid-view tbody td:before { top: 18%; left: -14px; } }

@media only screen and (max-width: 1024px) { #invoice tbody tr, .grid-view tbody tr { margin-bottom: 20px; padding-bottom: 20px; display: block; } }

.item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.shopping-cart__wrapper {
  width: 100%;
}

.shopping-cart__wrapper .shopping-cart__sum {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
}

.shopping-cart__wrapper .shopping-cart__sum,
.shopping-cart__wrapper .shopping-cart__sum_price {
  font-size: 20px;
}

.shopping-cart__wrapper .shopping-cart__sum_title {
  margin-right: 5px;
}

.shopping-cart__wrapper .shopping-cart__sum:last-child {
  border-bottom: none;
}

.shopping-cart__sum_discount-holder {
  width: 100%;
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0 5px;
}

.shopping-cart__sum_discount-holder .shopping-cart__sum {
  width: 100%;
}

.shopping-cart__wrapper .shopping-cart__sum_discount-holder .shopping-cart__sum:last-child {
  border-bottom: 1px solid #eaeaea;
}

.shopping-cart__sum_discount {
  font-size: 18px;
}

.item__info {
  width: 75%;
}

.item__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;
}

.item__title-wrap {
  margin: -20px 0 15px;
}

.item__availability {
  color: #008000;
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .item__title-wrap {
    margin: 5px 0 15px;
  }

  .item__availability {
    text-align: left;
  }
}

.item__availability .item__subtitle_name {
  color: #231f20;
}

@media only screen and (max-width: 1024px) {
  .item__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.item__photo {
  margin: 35px 15px 0 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
}

.item__photo img {
  max-width: 190px;
}

@media only screen and (max-width: 1024px) {
  .item__photo {
    width: auto;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 940px) {
  .item__photo {
    margin-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  .item__photo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 0;
  }

  .item__photo img {
    max-height: 200px;
  }
}

.item__title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #464956;
}

.item__table-title {
  font-size: 18px;
  font-family: "OpenSansSemiBold";
  text-transform: uppercase;
  padding-left: 20px;
  margin-bottom: 10px;
}

.item__subtitle {
  font-size: 11px;
  color: #444351;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.item__subtitle_name {
  margin-right: 10px;
  font-size: 11px;
  text-transform: uppercase;
}

.item__subtitle_link {
  color: #444351;
}

.item__subtitle_link:hover {
  color: #00acf3;
  text-decoration: underline;
}

.item__descriptions {
  font-size: 12px;
  color: #7c7c7c;
  margin-bottom: 10px;
}

.item__accept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.item__accept img {
  margin-right: 2px;
}

.item__other {
  margin-top: 15px;
}

.item__other .item__subtitle_name {
  margin-bottom: 10px;
  color: #9e9e9e;
}

.item__other_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item__other_bottom .show-all {
  margin-left: 10px;
  color: #00acf3;
}

.item thead th {
  padding: 15px 58px 15px 11px;
}

.item__cart {
  display: none;
}

.item__cart .svg-icon {
  font-size: 20px;
  color: #00acf3;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .item__cart {
    display: block;
  }
}

.item__table {
  margin-bottom: 45px;
}

@media only screen and (max-width: 1200px) {
  .item__table thead th {
    padding: 15px 4% 15px 20px;
  }

  .item__table tbody td {
    padding: 15px 1%;
  }
}

@media only screen and (max-width: 1024px) {
  .item__table thead th:last-child {
    text-align: center;
  }

  .item__table tbody td .btn {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .item__table thead {
    border: 1px solid #eaeaea;
  }

  .item__table thead th,
  .item__table tbody td {
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
  }

  .item__table tbody td {
    border-right: 1px solid #eaeaea;
  }

  .item__table tbody td:first-child {
    border-left: 1px solid #eaeaea;
  }

  .item__table thead th:first-child {
    padding: 10px 0 10px 5px;
  }

  .item__table tbody td span,
  .item__table tbody td .table__price_orange,
  .item__table tbody td .table__price_purple {
    font-size: 12px;
  }
}

.item__bottom {
  color: #333333;
  font-size: 13px;
  line-height: 18px;
}

.item__bottom_title {
  font-family: "OpenSansBold";
  text-transform: uppercase;
  margin-bottom: 20px;
}

.item__bottom_text {
  margin-bottom: 15px;
}

.item__bottom_text:last-child {
  margin-bottom: 0;
}

.item .tabs__caption {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .item .tabs__caption {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.item .tabs__item {
  margin-right: 2px;
}

.item .tabs__item:last-child {
  margin-right: 0;
}

.item .tabs__link {
  padding: 12px 40px;
  background-color: #f7f7f7;
  text-transform: uppercase;
}

.item .tabs__item.active .tabs__link {
  color: #fff;
  background-color: #7e7b7f;
}

@media only screen and (max-width: 1024px) {
  .item #invoice tbody td:first-child {
    text-align: right;
  }
}

@media only screen and (max-width: 340px) {
  .item #invoice tbody td:before {
    left: 5px;
  }
}

.shopping-cart__box_line {
  margin-top: 10px;
  border-bottom: 3px solid #ededed;
}

.shopping-cart .shopping-cart__row {
  border-bottom: 1px solid #eaeaea;
}

.shopping-cart .shopping-cart__row_bold {
  font-family: "OpenSansBold";
}

.shopping-cart__table tbody tr:hover {
  background-color: inherit;
}

.shopping-cart thead th {
  padding: 15px 20px;
}

.shopping-cart__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 60px;
}

.shopping-cart__buttons .btn {
  font-size: 14px;
  font-family: "OpenSansSemiBold";
  padding: 15px 36px;
  text-transform: uppercase;
}

.shopping-cart__buttons .btn__blue {
  background-color: #15ccdd;
}

.shopping-cart__btn-continue {
  color: #000;
  font-size: 15px;
  padding: 13px;
  border: 1px solid transparent;
  margin-right: 5px;
  border-radius: 20px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.shopping-cart__btn-continue:hover {
  color: #00acf3;
  border: 1px solid #00acf3;
}

.shopping-cart__head {
  padding: 20px;
  background-color: #dce1e7;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.shopping-cart__row {
  padding: 15px;
}

.shopping-cart__sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  /*margin-right: 15px; */
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.shopping-cart__sum_new {
  position: absolute;
  top: 15px;
  right: 8px;
}

.shopping-cart__sum_new .shopping-cart__sum_price {
  margin-left: 0;
}

.shopping-cart__sum_new .shopping-cart__sum_title {
  display: none;
}

.shopping-cart__sum+.shopping-cart__sum .shopping-cart__sum_price {
  font-size: 20px;
}

.shopping-cart__checkout .shopping-cart__sum_price {
  margin-left: 0;
}

.shopping-cart__checkout .shopping-cart__sum_title {
  padding: 0;
}

.shopping-cart__sum_title {
  text-transform: capitalize;
  margin-left: 5px;
}

@media only screen and (max-width: 660px) {
  .shopping-cart__sum_new {
    position: static;
  }

  .shopping-cart__sum {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .shopping-cart__sum_new .shopping-cart__sum_title {
    margin: 0;
  }

  .shopping-cart__sum_new .shopping-cart__sum_title {
    display: block;
  }

  .shopping-cart__sum_new+.shopping-cart__sum {
    display: none;
  }
}

.shopping-cart__sum_price {
  color: #fc5b4a;
  font-size: 30px;
  font-family: "OpenSansBold";
}

/* @media only screen and (max-width: 768px) { .shopping-cart__sum_price { font-size: 24px; } } */

@media only screen and (max-width: 768px) {
  .shopping-cart__sum {
    text-align: center;
  }
}

.shopping-cart__additional {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.shopping-cart__additional_descriptions {
  color: #909090;
  font-size: 12px;
  margin-left: 10px;
  text-transform: capitalize;
}

.shopping-cart__additional_text {
  font-size: 14px;
  color: #7f7f7f;
  text-transform: lowercase;
}

.shopping-cart__additional_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  .shopping-cart__additional_checkbox {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.shopping-cart__additional_checkbox .checkbox {
  margin-left: 18px;
}

@media only screen and (max-width: 768px) {
  .shopping-cart__additional_checkbox .checkbox {
    margin: 5px 0 0;
  }
}

.shopping-cart__bottom {
  padding: 20px;
  background-color: #dce1e7;
}

.shopping-cart__bottom .checkbox-holder .state {
  background-color: #fff;
  border: 1px solid #ccc;
}

.shopping-cart__bottom .checkbox-holder input:checked+.state:after {
  border-color: #00acf3;
}

.shopping-cart__add-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.shopping-cart__add-checkbox:last-child {
  margin-bottom: 0;
}

.shopping-cart #invoice tbody td {
  min-height: 19px;
  padding: 12px 5px 8px;
}

.shopping-cart #invoice tbody td:first-child {
  text-align: center;
}

.shopping-cart #invoice tbody td:nth-child(4n) {
  min-width: 160px;
}

@media only screen and (max-width: 640px) {
  .shopping-cart #invoice tbody td {
    font-size: 13px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 24%;
  }
}

@media only screen and (max-width: 640px) {
  .shopping-cart #invoice tbody td:before {
    top: 32%;
    font-size: 13px;
    max-width: 170px;
    max-height: 25px;
    overflow: hidden;
    left: 5px;
  }
}

@media only screen and (max-width: 340px) {
  .shopping-cart #invoice tbody td:before {
    left: 0;
  }
}

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quantity__input {
  width: 55px;
  height: 30px;
  margin: 0 1px;
  padding: 0 15px;
  text-align: center;
  border: 1px solid #e0e0e0;
  outline: none;
}

@media only screen and (max-width: 1024px) {
  .quantity {
    right: 0;
    top: -5px;
    -webkit-transform: inherit;
    transform: inherit;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 640px) {
  .quantity {
    right: 10px;
  }
}

.clicker {
  width: 20px;
  height: 30px;
  background-color: #e7e7ef;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.clicker__ico {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.clicker:hover {
  background-color: #fc5b4a;
}

.clicker:hover .clicker__ico {
  color: #fff;
}

.radio-btn__img {
  opacity: 0.6;
}

.radio-btn__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
}

.radio-btn__text {
  color: #333;
  font-size: 13px;
  line-height: 18px;
}

.radio-btn__title {
  font-weight: 700;
}

.radio-btn__circle {
  position: relative;
  margin-right: 10px;
}

.radio-btn__circle .svg-icon {
  font-size: 18px;
}

.radio-btn__circle:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00acf3;
  opacity: 0;
}

.radio-btn input[type=radio]:checked+label .radio-btn__circle:before,
.radio-btn input[type=radio]:checked+label .radio-btn__img {
  opacity: 1;
}

.radio-btn input[type=radio] {
  display: none;
}

.checkout .content__top {
  margin: 20px 0 30px;
}

.checkout__table tbody td img {
  left: 30%;
}

.checkout .shopping-cart__buttons {
  margin: 20px 0;
}

.checkout__main {
  padding: 15px 0;
}

.checkout__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.checkout__row:last-child {
  margin-bottom: 0;
}

.checkout__row .checkbox-holder .state {
  background: #fff;
  border: 1px solid #ababab;
}

.checkout__row .checkbox-holder input:checked+.state:after {
  border-color: #2ebc99;
  left: 6px;
}

@media only screen and (max-width: 1200px) {
  .checkout__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.checkout__wrap {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.checkout__wrap_wide {
  width: 100%;
}

.checkout__wrap_wide .checkout__input {
  width: 83%;
}

.checkout__wrap .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 1200px) {

  .checkout__wrap,
  .checkout__wrap .form-group {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .checkout__wrap_wide .checkout__input {
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .checkout__wrap_wide .checkout__textarea {
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .checkout__wrap_wide {
    width: 61%;
  }
}

@media only screen and (max-width: 1200px) {
  .checkout__wrap_phone {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.checkout__wrap_radio {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.checkout__wrap_radio .checkout__label {
  width: 200px;
  text-align: left;
  margin-right: -25px;
}

.checkout__wrap_radio .radio-btn {
  margin-right: 20px;
}

.checkout__wrap_radio .radio-btn:last-child {
  margin-right: 0;
}

.checkout__wrap_radio .radio-btn_first {
  margin-left: 13px;
}

.checkout__wrap_radio .radio-btn__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.checkout__wrap_radio .radio-btn__circle {
  margin: 0 10px 0 0;
}

@media only screen and (max-width: 340px) {
  .checkout__wrap_radio .radio-btn__circle {
    margin: 0;
  }
}

@media only screen and (max-width: 640px) {
  .checkout__wrap_radio .radio-btn {
    margin-right: 5px;
  }
}

.checkout__wrap_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 46px;
}

.checkout__wrap_textarea {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.checkout__wrap_textarea .checkout__label {
  margin-top: 9px;
}

@media only screen and (max-width: 1200px) {
  .checkout__wrap {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}

.checkout__label,
.control-label {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  margin-right: 10px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .checkout__label {
    width: 100%;
    margin-bottom: 5px;
  }
}

.checkout__input {
  width: 370px;
  height: 35px;
  border-radius: 15px !important;
  border: 1px solid #dfdfe1;
;
  padding: 0 20px;
  outline: none;
}

@media only screen and (max-width: 1200px) {
  .checkout__input {
    width: 100%;
    margin-bottom: 5px;
  }
}

.checkout__input:focus {
  border-color: #00acf3;
}

.checkout__input_phone {
  width: 70px;
  font-size: 12px;
  padding: 0 10px;
}

.checkout__input_phone:last-child {
  margin-left: 5px;
  width: 195px;
}

@media only screen and (max-width: 1200px) {
  .checkout__input_phone:last-child {
    width: 50%;
  }
}

@media only screen and (max-width: 640px) {
  .checkout__input_phone:last-child {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .checkout__input_phone:first-child {
    width: 70px;
  }
}

.checkout__input_small {
  width: 70px;
}

.checkout__input_medium {
  width: 120px;
}

.checkout__input_medium+.select2-container {
  margin: 0 5px;
}

.checkout__input_medium+.select2-container:nth-child(2) {
  margin-left: 0;
}

.checkout__input_large {
  width: 295px;
  margin-left: 5px;
}

.checkout__textarea {
  min-height: 170px;
  padding: 20px;
  resize: vertical;
}

.checkout__submit {
  margin-top: 20px;
  text-align: right;
}

.checkout__submit .error-summary {
  margin-top: 20px;
}

.checkout__submit .error-summary>p {
  margin: 10px 0;
  font-size: 14px;
}

.checkout__submit .error-summary li {
  color: #f75458;
}

@media only screen and (max-width: 500px) {
  .checkout__submit {
    text-align: center;
  }
}

@media only screen and (max-width: 1200px) {
  .checkout__input {
    width: 100%;
    margin-bottom: 5px;
  }

  .checkout__input_large {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .checkout__input {
    width: 100%;
    margin-bottom: 5px;
  }

  .checkout__input_large {
    width: 87%;
    margin-left: 1%;
  }

  .checkout__input_small {
    width: 12%;
  }
}

@media only screen and (max-width: 620px) {
  .checkout__input_large {
    width: 100%;
    margin-left: 0;
  }

  .checkout__input_small {
    width: 70px;
  }
}

.checkout__descriptions {
  width: 160px;
  color: #f75458;
  font-size: 11px;
  position: absolute;
  top: -2px;
  left: 0;
}

.checkout__block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkout__block-row .checkout__wrap {
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .checkout__block-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 640px) {
  .checkout__descriptions {
    top: -15px;
  }
}

.checkout__block-box {
  width: 50%;
}

@media only screen and (max-width: 1200px) {
  .checkout__block-box {
    width: 100%;
  }
}

.checkout .shopping-cart__row {
  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: #333;
  font-size: 13px;
  font-weight: 400;
  padding: 17px 20px 17px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.checkout .shopping-cart__row_price {
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
}

@media only screen and (max-width: 430px) {
  .checkout .shopping-cart__row_title {
    width: 80%;
  }
}

.checkout .shopping-cart__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 340px) {
  .checkout .shopping-cart__head {
    text-align: center;
  }
}

.checkout .checkout_under-text {
  width: 80%;
  color: #909090;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.checkout .select__wrap {
  width: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checkbox-holder {
  font-size: 16px;
  color: #444;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.checkbox-holder input {
  display: none;
}

.checkbox-holder input:disabled+.state {
  background: #dadada;
  cursor: not-allowed;
}

.checkbox-holder input:checked+.state:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.checkbox-holder input:checked:disabled+.state {
  background: gray;
}

.checkbox-holder .state {
  background: #00acf3;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.checkbox-holder .text {
  font-size: 13px;
  margin: 0 0 0 9px;
  color: #333;
}

.select2-container--default .select2-selection--single {
  border-radius: 15px !important;
  border: 1px solid #dfdfe1 !important;
}

.select2-container .select2-selection--single {
  height: 35px !important;
  padding-top: 3px;
}

.select2-container--default .select2-selection--single {
  outline: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: transparent !important;
  color: #00acf3 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  outline: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #00acf3;
}

.select2-selection__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 5px !important;
}

.select2-selection__arrow:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 9px;
  height: 5px;
  background-image: url(../img/arrow.png);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.search-block__text {
  padding: 20px;
  color: #333;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  background-color: #fff;
}

.summary {
  display: none;
}

ul.pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
}

ul.pagination li {
  display: inline;
  margin-right: 5px;
}

ul.pagination li:last-child {
  margin-right: 0;
}

ul.pagination li.active a,
ul.pagination li:hover a {
  color: #1b1617;
  border-color: #00acf3;
  background-color: #fff;
}

ul.pagination li.disabled {
  visibility: hidden;
}

ul.pagination li a {
  display: block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border: 2px solid transparent;
  border-radius: 50%;
  text-transform: uppercase;
  color: #aaafc2;
  font-size: 15px;
  margin-right: 2px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  ul.pagination li a {
    padding: 8px 7px;
  }
}

.callback_button{
  max-width:160px;
}

@media only screen and (max-width: 360px) {

  .callback_button .callback_text {
    padding: 5px 8px 5px 35px;
  }

  .callback_button .callback_pulse,
  .callback_button .callback_zoomout {
    display: none;
  }

  .callback_button .callback_circle {
    width: 30px;
    height: 30px;
    border: 2px solid #000;
  }

  .callback_button .callback_circle .svg-icon {
    height: 15px;
    font-size: 15px;
  }
}

.footer-menu {
  margin-left: -5px;
}

.footer-menu__link {
  display: block;
  border-radius: 3px;
  color: #000;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

form div.required label:after {
  content: "*";
}

.checkout__hint {
  width: 370px;
  color: #909090;
  font-size: 11px;
}

/* new styles 2018 */

.card-input-widget .card-widget {
  padding: 0;
}

.checkout__hint {
  position: absolute;
  bottom: -14px;
}

.help-block {
  position: absolute;
  top: 50%;
  right: 0;
  color: #f75458;
  font-size: 11px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkout__wrap .help-block {
  max-width: 105px;
  max-height: 28px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  color: #f75458;
  font-size: 11px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkout__wrap .help-block {
  right: 10px;
}

.table tbody td .table__bage {
  display: inline-block;
  margin: 5px 0 0;
}

@media only screen and (max-width: 1200px) {
  .table tbody td .table__bage {
    font-size: 10px;
  }
}

.bonus_selector label {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.shopping-cart #invoice tbody td {
  min-width: 70px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 25px !important;
}

.shopping-cart .shopping-cart__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.radio-btn__label {
  margin: 0 0 0 10px;
}

.main>.container>.row {
  width: 100%;
  padding: 30px;
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  border-radius: 7px;
  background-color: #fff;
}

.panel {
  width: 50%;
}

.panel.panel-inner {
  width: 100%;
  padding: 20px 0;
}

@media only screen and (max-width: 768px) {
  .panel {
    width: 100%;
  }
}

.panel-heading {
  color: #403f47;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.panel-body .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  position: relative;
}

.panel-body .form-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.panel-body .control-label {
  width: 120px;
  color: #444351;
  font-size: 13px;
  margin: 0 10px 0 0;
  text-transform: uppercase;
}

.panel-body .btn {
  display: block;
  margin: 0 auto;
}

.main>.container>.row .text-center,
.main>.container>.row .auth-clients {
  width: 50%;
  text-align: center;
  margin-top: 5px;
}

.auth-clients li {
  width: 32px;
  margin: 0 auto;
  float: none;
}

.main>.container>.row .text-center>a,
.form-link {
  color: #00acf3;
}

.main>.container>.row .text-center>a:hover,
.form-link:hover {
  text-decoration: underline;
}

.form-link {
  display: block;
  margin: -10px auto 0;
}

@media only screen and (max-width: 768px) {
  .main>.container>.row {
    padding: 15px;
  }

  .main>.container>.row .text-center,
  .main>.container>.row .auth-clients {
    width: 100%;
  }
}

.form-group.field-login-form-rememberme {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 06.02.18 */
.checkout__row .select__wrap div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.radio-btn__img>strong,
form div.required .radio-btn__label:after {
  display: none;
}

.form-group_wrap {
  width: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1200px) {
  .checkout__wrap {}

  .checkout__hint {
    bottom: -8px;
  }

  .help-block {
    top: 60%;
  }

  .card-widget .help-block,
  .checkout__wrap .help-block {
    top: 58%;
  }
}

@media only screen and (max-width: 640px) {
  .form-group_wrap {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }

  .form-group_wrap .form-group {
    margin-top: 10px;
  }
}

.header-top__tel_bold {
  color: #fff;
}

.header-top__tel_box > span:after {
  content: "\00a0 ";
}

.header-top__tel_bold:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {

  .filter {
    table-layout: auto;
  }

}

@media only screen and (max-width: 640px) {
  .over-content-holder {
    padding: 0;
  }
}

@media only screen and (max-width: 500px) {
  .filter__item {
    padding: 0px 0;
    font-size: 12px;
  }
}

@media only screen and (max-width: 400px) {
  .shopping-cart__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .shopping-cart__sum {
    margin: 0 0 10px;
    width: 100%;
  }
}

.shopping-cart__row.radio-btn>input {
  display: none !important;
}

.radio-btn__label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.radio-btn__circle {
  display: inline-block;
}

.table tbody td .table__bage {
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .table tbody td .table__bage {
    margin: 0 0 0 10px;
  }
}

/* new markup styles 2018 */
.aprove {
  width: 82%;
  margin: 0 auto;
  padding: 20px 0 30px;
  text-align: center;
}

.aprove__link {
  color: #00acf3;
}

.aprove__link:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 940px) {
  .aprove {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .aprove {
    padding: 0;
  }
}

.aprove-title {
  line-height: 36px;
  margin-bottom: 20px;
}

.aprove-title__row {
  font-size: 24px;
  color: #403f47;
  text-transform: uppercase;
  font-family: "OpenSansBold";
}

@media only screen and (max-width: 768px) {
  .aprove-title__row {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .aprove-title {
    line-height: 26px;
    margin-bottom: 10px;
  }
}

.aprove-body__row {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .aprove-body__row {
    margin-bottom: 10px;
  }
}

.aprove-bottom {
  line-height: 30px;
  font-family: "OpenSansBold";
}

.aprove-bottom__row {
  color: #403f47;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  .aprove-bottom__row {
    font-size: 16px;
  }
}

.aprove-button {
  margin-top: 25px;
}

.aprove-button .btn {
  padding: 16px 30px;
}

@media only screen and (max-width: 640px) {
  .aprove-button .btn {
    padding: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .aprove-button {
    margin-top: 15px;
  }
}

.header-top__userbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-left: 20px;
}

@media only screen and (max-width: 1024px) {
  .header-top__userbar {
    margin-left: 10px;
  }
}

.header-top__userbar .mini-drop {
  width: 170px;
  left: auto;
  border-radius: 0 0 7px 7px;
  background-color: #464553;
  color: #fff;
  text-align: center;
  padding: 7px 20px 20px;
  margin-top: 5px;
}

.header-top__userbar .mini-drop__top {
  font-size: 12px;
  margin-bottom: 18px;
  font-family: "OpenSansBold";
}

.header-top__userbar .mini-drop__item {
  margin-bottom: 5px;
}

.header-top__userbar .mini-drop__item:last-child {
  margin-bottom: 0;
}

.header-top__userbar .mini-drop__link {
  padding: 10px 5px;
  border-radius: 7px;
  background-color: #555464;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.header-top__userbar .mini-drop__link:hover {
  background-color: #00acf3;
}

.header-top__userbar.open .userbar__ico .svg-icon {
  color: #00acf3;
}

.header-top__userbar.open .userbar__ico_arrow {
  -webkit-transform: rotateZ(-180deg);
  transform: rotateZ(-180deg);
}

@media only screen and (max-width: 940px) {
  .sidebar-inner {
    margin-top: 20px;
  }
}

.userbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.userbar__ico_big {
  margin-right: 5px;
}

.userbar__ico_big .svg-icon {
  font-size: 18px;
}

.userbar__ico_arrow {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.userbar__ico .svg-icon {
  color: #fff;
}

.user-list__item {
  padding: 0 20px;
  border-bottom: 1px solid #dfdfe1;
}

.user-list__item:last-child {
  border-bottom: none;
}

.user-list__link {
  color: #403f47;
  font-family: "OpenSansBold";
  font-size: 13px;
  line-height: 49px;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.user-list__link:hover,
.user-list__link.active,
.user-list__item.active .user-list__link {
  color: #00acf3;
}

.table__status>span {
  text-transform: uppercase;
}

.table__multiple-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.table__multiple-col>img {
  margin: -3px 10px 0 0;
}

.order-cart thead th,
.order-cart .table tbody td {
  padding: 15px 5px;
}

.order-cart .table tbody td:first-child {
  min-width: 100px;
}

.order-cart .table tbody td .btn {
  display: inherit;
  margin: -10px 0;
  text-align: center;
}

@media only screen and (max-width: 940px) {
  .content__block_account .content__title {
    text-align: center;
  }
}

.content__block_account .form {
  padding-left: 0;
}

.content__block_account .form__label {
  margin: 15px 15px 0 0;
  text-align: right;
}

@media only screen and (min-width: 940px) {
  .content__block_account .form__label {
    width: 18%;
  }
}

@media only screen and (max-width: 430px) {
  .content__block_account .form__label {
    width: 48%;
  }
}

.content__block_account .form__input {
  width: 46%;
}

.content__block_account .btn {
  padding: 12px 30px;
}

.content__block_account .captcha {
  width: auto;
  margin-right: 20px;
}

.content__block_account .captcha>img {
  max-width: none;
}

@media only screen and (max-width: 640px) {
  .content__block_account .captcha {
    margin-bottom: 15px;
  }
}

.content__block_account .form__wrap {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content__block_account .form__wrap .form__input {
  width: 66%;
}

@media only screen and (max-width: 640px) {
  .content__block_account .form__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.content__block_account .form__row_text .form__textarea {
  width: 80%;
}

@media only screen and (max-width: 940px) {
  .content__block_account .form__row_text .form__textarea {
    width: 46%;
  }
}

.info-holder {
  padding: 15px 0 0 30px;
}

.info-holder .btn {
  padding: 17px 30px;
}

@media only screen and (max-width: 940px) {
  .info-holder {
    padding: 15px 0 0;
  }
}

.info-list {
  font-size: 13px;
}

.info-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.info-list__title {
  width: 15%;
  text-transform: uppercase;
}

@media only screen and (max-width: 940px) {
  .info-list__title {
    width: 25%;
  }
}

@media only screen and (max-width: 640px) {
  .info-list__title {
    width: 40%;
  }
}

.info-list__name {
  width: 85%;
  color: #000;
}

.info-list__link {
  color: #00acf3;
}

.info-list__link:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .info-list__bottom {
    text-align: center;
  }
}

#account-form .form-group {
  position: relative;
}

.list-view .panel {
  width: 100%;
  padding: 30px;
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  border-radius: 7px;
  background-color: #fff;
  margin-top: 10px;
}

.list-view .panel a {
  color: #00acf3;
}

.list-view .panel a:hover {
  text-decoration: underline;
}

.list-view .summary {
  margin-top: 10px;
  text-align: center;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 210px !important;
}

.stock__bottom .btn {
  min-width: 300px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

.coupon-holder {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.coupon__wrap {
  position: relative;
}

.coupon__wrap .help-block {
  display: none;
}

.coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 25px;
}

.coupon .checkout__input {
  width: 320px;
}

.coupon .help-block {
  right: 10px;
}

.coupon .btn {
  padding: 8px 5px;
  margin-left: 5px;
}

@media only screen and (max-width: 1200px) {
  .coupon {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .coupon .checkout__wrap,
  .shopping-cart__sum {
    margin: 0;
  }

  .coupon .checkout__input {
    width: 200px;
    margin-bottom: 0;
  }

  .coupon .help-block {
    top: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .shopping-cart__sum {
    width: 100%;
  }

  .coupon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 5px;
  }

  .coupon__wrap {
    width: 60%;
  }

  .coupon .checkout__input {
    width: 100%;
  }
}

@media only screen and (max-width: 400px) {
  .coupon__wrap {
    width: 55%;
  }
}

.checkout__table .table__title th:last-child,
.shopping-cart #invoice.checkout__table tbody td:last-child {
  text-align: right;
}

.coupon-popup {
  width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0 auto;
  padding: 15px 20px;
  border-radius: 15px;
  border: 5px solid #f2f2f2;
  background-color: #ffffff;
  z-index: 99;
}

.coupon-popup__top {
  padding: 20px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 40px;
  color: #fff;
  background-color: #00acf3;
}

.coupon-popup__body {
  margin-bottom: 25px;
}

.coupon-popup__text,
.coupon-popup__info,
.coupon-popup__bottom {
  text-align: center;
}

.coupon-popup__text {
  margin-bottom: 30px;
}

.coupon-popup__text span {
  font-size: 30px;
}

.coupon-popup__text_code {
  display: inline-block;
  padding: 7px;
  background-color: #f8bc30;
  margin-left: 5px;
}

.coupon-popup__info {
  font-size: 20px;
  color: #9e9e9e;
}

.coupon-popup__bottom .btn {
  padding: 15px;
  font-size: 16px;
  margin: 0 10px;
}

.coupon-popup__bottom .btn_other {
  background-color: #cdcdcd;
}

@media only screen and (max-width: 600px) {
  .coupon-popup {
    width: 100%;
    padding: 10px;
  }

  .coupon-popup__top {
    padding: 10px;
    font-size: 20px;
    margin-bottom: 5px;
  }

  .coupon-popup__body {
    margin-bottom: 10px;
  }

  .coupon-popup__text {
    margin-bottom: 15px;
  }

  .coupon-popup__text span {
    font-size: 16px;
  }

  .coupon-popup__info {
    font-size: 14px;
  }

  .coupon-popup__bottom .btn {
    padding: 10px;
    font-size: 14px;
    margin: 0 10px;
  }
}

.shopping-cart tbody td:nth-child(3n) {
  min-width: 70px;
}

@media only screen and (max-width: 768px) {
  .shopping-cart tbody td:nth-child(3n) {
    min-width: auto;
  }
}

/* table styles */

.table {
  width: 100%;
}

.table thead {
  border-bottom: 1px solid #eaeaea;
}

.table thead th {
  text-align: left;
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.table thead th a {
  color: #333333;
}

.table tbody tr {
  border-bottom: 1px solid #eaeaea;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.checkout .table tbody tr:last-child {
  border-bottom: none;
}

.table tbody tr:hover {
  background-color: #ebf6fb;
}

.table tbody tr:hover .btn {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background-color: #2894dc;
}

@media only screen and (max-width: 1024px) {
  .table tbody tr:hover {
    background-color: inherit;
  }
}

.table tbody td {
  padding: 15px;
  line-height: 20px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}

.table.checkout__table tbody td {
  padding: 15px 20px;
}

.table tbody td img {
  display: inline-block;
  width: 60px;
}

.table tbody td span {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (max-width: 1024px) {
  .table tbody td .btn {
    font-size: 13px;
  }
}

.table tbody td .table__bage {
  display: inline-block;
  font-size: 12px;
  padding: 5px;
  margin: 0 5px;
  border-radius: 3px;
  color: #fff;
  background-color: #ee5154;
  cursor: pointer;
}


.table tbody td .table__price {
  margin-left: -3px;
}

.table tbody td .table__price_red {
  font-size: 16px;
  color: #1da93b;
  font-weight: 400;
}

.table tbody td .table__price_blue {
  font-size: 16px;
  color: #2eaafd;
}

.table tbody td .table__price_free {
  color: #ee5154;
  font-size: 16px;
  text-transform: uppercase;
}

.table tbody td .table__price_total {
  color: #ee5154;
  text-decoration: line-through;
}

@media screen and (max-width: 767px) {
  .table tbody td .table__price_total {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .table tbody td .table__price {
    margin-left: 0;
  }
}

.table__title-change {
  visibility: hidden;
}

@media only screen and (max-width: 768px) {
  .table__title-change {
    visibility: visible;
  }
}

.table__remove:hover .svg-icon {
  color: #ff5857;
}

.table tbody td .table__bage {
  display: inline-block;
  margin: 5px 0 0;
}

@media only screen and (max-width: 1200px) {
  .table tbody td .table__bage {
    font-size: 10px;
  }
}

.bonus_selector label {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.shopping-cart #invoice tbody td {
  min-width: 70px;
}

.table tbody td .table__bage {
  text-align: center;
}

.checkout__table tbody td img {
  left: 30%;
}

.checkout__table .table__title th:last-child,
.checkout__table tbody td:last-child,
.shopping-cart #invoice.checkout__table tbody td:last-child {
  text-align: right;
}

.shopping-cart__table tbody tr:hover {
  background-color: inherit;
}

.shopping-cart thead th {
  padding: 15px 5px 15px 20px;
}

.table__remove .svg-icon {
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {

  .shopping-cart__table .table__title th:first-child,
  .shopping-cart__table .table__title th:nth-child(5),
  .shopping-cart__table tbody td:first-child,
  .shopping-cart__table tbody td:nth-child(5),
  .shopping-cart__table .table__title th:nth-child(6) span,
  .checkout__table .table__title th:first-child,
  .checkout__table tbody td:first-child {
    display: none;
  }
}

@media only screen and (max-width: 500px) {

  .item .item__table thead,
  .shopping-cart__table thead,
  .checkout__table thead {
    border: 1px solid #eaeaea;
  }

  .item .item__table thead th,
  .item__table tbody td,
  .shopping-cart__table thead th,
  .shopping-cart__table tbody td,
  .table.checkout__table thead th,
  .table.checkout__table tbody td {
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
  }

  .item .item__table tbody td,
  .shopping-cart__table tbody td,
  .checkout__table tbody td {
    border-right: 1px solid #eaeaea;
  }

  .item .item__table tbody td:first-child,
  .shopping-cart__table tbody td:nth-child(2),
  .checkout__table tbody td:nth-child(2) {
    border-left: 1px solid #eaeaea;
  }

  .shopping-cart__table tbody td:nth-child(3) {
    min-width: 60px;
  }

  .shopping-cart__table thead th:first-child {
    padding: 10px 0 10px 5px;
  }

  .item .item__table tbody td span,
  .item .item__table tbody td .table__price_red,
  .item .item__table tbody td .table__price_blue,
  .shopping-cart__table tbody td span,
  .shopping-cart__table tbody td .table__price_red,
  .shopping-cart__table tbody td .table__price_blue,
  .checkout__table tbody td .table__price_red,
  .checkout__table tbody td .table__price_free,
  .checkout__table tbody td span {
    font-size: 12px;
  }

  .quantity {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* eof table styles */
.content_login {
  padding: 30px 0;
}

.content_login .content__block_account,
.content_login .content__top {
  width: 70%;
}

.content_login .checkout__wrap {
  width: 100%;
}

.content_login .form-group {
  margin-bottom: 15px;
}

.content_login .form-control {
  width: 40%;
}

.content_login .field-login-form-rememberme label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.content_login .form__label {
  width: 15%;
}

.content_login .checkout__wrap .help-block {
  right: 25%;
}

.content_login .form__row:last-child {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.content_login .form-link {
  text-align: center;
  margin: 0 auto 10px;
  outline: none;
}

@media only screen and (max-width: 940px) {

  .content_login .content__block_account,
  .content_login .content__top {
    width: 100%;
  }
}

@media only screen and (max-width: 545px) {
  .content_login .checkout__wrap .help-block {
    right: 25px;
  }

  .content_login .form__label {
    width: 22%;
  }

  .content_login .form-control,
  .content_login .content__block_account .form__input {
    width: 70%;
  }
}

@media only screen and (max-width: 360px) {
  .content_login .form__label {
    width: 26%;
  }
}

.content__block_account #password-recovery-form .form__input {
  width: 304px;
}

.bonus_item {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


.form-group.field-couponCode {
  position: relative;
}

.approve_link {
  color: #2faafd;
}

.content__block_account .table tbody td .btn {
  display: block;
  margin: -8px 0;
  font-size: 11px;
  padding: 5px 3px;
  min-width: 105px;
}

.content__block_account .table tbody td .btn:first-child {
  margin: 0 0 5px;
}

.content__block_account .table tbody td .btn:last-child {
  margin: 0;
}

.order-cart.shopping-cart thead th,
.order-cart.shopping-cart tbody td:nth-child(4),
.order-cart.shopping-cart tbody td:last-child {
  padding: 15px 5px;
}

@media only screen and (max-width: 700px) {

  .content__block_account .shopping-cart thead th,
  .content__block_account .order-cart .table tbody td {
    font-size: 12px;
    padding: 10px 5px;
  }

  .content__block_account .shopping-cart thead th:nth-child(5),
  .content__block_account .order-cart .table tbody td:nth-child(5) {
    display: none;
  }
}

@media only screen and (max-width: 400px) {

  .content__block_account .shopping-cart thead th,
  .content__block_account .order-cart .table tbody td {
    font-size: 12px;
    padding: 7px 2px;
  }

  .content__block_account .table tbody td .btn {
    font-size: 10px;
    padding: 0px 2px;
    min-width: 48px;
  }
}

.alert {
  margin-bottom: 10px;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  -o-border-image: initial;
  border-image: initial;
  border-radius: 4px;
}

.alert-success {
  color: rgb(60, 118, 61);
  background-color: rgb(223, 240, 216);
  border-color: rgb(214, 233, 198);
}

.alert-danger {
  color: rgb(169, 68, 66);
  background-color: rgb(242, 222, 222);
  border-color: rgb(235, 204, 209);
}

.alert-warning {
  color: rgb(138, 109, 59);
  background-color: rgb(252, 248, 227);
  border-color: rgb(250, 235, 204);
}

.change-address .form-group .control-label {
  display: block;
  margin-bottom: 10px;
}

.content__block,
.change-address {
  padding: 30px;
  -webkit-box-shadow: 0 3px 7px #f5f5f5;
  box-shadow: 0 3px 7px #f5f5f5;
  border-radius: 7px;
  background-color: #fff;
}

.select2-container {
  min-width: 70px !important;
}

.card-widget .checkout__wrap .form-group {
  margin-bottom: 0;
}

@media only screen and (max-width: 940px) {
  .change-address .select2-container {
    width: 100% !important;
  }
}

@media only screen and (max-width: 600px) {
  .shopping-cart__additional {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .shopping-cart__additional_checkbox {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 500px) {
  .content__block {
    padding: 5px;
  }
}

@media only screen and (max-width: 400px) {
  .coupon-holder {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .checkout__wrap .field-creditcard-cardtype .help-block {
    right: -25px;
  }
}

.change-address .form-group {
  margin: 20px 0;
}


.header-top__selection .select2 .select2-selection--single {
  height: 26px !important;
  border-radius: 7px;
  background-color: #555464;
  border: none !important;
}

.header-top__selection .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  padding-left: 14px !important;
  line-height: 21px !important;
  text-transform: uppercase !important;
}

.header-top__selection .select2-selection--single .select2-selection__arrow {
  right: 5px !important;
  top: 1px !important;
}

.header-top__selection .select2-selection__arrow:before {
  background-image: url(../img/arrow-white.png);
}

.header-top__selection .select2-container--open .select2-selection--single,
.header-top__selection .select2:hover .select2-selection--single {
  background-color: #f2f2f2 !important;
}

.header-top__selection .select2-container--open .select2-selection__rendered,
.header-top__selection .select2:hover .select2-selection__rendered {
  color: #000 !important;
}

.header-top__selection .select2-container--open .select2-selection__arrow:before,
.header-top__selection .select2:hover .select2-selection__arrow:before {
  background-image: url(../img/arrow.png);
}

.selected_bonus {
  display: block;
  margin: 5px 0 0;
}

.radio-btn__color {
  color: #ee5154;
}

.table__free {
  position: absolute;
  top: 5px;
  left: 56%;
}

@media only screen and (max-width: 700px) {
  .table__free {
    display: none;
  }
}

@media screen and (max-width: 940px) {

  .page_cart .sidebar__title,
  .page_cart .product-list {
    display: none;
  }
}

.slick-slide img {
  width: 60px;
}

.shopping-cart__sum_through {
  position: relative;
}

.shopping-cart__sum_through:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fc5b4a;
}

.btn__color-inner {
  color: #1da93b;
}

.select2-results__option {
  padding: 10px !important;
  text-transform: uppercase !important;
}

.select2-dropdown {
  border: 1px solid #f2f2f2 !important;
}

.select2-results__option {
  padding-left: 14px !important;
}

.select2.select2-container--open.select2-container--default .select2-selection--single {
  border-radius: 7px 7px 0 0 !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 7px !important;
}

.select2-dropdown,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  background-color: #f2f2f2 !important;
}

.shopping-cart__box_mobile,
.bonus_row {
  display: none;
}

.shopping-cart__box_mobile {
  display: block;
}

.shopping-cart__bonus {
  padding: 15px 15px 15px 24px;
}

.shopping-cart__bonus>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bonus_selector label {
  margin: 0 10px 0 0;
  font-weight: 700;
}

.bonus_selector label>input {
  margin-right: 10px;
}

@media only screen and (max-width: 940px) {
  .shopping-cart__bonus>div {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .bonus_selector label {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .bonus_selector label:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 500px) {
  .bonus_item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.ui-autocomplete {
  max-height: 600px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
  /* add padding to account for vertical scrollbar */
  z-index: 1000 !important;
}

.item__table.table thead th {
  padding: 15px;
}

.item__table.table thead th,
.item__table.table tbody td {
  text-align: center;
  text-transform: capitalize;
}

.item__table.table tbody td:last-child {
  padding: 15px 5px;
}

.table tbody td .table__price_bold {
  font-weight: 700;
}

.table tbody td .table__bonus {
  font-size: 12px;
  color: #1da93b;
}

.table tbody td .table__bonus_delivery {
  color: #f06623;
}

.table__price_row {
  line-height: 15px;
}

@media only screen and (max-width: 1200px) {

  .table tbody td span {
    font-size: 12px;
  }
}

.table__price_lower {
  text-transform: lowercase;
}

.table tbody td .table__price_bright {
  color: #ff3030;
}

.main-menu__link_usermenu {
  display: none;
}

@media only screen and (max-width: 500px) {
  .item .item__table thead th {
    padding: 10px 0;
  }

  .item__table.table tbody td {
    padding: 15px 0 15px 0px;
  }

  .header-top__userbar,
  .callback_button .callback_text {
    display: none;
  }

  .header-top__callback {
    width: 44px;
    min-width: 44px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    padding: 0;
    margin-right: 10px;
  }

  .main-menu__link_usermenu {
    display: block;
  }
}

@media only screen and (max-width: 360px) {
  .header-top__callback {
    width: 25px;
    width: 33px;
    min-width: 33px;
  }
}

.content__subtitle {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
}

/* fade image in after load */
.lazyload,
.lazyloading {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}

.item__extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 13px;
  margin-bottom: 25px;
  border-top: 1px solid #dcddd9;
}

.item__zum_photos {
  width: 190px;
  margin-right: 10px;
}

.zoom-photo-holder {
  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;
  margin-bottom: 9px;
}

.zoom-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  margin: 0 6px;
  position: relative;
  cursor: pointer;
}

.zoom-photo:hover .zoom-photo__big {
  opacity: 1;
  visibility: visible;
}

.zoom-photo > img {
  height: 100%;
}

.zoom-photo img {
  border-radius: 5px;
}

.zoom-photo-bottom {
  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;
  color: #7c7c7c;
}

.zoom-photo-icon {
  font-size: 15px;
  margin-right: 5px;
}

.zoom-photo-text {
  font-size: 12px;
  text-transform: uppercase;
}

.zoom-photo__big {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform:translate(-50%, -50%);
  -moz-transform:translate(-50%, -50%);
  -ms-transform:translate(-50%, -50%);
  -o-transform:translate(-50%, -50%);
  transform:translate(-50%, -50%);
  width: 400px;
  padding: 32px 23px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  border: 4px solid #f2f2f2;
  background-color: #ffffff;
  z-index: 10;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  max-height:75vh;
  overflow:auto;
}

.zoom-photo__big img {
  margin: 0 auto;
}

.item__zum_photos_mob {
  display: none;
}

@media only screen and (max-width: 768px) {

  .item__zum_photos_mob {
    display: block;
    margin: 0 auto 30px;
  }
}

.item-date {
  width: 80px;
  max-height: 90px;
  overflow: hidden;
  border-radius: 5px;
  margin: 0 30px 10px 0;
}

@media only screen and (max-width: 400px) {
  .item-date {
    margin: 0 auto 10px;
  }
}

.item-date__mounth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px;
  background-color: #2eaafd;
  color: #fff;
  text-transform: uppercase;
}

.item-date__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 26px;
  padding: 11px 15px;
  font-family: "OpenSansBold";
  background-color: #fff;
  color: #000;
  border: 1px solid #dcddd9;
  text-transform: uppercase;
}

.item-delivery {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.item-delivery__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 24px;
}

.item-delivery__row:last-child {
  margin-bottom: 0;
}

.item-delivery__box {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  color: #231f20;
  padding: 0 10px;
}

.item-delivery__img {
  width: 70px;
}

.item-delivery__period_value {
  text-transform: uppercase;
  color: #2eaafd;
}

.package-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.package-example__box {
  width: 50%;
}

@media only screen and (max-width: 1200px) {
  .package-example {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .package-example__box:first-child {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .package-photos__box:after {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .package-example__box {
    width: 100%;
  }
}

.package-example__box:first-child {
  margin-right: 50px;
}

.package-example__title {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 13px;
}

.package-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.package-photos__title {
  text-align: center;
  margin-bottom: 12px;
}

.package-photos__box {
  position: relative;
}

.package-photos__box:after {
  content: '';
  width: 1px;
  height: 62px;
  position: absolute;
  top: 50%;
  right: -16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #000;
}

.package-photos__box:last-child:after {
  display: none;
}

.zoom-photo-holder {
  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;
  margin-bottom: 9px;
}

.zoom-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 50px;
  margin: 0 6px;
  position: relative;
  cursor: pointer;
}

.zoom-photo:hover .zoom-photo__big {
  opacity: 1;
  visibility: visible;
}

.zoom-photo > img {
  height: 100%;
}

.zoom-photo img {
  border-radius: 5px;
}

.zoom-photo-bottom {
  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;
  color: #7c7c7c;
}

.zoom-photo-icon {
  font-size: 15px;
  margin-right: 5px;
}

.zoom-photo-text {
  font-size: 12px;
  text-transform: uppercase;
}


@media only screen and (max-width: 768px) {
  .zoom-photo__big {
    width: 300px;
  }
}

@media only screen and (max-width: 600px) {
  .item__zum_photos {
    width: 100%;
    margin:0 0 10px 0;
  }

  .zoom-photo__big {
    width: 250px;
  }
}

@media only screen and (max-width: 400px) {
  .item__zum_photos {
    width: 100%;
    margin:0 0 10px 0;
  }
}


.item-date {
  width: 80px;
  max-height: 90px;
  overflow: hidden;
  border-radius: 5px;
  margin: 0 30px 10px 0;
}

@media only screen and (max-width: 500px) {
  .item-date {
    display: none;
  }
}

.item-date__mounth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px;
  background-color: #00acf3;
  color: #fff;
  text-transform: uppercase;
}

.item-date__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 26px;
  padding: 11px 15px;
  font-family: "OpenSansBold";
  background-color: #464956;
  color: #fff;
  text-transform: uppercase;
}

.item-delivery {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.item-delivery__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 24px;
}

.item-delivery__row:last-child {
  margin-bottom: 0;
}

.item-delivery__box {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  color: #231f20;
  padding: 0 10px;
}

.item-delivery__img {
  width: 70px;
}

.item-delivery__period_value {
  text-transform: uppercase;
  color: #444351;
  font-weight: bold;
}

.package-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.package-example__box {
  width: 50%;
}

@media only screen and (max-width: 1200px) {
  .package-example {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .package-example__box:first-child {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .package-photos__box:after {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .package-example__box {
    width: 100%;
  }
}

.package-example__box:first-child {
  margin-right: 50px;
}

.package-example__title {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 13px;
}

.package-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.package-photos__title {
  text-align: center;
  margin-bottom: 12px;
}

.package-photos__box {
  position: relative;
}

.package-photos__box:after {
  content: '';
  width: 1px;
  height: 62px;
  position: absolute;
  top: 50%;
  right: -16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #dfdfe1;
}

.package-photos__box:last-child:after {
  display: none;
}

.content-order {
  margin-top: 20px;
}

.content-order__row {
  margin: 10px 0;
}
.about-us {
  overflow: hidden;
}

.about-us__img {
  float: right;
  max-width: 400px;
  margin: 0 0 10px 10px;
}

.about-us__row {
  margin-bottom: 15px;
}

.about-us__row:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  .about-us__img {
    max-width: 300px;
  }
  .content__block_account .shopping-cart__sum_price {
    color: #000;
  }

  .content__subtitle-small {
    font-size: 14px;
    margin: 0 0 20px;
    padding: 5px 30px 25px;
    background: #fff;
    border-radius: 7px;
  }

  .about-us__text {
    margin: 0 0 10px 0;
  }
}

@media only screen and (max-width: 550px) {
  .about-us__img {
    width: 100%;
    float: none;
    margin: 0 auto 15px;
  }
}

.item-delivery__row:first-child .item-delivery__flag {
  margin-left: -3px;
  margin-left: 2px;
}

.zoom-photo__close {
  position: absolute;
  top: 6px;
  right: 6px;
  font-weight: 700;
  font-size: 18px;
}

.zoom-photo.no-hover .zoom-photo__big {
  display: none;
}

.zoom-photo__close .svg-icon {
  color: #2eaafd;
  font-size: 22px;
}

@media only screen and (max-width: 768px) {
  .item__zum_photos_desc {
    display: none;
  }
}

.scroll-to{
  display:none;
  position:fixed;
  right:10px;
  bottom:50px;
  bottom:70px;
  color:#dcd8d8;
  background:#fff;
  width:50px;
  height:50px;
  border-radius:50%;
  box-shadow:0px 0px 11px -6px #000;
  z-index: 99;
}

.scroll-to.show{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.scroll-to:hover{
  color:#2eaafd;
}

.scroll-to .svg-icon{
  font-size:16px;
}

#shopping-cart .shopping-cart__table .cart-item .cart-item-link span{
  color: #00acf3;
  text-decoration: underline;
}
#shopping-cart .shopping-cart__table .cart-item .cart-item-link span:hover {
  text-decoration: none;
}

/*header slider and cart slider*/
.cart-slider__block {
  padding: 15px 25px;
}

.cart-slider__block .cart-slider {
  width: 100%;
  padding: 0 20px;
  margin: 0 -20px 0 0;
}

.cart-slider__block .slick-track {
  display: flex;
}

.cart-slider__block .product-card {
  width: 100%;
}
.stock {
  width: 370px;
}

.stock__info {
  text-align: right;
}

.cart-slider__block .cart-slider__item {
  border-radius: 7px;
  border: 2px solid #e5e5e5;
  background-color: #ffffff;
}

.cart-slider__block .cart-slider__item.background-item .product-card__title,
.cart-slider__block .cart-slider__item.background-item .product-card__price,
.cart-slider__block .cart-slider__item.background-item .product-card__text,
.cart-slider__block .cart-slider__item.background-item .product-card__category {
  color: #ffffff;
}

.cart-slider__block .cart-slider__item {
  margin: 0 10px;
}

.cart-slider__block .cart-slider__item:hover {
  border: 2px solid #2daef2;
}

.cart-slider__block .product-card__top {
  height: 120px;
}

.cart-slider__block .product-card__category {
  margin-bottom: 14px;
}

.cart-slider__block .product-card__title {
  height: auto;
  margin-bottom: 8px;
}

.cart-slider__block a {
  outline: none;
}

.cart-slider__block .product-card__bottom {
  height: auto;
  padding: 0 12px 21px;
}

.cart-slider__block .product-card__btn {
  border-radius: 20px;
  padding: 10px 13px;
}

.cart-slider__block .product-card__btn:hover {
  background-color: #2eaafd;
  color: #ffffff;
}

.cart-slider__block .product-card__btn:hover svg {
  fill: #ffffff;
}

.cart-slider__block .slick-prev,
.cart-slider__block .slick-next {
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  transform: translate(0,-50%);
  cursor: pointer;
  color: transparent;
  outline: 0;
  background: 0 0;
  background-color: #ffffff;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border: 2px solid #2eaafd;
  border-radius: 17px;
}

.cart-slider__block .slick-prev {
  left: -25px;
}

.cart-slider__block .slick-next {
  right: -25px;
}

.cart-slider__block .slick-prev:hover,
.cart-slider__block .slick-next:hover {
  background-color: #2daef2;
}

.cart-slider__block .slick-prev:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  opacity: 1;
  top: 31%;
  left: 65%;
  border-style: solid;
  border-width: 2px 0 0 2px;
  border-color: #2daef2 transparent transparent #2daef2;
  transform: rotate(-45deg) translate(-50%, -50%);
}

.cart-slider__block .slick-next:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  opacity: 1;
  top: 59%;
  left: 24%;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg) translate(-50%, -50%);
  border-color: #2daef2 #2daef2 transparent transparent;
}

.cart-slider__block .slick-arrow.slick-disabled {
  opacity: .5;
}

.cart-slider__block .slick-arrow.slick-disabled:before {
  opacity: 1;
}

.cart-slider__block .slick-prev:hover:before {
  border-color: #ffffff transparent transparent #ffffff;
}

.cart-slider__block .slick-next:hover:before {
  border-color: #ffffff #ffffff transparent transparent;
}


/*header slider*/
.header-top__banner {
  display: block;
  max-width: 165px;
}

.stock.header-slider .slick-prev,
.stock.header-slider .slick-next {
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  transform: translate(0,-50%);
  cursor: pointer;
  color: transparent;
  outline: 0;
  background: 0 0;
  background-color: #ffffff;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border: 2px solid #2eaafd;
  border-radius: 17px;
  top: 50px;
  z-index: 5;
}

.cart-slider__block .slick-prev {
  left: -25px;
}

.cart-slider__block .slick-next {
  right: -25px;
}

.stock.header-slider {
  padding: 0;
}

.stock__bottom .btn {
  min-width: initial;
  width: 100%;
  padding: 10px 0;
}

.stock__holder.slick-slide {
  padding: 4px 5px;
}

@media (max-width: 767px) {
  .header-bottom .container {
    flex-wrap: wrap;
  }
  .stock.header-slider {
    width: 100%;
  }
  .stock__holder.slick-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.stock.header-slider .stock__top {
  padding: 15px 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stock.header-slider .slick-prev {
  left: 5px;
}

.stock.header-slider .slick-next {
  right: 5px;
}

.stock.header-slider .slick-prev:hover,
.stock.header-slider .slick-next:hover {
  background-color: #2daef2;
}

.stock.header-slider .slick-prev:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  opacity: 1;
  top: 31%;
  left: 65%;
  border-style: solid;
  border-width: 2px 0 0 2px;
  border-color: #2daef2 transparent transparent #2daef2;
  transform: rotate(-45deg) translate(-50%, -50%);
}

.stock.header-slider .slick-next:before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  opacity: 1;
  top: 59%;
  left: 24%;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg) translate(-50%, -50%);
  border-color: #2daef2 #2daef2 transparent transparent;
}

.stock.header-slider .slick-arrow.slick-disabled {
  opacity: .5;
}

.stock.header-slider .slick-arrow.slick-disabled:before {
  opacity: 1;
}

.stock.header-slider .slick-prev:hover:before {
  border-color: #ffffff transparent transparent #ffffff;
}

.stock.header-slider .slick-next:hover:before {
  border-color: #ffffff #ffffff transparent transparent;
}

/* discount */
.main .container.discount-block{
  display:block;
  padding-bottom:50px;
}

@media screen and (max-width: 767px) {
  .main .container.discount-block{
    padding-bottom:20px;
  }
}
.discount-sup{
  background: #fff url("./images/bg-card.jpg") repeat;
  background-size: cover;
  /* padding: 14px; */
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .discount-sup{
    margin-bottom: 20px;
  }
}

.discount-sub{
  font-size: 18px;
  z-index: 1000;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .discount-sub{
    font-size: 11px;
    margin:10px 0 0 0;
  }
}

.discount-column{
  flex-shrink: 1;
  flex-grow: 1;
  min-width: 1px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 104px;
  line-height: 1;
  color: #fff;
  padding: 10px 0 10px 30px;
  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;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1180px) {
  .discount-column{
    font-size: 90px;
  }
}
@media only screen and (max-width: 1080px) {
  .discount-column{
    font-size: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .discount-column{
    padding: 5px 0 5px 10px;
  }
}
.discount-column:after{
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  bottom: 0;
  right: -40px;
  background-color: rgba(255, 2, 2, .6);
  transform: skew(-15deg, 0);
}
@media only screen and (max-width: 568px) {
  .discount-column:after{
    right: -20px;
  }
}
.discount-column .wrap{
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  .discount-column .wrap{
    flex-direction: column;
    justify-content: center;
  }
}
.discount-column strong{
  margin-right: 14px;
}
@media only screen and (max-width: 960px) {
  .discount-column strong{
    font-size: 90px;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .discount-column strong{
    font-size: 80px;
  }
}
@media only screen and (max-width: 568px) {
  .discount-column strong{
    font-size: 60px;
  }
}
@media only screen and (max-width: 413px) {
  .discount-column strong{
    font-size: 40px;
  }
}
.discount-column span{
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 960px) {
  .discount-column span{
    font-size: 48px;
    letter-spacing: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .discount-column span{
    font-size: 18px;
    letter-spacing: 12px;
  }
}
@media only screen and (max-width: 568px) {
  .discount-column span{
    letter-spacing: 6px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 413px) {
  .discount-column span{
    font-size: 10px;
  }
}
.add-column{
  padding: 14px;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .add-column{
    padding: 10px;
  }
}
.add-column:after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../img/doc.png") no-repeat top right;
  background-size: contain;
  width: 768px;
  height: 100%;
}
.add-column img{
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .add-column img{
    max-width: 190px;
  }
}
@media only screen and (max-width: 568px) {
  .add-column img{
    max-width: 140px;
  }
}
@media only screen and (max-width: 414px) {
  .add-column img{
    max-width: 110px;
  }
}
.add-column .wrap{
  position: relative;
  z-index: 1;
  padding: 0 95px 0 12px;
  color: #464956;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.33px;
}
@media only screen and (max-width: 767px) {
  .add-column .wrap{
    padding: 0 55px 0 12px;
  }
}
@media only screen and (max-width: 568px) {
  .add-column .wrap{
    font-size: 12px;
  }
}
.add-column span{
  margin-top: 4px;
  display: block;
}

.discount-items{
  margin: -5px;
  display: flex;
  padding-bottom: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1000px) {
  .discount-items{
    max-width: 640px;
    margin: -5px auto;
  }
}
@media only screen and (max-width: 767px) {
  .discount-items{
    padding-bottom: 20px;
  }
}
.discount-thumb{
  width: 50%;
  padding: 5px;
}
@media only screen and (max-width: 1000px) {
  .discount-thumb{
    width: 100%;
    padding: 5px 0;
  }
}
.discount-th{
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
}
@media only screen and (min-width: 1025px) {
  .discount-th:hover .btn-inner{
    background-color: #00acf3;
    color: #fff;
  }
  .discount-th:hover .btn-inner path{
    fill: #fff;
  }
}
.wrap-bg{
  position: relative;
  padding-bottom: 60.8%;
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .wrap-bg{
    padding-bottom: 76.7%;
  }
}
.wrap-bg img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.wrap-flex{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}
.sup-headline{
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  margin-bottom: 4px;
}
.sup-headline:before,
.sup-headline:after{
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #fff;
}
.sup-headline:before{
  right: 100%;
}
.sup-headline:after{
  left: 100%;
}
.sup-headline span{
  padding: 0 8px;
}
.sup-pills{
  padding: 3px 6px;
  border-radius: 10px;
  background-color: #fc5b4a;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
@media only screen and (max-width: 413px) {
  .sup-pills{
    font-size: 11px;
    padding: 2px 4px;
  }
}
.thumb-text{
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wrap-item{
  display: flex;
  justify-content: center;
  height: 6.7vw;
  margin-bottom: 4px;
}
@media only screen and (max-width: 1000px) {
  .wrap-item{
    height: 18.8vw;
  }
}
@media only screen and (max-width: 413px) {
  .wrap-item{
    height: 10vw;
  }
}
.wrap-item img{
  display: inline-block;
  vertical-align: top;
  height: 100%;
  width: auto;
}
.discount-title{
  font-size: 12px;
  letter-spacing: 0.48px;
  margin-bottom: 4px;
}
.wrap-flex .name{
  font-size: 16px;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.cols-tool{
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.cols-tool .price{
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 414px) {
  .cols-tool .price{
    font-size: 20px;
  }
}
.cols-tool .stick{
  margin-left: 8px;
  color: #818181;
  font-size: 8px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #b0b0b0;
  background-color: #fff;
  padding: 2px 5px;
}

.btn-inner{
  color: #464553;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 14px;
  max-width: 170px;
  width: 100%;
  text-align: center;
  background-color: #f7f7f7;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 414px) {
  .btn-inner{
    padding: 8px;
    font-size: 12px;
  }
}
.btn-inner svg{
  margin-right: 10px;
  flex-shrink: 0;
  flex-grow: 0;
}

.discount-more{
  display: flex;
  justify-content: center;
}
.discount-block .discount-btn{
  padding: 15px 26px;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  text-align: center;
  color: #fff;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 9px 18px rgba(0, 172, 243, 0.4);
  border-radius: 20px;
  font-family: 'Open Sans', sans-serif;
  border: 4px solid #00acf3;
  background-color: #0097f7;
  background-image: linear-gradient(to top, #0097f7 0%, #00acf3 100%);
}
@media only screen and (min-width: 1025px) {
  .discount-block .discount-btn:hover svg{
    transform: translate3d(10px, 0, 0);
  }
}
@media only screen and (max-width: 414px) {
  .discount-block .discount-btn {
    padding: 10px 20px;
  }
}
.discount-block .discount-btn strong{
  display: block;
  text-transform: uppercase;
  font-size: 40px;
}
@media only screen and (max-width: 414px) {
  .discount-block .discount-btn strong {
    font-size: 30px;
  }
}
.discount-block .discount-btn small{
  font-size: 12px;
}
@media only screen and (max-width: 414px) {
  .discount-block .discount-btn small {
    font-size: 11px;
  }
}
.discount-block .discount-btn .col{
  flex-shrink: 1;
  flex-grow: 1;
  min-width: 1px;
}
.discount-block .discount-btn .col.second{
  flex-shrink: 0;
  flex-grow: 0;
  min-width: auto;
}
.discount-block .discount-btn svg{
  display: block;
  transform: translate3d(0, 0, 0);
  transition: transform .3s;
}


@media (max-width: 500px) {
  .content__block form {
    padding: 0 5px;
  }

  .content__block_account .form__label {
    width: 85px;
    text-align: left;
  }

  .content__block_account .form__input {
    width: 100%;
  }
}

[data-slick-index="16"] .lazyloading {
  opacity: 1 !important;
}

.content__block {
  margin: 0 0 10px;
}

I!
In/a
I3
Age!
Сводный отчет