/* 
	version 
	12.10.2026

/* FONT */
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Medium.eot");
  src:
    url("/fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Gilroy-Medium.woff") format("woff"),
    url("/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Regular.eot");
  src:
    url("/fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Gilroy-Regular.woff") format("woff"),
    url("/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Light.eot");
  src:
    url("/fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Gilroy-Light.woff") format("woff"),
    url("/fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-SemiBold.eot");
  src:
    url("/fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Gilroy-SemiBold.woff") format("woff"),
    url("/fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* MAIN STYLE */
/* LAYOUT START */

:root {
  --main-color: #e5006c;
  --bg-color: #242424;

  --text-hero: 3.625rem;
  --text-h1: 3rem;
  --text-h2: 1.625rem;
  --text-body: 1.25rem;
  --text-small: 1rem;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  font-size: var(--text-body);
  line-height: normal;
  font-weight: 300;
  font-family: "Gilroy", Sans-Serif;
  color: #242424;
}

* {
  outline: none;
}

header {
  z-index: 90;
  padding-top: 10px;
  padding-bottom: 15px;
  width: 100%;
}

.header_container {
  width: 100%;
  padding: 0 60px;
  max-width: 1720px;
  margin: auto;
  position: relative;
}

.divider {
  height: 1px;
  background: #ccc;
}

header#header .top_links i {
  display: none;
}

.header_white {
  background: #fff;
}

.header_grey {
  background: #fafafa;
}

.bkg_grey,
.tile_grey {
  background: #f9f9f9;
}

main {
  position: relative;
  z-index: 80;
}

p {
  margin: 8px 0;
}

a,
.link {
  color: #e5006c;
  text-decoration: none;
  transition: 0.5s;
  display: inline-block;
  cursor: pointer;
}

a:hover,
a:focus,
.link:hover,
.link:focus {
  color: #a90050;
  transition: 0.5s;
  text-decoration: underline;
}

.hiddenText {
  display: none;
}

.img-responsive {
  height: auto;
  max-width: 100%;
}

.tooltip-inner {
  max-width: 500px;
  padding: 10px;
  color: #000;
  border: 1px solid #e5006c;
  background: #fff;
  text-align: left;
  font-size: 14px;
}

.tooltip.top .tooltip-arrow {
  border-top-color: #e5006c;
}

.videoWrapper {
  position: relative;
  padding-bottom: 52%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe,
.videoWrapper video {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #e2e2e2;
  width: 100%;
  height: 100%;
}

.red {
  color: #ed1c24 !important;
}

.pink {
  color: #e5006c !important;
}

.grey_dark {
  color: #39332f !important;
}

.black {
  color: #000 !important;
}

.green {
  color: green;
}

figcaption {
  font-size: 15px;
  margin-top: 10px;
}

.ol_list_outline {
  list-style: none;
  counter-reset: my-counter;
  padding-left: 0;
  margin-bottom: 0;
}

.ol_list_outline li {
  counter-increment: my-counter;
  padding: 8px 0;
  position: relative;
}

.ol_list_outline > li:before {
  content: counter(my-counter);
  color: #e5006c;
  font-weight: normal;
  width: 22px;
  height: 22px;
  font-size: var(--text-small);
  border: 1px solid #e5006c;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  margin-right: 10px;
}

.ol_list_filled {
  position: relative;
  list-style: none;
  counter-reset: my-counter;
  padding-left: 0;
  margin-bottom: 0;
}

.ol_list_filled > li {
  counter-increment: my-counter;
  padding: 8px 0;
  position: relative;
}

.ol_list_filled > li:before {
  content: counter(my-counter);
  color: #fff;
  font-weight: normal;
  border: 1px solid #e5006c;
  background: #e5006c;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: var(--text-small);
  line-height: 1;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  margin-right: 10px;
}

.ul_list {
  list-style: none;
  margin: 0 0 0 24px;
  padding: 0;
}

.ul_list li {
  padding: 8px 0 8px 20px;
  position: relative;
}

.ul_list li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  background: #e5006c;
  left: 0;
  top: 15px;
}

.textBlock-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

.textBlock-flex > div {
  flex: 1;
}

.textBlock-flexColumn {
  gap: 10px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

.block_padding {
  padding: 100px 0;
}

.block_paddingT {
  padding-top: 100px;
}

.block_paddingB {
  padding-bottom: 100px;
}

img {
  border: none;
}

form {
  margin: 0;
}

.block_ch_container {
  display: flex;
}

.block_ch_text {
  width: calc(100% - 800px);
}

.block_ch_img {
  float: right;
  position: relative;
  width: 1002px;
  overflow: hidden;
  background-position: right top;
  background-repeat: no-repeat;
  background-image: url(/UserFiles/Image/tile_video_en.webp);
  height: 525px;
  padding: 11px 0 0;
  margin: 30px -140px 30px 0;
}

.block_ch_img iframe {
  position: absolute;
  width: 754px;
  height: 478px;
  right: 95px;
}

/* title */

h1,
.h1 {
  font-family: "Gilroy", Arial;
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1;
}

h2,
.h2 {
  font-family: "Gilroy", Arial;
  font-size: var(--text-h1);
  font-weight: 300;
}

h3,
.h3 {
  font-family: "Gilroy", Arial;
  font-size: var(--text-h2);
  font-weight: 300;
}

h4,
.h4,
h5,
.h5 {
  font-family: "Gilroy", Arial;
  font-size: var(--text-h2);
  font-weight: 300;
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.subtitle {
  font-family: "Gilroy", Arial;
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.3;
}

.title {
  margin-bottom: 35px;
  margin-top: 30px;
}

/* title */

/* nav tabs */

#prod_tabs {
  margin-bottom: 30px;
}

#prod_tabs li {
  float: none;
  display: inline-block;
}

#prod_tabs li a {
  padding: 6px 20px;
  font-size: 22px;
  font-weight: 300;
  margin: 0;
  border-radius: 0;
  border: transparent;
}

#prod_tabs li,
#prod_tabs li:hover {
  margin: 0;
}

#prod_tabs li:hover a {
  border: transparent;
  color: #e3146d;
}

#prod_tabs li.active a {
  border: transparent;
  background: #e3146d;
  color: #fff;
  border-radius: 0;
}

/* nav tabs end */

/* progress */

.progress-tracker {
  display: flex;
  margin: 30px auto 20px;
  padding: 0;
  list-style: none;
}

.progress-step {
  flex: 1 1 0%;
  margin: 0;
  padding: 0;
  min-width: 24px;
}

.progress-step:last-child {
  flex-grow: 0;
}

.progress-step:last-child .progress-marker::after {
  display: none;
}

.progress-link {
  display: block;
  position: relative;
}

.progress-marker {
  display: block;
  position: relative;
}

.progress-marker::before {
  content: attr(data-text);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  width: 24px;
  height: 24px;
  padding-bottom: 2px;
  border-radius: 50%;
  transition: background-color, border-color;
  transition-duration: 0.3s;
}

.progress-marker::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -10;
  top: 10px;
  right: -12px;
  width: 100%;
  height: 4px;
  transition:
    background-color 0.3s,
    background-position 0.3s;
}

.progress-text {
  display: block;
  padding: 8px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-title {
  margin-top: 0;
  font-size: 20px;
  line-height: initial;
  font-weight: 500;
}

.progress-step .progress-marker {
  color: #fff;
}

.progress-step .progress-marker::before {
  background-color: #b6b6b6;
}

.progress-step .progress-marker::after {
  background-color: #b6b6b6;
}

.progress-step .progress-text {
  color: #333;
}

.progress-step.is-active .progress-marker::before {
  background-color: #e5006c;
}

.progress-step.is-complete .progress-marker::before,
.progress-step.is-progress .progress-marker::before {
  background-color: #e5006c;
}

.progress-step.is-complete .progress-marker::after,
.progress-step.is-progress .progress-marker::after {
  background-color: #868686;
}

.anim--path .progress-step.is-complete .progress-marker::after {
  background-position: -100% 100%;
}

[dir="rtl"] .progress-marker::after {
  right: auto;
  left: -12px;
}

.progress-tracker--text .progress-step:last-child,
.progress-tracker--center .progress-step:last-child,
.progress-tracker--right .progress-step:last-child {
  flex-grow: 1;
}

/* progress end */

/* socials */

#login_fb {
  color: #fff;
  border: 1px solid #1877f2;
  background: #1877f2;
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 10px;
  float: left;
  height: 38px;
}

#login_fb i {
  color: #1877f2;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background: #fff;
  margin-right: 9px;
}

.widget_login {
  text-align: center;
  margin: auto;
  display: flex;
  justify-content: center;
  height: 100dvh;
  align-items: center;
}

#login_g_plus {
  max-width: 220px;
}

#reg_mail {
  border-radius: 4px;
  margin-top: 10px;
  height: 38px;
  position: relative;
  padding: 0 20px 0 10px;
  font-size: 15px;
  margin-left: 0;
  border: none;
}

#reg_mail i {
  margin: 0 10px;
}

.fa-viber {
  color: #7360f2;
}

.fa-skype {
  color: #00aff0;
}

.fa-facebook-square {
  color: #3b5998;
}

.fa-facebook-messenger {
  color: #0078ff;
}

.fa-linkedin {
  color: #2867b2;
}

.fa-whatsapp {
  color: #25d366;
}

.fa-telegram {
  color: #0088cc;
}

/* socials end */

/* HOMEPAGE */

.hp_block1 .h1 {
  letter-spacing: -2px;
}

/*  slick-current slick-active */

.block_services {
  margin: 60px auto 0;
  justify-content: center;
  width: 1400px;
}

.item_services {
  padding: 50px 35px;
  margin: 20px;
  display: flex;
  flex-flow: column;
  text-align: center;
  transition: 0.5s;
}

.slick-current.slick-active .item_services {
  border: 1px solid #e5006c;
  border-radius: 5px;
}

.img_services {
  margin-bottom: 20px;
  text-align: center;
  align-items: center;
  display: flex;
  height: 145px;
  justify-content: center;
}

.item_services:hover {
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0 0 15px #e5006ca8;
}

.item_services p {
  font-size: var(--text-small);
}
/* Вікно */
.dots-window {
  overflow: hidden;
  width: 150px;
  margin: 20px auto 0;
}

.slick-dots {
  display: flex !important;
  transition: transform 0.3s ease;
  will-change: transform;
  position: relative;
  bottom: 0;
  padding: 5px 0;
}

.slick-dots li {
  width: 20px;
  flex: 0 0 auto;
  text-align: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.slick-dots li.small {
  transform: scale(0.6);
  opacity: 0.3;
}

.slick-dots li.medium {
  transform: scale(0.85);
  opacity: 0.7;
}

.slick-dots li.large {
  transform: scale(1.2);
  opacity: 1;
}

.slick-dots li button:before {
  opacity: 1;
  color: transparent;
  border-radius: 50%;
  background: #979797;
}

.slick-dots li.large button:before {
  color: #e5006c;
  background: #e5006c;
}

/*  slick-current slick-active */

/* homepage block_count */

/* Page Size charts */

.block_chp {
  overflow: hidden;
  padding: 100px 0;
  background: #fff;
}

/* Page Size charts end */

/* Pages services */

.page_fms .hp_video_average {
  z-index: 1000;
  position: relative;
  left: -85px;
  width: 945px;
}

.page_fms .hp_video_average video {
  width: 753px;
  height: 432px;
  left: 94px;
  position: relative;
}

.page_fms .d-flex2 {
  flex-wrap: wrap;
}

.page_fms .d-flex2 > div:not(.hp_video_average) {
  width: calc(100% - 945px);
}

.d-flex3.page_fms {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.d-flex3.page_fms > div:first-child {
  width: 40%;
}

.page_sa {
  overflow: hidden;
  display: flex;
  gap: 130px;
  align-items: center;
}

.page_imp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page_imp_right {
  width: calc(100% - 700px);
}

/* Pages services end */

.icon_item_block {
  display: flex;
  margin-top: 80px;
  justify-content: space-between;
}

.icon_item {
  text-align: center;
  align-items: center;
  display: flex;
  flex-flow: column;
  width: 33%;
}

.icon_counter {
  height: 90px;
  display: flex;
  align-items: center;
}

.icon_item_number {
  font-weight: 300;
  font-size: 53px;
  text-align: center;
  color: #e5006c;
  margin: 10px 0 5px;
}

.icon_item_name {
  font-size: 24px;
  text-align: center;
}

/* homepage block_count end */

/* homepage integration */

.integration_slides {
  display: flex;
  gap: 15px;
  flex-flow: column;
}

.integration_slidesRow1 {
  display: flex;
  align-items: baseline;
  gap: 15px;
  padding-left: 75px;
  justify-content: center;
}

.integration_slidesRow2 {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* homepage integration end */

/* testimonials */

#ourShops_slider {
  padding-bottom: 40px;
  margin-top: 60px;
  margin-right: -50px;
  display: flow-root;
}

.ourShops_slider-img {
  height: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.ourShops_slider-img img {
  filter: grayscale(1);
  max-width: 300px;
  max-height: 75px;
}

.ourShops_slider-text {
  padding-right: 50px;
}

.ourShops_slider-item .link.review {
  float: right;
  padding-right: 50px;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);

  cursor: pointer;
  transition: all 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* стрілки */
.slick-prev::before,
.slick-next::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #e5006c;
  border-right: 2px solid #e5006c;
  display: block;
}

/* позиції */
.slick-prev {
  left: 15px;
}

.slick-next {
  right: 15px;
}

/* напрямки */
.slick-prev::before {
  transform: rotate(-135deg);
}

.slick-next::before {
  transform: rotate(45deg);
}

/* hover ефект */
.slick-prev:hover,
.slick-next:hover {
  border-color: #e5006c;
  transform: translateY(-50%) scale(1.08);
  background: rgba(225, 0, 97, 1);
}

.slick-prev:hover::before,
.slick-next:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* активний стан */
.slick-prev:active,
.slick-next:active {
  transform: translateY(-50%) scale(0.95);
}

/* прибираємо дефолтні стрілки slick */
.slick-prev::before,
.slick-next::before {
  font-size: 0;
}

/* testimonials end */

/* HOMEPAGE END */

/* RETAILERS */

.block_insidepage {
  padding-top: 65px;
}

.rp_block1 {
}

.rp_block1 .h2 {
  float: right;
  width: calc(100% - 800px);
}

.rp_block1 .block_rp_img {
  float: left;
}

.rp_block1 .block_rp_img img {
  margin: 0 0 0 -160px;
}

.rp_block2 {
  overflow: hidden;
  clear: both;
  padding-top: 40px;
  padding-bottom: 120px;
}

.rp_block2_text {
  float: left;
  width: calc(100% - 900px);
}

.block_rp_img2 {
  float: right;
  width: 810px;
}

.block_rp_img2 img {
  display: block;
  margin: 60px auto 0;
  width: 550px;
  height: auto;
}

.rp_block2_text .p3 {
  margin-top: 25px;
}

.tile_grey2 {
  background: #fafafa;
}

.block_solution {
  padding: 95px 0 120px;
}

.block_solution img {
  max-width: 100%;
  height: auto;
}

.block_solution .p2 {
  margin-top: 20px;
  margin-bottom: 50px;
}

.block_main_reason {
  padding: 100px 0;
}

.block_main_reason2 {
  color: #fff;
  height: 800px;
  position: relative;
  background: url("/UserFiles/Image/img_for_retailers2.jpg") center no-repeat;
}

.block_main_reason2 .h3 {
  position: absolute;
  bottom: 110px;
}

.block_benefits {
  padding: 95px 0 0;
  overflow: hidden;
}

.block_benefits .h1 {
  float: left;
}

.benefits_items {
  display: flex;
  flex-flow: wrap;
  padding-left: 182px;
  padding-top: 25px;
}

.benefits_item {
  display: flex;
  margin-bottom: 64px;
  width: 38%;
}

.benefits_item:nth-child(odd) {
  padding-right: 60px;
  width: 52%;
}

.benefits_item_img {
  margin-right: 35px;
}

.benefits_item_text strong {
  color: #39332f;
  font-size: 18px;
}

.benefits_item_text p {
  font-size: 16px;
  margin: 8px 0;
  line-height: 19px;
}

/* pricing plan */

.block_pricing_plan {
  padding-top: 60px;
  padding-bottom: 60px;
}

.block_pricing_plan .p3 {
  margin: 30px 0 5px;
}

.pricing_plan {
  margin: 30px auto;
  max-width: 1360px;
  clear: both;
}

.pricing_plan_right > div:not(.h4) {
  margin-top: 80px;
}

.pricing_plan_item {
  background: #ffffff;
  box-shadow: 0px 5px 10px #f1f1f1;
  border-radius: 18px;
  /*width: 360px;*/
  width: 620px;
  height: 345px;
  padding: 10px 0 25px;
  position: relative;
  display: block;
  text-align: center;
  margin: 70px auto 0;
}

.pricing_plan_right .pricing_plan_item {
  margin: 0 15px;
  width: 360px;
}

/*
.pricing_plan .pricing_plan_item:last-child {
margin: 0 0 0 48px;
}*/

.pricing_plan_marker {
  position: absolute;
  width: 82px;
  height: 82px;
  font-size: 36px;
  border-radius: 50%;
  background: #e10061;
  top: -50px;
  left: 36px;
  text-align: center;
  color: #fff;
  line-height: 81px;
}

/*
.pricing_plan_name {
font-size: 38px;
margin: 25px 0 15px 36px;
line-height: 30px;
height: 85px;
}*/

.pricing_plan_name {
  font-size: 20px;
  margin: 10px 15px;
}

.pricing_plan_name strong {
  margin-top: 30px;
  display: block;
}

.pricing_plan_text {
  font-size: 20px;
  min-height: 110px;
}

.pricing_plan_price {
  font-size: 18px;
  font-weight: 500;
  color: #e10061;
  text-align: center;
  letter-spacing: 2px;
  margin: 15px 0 0;
  padding: 15px 15px 0;
  position: relative;
  border-top: 1px solid rgba(57, 51, 47, 0.1);
}

#btn_request_quote:hover {
  cursor: pointer;
  text-decoration: underline;
}

.pricing_plan_price .btn {
  letter-spacing: 0;
  margin-top: 5px;
}

.pp_subtext {
  position: absolute;
  text-align: left;
  left: 135px;
  line-height: 1;
  top: -38px;
}

/* pricing plan end */

/* block_request_demo */

.container.block_request_demo {
  padding-top: 100px;
  padding-bottom: 100px;
}

.block_request_demo h2 {
  margin-bottom: 30px;
}

.request_text {
  color: rgba(57, 51, 47, 0.5);
  font-size: 20px;
}

.request_text span {
  color: #39332f;
  margin-right: 20px;
  border-bottom: 1px solid #39332f;
}

#request_demo_div .notify_message {
  text-align: center;
  font-size: 23px;
  font-weight: 300;
}

#request_demo_div .notify_message {
  text-align: center;
  font-size: 23px;
  font-weight: 300;
}

#frm_request_try_free_div .notify_message {
  font-size: 26px;
  font-weight: 300;
}

.block_request_demo textarea {
  resize: vertical;
}

/* block_request_demo end */

/* RETAILERS END */

/* Contact page */

.block_contacts {
  margin-bottom: 30px;
}

.block_contacts .p4 {
  font-weight: 500;
}

.item_contacts {
  display: flex;
}

.item_contacts span {
  color: #b3b3b3;
}

.item_contacts a {
  font-weight: 500;
  padding-left: 10px;
}

/* Contact page end */

/* Inspiration page */

.item_inspiration_l,
.item_inspiration_r {
  padding-top: 30px;
  padding-bottom: 60px;
}

.item_inspiration_l .bl_inspiration_text {
  float: left;
  width: 40%;
  min-width: 405px;
}

.item_inspiration_r .bl_inspiration_text {
  float: right;
  width: 40%;
  min-width: 405px;
}

.item_name {
  font-size: 36px;
  line-height: 90%;
  color: #39332f;
  margin: 20px 0;
}

.item_inspiration_l .item_file {
  float: right;
  margin-right: -80px;
}

.item_inspiration_r .item_file {
  float: left;
  margin-left: -80px;
}

.color_brand_group,
.color_alert_group,
.color_btn_group {
  overflow: hidden;
  margin-bottom: 35px;
}

.color_brand_group span,
.color_alert_group span,
.color_btn_group span {
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 15px;
}

.color_brand {
  float: left;
  width: 100px;
  height: 40px;
  display: block;
  border: 1px solid #a4a4a4;
}

.color_brand5b2e85 {
  background: #5b2e85;
}

.color_brandd2d0d0 {
  background: #d2d0d0;
}

.color_brandffffff {
  background: #ffffff;
}

.color_brand70C57E {
  background: #70c57e;
}

.color_brandD2D0D0 {
  background: #d2d0d0;
}

.color_brand479D51 {
  background: #479d51;
}

.color_brand000000 {
  background: #000000;
}

.color_brand4B77A6 {
  background: #4b77a6;
}

.color_brand999999 {
  background: #999999;
}

.color_brandD2D2D2 {
  background: #d2d2d2;
}

.color_brandedf5ee {
  background: #edf5ee;
}

.color_brand5B2E85 {
  background: #5b2e85;
}

.color_brand909090 {
  background: #909090;
}

.color_brand3B85ED {
  background: #3b85ed;
}

.color_brandefeaf3 {
  background: #efeaf3;
}

.color_brandE5E5E5 {
  background: #e5e5e5;
}

.color_brand252525 {
  background: #252525;
}

.color_brand639C9B {
  background: #639c9b;
}

.color_brand717171 {
  background: #717171;
}

.color_brand2E2E2E {
  background: #2e2e2e;
}

.color_brand797670 {
  background: #797670;
}

.color_brandBFBFBF {
  background: #bfbfbf;
}

.color_brandD7737F {
  background: #d7737f;
}

.color_brand333333 {
  background: #333333;
}

.color_brandA0A0A0 {
  background: #a0a0a0;
}

.color_brand345690 {
  background: #345690;
}

.color_brand111111 {
  background: #111;
}

.color_brandCBCBCB {
  background: #cbcbcb;
}

.color_brandD6D6D6 {
  background: #d6d6d6;
}

.color_brandE64D26 {
  background: #e64d26;
}

.color_brand888888 {
  background: #888888;
}

.color_brand4996F7 {
  background: #4996f7;
}

.color_brand4F9639 {
  background: #4f9639;
}

.color_brandf5f6f7 {
  background: #f5f6f7;
}

.color_brand292A2F {
  background: #292a2f;
}

.color_brandE4E8E4 {
  background: #e4e8e4;
}

.color_brand5E8F7B {
  background: #5e8f7b;
}

.color_brandf3f7f5 {
  background: #f3f7f5;
}

.color_brand242424 {
  background: #242424;
}

.color_brandD1317A {
  background: #d1317a;
}

.color_brand577FA8 {
  background: #577fa8;
}

.color_brande3f0e5 {
  background: #e3f0e5;
}

.color_brandE4E4E4 {
  background: #e4e4e4;
}

.color_alert {
  float: left;
  width: 70px;
  height: 40px;
  display: block;
  border: 1px solid #a4a4a4;
}

.color_btn {
  float: left;
  width: 100px;
  height: 40px;
  display: block;
  border: 1px solid #a4a4a4;
}

.type_figure {
}

.type_figure span {
}

.type_figure b {
  width: 80px;
  height: 80px;
  display: block;
}

.type_figure b {
  background: url(/images/f_color.jpg) no-repeat;
}

.type_figure b.ls_part_figure_grey {
  background: url(/images/f_grey.jpg) no-repeat;
}

.type_figure b.ls_part_figure_kontur {
  background: url(/images/f_kontur.jpg) no-repeat;
}

/* Inspiration page end */

/* Blog page */

.blogSlider {
  margin-top: 50px;
  margin-right: -35px;
}

.blogSlider-item {
  padding-right: 35px;
}

.blogSlider-item a {
  color: #242424;
}

.blog_item_img {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #e7e7e7;
}

.blog_item_img img {
  width: 100%;
  height: auto;
}

.block_blog_item {
  font-size: 17px;
}

.block_blog_item p {
  margin: 15px 0;
}

.blog_list {
  overflow: hidden;
}

.blog_item {
  width: calc(100% / 3 - 40px);
  float: left;
  margin-top: 15px;
  margin-bottom: 40px;
  margin-right: 40px;
}

.blog_item a {
  color: #292929;
}

.blog_item a:hover {
  text-decoration: none;
}

.blog_list .blog_item:nth-child(3n + 3) {
  margin-right: 0;
}

.blog_list .blog_item:nth-child(3n + 4) {
  clear: both;
}

.blog_item a:hover {
  text-decoration: none;
}

.blog_item img {
  border: 1px solid #e9e9e9;
}

.blog_date {
  font-size: 14px;
  color: #39332f;
  opacity: 0.6;
  padding: 14px 0;
}

.blog_name {
  font-size: 17px;
  line-height: normal;
  color: #39332f;
  margin-top: 16px;
  font-weight: bold;
}

.blog_item_description img {
  max-width: 100%;
  height: auto;
}

.author_top {
  display: flex;
  align-items: self-start;
}

.author_top_blog {
  border-top: 1px solid #ccc;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  background: #fafafa;
  margin-bottom: 20px;
}

.author_top img {
  margin-right: 15px;
  margin-top: 6px;
  width: 120px;
}

.author_socials {
  margin-left: 40px;
}

/* Blog page end */

/* Instruction for integration */

.steps_instruction {
  display: flex;
  margin-top: 50px;
  justify-content: space-around;
}

.steps_instruction .number {
  font-size: 72px;
  line-height: 79px;
  color: #e10061;
}

.steps_instruction p {
  font-size: 20px;
  margin: 0;
  max-width: 340px;
  line-height: 22px;
  text-align: left !important;
}

/* Instruction for integration end */

/* Top links */

.logo {
  margin-top: -30px;
  float: left;
  transition: 0.5s;
}

.logotype {
  margin-top: 2px;
}

.top_links {
  float: right;
  display: inline-block;
  position: relative;
}

.link_border {
  border: 1px solid #39332f;
  color: #39332f;
  font-size: 16px;
  overflow: hidden;
  display: inline-block;
  transition: 0.5s;
  padding: 10px 30px;
  margin-bottom: 5px;
  border-radius: 23px;
}

.link_border.active,
.link_border.active:hover {
  border: 1px solid #e10061;
  color: #e10061;
  cursor: default;
  text-decoration: none;
}

/* Top links end */

.owl-carousel {
  width: calc(100% - 120px);
  margin: auto;
}

.owl-nav {
  width: 100%;
  position: absolute;
  top: 0;
}

.owl-carousel .owl-nav .owl-prev {
  font-size: 100px !important;
  line-height: 195px !important;
  position: absolute;
  left: -60px;
}

.owl-carousel .owl-nav .owl-next {
  font-size: 100px !important;
  line-height: 195px !important;
  position: absolute;
  right: -60px;
}

.owl-item {
  text-align: center;
}

.owl-carousel img {
  width: auto;
  transition: 0.5s;
}

.owl-carousel a:hover img {
  filter: saturate(2);
  opacity: 0.8;
}

/* Top languages */

.language {
  float: right;
  margin: 6px 22px 0 0;
  width: 45px;
  text-align: center;
  transition: 0.5s;
  line-height: normal;
}

.language:hover {
  cursor: pointer;
}

.selected_language {
  font-size: 20px;
  text-align: center;
  color: #242424;
  position: relative;
}

.selected_language i {
  font-size: 20px;
  margin: 0 0 0 5px;
  color: #242424;
}

.selected_language i:before {
  top: 2px;
  position: relative;
}

.options_language {
  display: none;
  padding: 5px;
  width: 50px;
  text-align: left;
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #242424;
}

.options_language a {
  display: block;
  color: #39332f;
  padding: 3px 5px;
  text-decoration: none;
  border-bottom: 1px solid #242424;
}

.options_language a:last-child {
  border-bottom: none;
}

.options_language a:hover,
.language a:focus {
  color: #e5006c;
  text-decoration: underline;
}

/* Top languages end */

.LS_rate_reviews {
  text-align: center;
}

.set_rate {
  margin: 10px 0 0 0;
  color: #ffd93b;
}

.set_rate i {
  margin: 0 3px;
}

/* Button scroll top */

.scrollup {
  text-align: center;
  text-decoration: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1100;
  padding: 0;
  margin: 0;
}

.scrollup a {
  width: 40px;
  height: 40px;
  text-align: center;
  transition: 1s;
  color: #464646;
  font-size: 50px;
}

.scrollup:hover,
.scrollup:focus {
  color: #e5006c;
  opacity: 1 !important;
}

.scrollup a:hover,
.scrollup a:focus {
  color: #e5006c;
  opacity: 1 !important;
}

/* Button scroll top end */

/* -------- CONTEXT SEARCH START -------- */

.context_search {
  border: 1px solid #c5c5c5;
  margin: 0;
  border-radius: 5px;
  background: #fff;
  position: relative;
}

.context_search_field {
  padding: 0;
  width: 100%;
}

.context_search_field input {
  height: 35px;
  background: none;
  border: none;
  padding: 0 40px 0 21px;
  width: 100%;
}

.context_search_searchbutton {
  color: #5900a4;
  display: block;
  cursor: pointer;
  width: 41px;
  border-left: 1px solid #e2e2e2;
  height: 29px;
  padding: 0 0 0 10px;
  font-size: 21px;
  position: absolute;
  right: 0;
  top: 2px;
}

.context_search_closebutton {
  position: absolute;
  right: 10px;
  top: 5px;
}

.context_search_searchbutton:hover,
.context_search_closebutton:hover {
  color: #eb2027;
  cursor: pointer;
}

.context_search_result {
  display: none;
  position: absolute;
  overflow: auto;
  width: 100%;
  height: 300px;
  z-index: 100;
  margin-top: 30px;
  border: #c5c5c5 solid 1px;
  background: #fff;
}

*html .context_search_result {
  margin-top: 20px;
  margin-left: -50px;
}

.context_search_result iframe {
  display: none;
  /*for IE5*/
  display/**/
  : block;
  /*for IE5*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /*must have*/
  filter: mask();
  /*must have*/
  width: 1000px;
  /*for any big value*/
  height: 1000px;
  /*for any big value*/
}

.context_search_results {
  width: 100%;
  margin: 0;
  padding: 0;
}

.context_search_results th {
  font-size: 13px;
  text-align: left;
  padding: 5px;
}

.context_search_results th a {
  font-size: 13px;
  text-align: left;
  text-decoration: none;
}

.context_search_results th a:hover {
  color: #eb2027;
}

.context_search_results td {
  font-size: 13px;
  text-align: left;
  padding: 5px 5px 5px 15px;
}

.context_search_results td a {
  font-size: 13px;
  text-align: left;
  text-decoration: none;
}

.context_search_results td a:hover {
  color: #eb2027;
}

.context_search_res {
  background: #fffd50;
}

/* -------- CONTEXT SEARCH END -------- */
/* slider */
.carousel-fade .carousel-inner .item {
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#carousel_in {
  width: 100%;
}

#carousel_in img {
  float: right;
}

.carousel-inner > .item {
  height: 320px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slideshow_description {
  font-size: 37px;
  color: #fff;
  position: absolute;
  padding-top: 50px;
  text-transform: uppercase;
}

.slideshow_description h1 {
  color: #fff;
}

/* slider end */

/* uniblock_block */

.uniblock_caption {
  font-size: 24px;
  padding: 2px 0;
  position: relative;
  text-transform: uppercase;
}

.uniblock_caption:after {
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background: #e5006c;
}

.uniblock_top .uniblock_block {
  margin-bottom: 0;
}

.uniblock_caption a {
  text-transform: none;
  float: right;
  transition: 0.5s;
  color: #39006d;
  font-size: 14px;
  margin-top: 4px;
  font-style: italic;
}

.uniblock_caption a:hover,
.uniblock_caption a:focus {
  text-decoration: none;
  color: #000;
}

.uniblock_caption a .fa {
  width: 15px;
}

.uniblock_caption a:hover .fa,
.uniblock_caption a:focus .fa {
  text-align: right;
}

.uniblock_description {
  overflow: hidden;
}

.uniblock_left .container,
.uniblock_left .title {
  margin: 0;
  padding: 0;
}

/* uniblock_block end */

/* ------ FOOTER START ------ */

#footer {
  width: 100%;
  clear: both;
  margin: 20px 0 0 0;
  padding: 55px 0 40px;
  background: #fafafa;
}

.menu_table {
  display: flex;
  justify-content: space-between;
}

.menu_table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu_table li.top_level {
  font-size: 18px;
  line-height: 200%;
  color: #39332f;
  font-weight: 500;
  margin-bottom: 8px;
}

.menu_table li.sub_level {
  max-width: 300px;
  min-width: 135px;
  padding-right: 20px;
}

.menu_table li.sub_level a {
  font-size: 14px;
  color: #39332f;
  font-weight: 400;
  padding: 5px 0;
  opacity: 0.6;
}

.menu_table li.sub_level a:hover,
.menu_table li.sub_level.current a {
  color: #e5006c;
  text-decoration: underline;
}

/* ------ FOOTER END ------ */

/* ------ NAVIGATION START ------ */
.navigation {
  font-size: 13px;
  margin-bottom: 20px;
}

.navigation ol {
  padding: 0;
  margin: 0;
}

.navigation li {
  font-size: 13px;
  list-style: none;
  display: inline;
}

.navigation a {
  font-size: 13px;
}

.navigation a:hover,
.navigation a:focus {
  font-size: 13px;
}

.pagination {
  display: flex;
  margin: 20px auto;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #5900a4;
  border-color: #5900a4;
}

.pagination > li > a,
.pagination > li > span,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #5900a4;
  width: 32px;
  padding: 6px;
  text-align: center;
}

/* ------ NAVIGATION END ------ */

/* ------ ALERT MESSAGES START ------ */

/*textarea.form-control {
resize: none;	
}*/

.input-group {
  width: 100%;
  border-radius: 8px;
}

.input-group .form-control {
  font-size: inherit;
  border-bottom-right-radius: 8px !important;
  border-top-right-radius: 8px !important;
}

.input-append.input-group span.add-on {
  width: 50px;
  padding: 17px 10px;
  top: 0;
  position: absolute;
  z-index: 9;
  right: 0;
  background-color: transparent;
  border-color: transparent;
}

.error,
.error_js,
.state-highlight-error,
.notify,
.notify_message,
.alert_message,
.notify_message a,
.alert_message a {
  clear: both;
  font-size: 12px;
  font-weight: bold;
}

.error,
.error_js {
  margin-top: 8px;
  padding: 0 0 0 17px;
}

.error {
  background: url(/images/validation_advice_bg.gif) no-repeat left;
}

.error_js {
  background: url(/images/validation_advice_bg_js.gif) no-repeat left;
}

.state-highlight-error {
  border: 1px dashed red;
  background: #faebe7;
}

.notify_message,
.alert_message {
  padding: 5px;
}

.notify,
.notify_message,
.notify_message a {
  color: green;
}

.error,
.error_js,
.alert_message,
.alert_message a {
  color: red;
}

.notify_message a,
.alert_message a {
  text-decoration: underline;
  padding: 5px;
}

.notify_message a:hover,
.alert_message a:hover {
  text-decoration: none;
}

#error_security_code {
  margin-top: 15px;
  position: absolute;
}

.content_message {
  background: #afa none repeat scroll 0 0;
  color: #c6292f;
  font:
    18px "PT Sans",
    Tahoma,
    Arial,
    sans-serif;
  margin: 10px;
  padding: 10px;
  text-align: center;
}

#content_message {
  max-height: 300px;
  overflow: auto;
  z-index: 10;
  position: relative;
}

#content_message_close {
  cursor: pointer;
  float: right;
  height: 25px;
  position: relative;
  right: 10px;
  top: 10px;
  width: 27px;
  z-index: 100;
  padding: 4px;
}

img.error_info {
  position: absolute;
  bottom: 5px;
  right: 0;
}

.error_el {
  position: relative;
}

.error_el span.fa {
  z-index: 1000;
  color: #ff0000;
  top: -7px;
  left: -9px;
  font-size: 16px;
  position: absolute;
}

.error_el .error_text {
  z-index: 1000;
  color: #ff0000;
  font-size: 12px;
}

.error_id_security_code .error_text {
  display: block;
  margin-top: 30px;
}

.state-highlight-error input {
  background: #faebe7;
}

#box_security_code {
  overflow: hidden;
}

.table {
  font-size: 13px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 6px 8px;
}

/* ------ ALERT MESSAGES END ------ */

/* ------ SECURITY CAPCHA START ------ */
.security1 {
  font-size: 13px;
  text-align: center;
  margin: 10px auto;
}

.security1 b {
  font-size: 15px;
  color: red;
}

.security2 {
  text-align: center;
  margin-top: 1px;
  margin: auto;
  max-width: 320px;
}

.security2_img {
  float: left;
  width: 125px;
  margin: 15px 5px 0 0;
}

.security2_form {
  float: left;
  margin: 12px 7px 0 7px;
  max-width: 45px;
  text-align: center;
}

.security2_form input {
  padding: 6px 2px;
  text-align: center;
  height: 30px;
  width: 100%;
  font-family: monospace;
}

.security2_button {
  width: auto;
  margin: 14px 0 0 0;
  float: right;
  text-align: right;
}

.security3 {
  float: left;
  margin-top: 5px;
}

.newsletter_security .security2_button {
  margin: 11px 0 0 0;
}

.newsletter_security .security2_form {
  margin: 12px 0px 0 7px;
}

/* ------ SECURITY CAPCHA END ------ */

/* ------ INPUT BUTTONS START ------ */

.btn,
.popup .admin_btn {
  color: #fff;
  display: inline-block;
  border: 1px solid #e5006c;
  background: #e10061;
  border-radius: 100px;
  font-size: 20px;
  padding: 5px 25px;
  white-space: initial;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.popup .admin_btn:hover,
.popup .admin_btn:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
  border: 1px solid #a90050;
  background: #a90050;
}

.btn.btn-pink {
  border: 1px solid #e5006c;
  background: #e10061;
}

.btn.btn-pink:hover {
  border: 1px solid #a90050;
  background: #a90050;
}

.btn.btn_grey {
  color: #242424;
  border: 1px solid #242424;
  background: #fff;
}

.btn.btn_grey:hover,
.btn.btn_grey:focus,
.btn.btn_grey:active,
.btn.btn_grey:active:focus {
  color: #242424;
  border: 1px solid #242424;
  background: #e2e2e2;
}

.btn-lg {
  white-space: normal;
  max-width: 98%;
}

.btn_none {
  background: none;
}

.btn_nobg {
  color: #e5006c;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 100px;
  font-size: 18px;
  padding: 15px 40px;
  text-align: center;
  white-space: initial;
}

.btn_nobg:hover,
.btn_nobg:focus {
  border: 1px solid rgba(0, 0, 0, 1);
  color: #e5006c;
  text-decoration: underline;
  background: #fff;
}

.btn_link {
  color: #e5006c;
  border: transparent;
  background: transparent;
  border-radius: 0;
  font-size: 18px;
  padding: 5px;
  text-align: center;
  white-space: initial;
}

.btn_link:hover {
  color: #e5006c;
  text-decoration: underline;
  border: transparent;
  background: transparent;
}

.btn_link2 {
  color: #e5006c;
  border: transparent;
  background: transparent;
  border-radius: 0;
  font-size: inherit;
  padding: 0;
  white-space: initial;
}

.btn_link2:hover {
  cursor: pointer;
  color: #333;
  text-decoration: underline;
}

.btn_favor {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px;
  z-index: 5;
}

.button_wishlist {
  float: right;
  margin-top: 10px;
}

.button_quote {
  float: left;
  margin-left: 10px;
}

.btn.btn-lg,
.btn_nobg.btn-lg {
  font-size: 20px;
  padding: 8px 25px;
}

.btn.btn-md,
.btn_nobg.btn-md {
  font-size: 16px;
  padding: 6px 20px;
}

.btn.btn-sm,
.btn_nobg.btn-sm {
  font-size: 16px;
  padding: 2px 9px;
}

.btn.btn-xs,
.btn_nobg.btn-xs {
  font-size: 12px;
  padding: 3px 8px 0;
}

.btn-danger {
  background: #d9534f !important;
  border-color: #d43f3a;
  color: #fff;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  color: #000;
}

.form-control,
select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  border-radius: 8px;
  display: block;
  width: 100%;
  height: auto;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
}

.form-control:focus,
select:focus {
  border-color: #e5006c;
  outline: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.form-control.form-control-md {
  padding: 7px 20px;
}

.form-control-sm {
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  display: block;
  width: 100%;
  height: auto;
  padding: 3px 4px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
}

.form-control-sm:focus {
  border-color: #e5006c;
  outline: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.sizeItem select,
.sizeItem input[type="text"] {
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  display: block;
  width: 100%;
  height: auto;
  padding: 1px 12px;
  font-size: 13px;
  line-height: 1.3;
  color: #555;
  background-color: #fff;
  background-image: none;
}

.sizeItem select:focus,
.sizeItem input[type="text"]:focus {
  border-color: #e5006c;
  outline: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.period .form-control-sm {
  width: 130px;
}

.period button {
  text-align: right;
}

.bkg_pink {
  background: #e3146d;
  color: #fff;
}

.bkg_pink th {
  padding: 5px;
}

.thing_div label {
  margin-right: 20px;
}

/* ------ INPUT BUTTONS END ------ */

.success {
  color: green;
  margin: 5px;
  text-align: center;
}

/* USER START */

.processing {
  color: #ffa100;
}

.received,
.shipped,
.paid {
  color: #459732;
}

.no_response {
  color: red;
}

.declained {
  color: #aaa;
}

.features {
  width: 100%;
}

.features td {
  padding: 5px;
  border-bottom: solid 1px #e2e2e2;
}

.asterisk {
  font-size: 16px;
  font-weight: bold;
  color: red;
}

.shopping_cart .qty {
  max-width: 50px;
}

.icheckbox_minimal-blue {
  margin: 0 10px 0 0;
}

/* ------ drop down menu start ------ */

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

nav {
  min-height: auto;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}

#top_menu {
  margin-top: 10px;
  float: right;
}

.sf-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  width: 100%;
  gap: 25px;
  flex-flow: row;
}

.sf-menu > li {
  float: none;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin-bottom: 15px;
}

.sf-menu > li > a {
  line-height: normal;
}

.sf-menu > li.has_submenu {
  position: relative;
}

.sf-menu > li.has_submenu > a {
  padding-right: 21px;
}

.sf-menu > li.has_submenu > a:before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free", "FontAwesome";
  font-weight: 900;
  font-size: 20px;
  margin: 0 0 0 5px;
  color: #39332f;
  display: inline-block;
  position: absolute;
  top: -2px;
  right: 0;
}

.sf-menu > li > a {
  display: inline;
  padding: 0;
  position: relative;
  font-size: 20px;
  text-decoration: none;
  color: #242424;
  background: transparent;
}

.sf-menu > li > a:hover,
.sf-menu > li.current > a {
  color: rgba(57, 51, 47, 1);
  text-decoration: none;
  position: relative;
}

.sf-menu > li > a:hover:after,
.sf-menu > li.current > a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #242424;
}

.sf-menu li li {
  position: relative;
  border-bottom: 1px solid rgb(57 51 47 / 0.1);
  text-align: left;
}

.sf-menu li li a {
  color: rgba(57, 51, 47, 0.6);
  font-size: 15px;
  font-weight: normal;
  padding: 8px 15px;
  border-right: none;
  transition: 0.5s;
  display: block;
}

.sf-menu > li > ul > li > a:hover,
.sf-menu > li > ul > li:hover,
.sf-menu li > ul > li:hover > a,
.sf-menu li li.current > a {
  color: rgba(57, 51, 47, 0.6);
  text-decoration: underline;
}

.sf-menu li:hover,
.sf-menu li.sfHover,
.sf-menu a:focus,
.sf-menu a:hover,
.sf-menu a:active {
  outline: 0;
}

/* ------ drop down menu end ------ */

.table-pricing > thead > tr > th,
.table-pricing > tbody > tr > th,
.table-pricing > tfoot > tr > th,
.table-pricing > thead > tr > td,
.table-pricing > tbody > tr > td,
.table-pricing > tfoot > tr > td {
  padding: 15px 8px;
}

/* brand list */

.brand-list_line {
  overflow: hidden;
}

.brand_letter {
  width: 35px;
  height: 55px;
  font-size: 20px;
  line-height: 200%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  float: left;
  cursor: pointer;
  margin: 0 2% 0 0;
}

.brand_letter a {
  color: #39332f;
  opacity: 0.6;
  border: 1px solid #fff;
  height: 30px;
  width: 30px;
  line-height: 1.3;
  transition: unset;
}

.brand_letter a:hover,
.brand_letter a.current {
  color: #e5006c;
  border: 1px solid #e5006c;
  transition: unset;
  text-decoration: underline;
}

.bullet_square {
  padding: 5px 0;
  color: #75717e;
}

.bullet_square a {
  color: #75717e;
}

.bullet_square a:hover,
.bullet_square a:focus {
  color: #e5006c;
}

.bullet_square .fa {
  font-size: 10px;
}

#brand_list_content {
  max-height: 534px;
  font-size: 14px;
  overflow-y: scroll;
  padding: 7px 10px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

.block_brands_letter {
  padding: 10px;
  font-size: 72px;
  margin: 10px 0;
  font-weight: 300;
  color: #39332f;
}

.brand_item {
  cursor: pointer;
}

.brand_type_category span {
  font-size: 30px;
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.brand_img {
  max-height: 100px;
}

.brand_table .block_brands {
  column-count: 6;
}

#brand_list_content .block_brands {
  column-count: 2;
}

.br_list_wide #brand_list_content .block_brands {
  column-count: 1;
}

.br_list_wide #brand_list_content {
  max-height: 280px;
}

.block_brands .bullet_square a {
  line-height: 200%;
  display: inline-block;
  color: #39332f;
  opacity: 0.6;
}

.ul_table_list {
  margin-bottom: 0;
}

.ul_table_list li {
  border-right: 1px solid #ccc;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 6px;
}

.brand_type_name {
  margin-top: 10px;
}

.type_size_content {
  border-top: 1px solid #ddd;
  overflow-x: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.type_size_content table {
  width: 100%;
  min-width: 300px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 55px;
}

.type_size_content .table > tbody > tr > th,
.type_size_content .table > tbody > tr > td {
  border-top: 1px solid transparent;
  white-space: nowrap;
  border-left: 1px solid #f5f5f5;
  text-align: center;
}

.type_size_content .table > tbody > tr.line0 > td {
  border-left: 1px solid #fff;
}

.type_size_content .table > tbody > tr > th {
  text-align: left;
}

.type_size_content table th:first-child {
  width: 180px;
}

#frm_brand_chart table.w90p {
  width: 100% !important;
}

#frm_brand_chart #box_standart .checkBoxesItem,
#frm_brand_chart #box_size_id .checkBoxesItem {
  margin-bottom: 15px;
  line-height: 1;
}

#frm_brand_chart #box_standart td:not(:first-child),
#frm_brand_chart #box_size_id td:not(:first-child) {
  width: 240px;
}

#frm_brand_chart #box_standart .checkBoxesItem label,
#frm_brand_chart #box_size_id .checkBoxesItem label {
  font-weight: 500;
}

#frm_brand_chart table.w90p td {
  padding: 0 10px;
  vertical-align: top;
}

.brand_type_category small {
  font-style: italic;
}

#brand_table {
  position: relative;
}

.blur_text {
  filter: blur(3px);
}

.hidden_val a {
  color: unset;
}

.hidden_val:hover {
  -webkit-animation: 0.25s linear forwards reveal;
  -moz-animation: 0.25s linear forwards reveal;
  -o-animation: 0.25s linear forwards reveal;
  animation: 0.25s linear forwards reveal;
}

@-webkit-keyframes reveal {
  from {
    filter: blur(5px);
  }

  to {
    filter: blur(0px);
  }
}

@-moz-keyframes reveal {
  from {
    filter: blur(5px);
  }

  to {
    filter: blur(0px);
  }
}

@-o-keyframes reveal {
  from {
    filter: blur(5px);
  }

  to {
    filter: blur(0px);
  }
}

@keyframes reveal {
  from {
    filter: blur(5px);
  }

  to {
    filter: blur(0px);
  }
}

.pagination > li > a,
.pagination > li > span {
  color: #e5006c;
}

.pagination .current {
  color: #fff;
  background-color: #e5006c !important;
  border-color: #e5006c !important;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #e5006c;
}

/* brand list end */

/* brand_clothing */

.brand_clothing ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 40px;
}

.brand_clothing li {
  display: inline-block;
}

.brand_clothing ul > a {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.brand_clothing li > a {
  padding: 6px 20px 6px 0;
  color: #808080;
}

.brand_clothing li > a:hover {
  color: #e5006c;
}

/* brand_clothing end */

.popup {
  padding: 0;
  border: 1px solid #fff;
}

#determine_size_rst iframe {
  width: 100% !important;
}

.LS_form_only_user_size #LS_figure {
  float: left;
  margin-right: 100px;
}

.LS_form_only_user_size .LS_block_data_entry {
  float: right;
}

.LS_form_only_user_size .scrollbar-inner {
  max-height: 400px;
}

.LS_form_only_user_size .title_us {
  width: 212px;
}

.LS_form_only_user_size .LS_field label {
  width: 200px;
}

.LS_form_only_user_size .LS_block_product_size {
  width: auto;
}

#myModal_popup .modal-dialog {
  max-width: 450px;
}

#ourClients .modal-dialog {
  max-width: unset;
}

#ourClients .modal-dialog img {
  max-width: 100%;
  height: auto;
}

.modal_button {
  text-align: center;
}

#dialog video {
  max-width: 100%;
}

#LS_mainform {
  width: 650px;
  margin: 10px auto;
  min-height: 610px;
  margin: auto;
  padding: 0;
  font-size: 13px;
  border: 1px solid #ccc;
  font-family: "Pt Sans";
  background: #fff;
  position: relative;
}

.LS_content {
  padding: 15px;
}

.LS_title {
  font-size: 19px;
  font-weight: normal;
  color: #75717e;
  text-transform: uppercase;
  position: relative;
  float: left;
  margin: 5px 0 0 20px;
  padding-left: 20px;
  display: inline-block;
}

.LS_title:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  top: 3px;
  left: 0;
  position: absolute;
  background: #e5006c;
}

/* top_account_menu */

#top_account_menu,
#widget_menu {
  width: 208px;
  z-index: 100;
  position: absolute;
  background: #fff;
  border: 1px solid #75717e;
  top: 50px;
  right: 0;
  text-align: left;
  padding: 10px;
}

#top_account_menu a,
#widget_menu a {
  display: block;
  color: #75717e;
  font-size: 13px;
  padding: 7px 0;
  position: relative;
  border-bottom: 1px solid #e2e2e2;
}

#top_account_menu a:hover,
#top_account_menu a:focus,
#widget_menu a:hover,
#widget_menu a:focus {
  color: #e5006c;
  text-decoration: none;
}

#top_account_menu a:before,
#widget_menu a:before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 10px;
  margin-right: 5px;
  margin-left: 5px;
}

#top_account_menu a:last-child {
  border-bottom: none;
}

#widget_menu {
  right: auto;
  left: 0;
  top: 33px;
}

/* top_account_menu end */

/* #search_brand_rst */

#search_brand_rst {
  min-height: 150px;
  max-height: 196px;
  overflow: auto;
  padding: 7px 10px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

#bl_gender {
  padding: 7px 10px;
  min-height: 37px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

.brand_item,
#box_category span,
.gender_item {
  position: relative;
  padding: 3px;
  border-bottom: 1px solid #ccc;
}

#search_brand_rst .brand_item:hover,
#box_category span:hover,
.gender_item:hover,
.gender_item.active {
  cursor: pointer;
  color: #e5006c;
  text-decoration: underline;
}

#search_brand_rst .brand_item:last-child,
.gender_item:last-child {
  border-bottom: transparent;
}

/*
.brand_item:before {
font: normal normal normal 14px/1 FontAwesome;
display: inline-block;
text-align: right;
margin-right: 10px;
content: "\f02b";
}
*/
/* #search_brand_rst end */

#frm_determine_size #box_category {
  min-height: 100px;
  max-height: 195px;
  overflow: auto;
  padding: 7px 10px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
}

#frm_determine_size .number {
  font-weight: bold;
}

/* ACCOUNT ICONS START */

.account_icons {
  margin-top: 15px;
}

.account_icons img {
  margin-bottom: 10px;
  opacity: 0.7;
  filter: grayscale(100%);
}

.account_icons a {
  display: block;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  width: 160px;
  padding: 0 15px;
  font-size: 15px;
  color: #75717e;
  min-height: 105px;
}

.account_icons a:hover,
.account_icons a:focus {
  color: #e5006c;
}

.account_icons a:hover img,
.account_icons a:focus img {
  margin-bottom: 10px;
  opacity: 1;
  filter: grayscale(0%);
}

.account_icon {
  display: inline-block;
  text-align: center;
}

.account_list {
  padding: 10px;
  border: 1px solid #e2e2e2;
  margin-top: -1px;
}

.account_list ul {
  padding: 0;
  margin: 0;
}

.account_list li {
  list-style: none;
  display: flex;
  padding: 7px 0;
  position: relative;
  border-bottom: 1px solid #e2e2e2;
}

.account_list li:last-child {
  border-bottom: transparent;
}

.account_list li a {
  color: #75717e;
  font-size: 13px;
}

.account_list li:before {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 10px;
  margin-right: 5px;
  margin-left: 5px;
}

.account_list li a:hover,
.account_list li a:focus,
.account_list li.current_left_menu a {
  color: #e5006c;
  text-decoration: none;
}

/* ACCOUNT ICONS END */

/* frm_statistics_select */

.frm_statistics_select {
}

.frm_statistics_select #date_from,
.frm_statistics_select #date_to,
.frm_statistics_order input {
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  display: inline;
  width: 145px;
  height: auto;
  padding: 3px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
}

.frm_statistics_select #date_from:focus,
.frm_statistics_select #date_to:focus,
.frm_statistics_order input:focus {
  border-color: #e5006c;
  outline: 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

.action_key {
  word-break: break-all;
}

/* frm_statistics_select end */

/* FAQ */

.faq_container {
  max-width: 960px;
}

.item_question_name {
  font-size: 24px;
  line-height: 100%;
  color: #39332f;
  position: relative;
  padding: 15px 20px 15px 50px;
}

.faq_container .item_question_name:first-child {
  border-top: transparent;
}

.item_question_name:before,
.item_question_name:after {
  display: block;
  content: "";
  background: #39332f;
  left: 11px;
  top: 15px;
  position: absolute;
  opacity: 0.5;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.item_question_name:before {
  width: 24px;
  height: 2px;
  left: 0;
  top: 26px;
}

.item_question_name:after {
  height: 24px;
  width: 2px;
  left: 11px;
  top: 15px;
}

.item_question_name:hover {
  cursor: pointer;
  color: #e3146d;
}

.item_question_name.current {
  color: #e5006c;
}

.item_question.current .item_question_name:after {
  display: none;
}

.item_question_answer {
  display: none;
  color: #39332f;
  background: #fff;
  padding: 0 45px 30px;
  font-size: 16px;
}

.item_question_answer p {
  margin: 0 0 20px 0;
}

/* FAQ end */

/* Pricing block */

.pricing_container {
  display: flex;
}

.pricing_block {
  border-radius: 5px;
  width: 50%;
  border: 1px solid #e0e0e0;
  margin: 0 10px 40px;
}

.pricing_title {
  font-size: 32px;
  padding: 6px 15px;
  text-align: center;
  background: #f9f9f9;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.pricing_title_cur {
  background: #e5006c;
  color: #fff;
}

.pricing_price {
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  background: #e6e6e6;
  font-size: 25px;
  color: #000;
  min-height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing_val_text {
  font-size: 18px;
  width: 160px;
  text-align: left;
  color: #2b2b2b;
}

.pricing_item {
  padding: 20px 30px;
  min-height: 355px;
}

.pricing_text {
  text-align: center;
  text-transform: uppercase;
  color: #e5006c;
  margin: 15px 0 0;
  font-size: 20px;
  font-weight: bold;
}

.pricing_val {
  font-size: 35px;
  color: #000;
}

.pricing_item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing_item ul li {
  padding: 8px 0;
}

.pricing_item ul li {
  padding: 8px 0;
  position: relative;
}

.pricing_item ul li:before {
  content: "\f00c";
  color: #e5006c;
  margin-right: 10px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-weight: 900;
  font-family: "Font Awesome 5 Free", "FontAwesome";
}

/* Pricing block end */

/* Our clients page */

/* svitstyle */

.block_sv {
  overflow: hidden;
  padding: 100px 0;
  margin-bottom: 100px;
}

.block_sv_img {
  float: right;
}

.block_sv_text {
  float: left;
  width: 48%;
}

.block_sv_text img {
  margin-top: 50px;
}

.block_sv_text .h2 {
  margin: 50px 0;
}

/* svitstyle end */

/* zasteli */

.block_zl {
  overflow: hidden;
  padding: 100px 0;
  background: rgba(143, 71, 179, 0.1);
}

.block_zl_img {
  float: left;
  margin-left: -90px;
}

.block_zl_text {
  float: right;
  width: 43%;
}

.block_zl_text img {
  margin-top: 50px;
}

.block_zl_text .h2 {
  margin: 50px 0;
}

/* zasteli end */

/* inspiration */

.list_inspiration {
  margin-top: 75px;
}

.block_inspiration {
  overflow: hidden;
  padding: 100px 0;
  margin: auto;
  max-width: 1920px;
  height: 860px;
  background: url(/UserFiles/Image/inspiration.png) right center no-repeat;
}

.block_inspiration_img {
  float: right;
}

.block_inspiration_text {
  float: left;
  width: 35%;
}

.block_inspiration_text .h2 {
  margin: 50px 0;
}

/* inspiration end */

/* our shops */

.our_shops {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-row-gap: 55px;
  margin-top: 50px;
}

.our_shops_item {
  display: flex;
  text-align: center;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.our_shops_item a {
  height: 90%;
  display: flex;
  align-items: center;
}

.our_shops_item img {
  display: inline-block;
  margin: 0 auto;
  filter: grayscale(1);
  opacity: 0.6;
}

.our_shops_item a:hover img {
  opacity: 0.8;
  filter: grayscale(0);
}

.reviews_buttons {
  display: flex;
  align-items: center;
}

.reviews_buttons .btn {
  margin-left: 10px;
  margin-right: 10px;
}

/* our shops end */

/* Our clients page end */

/* Svitstyle page */

.block_svpagel {
  overflow: hidden;
  padding: 100px 0;
}

.block_svpagel_img {
  float: right;
}

.block_svpagel_text {
  float: left;
  width: 44%;
}

.block_svpagel_text img {
  margin-top: 50px;
}

.block_svpagel_text .h2 {
  margin: 50px 0;
}

.block_svpager {
  overflow: hidden;
  padding: 100px 0;
}

.block_svpager_img {
  float: left;
  margin-left: -90px;
}

.block_svpager_text {
  float: right;
  width: 43%;
}

.block_svpager_text img {
  margin-top: 50px;
}

.block_svpager_text .h2 {
  margin: 50px 0;
}

.block_svdestination {
  padding-top: 100px;
  padding-bottom: 100px;
}

.block_svdestination .block_svpagel_img {
  margin-right: -160px;
}

.block_svdestination .block_svpagel_text {
  width: calc(100% - 990px);
}

.block_svdestination .p2 {
  max-width: 1100px;
  margin: auto;
}

.graphic_result {
  max-width: 100%;
  width: 780px;
  height: 549px;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  background: center / contain no-repeat url(/images/graphic_result.png) #fafafa;
}

.graphic_result_title {
  font-size: 24px;
  color: #39332f;
  position: absolute;
  top: 60px;
  left: 60px;
}

.graphic_result_title2 {
  font-size: 18px;
  position: absolute;
  text-align: center;
  bottom: 35px;
  width: 100%;
}

.graphic_result_before,
.graphic_result_after {
  position: absolute;
  width: 120px;
  bottom: 90px;
  font-size: 48px;
  align-items: flex-end;
  display: flex;
  padding-bottom: 40px;
  justify-content: center;
  text-transform: uppercase;
}

.graphic_result_before {
  height: 140px;
  left: 30%;
  background: #e0e0e0;
  color: #39332f;
}

.graphic_result_after {
  height: 340px;
  left: 53%;
  color: #fff;
  background: #e10061;
}

.graphic_result2 .graphic_result_before {
  height: 340px;
}

.graphic_result2 .graphic_result_after {
  height: 140px;
}

.block_result2 {
  height: 730px;
  margin-top: 60px;
  padding-top: 190px;
  background: url(/images/sv_4.jpg) center no-repeat;
}

.block_result2 .p3 {
  max-width: 650px;
  margin-top: 20px;
}

/* Svitstyle page end */

/* Charts size table */

.container_brands {
  padding: 90px 0;
  margin-bottom: 70px;
  /*background: #f9f9f9;*/
}

.block_ch {
  overflow: hidden;
  padding: 60px 0;
}

.block_ch_text img {
  margin-top: 50px;
}

.block_ch_text .h2 {
  margin: 50px 0;
}

.block_chp {
  overflow: hidden;
  padding: 100px 0;
  /*background: #F9F9F9;*/
}

.block_chp_img {
  margin-left: -90px;
}

.block_chp_text .h2 {
  margin: 50px 0;
}

.brands {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brands_count {
  display: flex;
  align-items: center;
  font-size: 60px;
}

.brands_title .h1 {
  margin: 0 0 15px;
}

.brands_title .p2 {
  max-width: 420px;
}

.brands_slides {
  display: flex;
  column-gap: 30px;
  justify-content: space-between;
}

.brands_slides > div {
  height: 100px;
  display: flex;
  align-items: center;
}

.brands_slides img {
  opacity: 0.6;
  height: auto;
  max-width: 100%;
}

/* News */

.news_item {
  margin-bottom: 40px;
  overflow: hidden;
}

.news_item img {
  float: left;
  margin-right: 25px;
}

.news_name {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #39332f;
}

.news_date {
  font-size: 14px;
  line-height: 120%;
  color: #39332f;
  opacity: 0.6;
  margin: 15px 0;
}

/* News end */

/* table */

.block_average {
  padding: 50px 0;
}

.hp_video_average {
  position: relative;
  width: 1002px;
  overflow: hidden;
  background-position: left top;
  background-repeat: no-repeat;
  background-image: url(/UserFiles/Image/tile_video_en.webp);
  height: 525px;
  padding: 10px 0 0;
  float: left;
  margin: 30px 0;
}

.hp_video_average iframe {
  width: 753px;
  height: 432px;
  left: 93px;
  position: relative;
}

.hp_text_average {
  float: right;
  width: calc(100% - 800px);
  margin-top: 55px;
}

.hp_text_average2 {
  float: left;
  width: 45%;
  margin: 50px 50px 0 0;
}

.hp_table_average {
  display: flex;
  flex-flow: row-reverse;
}

.table-lg {
  max-width: 880px;
  margin: 55px 0;
}

.table-lg th {
  font-size: 18px;
  padding: 9px 15px !important;
}

.table-lg td {
  font-size: 20px;
  vertical-align: middle !important;
  padding: 6px 15px !important;
}

.block_average .table-lg th {
  font-size: 15px;
  padding: 9px 15px !important;
}

.block_average .table-lg td {
  font-size: 15px;
  vertical-align: middle !important;
  padding: 6px 15px !important;
}

.table-lg.table-striped > tbody > tr:nth-of-type(even) {
  background-color: #fff;
}

.table-lg tr > th:nth-child(2),
.table-lg tr > th:nth-child(3) {
  text-align: center;
}

.table-lg tr > td:nth-child(2) {
  color: green;
  text-align: center;
}

.table-lg tr > td:nth-child(3) {
  color: red;
  text-align: center;
}

/* table end */

/* stat_period */

.f_history_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat_period {
}

.stat_period th {
  font-size: 15px;
  background: #ebebeb;
}

.stat_period td {
}

.stat_period td.period_year {
  color: #e5006c;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 15px;
  background: #f1f1f1;
  cursor: pointer;
  text-align: left !important;
}

.stat_period td.period_year .fa {
  font-size: 18px;
}

.stat_period td.period_year .fa:before {
  content: "\f105";
}

.stat_period .table > thead > tr > th,
.stat_period .table > tbody > tr > th,
.stat_period .table > tfoot > tr > th {
  padding: 10px 15px;
}

.stat_period .table > thead > tr > td,
.stat_period .table > tbody > tr > td,
.stat_period .table > tfoot > tr > td {
  padding: 6px 15px;
  font-size: 14px;
  text-align: center;
}

.stat_period .table tr > td:first-child {
  text-align: left !important;
}

.stat_period .table .fa {
  font-size: 22px;
}

/* stat_period end */

.block_steps_instruction_2 .h1 {
  padding-top: 120px;
}

.block_steps_instruction_2 {
  position: relative;
  padding-bottom: 120px;
}

.block_steps_instruction_2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  top: 160px;
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
}

.steps_instruction_2 {
  display: flex;
  margin-top: 50px;
  justify-content: space-around;
}

.steps_instruction_2 .number {
  font-size: 72px;
  font-weight: 300;
  line-height: 79px;
  color: #e10061;
  position: relative;
}

.steps_instruction_2 .number:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: #e10061;
  position: absolute;
  bottom: -40px;
  left: 10px;
  z-index: 10;
  border-radius: 50%;
}

.steps_instruction_2 p {
  font-size: 20px;
  margin: 75px 0 0 0;
  padding: 0 40px 0 0;
  max-width: 340px;
  line-height: 22px;
}

.steps_instruction_2 p strong {
  font-size: 16px;
  opacity: 0.7;
  line-height: 19px;
  display: block;
  font-weight: normal;
  margin-top: 10px;
}

.container_price {
  padding: 90px 0;
  background: #f9f9f9;
}

.cnt_price_layout {
  justify-content: space-around;
  display: flex;
}

.cnt_price_item {
  width: 48%;
  background: #fff;
  box-shadow: 0px 5px 10px #f1f1f1;
  border-radius: 18px;
  text-align: center;
  padding: 40px 0;
  margin-top: 30px;
  border-radius: 15px;
}

.cnt_price_title {
  font-size: 42px;
  color: #39332f;
  line-height: 43px;
}

.cnt_price_text {
  color: #39332f;
  font-size: 18px;
  line-height: 24px;
  margin: 5px 20px 10px;
  height: 40px;
}

.cnt_price_price {
  font-size: 18px;
  font-weight: 500;
  color: #e10061;
  text-align: center;
  margin: 30px 0 0;
  padding-top: 25px;
  position: relative;
  border-top: 1px solid rgba(57, 51, 47, 0.1);
}

#ready2order {
  padding-top: 60px;
  padding-bottom: 80px;
}

.block_upload_file {
  padding: 40px;
  border-radius: 15px;
  background: rgb(224 224 224 / 0.6);
}

.block_upload_file .p2 {
  margin-bottom: 15px;
}

.block_upload_file .text1 {
  margin-bottom: 10px;
}

/* Charts size table end */

/* body measurements page */

.block_figure_measure {
  display: flex;
  flex-flow: wrap;
}

.figure_measure {
  display: inline-block;
  width: calc(25% - 20px);
  margin: 0 20px 20px 0;
  text-align: center;
  border: 1px solid rgb(0 0 0 / 0.1);
}

.figure_measure img {
  max-width: 100%;
  height: 270px;
}

.figure_measure figcaption {
  text-align: center;
  font-size: 21px;
  font-weight: 300;
  border-top: 1px solid rgb(0 0 0 / 0.1);
  padding: 6px;
  line-height: 21px;
}

/* body measurements page end */

.p_virtualFit-ourSolution {
  display: flex;
}

.p_virtualFit-ourSolution .hp_video {
  width: 945px;
  right: -90px;
}

.p_virtualFit-ourSolution .hp_video_average {
  width: 1020px;
  margin: 30px 0 30px -85px;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/

#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url(/images/colorbox/overlay.png) repeat 0 0;
}

#colorbox {
  outline: 0;
}

#cboxTopLeft {
  width: 21px;
  height: 21px;
  background: url(/images/colorbox/controls.png) no-repeat -101px 0;
}

#cboxTopRight {
  width: 21px;
  height: 21px;
  background: url(/images/colorbox/controls.png) no-repeat -130px 0;
}

#cboxBottomLeft {
  width: 21px;
  height: 21px;
  background: url(/images/colorbox/controls.png) no-repeat -101px -29px;
}

#cboxBottomRight {
  width: 21px;
  height: 21px;
  background: url(/images/colorbox/controls.png) no-repeat -130px -29px;
}

#cboxMiddleLeft {
  width: 21px;
  background: url(/images/colorbox/controls.png) left top repeat-y;
}

#cboxMiddleRight {
  width: 21px;
  background: url(/images/colorbox/controls.png) right top repeat-y;
}

#cboxTopCenter {
  height: 21px;
  background: url(/images/colorbox/border.png) 0 0 repeat-x;
}

#cboxBottomCenter {
  height: 21px;
  background: url(/images/colorbox/border.png) 0 -29px repeat-x;
}

#cboxContent {
  background: #fff;
  overflow: hidden;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #e2e2e2;
}

#cboxLoadedContent {
  margin-top: 28px;
  margin-bottom: 28px;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

#cboxLoadingOverlay {
  background: url(/images/colorbox/loading_background.png) no-repeat center
    center;
}

#cboxLoadingGraphic {
  background: url(/images/colorbox/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(/images/colorbox/controls.png) no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: -75px -25px;
}

#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url(/images/colorbox/controls.png) no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: -50px -25px;
}

#cboxClose {
  position: absolute;
  top: 2px;
  right: -6px;
  background: url(/images/icon_close.svg) no-repeat;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);
}

.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  width: 100% !important;
  zoom: 1;
  outline: none;
  *display: inline;
  user-select: none;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #e2e2e2;
  border-top: 0;
  background: #fff;
}

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}

.chosen-container a {
  cursor: pointer;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 12px;
  height: 34px;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  background-color: #fff;
  background-clip: padding-box;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 34px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/images/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 5px;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/chosen-sprite.png") no-repeat 0px 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #e2e2e2;
  background: white url("/images/chosen-sprite.png") no-repeat 100% -20px;
  background: url("/images/chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 6px 12px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #e2e2e2;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background: #e5006c;
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
  background: #dedcdc;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 5px;
  height: 15px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-multi .chosen-choices li.search-field .default {
  color: #999;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 0 3px 5px;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #e4e4e4;
  background-image: linear-gradient(
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eeeeee 100%
  );
  background-clip: padding-box;
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/images/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi
  .chosen-choices
  li.search-choice
  .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #e2e2e2;
  background-color: #e4e4e4;
  background-image: linear-gradient(
    top,
    #f4f4f4 20%,
    #f0f0f0 50%,
    #e8e8e8 52%,
    #eeeeee 100%
  );
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi
  .chosen-choices
  li.search-choice-focus
  .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #e2e2e2;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #e5006c;
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #e2e2e2;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 0 0;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #e5006c;
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #111 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: white url("/images/chosen-sprite.png") no-repeat -30px -20px;
  background: url("/images/chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 144dpi) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("/images/chosen-sprite@2x.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* @end */

/* iCheck plugin Minimal skin, blue
----------------------------------- */
/* iCheck plugin Minimal skin, purple
----------------------------------- */
.icheckbox_minimal-purple,
.iradio_minimal-purple {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 18px;
  height: 18px;
  background: url(icheck/minimal/purple.png) no-repeat;
  border: none;
  cursor: pointer;
}

.icheckbox_minimal-purple {
  background-position: 0 0;
}

.icheckbox_minimal-purple.hover {
  background-position: -20px 0;
}

.icheckbox_minimal-purple.checked {
  background-position: -40px 0;
}

.icheckbox_minimal-purple.disabled {
  background-position: -60px 0;
  cursor: default;
}

.icheckbox_minimal-purple.checked.disabled {
  background-position: -80px 0;
}

.iradio_minimal-purple {
  background-position: -100px 0;
}

.iradio_minimal-purple.hover {
  background-position: -120px 0;
}

.iradio_minimal-purple.checked {
  background-position: -140px 0;
}

.iradio_minimal-purple.disabled {
  background-position: -160px 0;
  cursor: default;
}

.iradio_minimal-purple.checked.disabled {
  background-position: -180px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4),
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 120dpi) {
  .icheckbox_minimal-purple,
  .iradio_minimal-purple {
    background-image: url(icheck/minimal/purple@2x.png);
    -webkit-background-size: 200px 20px;
    background-size: 200px 20px;
  }
}

/*------ default style ------*/

label {
  display: inline !important;
  margin-bottom: 0;
  margin-left: 10px;
}

/* clear */
.clr {
  clear: both !important;
}

/* display */
.db {
  display: block !important;
}

.di {
  display: inline !important;
}

.df {
  display: flex;
}

.dib {
  display: inline-block !important;
}

.dnone {
  display: none;
}

/* float */
.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.fnone {
  float: none !important;
}

/* border */
.brdnone {
  border: none;
}

.brdtop {
  border-top: 1px solid #ccc;
}

/* width */
.w10p {
  width: 10% !important;
}

.w20p {
  width: 10% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w33p {
  width: 33% !important;
}

.w40p {
  width: 40% !important;
}

.w50p {
  width: 50% !important;
}

.w60p {
  width: 60% !important;
}

.w70p {
  width: 70% !important;
}

.w80p {
  width: 80% !important;
}

.w90p {
  width: 90% !important;
}

.w100p {
  width: 100% !important;
}

.w70px {
  width: 70px !important;
}

.w100px {
  width: 100px !important;
}

.w150px {
  width: 100px !important;
}

/* padding */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

/* padding-left */
.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

/* padding-right */
.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

/* padding-top */
.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

/* padding-bottom */
.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

/* margin */
.m0 {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

/* margin-left */
.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

/* margin-right */
.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

/* margin-top*/
.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

/* margin-bottom */
.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.nowrap {
  white-space: nowrap;
}

.heading30 {
  font-size: 17px;
  font-weight: bold;
}

#demo_widjet_img {
  width: 100%;
  position: relative;
}

/*
.demo_widjet_img_en {background-image: url(/images/img_vidjet_en.jpg);}
.demo_widjet_img_ua {background-image: url(/images/img_vidjet_ua.jpg);}
.demo_widjet_img_ru {background-image: url(/images/img_vidjet_ru.jpg);}
*/
.thing_tbl {
  width: 100%;
  margin-bottom: 15px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  border: 1px solid #ddd;
  -webkit-overflow-scrolling: touch;
}

.thing_tbl input.thing_size {
  max-width: 60px;
}

.sizeItem {
  margin-bottom: 5px;
}

#bl_standart_size table {
  width: 100%;
}

#bl_standart_size > span {
  display: inline-block;
  padding: 0 5px;
  font-weight: bold;
  position: relative;
}

/*
#bl_standart_size > span:after {
content: ", ";
}
*/
/* ul */

.color-black {
  color: #000;
}

.color-blue {
  color: #46a9d3;
}

.color-red {
  color: red;
}

.line {
  background: #e2e2e2;
  height: 1px;
  margin: 5px 0;
}

/* outline */
a,
a:hover,
a:focus,
a:active,
input,
button {
  outline: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.error_content {
  color: red;
  display: block !important;
}

.visible-2x,
.visible-1x {
  display: none !important;
}

#content {
  display: block;
}

/*
.white_header_title {
padding-bottom: 50px;    
}
*/
.container_wide {
  margin: auto;
  overflow: hidden;
  max-width: 1920px;
  padding-bottom: 60px;
}

.container_wide2 {
  margin: auto;
  max-width: 1400px;
}

.cols70 {
  overflow: hidden;
}

.tables {
  font-size: 14px;
}

.tables_payment {
  margin-top: 15px;
  overflow: hidden;
}

.tables_payment div.payment_item {
  margin-right: 15px;
  align-items: center;
  display: flex;
  height: 60px;
}

.tables_payment div.payment_item input[type="radio"] {
  margin: 0;
}

.flex_block {
  display: flex;
  margin-top: 15px;
  align-items: center;
}

.flex_block {
  display: flex;
  margin-top: 15px;
  align-items: center;
}

.flex_label {
  width: 200px;
}

.flex_item {
  width: 100%;
  max-width: 500px;
}

#determine_size_rst {
  text-align: center;
  max-width: 555px;
}

#determine_size_rst > div {
  height: auto !important;
}

#determine_size_rst iframe {
  height: 100%;
  min-height: 625px;
}

.logotype_bottom {
  background-image: url(/images/logotype_bottom.png);
  background-repeat: no-repeat;
  background-position: 130px 4px;
  background-size: 68px;
  text-align: right;
  display: inline-block;
  color: #131313;
  width: 200px;
  padding: 3px 80px 2px 0;
  margin-top: 8px;
}

.logotype_bottom,
.logotype_bottom a {
  font-size: 12px;
  font-style: italic;
  color: #131313;
  line-height: 12px;
  text-decoration: none;
}

.logotype_bottom img,
.logotype_bottom a {
  display: block;
  margin: auto;
}

.logotype_bottom a:hover {
  color: #e5006c;
}

.checkBoxesItem label.ui-state-active,
.checkBoxesItem label.ui-state-active:hover,
.checkBoxesItem label.ui-button,
.checkBoxesItem label.ui-visual-focus {
  background: none;
  border: none;
  color: #000;
  box-shadow: 0 0 0;
  margin: 0;
}

#box_category_top .checkBoxesItem {
  padding: 5px 0;
}

#box_category option:hover,
#box_category option.currentCategory {
  color: #e5006c;
  cursor: pointer;
}

#box_category::-webkit-scrollbar-button,
#search_brand_rst::-webkit-scrollbar-button {
  background-image: url("");
  background-repeat: no-repeat;
  width: 6px;
  height: 0px;
}

#box_category::-webkit-scrollbar-track,
#search_brand_rst::-webkit-scrollbar-track {
  background-color: #d3d3d3;
}

#box_category::-webkit-scrollbar-thumb,
#search_brand_rst::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background-color: #b50055;
}

#box_category::-webkit-scrollbar-thumb:hover,
#search_brand_rst::-webkit-scrollbar-thumb:hover {
  background-color: #e5006c;
}

#box_category::-webkit-resizer,
#search_brand_rst::-webkit-resizer {
  background-image: url("");
  background-repeat: no-repeat;
  width: 4px;
  height: 0px;
}

#box_category::-webkit-scrollbar,
#search_brand_rst::-webkit-scrollbar {
  width: 6px;
}

.container {
  max-width: 1720px;
  width: inherit;
  padding: 0 60px;
}

#loader-wrapper {
  display: none;
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #75717e;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 1001;
}

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e3146d;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

.data_loading {
  border: 3px solid #c7c7c7;
  border-radius: 50%;
  border-top: 3px solid #dc1e25;
  display: block;
  overflow: hidden;
  text-indent: -100px;
  -webkit-animation: spin 1s linear infinite;
  /* Safari */
  animation: spin 1s linear infinite;
  width: 20px;
  height: 20px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }

  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }

  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

.block_next_page {
  text-align: center;
}

.btn_action {
  cursor: pointer;
}

/*<--- My.table2zebra ---*/
table tr.line0 {
  background: #f5f5f5;
}

table tr.line1 {
  background: #fff;
}

table tr.lineover {
  background: #ddeaf3;
}

table tr.lineselect {
  background: #cfc;
  font-weight: normal;
}

table td.col0 {
  background: #f5f5f5;
}

table td.col1 {
  background: #fff;
}

table td.colselect {
  background: #cfc;
  font-weight: normal;
}

table td.colover {
  background: #ddeaf3;
}

/*--- My.table2zebra --->*/

#ready2order h3 {
  margin-bottom: 30px;
  font-size: 58px;
  font-weight: 300;
  line-height: 60px;
}

/*<--- bigSelect ---*/
.bigSelect {
  position: relative;
}

.bigSelect .bigSelectValue {
  width: 50px;
}

.bigSelect .bigSelectBtn {
  margin: 0 0 0 10px !important;
}

.bigSelect:before {
  display: block;
  color: #e5006c;
  font-size: 17px;
  z-index: 1000;
  content: "\f002";
  font-weight: 900;
  font-family: "FontAwesome";
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 7px;
  left: 7px;
}

.bigSelect .bigSelectSearch {
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  display: block;
  width: 300px;
  max-width: 300px;
  height: 34px;
  padding: 6px 12px 6px 30px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
}

.bigSelect .bigSelectSearch:focus {
  border-color: #e5006c;
  outline: 0;
}

.bigSelect div.result {
  width: 335px;
  position: absolute;
  padding: 5px 5px 5px 10px;
  background: #ffffff;
  border: 1px solid #cccccc;
  z-index: 999;
}

.bigSelect div.content {
  max-height: 350px;
  width: 100%;
  overflow-y: scroll;
  margin-top: 20px;
}

.bigSelect div.content div {
  cursor: pointer;
}

.bigSelect div.content div:hover {
  color: #e5006c;
}

.bigSelect div.count {
  float: left;
  width: 100px;
  font-weight: bold;
  font-size: 12px;
  font-family: inherit;
}

.bigSelect div.add {
  float: left;
  width: 130px;
  font-weight: bold;
  font-size: 12px;
  font-family: inherit;
  color: #0000ff;
}

.bigSelect div.close {
  float: right;
  cursor: pointer;
  font: bold 12px Arial;
  color: #ff0000;
  opacity: 1;
  overflow: hidden;
  font-size: 30px;
  transform: rotate(45deg);
  margin-top: -10px;
  opacity: 0.8;
}

.bigSelect div.close:hover {
  opacity: 1;
}

/*--- bigSelect --->*/

.recaptcha_button {
  margin: 20px auto 0;
  text-align: center;
}

.recaptcha > div {
  margin: auto;
  text-align: center;
}

#frm_determine_size #box_category span {
  cursor: pointer;
  display: block;
}

#frm_determine_size #box_category span.currentCategory {
  color: #e5006c;
}

#frm_determine_size #box_category span:hover {
  color: #e5006c;
  text-decoration: underline;
}

#frm_determine_size #box_category span.disabled,
#frm_determine_size #box_category span.disabled:hover {
  color: #e2e2e2;
  cursor: none;
  text-decoration: none;
}

.blog_video {
  border: 1px solid #ccc;
  display: inline-block;
}

.blog_img {
  margin-bottom: 25px;
}

.choose_brand_fit {
  position: relative;
}

.choose_brand_fit .form-control {
  border-radius: 0;
  padding: 7px 13px;
}

#clear_brand {
  position: absolute;
  right: 10px;
  font-size: 20px;
  top: 6px;
  color: #e5006c;
  opacity: 0.8;
  cursor: pointer;
}

#clear_brand:hover {
  opacity: 1;
}

.close {
  font-size: 45px;
  margin-right: 10px;
}

.modal-header {
  padding: 15px 20px 0 15px;
  line-height: 1;
  border-bottom: transparent;
  min-height: 16.42857143px;
  font-family: "Gilroy", Arial;
  font-size: 40px;
  font-weight: 300;
}

.modal-content .close {
  z-index: 1000;
  position: absolute;
  right: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  opacity: 1;
  border: transparent;
}

.modal-content .close:hover {
  color: #e5006c;
  opacity: 1;
}

.ls_tabs {
  margin: 0 auto;
  display: table;
  padding: 0;
}

.ls_tabs li {
  display: inline-block;
  text-align: center;
}

.ls_tabs li:first-child {
  padding: 0 90px 0 0;
}

.ls_tabs li:hover,
.ls_tabs li.active {
}

/* 
.modal-body {
min-height: 80vh !important;
height: unset !important;/https://www.looksize.com/ua/for-affiliates
}
 */

#dialog_signin .modal-body {
  height: 460px !important;
}

#dialog_tryfree .modal-body {
  height: 475px !important;
}

.modal-body .container.block_request_quote {
  padding: 0;
}

.modal-body #request_quote_div .row > .col-lg-4 {
  width: 50%;
}

.modal-body .h4 {
  padding-right: 20px;
}

#box_show_widget {
  display: flex;
}

#box_show_widget > div {
  display: flex;
  padding-right: 30px;
}

.icon-bar {
  height: 2px;
  width: 22px;
  background: #39332f;
  margin: auto;
  display: block;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

.navbar-toggle {
  color: #75717e;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  font-size: 20px;
  overflow: hidden;
  border: 1px solid #ccc;
  right: 15px;
  top: 15px;
  z-index: 100;
  background: #fff;
  padding: 6px 10px;
  position: fixed;
}

.stat_svg_chart,
.block_graph {
  margin: auto !important;
}

#frm_affiliate_form_div .notify_message {
  text-align: center;
}

.fixed_helpus {
  padding: 6px 20px;
  color: #000;
  box-shadow: 0 0px 5px #030d26;
  font-size: 13px;
  margin-bottom: 45px;
}

.helpus2_text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.closebtn {
  display: block;
  position: absolute;
  top: 14px;
  right: 31px;
  cursor: pointer;
  color: #39332f;
  opacity: 0.6;
  text-decoration: none;
  font-size: 50px;
  font-weight: 300;
  transform: rotateZ(45deg);
}

.closebtn:hover {
  color: #e10061;
}

.share_btn {
  font-size: 21px;
}

.block_flex {
  display: flex;
  justify-content: space-between;
  max-width: 1720px;
  width: inherit;
  padding: 0 60px 5px;
  margin: auto;
  border-bottom: 1px solid #ccc;
}

.current_balance {
  font-size: 21px;
  font-weight: bold;
}

#ourClients .modal-body {
  height: unset !important;
  min-height: 400px;
}

.d-flex1 {
  display: flex;
  gap: 100px;
}

.pt70 {
  padding-top: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

/*------ default style ------*/

/* MEDIA */

@media screen and (min-width: 1740px) {
  :root {
    --text-hero: 3.625rem;
  }

  .slick-prev {
    left: -55px;
  }

  .slick-next {
    right: -55px;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1739px) {
  :root {
    --text-hero: 3rem;
    --text-h1: 2.6rem;
    --text-h2: 1.625rem;
    --text-body: 1.25rem;
    --text-small: 1rem;
  }

  .hp_block3 .videoWrapper {
    width: 755px;
    padding-bottom: 53%;
    margin: 0 9px 0 0;
    float: right;
  }

  .block_sv_text .h2 {
    font-size: 48px;
  }

  .block_sv_text,
  .block_zl_text {
    width: 39%;
  }

  .block_sv_text img {
    margin-top: 10px;
  }

  .block_sv_img,
  .block_zl_img,
  .block_chp_img {
    margin-left: -140px;
  }

  .block_ch_img {
    margin-right: -140px;
  }

  .block_svpagel_text .h2 {
    font-size: 48px;
  }

  .block_svpagel_text,
  .block_svpager_text {
    width: 39%;
  }

  .block_svpagel_text img {
    margin-top: 10px;
  }

  .block_svpagel_img {
    margin-right: -140px;
  }

  .block_svpager_img {
    margin-left: -140px;
  }

  .block_benefits .h1 {
    max-width: 500px;
    font-size: 68px;
  }

  .benefits_items {
    padding-left: 80px;
  }

  .block_inspiration {
    background-size: 105%;
    height: 750px;
  }

  .our_shops {
    margin-top: 50px;
  }

  .brand_table .block_brands {
    column-count: 5;
  }

  .block_brands_letter {
    font-size: 48px;
    margin: 0;
  }

  .item_inspiration_l .item_file {
    margin-right: -160px;
  }

  .item_inspiration_r .item_file {
    margin-left: -160px;
  }

  .p_virtualFit-ourSolution .hp_video {
    width: 945px;
    right: -145px;
  }

  .p_virtualFit-ourSolution .hp_block3 {
    float: left;
    margin-right: -125px;
  }

  .p_virtualFit-ourSolution .hp_text_average {
    width: calc(100% - 760px);
    margin-top: 20px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  :root {
    --text-hero: 2.495rem;
    --text-h1: 2.3rem;
    --text-h2: 1.625rem;
    --text-body: 1.25rem;
    --text-small: 1rem;
  }

  .item_inspiration_r .bl_inspiration_text {
    float: right;
    width: 40%;
    padding-left: 30px;
  }

  .item_inspiration_l,
  .item_inspiration_r {
    display: flex;
  }

  .item_inspiration_r {
    flex-flow: row-reverse;
  }

  .item_inspiration_l .item_file,
  .item_inspiration_r .item_file {
    display: flex;
    width: calc(100% - 285px);
    object-fit: cover;
    align-items: center;
  }

  .item_inspiration_l .item_file img,
  .item_inspiration_r .item_file img {
    max-width: 100%;
  }

  .item_inspiration_l .item_file {
    margin-right: -140px;
  }

  .item_inspiration_r .item_file {
    margin-left: -140px;
  }

  .item_inspiration_l .item_file img,
  .item_inspiration_r .item_file img {
    width: 100%;
    height: auto;
  }

  .block_ch .container > .h3 {
    display: block;
  }

  .block_ch_text > .h3 {
    display: none;
  }

  .block_chp_img {
    margin-left: -280px;
  }

  .rp_block1 .h2,
  .rp_block1 .block_rp_img,
  .rp_block2_text,
  .block_rp_img2 {
    float: none;
    width: 100%;
  }

  .rp_block1 .block_rp_img img,
  .block_rp_img2 img {
    margin: 30px auto;
    display: block;
    max-width: 100%;
    height: auto;
  }

  .rp_block2_text {
    padding-top: 15px;
  }

  .rp_block2 {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .block_benefits .h1 {
    float: none;
  }

  .benefits_items {
    padding-left: 0;
  }

  .block_benefits {
    padding: 15px 0;
  }

  .pricing_plan_text {
    font-size: 16px;
  }

  .block_pricing_plan {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .block_sv,
  .block_zl,
  .block_ch,
  .block_chp {
    padding: 10px 0 60px;
  }

  .block_sv_text,
  .block_zl_text,
  .block_inspiration_text {
    float: none;
    width: 100%;
    margin-bottom: 60px;
  }

  .block_sv_text .h2,
  .block_zl_text .h2,
  .block_ch_text .h2,
  .block_chp_text .h2 {
    margin: 30px 0;
  }

  .block_svpagel,
  .block_svpager {
    padding: 10px 0 60px;
  }

  .block_svpagel_text,
  .block_svpager_text {
    float: none;
    width: 100%;
    margin-bottom: 60px;
  }

  .block_svpagel_img,
  .block_svpager_img {
    float: none;
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
  }

  .block_svpagel_text .h2,
  .block_svpager_text .h2 {
    margin: 30px 0;
  }

  .block_brands_letter {
    font-size: 48px;
    margin: 0;
  }

  .brand_table .block_brands {
    column-count: 3;
  }

  .steps_instruction {
    flex-wrap: wrap;
  }

  .steps_instruction .step {
    width: 50%;
    margin-bottom: 30px;
  }

  .block_svdestination .block_svpagel_text {
    width: 100%;
    max-width: 560px;
  }

  .block_svdestination .block_svpagel_img {
    margin-right: -160px;
    float: right;
  }

  .graphic_result_before {
    left: 19%;
  }

  .block_inspiration {
    background-size: 100%;
  }

  .pricing_plan_text {
    min-height: unset;
  }

  .dflex {
    display: flex;
  }

  .dflex_left {
    width: 205px;
    margin-right: 25px;
  }

  .dflex_right {
    width: calc(100% - 230px);
  }

  .blog_ll_item {
    width: 50%;
    float: left;
  }

  .blog_video {
    margin-bottom: 25px;
  }

  .blog_video_right {
    float: right;
    margin-right: 25px;
  }

  .pricing_plan_right .pricing_plan_item {
    width: 305px;
  }

  .pricing_plan_name.pink {
    margin-top: 30px;
  }

  .pricing_plan_text {
    min-height: unset;
  }

  .hp_video_average {
    margin: 0;
    float: none;
  }

  .hp_video {
    float: none;
  }

  .hp_text_average {
    float: none;
    width: auto;
    margin-top: 55px;
  }

  .hp_text_average2 {
    float: none;
    width: auto;
    margin: 0;
  }

  .hp_table_average {
    display: flex;
    flex-flow: row;
  }
}

@media screen and (min-width: 1200px) {
  header {
    position: fixed;
    width: 100%;
  }

  .header_padding {
    height: 150px;
  }

  /* mainpage video */
  .mainpageVideo {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }

  .mainpageVideo video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  /* mainpage video end */
  .navbar-toggle {
    display: none;
  }
  header#header.fixed-up {
    position: fixed;
    transform: translate3d(0px, -250px, 0px);
  }
  header#header.fixed-down {
    margin-top: 0;
    background: #fff;
    padding-top: 9px;
    padding-bottom: 0;
    z-index: 999;
    border-bottom: 1px solid #ccc;
  }

  header#header.fixed-down .logo {
    width: 73px;
    height: auto;
    margin: -25px 0 0;
  }
  header#header.fixed-down .selected_language {
    font-size: 14px;
  }
  header#header.fixed-down #top_menu {
    margin-top: 5px;
  }
  header#header.fixed-down .language {
    margin-top: 2px;
    margin-right: 0;
  }
  header#header.fixed-down .top_links > a {
    padding: 4px 25px;
    font-size: 14px;
  }
  header#header.fixed-down .sf-menu > li {
    padding: 0 5px;
    margin-bottom: 0;
  }
  header#header.fixed-down .sf-menu > li > a {
    font-size: 16px;
  }
  .sf-menu > li > ul {
    background: #fff;
    position: absolute;
    top: -999em;
    width: 290px;
    border: 1px solid rgb(57 51 47 / 0.1);
  }

  .sf-menu li:hover ul {
    left: 0;
    top: 24px;
    z-index: 99;
    padding: 0;
    list-style: none;
  }

  .block_ch .container > .h3 {
    display: none;
  }

  .block_ch_text > .h3 {
    display: block;
  }

  #frm_brand_chart #box_standart,
  #frm_brand_chart #box_size_id {
    max-height: unset !important;
  }

  .block_chp_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .block_chp_container > div {
    width: 49%;
  }
}

@media screen and (max-width: 1199px) {
  .header_padding {
    height: 40px;
  }
  /* mainpage video */
  .mainpageVideo {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
  }

  .mainpageVideo video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /* mainpage video end */

  .integration_slides {
    margin-top: 25px;
  }
  .hc_order1 {
    order: 1;
  }

  .hc_order1 .logo {
    position: relative;
    left: -45px;
    top: 10px;
  }

  .hc_order2 {
    order: 2;
  }

  .hc_order3 {
    order: 3;
    margin: 50px 0 0 0;
  }

  .hc_order4 {
    order: 4;
  }

  .block_chp_container,
  .block_ch_container {
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .block_chp_img {
    margin-left: 0;
  }

  .block_ch .container > .h3 {
    display: block;
  }

  .block_ch_text > .h3 {
    display: none;
  }

  .item_inspiration_l .item_file img,
  .item_inspiration_r .item_file img {
    max-width: 100%;
  }

  .color_brand,
  .color_btn {
    width: 65px;
  }

  .hp_block1.textBlock-flex.textBlock-flex1 {
    gap: 40px;
  }

  .textBlock-flex.textBlock-flex1 {
    flex-flow: column;
    gap: 0;
  }

  .textBlock-flex.textBlock-flex2 {
    flex-flow: column-reverse;
    gap: 0;
  }

  .textBlock-flex > div {
    width: 100%;
  }

  .block_padding {
    padding: 60px 0;
  }
  .block_paddingB {
    padding-bottom: 60px;
  }
  .block_paddingT {
    padding-top: 60px;
  }
  .block_ch_text {
    width: 100%;
  }

  .block_ch_container {
    flex-flow: column;
  }

  .block_ch_img {
    margin: 30px auto;
    width: 945px;
  }

  /* header */

  #header_menu {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    margin: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    display: none;
  }

  #header_menu > div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column;
  }

  .header_menu_logo {
    margin: 25px 0 25px 40px;
  }

  .logo {
    margin-top: 20px;
  }

  #top_menu {
    float: none;
    order: 1;
  }

  .navbar-toggle {
    display: block;
  }

  .sf-menu {
    display: block;
  }

  .sf-menu > li,
  .sf-menu > li:first-child {
    display: block;
    padding: 3px 0;
    text-align: left;
  }

  .sf-menu > li > a {
    font-size: 24px;
    line-height: 120%;
    font-weight: 300;
  }

  .sf-menu > li.current > a {
    color: #e10061;
    font-weight: 500;
  }

  .sf-menu > li.current > a:before {
    content: "";
    width: 15px;
    height: 2px;
    display: block;
    position: absolute;
    left: -20px;
    top: 13px;
    background: #e10061;
  }

  .sf-menu > li > ul {
    background: #fff;
    width: 100%;
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    display: none;
  }

  .sf-menu li li a {
    font-size: 18px;
    padding: 17px 15px;
  }

  nav {
    float: none;
    width: 100%;
    height: auto;
  }

  .top_links {
    float: none;
    order: 3;
    margin: 0 0 10px 0;
    display: inline-block;
    text-align: left;
  }

  .language {
    order: 2;
    width: 140px;
    margin: 18px 50px 0 0;
  }

  .selected_language {
    display: none;
  }

  .options_language {
    display: inline-block !important;
    padding: 0;
    width: auto;
    text-align: left;
    position: relative;
    z-index: 100;
    border: none;
    background: transparent;
  }

  .options_language a {
    display: inline-block;
    color: #39332f;
    font-size: 24px;
    padding: 3px 15px 3px 0;
    margin-right: 10px;
    text-decoration: none;
    border-bottom: none;
  }

  .options_language a.lang_current {
    color: #e10061;
    text-decoration: underline;
  }
  /* header end */
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .our_shops {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ourShops_slider-img img {
    max-width: 220px;
  }

  .hp_block2 .p2 {
    max-width: 100%;
  }

  .hp_block3 .p2 {
    margin-top: 15px;
    max-width: 100%;
  }

  .hp_block3 .hp_block3_h1 {
    margin-top: 40px;
  }

  .hp_block3 .videoWrapper {
    width: 755px;
    display: block;
    padding-bottom: 52%;
    margin: -2px 10px 0 0;
    float: right;
  }

  .hp_block4 {
    padding: 30px 0;
  }

  .steps {
    justify-content: space-between;
  }

  .steps .step {
    width: 145px;
  }

  .integration_slides,
  .integration_title {
    width: 100%;
  }

  .integration {
    display: block;
  }

  .block_integration {
    padding: 43px 0;
  }

  .integration_title .h1 br {
    display: block !important;
  }

  .integration_title .p2 {
    margin: 16px 0 45px;
  }

  .icon_item_block {
    margin-top: 55px;
  }

  .icon_item {
    width: auto;
  }

  .rp_block1 .h2,
  .rp_block2_text {
    float: none;
    width: 75%;
    line-height: 44px;
  }

  .rp_block1 .block_rp_img,
  .block_rp_img2 {
    float: none;
    width: 100%;
    overflow: inherit;
  }

  .rp_block1 .block_rp_img img {
    margin: 40px 0 0 -146px;
    height: auto;
    width: 800px;
    max-width: inherit;
  }

  .block_rp_img2 img {
    width: 520px;
    margin: 30px auto;
    display: block;
    max-width: 100%;
    height: auto;
  }

  .rp_block2_text {
    padding-top: 15px;
  }

  .rp_block2 {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .block_benefits .h1 {
    float: none;
  }

  .benefits_items {
    padding-left: 0;
  }

  .benefits_item {
    margin-bottom: 30px;
  }

  .block_benefits {
    padding: 60px 0 0;
  }

  .pricing_plan_marker {
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 25px;
    top: -30px;
  }

  .block_pricing_plan {
    padding-top: 60px;
  }

  .block_sv,
  .block_zl,
  .block_ch {
    padding: 10px 0 60px;
  }

  .block_sv_text,
  .block_zl_text,
  .block_inspiration_text {
    float: none;
    width: 100%;
    margin-bottom: 60px;
  }

  .block_sv_img,
  .block_zl_img,
  .block_chp_img {
    float: none;
    max-width: 100%;
    height: auto;
    margin: auto;
  }

  .block_sv_text .h2,
  .block_zl_text .h2,
  .block_ch_text .h2,
  .block_chp_text .h2 {
    margin: 30px 0;
  }

  .block_brands_letter {
    font-size: 48px;
    margin: 0;
  }

  .brand_table .block_brands {
    column-count: 3;
  }

  .item_inspiration_l .bl_inspiration_text,
  .item_inspiration_r .bl_inspiration_text {
    float: none;
    width: 100%;
    margin-bottom: 60px;
  }

  .item_inspiration_l .item_file,
  .item_inspiration_r .item_file {
    margin: 0 auto;
    float: none;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .steps_instruction {
    flex-wrap: wrap;
  }

  .steps_instruction .step {
    width: 50%;
    margin-bottom: 40px;
  }

  .steps_instruction .number {
    font-size: 48px;
  }

  .steps_instruction p {
    font-size: 18px;
    max-width: 305px;
  }

  .block_gb {
    margin-top: 75px;
    margin-bottom: 75px;
    flex-flow: wrap;
  }

  .gb_item {
    max-width: inherit;
    width: calc(50% - 20px);
    margin-bottom: 60px;
    padding: 0 20px 0 0;
  }

  .gb_item:nth-child(even) {
    padding: 0;
  }

  .block_count {
    padding: 60px 0 80px;
  }

  .block_insidepage {
    padding-top: 10px;
  }

  .block_solution {
    padding: 50px 0 120px;
  }

  .block_solution .p2 {
    margin-top: 5px;
  }

  .block_main_reason {
    padding: 55px 0;
  }

  .block_main_reason2 .h3 {
    position: absolute;
    bottom: 50px;
    width: 70%;
    line-height: 30px;
  }

  .container.block_request_demo {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .block_request_demo h2 {
    margin-bottom: 30px;
    margin-top: 40px;
  }

  .block_inspiration {
    height: 710px;
    background: none;
  }

  .block_inspiration img {
    display: block !important;
    margin: auto;
  }

  .block_inspiration_text {
    margin-bottom: 0;
  }

  .block_inspiration_text .h2 {
    margin: 0 0 50px;
  }

  .graphic_result {
    height: 314px;
  }

  .graphic_result_title {
    top: 30px;
    left: 30px;
    font-size: 16px;
  }

  .graphic_result_title2 {
    font-size: 14px;
    bottom: 15px;
    padding: 0 15px;
  }

  .graphic_result_title2 strong {
    display: block;
  }

  .graphic_result_before,
  .graphic_result_after {
    font-size: 24px;
    padding-bottom: 10px;
    width: 60px;
    bottom: 75px;
  }

  .graphic_result_before {
    height: 70px;
  }

  .graphic_result_after {
    height: 170px;
  }

  .graphic_result2 .graphic_result_before {
    height: 170px;
  }

  .graphic_result2 .graphic_result_after {
    height: 70px;
  }

  .block_svpagel {
    padding: 0 0 30px;
  }

  .block_svpagel_text,
  .block_svpager_text,
  .block_svdestination .block_svpagel_text {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }

  .block_svpagel_text .h2,
  .block_svpager_text .h2 {
    margin: 50px 0 0;
  }

  .block_svpagel_img,
  .block_svpager_img {
    float: none;
    max-width: 100%;
    margin: auto;
  }

  .block_svpager {
    padding: 0;
  }

  .block_result2 {
    background: url(/images/sv_4.jpg) right bottom no-repeat;
    padding: 0;
    height: 1000px;
    margin-top: 25px;
  }

  .block_result2 .h1 {
    font-size: 48px;
    line-height: 100%;
  }

  .block_svdestination .block_svpagel_img {
    float: right;
  }

  .block_svdestination {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .brands {
    display: block;
  }

  .brands_title {
    width: 100%;
  }

  .brands_slides {
    width: 100%;
  }

  .steps_instruction_2 {
    flex-wrap: wrap;
  }

  .steps_instruction_2 .step {
    width: 50%;
    margin-bottom: 40px;
  }

  .steps_instruction_2 .number:after,
  .block_steps_instruction_2:after {
    display: none;
  }

  .steps_instruction_2 p {
    margin: 0;
    font-size: 18px;
  }

  #ready2order {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .block_steps_instruction_2 {
    padding-bottom: 60px;
  }

  .container_price {
    padding: 40px 0 90px;
  }

  .block_chp {
    padding: 0;
  }

  .block_ch_img,
  .block_chp_img {
    margin: auto;
    display: block;
  }

  .blog_list .blog_item {
    width: calc(100% / 2 - 40px);
  }

  .blog_list .blog_item:nth-child(3n + 3) {
    margin-right: 40px;
  }

  .blog_list .blog_item:nth-child(even) {
    margin-right: 0;
  }

  .blog_list .blog_item:nth-child(3n + 4) {
    clear: none;
  }

  .blog_list .blog_item:nth-child(odd) {
    clear: both;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  :root {
    --text-hero: 2.685rem;
    --text-h1: 2.4rem;
    --text-h2: 1.625rem;
    --text-body: 1.25rem;
    --text-small: 1rem;
  }

  .pricing_plan_right .pricing_plan_item {
    width: 305px;
  }

  .pricing_plan_name.pink {
    margin-top: 30px;
  }

  .pricing_plan_right {
    margin-top: 50px;
  }

  .hp_video_average {
    margin: 0;
    float: none;
  }

  .hp_video {
    float: none;
  }

  .hp_text_average {
    float: none;
    width: auto;
    margin-top: 55px;
  }

  .hp_text_average2 {
    float: none;
    width: auto;
    margin: 0;
  }

  .hp_table_average {
    display: flex;
    flex-flow: row;
  }

  .block_inspiration {
    background-size: 1200px;
  }

  #top_menu {
    margin-right: 0;
  }

  .figure_measure {
    width: calc(100% / 3 - 20px);
  }

  .dflex {
    display: flex;
  }

  .dflex_left {
    width: 145px;
    margin-right: 25px;
  }

  .dflex_right {
    width: calc(100% - 145px);
  }
}

@media screen and (min-width: 992px) {
  .d-flex {
    display: flex;
    align-items: center;
  }

  .d-flex2 {
    display: flex;
    justify-content: center;
  }

  .flex_img_block img {
    width: 50%;
    height: auto;
  }

  #dialog_affiliate .modal-body {
    height: 890px !important;
  }

  .hidden-sm_top {
    display: flex;
  }

  .visible-sm_top {
    display: none;
  }

  .table_bl_fitting {
    width: 100%;
  }

  .table_bl_fitting td {
    width: 50%;
  }

  #footer {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  .footer_padding {
    padding-bottom: 290px;
  }

  #contact_us_div input.form-control {
    max-width: 400px;
    width: 100%;
  }

  #contact_us_div textarea.form-control {
    max-width: 635px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  :root {
    --text-hero: 2.685rem;
    --text-h1: 2.4rem;
    --text-h2: 1.625rem;
    --text-body: 1.25rem;
    --text-small: 1rem;
  }

  .pricing_plan {
    flex-flow: column;
  }

  .pricing_plan_right {
    margin-top: 50px;
  }

  .pricing_plan_item {
    margin: 40px auto 0;
  }

  .menu_table {
    flex-flow: wrap;
  }

  .menu_table div {
    width: 50%;
    margin-bottom: 35px;
  }

  .integration_slides img {
    margin: 0;
  }

  .steps p {
    width: 170px;
  }

  .block_integration {
    padding: 90px 0 20px;
  }

  .block_gb {
    display: block;
  }

  .gb_item {
    float: left;
    margin: 0 0 50px 0;
    width: calc(50% - 25px);
  }

  .gb_item:nth-child(odd) {
    margin: 0 50px 50px 0;
  }

  .block_inspiration {
    background-size: 1020px;
    background-position: right bottom;
    padding: 10px 0;
    height: 650px;
  }

  .cnt_price_title {
    font-size: 32px;
  }

  .cnt_price_text {
    margin: 5px 40px 20px;
  }

  .cnt_price_item {
    padding: 30px 0;
  }

  .figure_measure {
    width: calc(100% / 3 - 20px);
  }

  .figure_measure img {
    height: 220px;
  }

  .dflex {
    display: flex;
  }

  .dflex_left {
    width: 205px;
    margin-right: 25px;
  }

  .dflex_right {
    width: calc(100% - 230px);
  }
}

@media screen and (max-width: 991px) {
  #dialog_affiliate .modal-body {
    height: 1060px !important;
  }

  .link_border {
    margin: 0 0 15px !important;
    width: 100% !important;
    padding: 10px 15px !important;
  }

  .block_flex {
    padding: 0 15px;
    flex-flow: column;
  }

  .hidden-sm_top {
    display: none;
  }

  .visible-sm_top {
    display: block;
    order: 2;
    padding: 0 25px;
  }

  .block_ch_img {
    margin: 50px 0 0;
    float: none;
    background-image: none;
    width: 100% !important;
    position: relative;
    padding-bottom: 52%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
  }

  .block_ch_img iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e2e2e2;
    width: 100%;
    height: 100%;
  }

  .hp_video_average,
  .video_iframe {
    margin: 0;
    float: none;
    background-image: none;
    width: auto;
    position: relative;
    padding-bottom: 52%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
  }

  .hp_video_average iframe,
  .video_iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #e2e2e2;
    width: 100%;
    height: 100%;
  }

  .hp_video strong {
    width: 42px;
    height: 30px;
    left: calc(50% - 20px);
    background-size: cover;
    top: 45%;
  }

  .hp_video {
    margin: 0;
    float: none;
    background-image: none;
    width: auto;
    height: unset;
  }

  .hp_video video {
    left: auto;
    width: 100%;
    position: relative;
    height: auto;
  }

  .hp_video a {
    left: auto;
    top: auto;
    width: 100%;
    position: relative;
  }

  .hp_text_average {
    float: none;
    width: auto;
    margin-top: 0;
  }

  .hp_text_average2 {
    float: none;
    width: auto;
    margin: 0;
  }

  .hp_table_average {
    display: flex;
    flex-flow: row;
  }

  .hp_table_average .table-lg {
    margin: 0;
  }

  .pricing_plan_item {
    height: 280px;
  }

  .pricing_plan_right > div:not(.h4) {
    margin: 80px -15px 0;
  }

  .table-lg td {
    font-size: 16px;
  }

  .p2,
  .p3 {
    font-size: 16px;
  }

  .steps .number {
    font-size: 48px;
  }

  .steps p {
    font-size: 16px;
    max-width: 100%;
  }

  .table_bl_fitting {
    width: 100%;
  }

  .table_bl_fitting td {
    width: 100%;
    display: block;
  }
}

@media (max-width: 767px) {
  :root {
    --text-hero: 2.685rem;
    --text-h1: 2.4rem;
    --text-h2: 1.625rem;
    --text-body: 1.25rem;
    --text-small: 1rem;
  }

  h1,
  .h1 {
    line-height: 1.1;
  }

  .homePageBlock3 .d-flex2 {
    text-align: center;
  }
  .block_padding {
    padding: 40px 0;
  }
  .block_paddingB {
    padding-bottom: 40px;
  }
  .block_paddingT {
    padding-top: 40px;
  }
  #ourShops_slider {
    margin-top: 35px;
  }

  .progress-tracker--text {
    flex-direction: column;
  }

  .progress-tracker--text .progress-step {
    display: flex;
    flex: 1 1 auto;
  }

  .progress-tracker--text.progress-tracker--right .progress-step {
    flex-direction: row-reverse;
  }

  .progress-tracker--text .progress-marker::after {
    right: auto;
    top: 12px;
    left: 12px;
    width: 2px;
    height: 100%;
  }

  .progress-tracker--text .progress-text {
    padding: 0 12px 24px 12px;
  }

  #frm_brand_chart #box_standart .checkBoxesItem,
  #frm_brand_chart #box_size_id .checkBoxesItem {
    white-space: nowrap;
  }

  .brands_slides img {
    padding: 0 10px;
  }

  .integration_slidesRow1 img,
  .integration_slidesRow2 img {
    height: auto;
    max-width: 120px;
  }

  #ourClients .modal-dialog {
    max-width: unset;
    width: 96% !important;
  }

  .author_top {
    flex-flow: column;
  }

  .author_top div {
    margin-top: 10px;
  }

  .author_socials {
    margin-left: 0;
  }

  .copied {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 20px;
  }

  #helpus2 p {
    text-align: left;
  }

  #helpus_text {
    font-weight: bold;
  }

  .pricing_plan_price br {
    display: none;
  }

  .modal-body {
    min-height: 90vh;
  }

  h4,
  .h4 {
    font-size: 22px;
    line-height: 1;
  }

  .modal-dialog {
    max-width: 95%;
  }

  .dflex_left {
    text-align: left !important;
  }

  .blog_video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .blog_video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .container {
    padding: 0 15px;
  }

  .hp_block4 {
    padding: 0 0 70px 0;
  }

  .steps {
    display: block;
  }

  .steps .number {
    font-size: 36px;
    line-height: 56px;
  }

  .steps .step {
    margin-bottom: 5px;
  }

  .integration {
    display: block;
  }

  .block_integration {
    padding: 0;
    background: none;
  }

  .integration_slides,
  .integration_title {
    width: 100%;
  }

  .integration_slides a {
    width: 100%;
    margin: 20px 0;
  }

  .block_gb_h1 {
    margin-top: 40px;
  }

  .block_gb {
    display: block;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .gb_item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .gb_img img {
    width: 100px;
    height: 100px;
  }

  .gb_message {
    margin: 20px 0;
  }

  .menu_table {
    display: block;
  }

  .menu_table div {
    width: 100%;
  }

  .rp_block1 .h2,
  .rp_block1 .block_rp_img,
  .rp_block2_text,
  .block_rp_img2 {
    float: none;
    width: 100%;
  }

  .rp_block1 .block_rp_img img,
  .block_rp_img2 img {
    margin: 30px auto;
    display: block;
    max-width: 100%;
    height: auto;
  }

  .rp_block2_text {
    padding-top: 15px;
  }

  .rp_block2 {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .block_benefits .h1 {
    float: none;
  }

  .block_benefits .h1 br {
    display: none;
  }

  .benefits_items {
    padding-left: 0;
  }

  .benefits_item,
  .benefits_item:nth-child(odd) {
    width: 100%;
  }

  .benefits_item_img {
    width: 65px;
  }

  .block_benefits {
    padding: 15px 0;
  }

  .block_pricing_plan {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .block_insidepage {
    padding-top: 0;
  }

  .block_solution {
    padding: 15px 0 20px;
  }

  .block_main_reason {
    padding: 30px 0;
  }

  .block_main_reason2 {
    height: 460px;
  }

  .block_main_reason2 .h3 {
    font-size: 24px;
    line-height: 24px;
    background-size: 1100px;
  }

  .block_inspiration {
    background: transparent;
    height: auto;
    padding: 10px 0;
  }

  .block_sv,
  .block_zl,
  .block_ch {
    padding: 10px 0 60px;
  }

  .block_chp {
    padding: 10px 0;
  }

  .block_sv_text,
  .block_zl_text,
  .block_inspiration_text {
    float: none;
    width: 100%;
    margin-bottom: 60px;
  }

  .block_sv_text .btn_nobg,
  .block_zl_text .btn_nobg,
  .block_inspiration_text .btn_nobg {
    width: 100%;
  }

  .block_sv_img,
  .block_zl_img,
  .block_chp_img {
    float: none;
    max-width: 100%;
    height: auto;
    margin-left: 0;
  }

  .block_sv_text .h2,
  .block_zl_text .h2,
  .block_ch_text .h2,
  .block_chp_text .h2 {
    margin: 30px 0;
  }

  .our_shops {
    grid-template-columns: 1fr 1fr;
  }

  .brand_table .block_brands {
    column-count: 2;
  }

  .block_brands_letter {
    font-size: 36px;
    margin: 0;
  }

  .item_inspiration_l .bl_inspiration_text,
  .item_inspiration_r .bl_inspiration_text {
    float: none;
    width: 100%;
    margin-bottom: 60px;
  }

  .item_inspiration_l .item_file,
  .item_inspiration_r .item_file {
    margin: 0 auto;
    float: none;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .item_name {
    font-size: 24px;
  }

  .color_brand_group,
  .color_alert_group,
  .color_btn_group {
    margin-bottom: 25px;
  }

  .item_inspiration_l,
  .item_inspiration_r {
    padding-top: 0;
  }

  .item_logo {
    zoom: 70%;
  }

  .color_brand_group span,
  .color_alert_group span {
    font-size: 16px;
  }

  .color_btn_group span {
    font-size: 18px;
  }

  .sf-menu > li > a:hover:after,
  .sf-menu > li.current > a:after {
    display: none;
  }

  .request_text span {
    display: block;
    margin-bottom: 10px;
  }

  .container.block_request_demo {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .graphic_result {
    height: 314px;
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .graphic_result_title {
    top: 30px;
    left: 30px;
    font-size: 16px;
  }

  .graphic_result_title2 {
    font-size: 14px;
    bottom: 15px;
    padding: 0 15px;
  }

  .graphic_result_title2 strong {
    display: block;
  }

  .graphic_result_before,
  .graphic_result_after {
    font-size: 24px;
    padding-bottom: 10px;
    width: 60px;
    bottom: 75px;
  }

  .graphic_result_before {
    height: 70px;
  }

  .graphic_result_after {
    height: 170px;
  }

  .graphic_result2 .graphic_result_before {
    height: 170px;
  }

  .graphic_result2 .graphic_result_after {
    height: 70px;
  }

  .block_svpagel {
    padding: 0 0 30px;
  }

  .block_svpagel_text,
  .block_svpager_text,
  .block_svdestination .block_svpagel_text {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }

  .block_svpagel_text .h2,
  .block_svpager_text .h2 {
    margin: 30px 0 0;
  }

  .block_svpagel_img,
  .block_svpager_img {
    float: none;
    max-width: 100%;
    margin: auto;
  }

  .block_svpager {
    padding: 0;
  }

  .block_result2 {
    background: url(/images/sv_4.jpg) right bottom no-repeat;
    padding: 0;
    height: 710px;
    margin-top: 25px;
    background-size: 1100px;
  }

  .block_result2 .h1 {
    font-size: 36px;
    line-height: 100%;
  }

  .block_svdestination .block_svpagel_img {
    float: right;
    margin-right: -20px;
  }

  .block_svdestination {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .steps_instruction {
    display: block;
  }

  .steps_instruction .step {
    width: 100%;
    margin-bottom: 20px;
  }

  .steps_instruction .number {
    font-size: 48px;
  }

  .steps_instruction p {
    font-size: 18px;
    max-width: 100%;
  }

  .block_svpagel_text img {
    height: auto;
    width: 130px;
  }

  .btn_register_block #login_fb,
  .btn_register_block #login_g_plus,
  .btn_register_block #reg_mail {
    display: block !important;
    float: none !important;
  }

  .container_brands {
    padding: 0;
    background: none;
    margin-bottom: 20px;
  }

  .brands {
    display: block;
    margin-top: 30px;
  }

  .brands_title {
    width: 100%;
  }

  .brands_slides {
    width: 100%;
    column-count: 1;
  }

  .block_steps_instruction_2 {
    padding-bottom: 20px;
  }

  .steps_instruction_2 {
    display: block;
    margin-top: 0;
  }

  .steps_instruction_2 .number {
    font-size: 48px;
  }

  .steps_instruction_2 .step {
    width: 100%;
    margin-bottom: 30px;
  }

  .steps_instruction_2 .number:after,
  .block_steps_instruction_2:after {
    display: none;
  }

  .steps_instruction_2 p {
    margin: 0;
    font-size: 18px;
    max-width: 100%;
  }

  .container_price {
    padding: 30px 0;
  }

  .cnt_price_title {
    font-size: 32px;
  }

  .cnt_price_text {
    margin: 5px 40px 20px;
  }

  .cnt_price_item {
    padding: 30px 0;
  }

  .cnt_price_layout {
    display: block;
  }

  .cnt_price_item {
    width: 100%;
  }

  #ready2order {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ls_tabs,
  .ls_tabs li {
    display: block;
  }

  .ls_tabs li,
  .ls_tabs li:first-child {
    margin-bottom: 30px;
    padding: 0;
  }

  .figure_measure {
    width: calc(100% / 2 - 20px);
  }

  .figure_measure img {
    height: 230px;
  }

  .blog_list .blog_item {
    margin-right: 0;
    width: 100%;
  }

  .hp_block3 .hp_block3_h1 {
    margin-top: 30px;
  }

  .item_contacts {
    flex-flow: column;
  }

  .item_contacts a {
    padding-left: 0;
  }

  .news_item img {
    float: none;
  }

  .pricing_plan_item,
  .pricing_plan_right .pricing_plan_item {
    width: 100%;
    height: auto;
  }

  .pricing_plan_right .pricing_plan_item {
    margin: 0 0 90px;
  }

  .pricing_plan_right > div:not(.h4),
  .pricing_plan_right {
    display: block;
    margin: 80px 0 0 0;
  }

  .blog_item_description img.fl {
    float: none !important;
  }
  .icon_item_block {
    margin-top: 45px;
  }
  .slick-prev,
  .slick-next {
    display: none !important;
  }
  .homePageBlock3 img {
    max-width: 300px;
  }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
  :root {
    --text-hero: 2.4rem;
    --text-h1: 2rem;
    --text-h2: 1.5rem;
    --text-body: 1.25rem;
    --text-small: 1rem;
  }

  .col-2x {
    width: 100% !important;
  }

  .visible-2x {
    display: block !important;
  }

  .hidden-2x {
    display: none !important;
  }

  .figure_measure {
    width: calc(100% / 2 - 20px);
  }

  #dialog_affiliate .modal-body {
    height: 1115px !important;
  }

  .icon_item_block {
    display: flex;
    margin-top: 35px;
  }

  .icon_item {
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
  }

  .icon_counter {
    height: 65px;
  }

  .icon_item_number {
    font-size: 36px;
    display: block;
    text-align: left;
  }

  .icon_item_name {
    font-size: 16px;
    display: block;
    text-align: left;
  }

  .block_count {
    padding: 30px 0;
  }

  .integration_slidesRow1 img,
  .integration_slidesRow2 img {
    height: auto;
    max-width: 90px;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --text-hero: 2.4rem;
    --text-h1: 2rem;
    --text-h2: 1.5rem;
    --text-body: 1.25rem;
    --text-small: 1rem;
  }

  .visible-2x {
    display: block !important;
  }

  .col-1x {
    width: 100% !important;
    margin-left: 0;
  }

  .col-2x {
    width: 100% !important;
    margin-left: 0;
  }

  .hidden-1x {
    display: none !important;
  }

  .visible-1x {
    display: block !important;
  }

  .hidden-2x {
    display: none;
  }

  .cnt_price_layout {
    display: block;
  }

  .cnt_price_item {
    width: 100%;
  }

  .figure_measure {
    width: 100%;
  }

  #dialog_affiliate .modal-body {
    height: 1220px !important;
  }

  .integration_slidesRow1 img,
  .integration_slidesRow2 img {
    height: auto;
    max-width: 70px;
  }
  .icon_item_block {
    flex-flow: column;
    margin: 35px 40px 0;
  }
  .icon_item {
    flex-flow: row;
  }
  .icon_item_name {
    font-size: 21px;
    text-align: center;
    margin: 14px 0 0 9px;
  }
  .icon_item_number {
    font-size: 38px;
  }
  .icon_counter {
    height: 105px;
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
}

@media screen and (max-width: 410px) {
  .security2_button {
    margin: 20px auto 0;
    float: none;
    text-align: center;
  }

  .security3 {
    float: none;
    width: 210px;
    margin: auto;
  }

  .table-lg td {
    font-size: 14px;
    padding: 6px !important;
  }

  .table-lg th {
    font-size: 16px;
    padding: 6px !important;
  }

  .flex_block {
    flex-flow: column;
    align-items: flex-start;
  }
}

/* MEDIA END */

.disableSelection {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
}

.set_order {
  white-space: nowrap;
}

/* --- hide body scroll -- */
.hide-scroll {
  overflow: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scroll::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scroll {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.disable_selection {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
