@charset "UTF-8";
/*!
 * -------------------------------------
 * Project Name: code.home
 * Author: Konstantin Keylin
 * Author URI: http://keyl.in/
 * Version: 1.0
 * -------------------------------------
 */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  List of CSS3 Sass Mixins File to be @imported and @included as you need
  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files
  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties
------------------------------------------------------------- */

/*
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }
*/

.buttons{
  width: 100% !important;
}
.jshop__info .cf{
  display: none;
}
.jshop_price_outer{
  display: none !important;
}
.all_products_button{
  width: 100%;
  display: flex;
  justify-content: center;
}
.popular_products_button_buy{
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  padding: 0px 10px 0;
  font-size: 14px;
  line-height: 43px;
  margin-right: 0;
  color: #ffffff;
  text-align: center;
  border-radius: 3px;
  background: #17c60e;
  width: 100%;
  transition: All 0.3s;
  border-color: #58cf68;
  cursor: pointer;
}
.popular_products_button_buy:active{
  color: white !important;
}
.popular_products_button_buy:hover{
  color: white !important;
}


.popular_products_button_buy img {
  width: 17px;
  position: relative;
  display: inline-block;
  margin-right: 3px;
  top: -1px;
}








.custom_marketplace_block{
  width: 100%;
  display: flex;
  padding: 40px 0;
  /*background: #f9f9fb;*/
  flex-direction: column;
}

.custom_marketplace_block_text h2{
  width: 100%;
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
  display: none;
}


.short_desc_marketplace_block{
  font-size: 20px;
  margin-bottom: 20px;
  color: #666;
  width: 100%;
  text-align: center;
}
.shops__title{
  font-size: 42px;
}

.grid_marketplace_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
   grid-gap: 5px;
}
.novatrading_block, .shopee_block, .magalu_block, .mercado_livre_block{
  aspect-ratio: 1 / 1;
  display: flex;
  margin-left: 50%;
  transform: translate(-50%);
  border-radius: 20px;
  box-shadow: 0 0px 20px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 90%;
  cursor: pointer;
  align-items: flex-end;
  transition: 0.5s;
  padding-bottom: 30px;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.mercado_livre_block{
  background: rgba(255 232 33) url("https://vivofermentos.com/images/mercado_livre.png") no-repeat center;
  background-size: 80%;
}

.magalu_block{
  background: #008dff url("https://vivofermentos.com/images/magalu.webp") no-repeat center;
  background-size: 80%;
}

.novatrading_block{
  background: rgba(0,0,0) url("https://vivofermentos.com/images/nova_trading.png") no-repeat center;
  background-size: 80%;
}

.shopee_block{
  background: #e85205 url("https://vivofermentos.com/images/shopee.jpg") no-repeat center;
  background-size: 80%;
}

.mercado_livre_block:hover, .magalu_block:hover, .novatrading_block:hover, .shopee_block:hover {
  align-items: flex-end;
  border: none;
  box-shadow: 0 0 21px 10px rgba(0, 0, 0, 0.3);
  transform: translate(-50%) scale(1.1);
}

.loja_main_block .magalu_block{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  background: #0070c9;
  padding-bottom: 0;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;

}

.background_color_block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  backdrop-filter: blur(0px);

  background: rgba(0, 0, 0, 0);
  /* backdrop-filter: blur(10px); - может не поддерживаться старыми браузерами */
  transition: all 0.5s; /* Добавляем плавность для фона */
}

/*
.magalu_block:hover .background_color_block{
  backdrop-filter: blur(8px);
}
.mercado_livre_block:hover .background_color_block{
  backdrop-filter: blur(8px);
}
.novatrading_block:hover .background_color_block{
  backdrop-filter: blur(8px);
}
.shopee_block:hover .background_color_block{
  backdrop-filter: blur(8px);
}*/

.company_name {
  position: absolute;
  z-index: 2;
  color: white;
  font-weight: 700;
  font-size: 30px;
  opacity: 0;
  transition: all 0.3s ease-out ;

  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

/*
.magalu_block:hover .company_name{
  font-size: 30px;
  opacity: 1;
}
.mercado_livre_block:hover .company_name {
  font-size: 30px;
  opacity: 1;
}
.novatrading_block:hover .company_name{
  font-size: 30px;
  opacity: 1;
}
.shopee_block:hover .company_name {
  font-size: 30px;
  opacity: 1;
}

.mercado_livre_block:hover .background_color_block {
  background: rgba(0, 0, 0, 0.2);
}

.magalu_block:hover .background_color_block{
  background: rgba(0, 0, 0, 0.2);
}
.novatrading_block:hover .background_color_block {
  background: rgba(0, 0, 0, 0.2);
}

.shopee_block:hover .background_color_block{
  background: rgba(0, 0, 0, 0.2);
}
*/
.loja_main_block{
  display: flex;
  width: 100%;
  justify-content: center;
  /*background: #f9f9fb;*/
  padding-top: 20px;
}

.loja_main_block a{
  width: 25%;
}


.dis_flex_map .sppb-addon-container {
  display: flex;
  justify-content: space-between;
}


.text_adress_block{
  margin-top: 20px;
}

.text_adress_block div{
  padding-bottom: 20px;
}


.text_adress_block_main{
  font-weight: 700;
  font-size: 28px;
}
.text_adress_block_s{
  font-size: 24px;
  font-weight: 500;
}
.text_adress_block_t{
  font-size: 22px;
}
.dis_flex_map iframe{
  padding-left: 30px;
}
 

@media screen and (max-width: 768px) {

  #sp-top1, #sp-top2 {
    text-align: center !important;
    padding-right: 20px;
  }
  .mercado_livre_block:hover, .magalu_block:hover, .novatrading_block:hover, .shopee_block:hover {
    transform: translate(-50%) scale(1.01);
  }
  .grid_marketplace_list{
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .loja_main_block a {
    width: 100%;
  }
  .dis_flex_map .sppb-addon-container{
    flex-direction: column;
  }
  .dis_flex_map iframe{
    width: 100%;
    padding-left: 0;
  }

  .breadcrumb_section__nav .sppb-addon-title{
    margin-top: 10px;
    line-height: 130% !important;
  }
  #sp-page-builder > div > section.sppb-section.zakvaski-bg-row div.sppb-addon.sppb-addon-module.breadcrumb_section__nav > div{
    display: flex;
    gap: 25px;
    align-items: center;
  }
  #sp-page-builder > div > section.sppb-section.zakvaski-bg-row div.sppb-addon.sppb-addon-module.breadcrumb_section__nav > div > div > div{
    box-shadow: none !important;
    border: none !important;
  }
  .mi_pseudo2__prewrap,   .mi_pseudo3__prewrap{
    position: relative !important;
  }
  .breadcrumb_section__nav .sppb-addon-title:after{
    right: -20px !important;
    top: 50% !important;
    transform: translate(0, -50%);
  }
  .mi_pseudo2_opener, .mi_pseudo3_opener{
    border-bottom: none !important;
  }
  h3.sppb-addon-title{
    display: flex;
    align-items: center;
    font-size: 20px !important;
  }
  .mi_pseudo2__wrap, .mi_pseudo3__wrap {
    border: none !important;
    box-shadow: none !important;
  }
  .mi_pseudo2__prewrap{
    margin-left: auto !important;
  }
  #sp-page-builder > div > section:nth-child(1) > div > div > div > div > section > div > div > div > div > div.sppb-addon.sppb-addon-module.breadcrumb_section__nav > div{
    display: flex;
    align-items: center;
  }
  .custom.faq_page{
    display: flex;
    max-width: 50%;
  }
  .mi_pseudo3__prewrap{
    margin-top: 10px !important;
    display: inline-block;
    float: right;
    right: 0;
  }
  h3.posts_title.magic_title{
    line-height: 100% !important;
  }

}
@media screen and (max-width: 768px) {
  .mi_pseudo2__wrap {
    padding: 5px 10px 0px !important;
  }
}

    @media (max-width: 768px) {
      .sppb-addon-container {
        padding: 0 !important;
      }
    }














.new_articles_content h1, .new_articles_content h2, .new_articles_content h3, .new_articles_content h4, .new_articles_content h5{
  color: #333;
  display: block;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.1em;
  margin: .5em 0;
  position: relative;
  text-align: left;
  text-transform: none;
  font-weight: 400;
  font-size: 2em;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

.new_articles_content p{
  margin-bottom: 1em;
}

.new_articles_content li {
  line-height: 1.1em;
  padding: .25em 0;
  list-style: disc;
}

.new_articles_content ul li::marker {
  color: #9dbff2;
  line-height: 1.3;
}

.boots_min .container{
  width: auto !important;
}
.new_articles_content .col-12.col-lg-6.col-xxl-5{
  padding-left: 0 !important;
}
.new_articles_content .row {
  margin-left: 0 !important;
  margin-right: -15px;
}

.list-tile--item .value{
  text-align: center;
}
@font-face {
  font-family: "GloberBold";
  src: url("../fonts/GloberBold.eot");
  src: url("../fonts/GloberBold.eot?#iefix") format("embedded-opentype"), url("../fonts/GloberBold.woff") format("woff"), url("../fonts/GloberBold.ttf") format("truetype"), url("../fonts/GloberBold.svg#GloberBold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "GloberRegular";
  src: url("../fonts/GloberRegular.eot");
  src: url("../fonts/GloberRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/GloberRegular.woff") format("woff"), url("../fonts/GloberRegular.ttf") format("truetype"), url("../fonts/GloberRegular.svg#GloberRegular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "GloberRegularItalic";
  src: url("../fonts/GloberRegularItalic.eot");
  src: url("../fonts/GloberRegularItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GloberRegularItalic.woff") format("woff"), url("../fonts/GloberRegularItalic.ttf") format("truetype"), url("../fonts/GloberRegularItalic.svg#GloberRegularItalic") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "GloberSemiBold";
  src: url("../fonts/GloberSemiBold.eot");
  src: url("../fonts/GloberSemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/GloberSemiBold.woff") format("woff"), url("../fonts/GloberSemiBold.ttf") format("truetype"), url("../fonts/GloberSemiBold.svg#GloberSemiBold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "GloberLight";
  src: url("../fonts/GloberLight.eot");
  src: url("../fonts/GloberLight.eot?#iefix") format("embedded-opentype"), url("../fonts/GloberLight.woff") format("woff"), url("../fonts/GloberLight.ttf") format("truetype"), url("../fonts/GloberLight.svg#GloberLight") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "MullerRegular";
  src: url("../fonts/MullerRegular.eot");
  src: url("../fonts/MullerRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/MullerRegular.woff") format("woff"), url("../fonts/MullerRegular.ttf") format("truetype"), url("../fonts/MullerRegular.svg#MullerRegular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "MullerRegularItalic";
  src: url("../fonts/MullerRegularItalic.eot");
  src: url("../fonts/MullerRegularItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/MullerRegularItalic.woff") format("woff"), url("../fonts/MullerRegularItalic.ttf") format("truetype"), url("../fonts/MullerRegularItalic.svg#MullerRegularItalic") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "MullerBold";
  src: url("../fonts/MullerBold.eot");
  src: url("../fonts/MullerBold.eot?#iefix") format("embedded-opentype"), url("../fonts/MullerBold.woff") format("woff"), url("../fonts/MullerBold.ttf") format("truetype"), url("../fonts/MullerBold.svg#MullerBold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "MullerExtraBold";
  src: url("../fonts/MullerExtraBold.eot");
  src: url("../fonts/MullerExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/MullerExtraBold.woff") format("woff"), url("../fonts/MullerExtraBold.ttf") format("truetype"), url("../fonts/MullerExtraBold.svg#MullerExtraBold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "MullerLight";
  src: url("../fonts/MullerLight.eot");
  src: url("../fonts/MullerLight.eot?#iefix") format("embedded-opentype"), url("../fonts/MullerLight.woff") format("woff"), url("../fonts/MullerLight.ttf") format("truetype"), url("../fonts/MullerLight.svg#MullerLight") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "MullerUltraLight";
  src: url("../fonts/MullerUltraLight.eot");
  src: url("../fonts/MullerUltraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/MullerUltraLight.woff") format("woff"), url("../fonts/MullerUltraLight.ttf") format("truetype"), url("../fonts/MullerUltraLight.svg#MullerUltraLight") format("svg");
  font-weight: normal;
  font-style: normal; }

.loja_redirect_href{
  background: #129d0c;
  margin-left: 0;
  margin-right: 26px;
  padding: 0 4px 0 4px;
  vertical-align: top;
  position: relative;
  top: 0px;
  display: inline-block;
  height: 37px;
  font-size: 16px;
  line-height: 39px;
  color: #ffffff;
  text-align: center;
  border-radius: 3px;
  margin-right: 26px;
}

.con-wrap{
  display: none !important;
}
.loja_redirect_href span{
  padding: 0 20px !important;
}






html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box; }

html, button {
  line-height: 1; }

body {
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif, serif;
  line-height: 1;
  font-size: 14px;
  background: #fff;
  color: #333;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important; }
  body * {
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

img {
  max-width: 100%;
  height: auto;
  border: none; }

a {
  text-decoration: none;
  cursor: pointer; }

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
  box-sizing: border-box; }

:focus {
  outline: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

.cf:before, .cf:after {
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0; }

.cf:after {
  clear: both; }

.mi-icon {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  position: relative;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  .mi-icon__vk:before {
    content: "\e611"; }
  .mi-icon__fb:before {
    content: "\e739"; }
  .mi-icon__od:before {
    content: "\e807"; }
  .mi-icon__yt:before {
    content: "\e400"; }
  .mi-icon__close:before {
    content: "\e744"; }
  .mi-icon__menu:before {
    content: "\E310"; }
  .mi-icon__left_arrow:before {
    content: "\e750"; }
  .mi-icon__right_arrow:before {
    content: "\e751"; }
  .mi-icon__btn_arrow:before {
    content: "\e721";
    position: absolute;
    top: -3px;
    font-size: 16px;
    left: 10px; }

.fb_icon:before {
  content: "\e608"; }

.tw_icon:before {
  content: "\e610"; }

.yt_icon:before {
  content: "\e702"; }

.vi_icon:before {
  content: "\e772"; }

.mi_back_arrow:before {
  content: "\e601";
  position: absolute;
  left: -29px;
  top: -2px;
  font-size: 20px; }

.mi_mail:before {
  content: "\e777"; }

.mi_burger:before {
  content: "\e769"; }

.mi_ben_1:before {
  content: "\e801"; }

.mi_ben_2:before {
  content: "\e802"; }

.mi_ben_3:before {
  content: "\e804"; }

.mi_ben_4:before {
  content: "\e805"; }

.mi_checkout:before {
  content: "\e806"; }

.mi_cargo:before {
  content: "\e800"; }

.mi_search:before {
  content: "\e797";
  cursor: pointer; }

.mi_second_search:before {
  content: "\e797"; }

.mi_cross:before {
  content: "\e744"; }

.mi_arrow:before {
  content: "\e795";
  font-size: 27px; }

.mi_calc:before {
  content: "\e794";
  position: absolute;
  left: -38px;
  top: -4px;
  font-size: 35px; }

.be_icon:before {
  content: "\e770"; }

.in_icon:before {
  content: "\e771"; }

.vk_icon:before {
  content: "\e611"; }

.login_icon:before {
  content: "\e748"; }

.reg_icon:before {
  content: "\e747"; }

.mi_left_arrow:before {
  content: "\e787"; }

.mi_right_arrow:before {
  content: "\e788"; }

.mi_place:before {
  content: "\e765"; }

.mi_pencil:before {
  content: "\e770"; }

.mi_man:before {
  content: "\e771"; }

.mi_close:before {
  content: "\e744"; }

.mi_separator:before {
  content: "\e789"; }

.mi_like:before {
  content: "\e781"; }

.mi_dislike:before {
  content: "\e780"; }

.mi_comment:before {
  content: "\e785";
  font-size: 28px;
  position: absolute;
  left: -40px;
  top: -1px; }

.mi_send_mail:before {
  content: "\e784"; }

.mi_upload_more:before {
  content: "\e796";
  position: absolute;
  font-size: 40px;
  top: -3px;
  left: 16px;
  -webkit-transition: All 1s;
  -khtml-transition: All 1s;
  -moz-transition: All 1s;
  -ms-transition: All 1s;
  -o-transition: All 1s;
  transition: All 1s; }

.mi_price {
  display: inline-block;
  width: 30px; }
  .mi_price:before {
    content: "\e786";
    position: absolute;
    top: -22px;
    left: -4px;
    font-size: 31px; }

.mi_car {
  display: inline-block;
  width: 46px; }
  .mi_car:before {
    content: "";
    width: 38px;
    height: 25px;
    position: absolute;
    top: -17px;
    left: -4px;
    font-size: 31px; }

.mi_order {
  display: inline-block;
  width: 56px; }
  .mi_order:before {
    content: "\e783";
    position: absolute;
    top: -40px;
    left: -4px;
    font-size: 49px; }

.mi_home:before {
  content: "\e779";
  position: absolute;
  top: -19px;
  font-size: 27px;
  left: 0px; }

.foo_icon_1:before {
  position: absolute;
  top: -13px;
  content: "\e775";
  font-size: 40px;
  left: -48px; }

.foo_icon_2:before {
  position: absolute;
  content: "\e776";
  top: 7px;
  left: -46px;
  font-size: 35px; }

.foo_icon_3:before {
  position: absolute;
  content: "\e777";
  top: -8px;
  left: -46px;
  font-size: 31px; }

.foo_icon_4:before {
  position: absolute;
  content: "\e778";
  top: -6px;
  left: -47px;
  font-size: 30px; }

.fancybox-enabled {
  overflow: hidden; }

.fancybox-enabled body {
  overflow: visible;
  -ms-touch-action: none;
  touch-action: none; }

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992; }

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  transition: opacity .2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  direction: ltr; }

.fancybox-show-controls .fancybox-controls {
  opacity: 1; }

.fancybox-infobar {
  display: none; }

.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all; }

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased; }

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all; }

.fancybox-show-buttons .fancybox-buttons {
  display: block; }

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr; }

.fancybox-slider-wrap,
.fancybox-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0; }

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box; }

.fancybox-slide--image {
  overflow: hidden; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch; }

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video .fancybox-iframe {
  background: transparent; }

.fancybox-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%; }

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden; }

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  cursor: default; }

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; }

.fancybox-close-small {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  font: 21px/1 Arial,"Helvetica Neue",Helvetica,sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  cursor: pointer;
  background: #fff;
  transition: background .2s;
  box-sizing: border-box;
  z-index: 2; }

.fancybox-close-small:focus {
  outline: 1px dotted #888; }

.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent; }

.fancybox-close-small:hover {
  color: #555;
  background: #eee; }

/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none; }

.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1; }

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none; }

.fancybox-caption a,
.fancybox-caption button {
  pointer-events: all; }

.fancybox-caption a {
  color: #fff;
  text-decoration: underline; }

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  outline: none; }

.fancybox-button--disabled {
  cursor: default;
  pointer-events: none; }

.fancybox-infobar__body, .fancybox-button {
  background: rgba(30, 30, 30, 0.6); }

.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8); }

.fancybox-button::before,
.fancybox-button::after {
  content: '';
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block; }

.fancybox-button--disabled::before,
.fancybox-button--disabled::after {
  opacity: 0.5; }

.fancybox-button--left::after {
  left: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.fancybox-button--right::after {
  right: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--left {
  border-bottom-left-radius: 5px; }

.fancybox-button--right {
  border-bottom-right-radius: 5px; }

.fancybox-button--close {
  float: right; }

.fancybox-button--close::before, .fancybox-button--close::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px); }

.fancybox-button--close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/* Loading spinner */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-controls {
    text-align: left; }
  .fancybox-button--left,
  .fancybox-button--right,
  .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important; }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0; } }

/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none; }

/* Slideshow button */
.fancybox-button--play::before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent; }

.fancybox-button--pause::before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  background: transparent; }

/* Thumbs */
.fancybox-button--thumbs span {
  font-size: 23px; }

.fancybox-button--thumbs::before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0; }

.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap,
.fancybox-container--thumbs .fancybox-caption-wrap {
  right: 220px; }

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #fff;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box; }

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0; }

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #fff;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box; }

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-thumbs > ul > li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important; }
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0; } }

#sp-main-body {
  min-height: calc(100vh - 432px); }

#sp-header .logo {
  margin: 12px 0 0;
  height: 46px; }

#sp-header .logo img {
  height: 45px;
  display: block; }

#sp-page-builder .main__title {
  font-family: "MullerUltraLight", "Helvetica Neue", Helvetica, Arial, sans-serif; }

#sp-page-builder .main__subtitle {
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 80px !important; }

#sp-page-builder .main__section {
  -moz-background-size: 1560px !important;
  -o-background-size: 1560px !important;
  -webkit-background-size: 1560px !important;
  background-size: 1560px !important; }

#sp-page-builder .main__textsection {
  text-align: left; }
  #sp-page-builder .main__textsection p {
    font-size: 14.7px;
    line-height: 18px;
    padding-right: 10%;
    margin-bottom: 17px; }
  #sp-page-builder .main__textsection .sppb-btn {
    text-transform: uppercase; }

#sp-page-builder .main__howto {
  border-top: 1px solid #b5b5b5;
  border-bottom: 1px solid #b5b5b5;
  padding: 62px 0;
  text-align: center; }
  #sp-page-builder .main__howto_starter {
    border-top: 0 none !important;
    padding-top: 30px !important; }
  #sp-page-builder .main__howto .sppb-feature-box-title {
    font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 39px; }
  #sp-page-builder .main__howto img {
    display: inline-block; }
  #sp-page-builder .main__howto a {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: block;
    width: 300px;
    margin: 24px auto 0;
    font-size: 15.5px; }

#sp-page-builder .main__socials_box {
  min-height: 214px;
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 50px; }

#sp-page-builder .main__socials .sppb-addon-title {
  font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding: 32px 0 17px; }

#sp-page-builder .main__socials .sppb-addon-content {
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  font-size: 16.2px;
  line-height: 21px;
  padding-bottom: 37px; }

#sp-page-builder .main_info .sppb-title-heading {
  text-transform: uppercase;
  font-size: 36px;
  padding: 17px 0 0px;
  text-align: center;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

#sp-page-builder .main_info__item {
  text-align: center;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 56px; }
  #sp-page-builder .main_info__item .sppb-addon-title {
    text-transform: uppercase;
    padding-bottom: 35px; }
  #sp-page-builder .main_info__item strong {
    display: block;
    font-size: 19px;
    line-height: 22px;
    padding-bottom: 10px; }
  #sp-page-builder .main_info__item a {
    font-size: 18px; }
  #sp-page-builder .main_info__item_img {
    display: block;
    margin: 0 auto 48px; }
    #sp-page-builder .main_info__item_img img {
      height: 70px;
      display: inline-block; }

#sp-page-builder .prob__bc {
  font-size: 14.7px;
  padding-bottom: 19px; }

#sp-page-builder .prob_header {
  -moz-background-size: 1560px !important;
  -o-background-size: 1560px !important;
  -webkit-background-size: 1560px !important;
  background-size: 1560px !important;
  height: 240px; }

#sp-page-builder .prob__textsection .sppb-addon-title {
  font-size: 40px;
  font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif; }

#sp-page-builder .prob__textsection .sppb-addon-content {
  font-size: 14.8px;
  line-height: 24px;
  text-transform: uppercase;
  padding: 15px 0 0 31px; }
  #sp-page-builder .prob__textsection .sppb-addon-content div {
    color: #0070c9; }

#sp-page-builder .prob_content {
  text-align: center; }
  #sp-page-builder .prob_content .sppb-addon-title {
    font-size: 16px;
    padding-bottom: 20px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase; }
  #sp-page-builder .prob_content .sppb-addon-content {
    font-size: 16px;
    padding-bottom: 20px; }
  #sp-page-builder .prob_content .sppb-title-heading {
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    padding: 18px 0 0;
    margin-bottom: 0px; }
  #sp-page-builder .prob_content__header {
    text-align: center; }
    #sp-page-builder .prob_content__header .sppb-addon-title {
      font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #0070c9;
      padding: 47px 0 27px;
      font-size: 27px;
      text-transform: uppercase;
      text-align: center; }

.sp-contact-info {
	position: relative;
}

.sp-contact-info .sp-contact-phone {
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px; 
  display: inline-block;
  float: left;
  }
.sp-contact-info .sp-contact-text {
	font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: inline-block;
	font-size: 12px;
	font-weight: 300;
	left: 0px;
	bottom: -10px;
	position: absolute;
	text-align: left;
}
@media (min-width: 600px) {
	.sp-contact-info,
	.sp-contact-info .sp-contact-phone,
	.sp-contact-info .sp-contact-text {
		line-height: 26px;
	}
	.sp-contact-info .sp-contact-text {
		white-space: nowrap;
		top: 0;
		left: 150px;
	}
}

.prob_mid {
  height: 690px;
  background-position: 50% 50%; }

.prob_center__title {
  text-transform: uppercase;
  font-size: 23px;
  padding: 45px 0 70px 67px;
  line-height: 27px; }
  .prob_center__title h3 {
    font-size: 36px;
    padding-bottom: 6px;
    line-height: 50px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.prob_center {
  padding-left: 67px;
  font-size: 16px;
  padding-bottom: 40px;
  line-height: 22px; }
  .prob_center .sppb-addon-title {
    font-size: 20px;
    line-height: 27px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 6px;
    text-transform: uppercase; }

.posts_title {
  text-transform: uppercase;
  font-size: 36px;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 40px 0 60px;
  text-align: center; }

.jshop__info {
  width: 38%;
  float: left;
  padding-right: 25px;
  margin-bottom: 30px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .jshop__info {
      width: 40%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .jshop__info {
      width: 100%;
      padding-right: 0;
      float: none; } }

.productfull .jshop_prod_description {
  width: 62%;
  float: left;
  padding-top: 30px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .productfull .jshop_prod_description {
      width: 60%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .productfull .jshop_prod_description {
      width: 100%;
      float: none; } }

.site .prod_del__title {
  text-transform: uppercase;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 10px; }

.site .prod_del__section {
  padding: 10px 0 10px 0; }

.site .prod__param_title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  padding-bottom: 6px;
  text-align: left;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .site .prod__param_title {
      font-size: 24px;
      text-align: center; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .site .prod__param_title {
      font-size: 20px; } }

.site .prod__param_head {
  display: block;
  text-transform: uppercase;
  border-top: 1px solid #b5b5b5;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 21px;
  padding: 10px 0 8px;
  cursor: pointer;
  text-align: left;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .site .prod__param_head {
      font-size: 14px; } }
  .site .prod__param_head:hover {
    color: #1dafed; }
  .site .prod__param_head:after {
    content: "\f078";
    display: inline-block;
    font-size: 14px;
    margin: 0 5px;
    font: normal normal normal 14px/1 FontAwesome;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    color: #333 !important; }
  .site .prod__param_head:first-child {
    border-top: 0px solid #b5b5b5; }
  .site .prod__param_head.open {
    color: #1dafed; }
    .site .prod__param_head.open + .prod__param_content {
      max-height: 2000px;
      padding: 17px 0 28px;
      /*me2*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .site .prod__param_head.open + .prod__param_content {
          max-height: 4000px; } }
    .site .prod__param_head.open:after {
      -ms-transform: rotate(180deg);
      /* IE 9 */
      -webkit-transform: rotate(180deg);
      /* Safari */
      transform: rotate(180deg); }

.site .prod__param_content {
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  max-height: 0px;
  overflow: hidden;
  padding: 0;
  font-size: 16px;
  line-height: 25px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .site .prod__param_content {
      font-size: 14px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .site .prod__param_content {
      font-size: 13px; } }
  .site .prod__param_content p {
    padding-bottom: 20px; }
    .site .prod__param_content p:last-child {
      padding-bottom: 0; }
  .site .prod__param_content strong {
    display: block;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.site .prod__param_components {
  font-family: "GloberRegularItalic", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .site .prod__param_components strong {
    display: none; }

.site .prod__param_prep {
  background: url("../img/main_02.jpg") center top no-repeat;
  -moz-background-size: 500px;
  -o-background-size: 500px;
  -webkit-background-size: 500px;
  background-size: 500px;
  display: block;
  height: 180px; }

.mi_btn {
  background: url("../img/cargo.png") 110px 50% no-repeat #17c60e !important;
  -moz-background-size: 24px !important;
  -o-background-size: 24px !important;
  -webkit-background-size: 24px !important;
  background-size: 24px !important;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  text-transform: uppercase;
  padding-left: 60px;
  width: 350px !important;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 10px 0 0 46px;
  display: block;
  padding-top: 2px;
  /*me3*/
  /*me2*/ }
  .mi_btn:hover {
    background: url("../img/cargo.png") 110px 50% no-repeat #129d0c !important;
    -moz-background-size: 24px !important;
    -o-background-size: 24px !important;
    -webkit-background-size: 24px !important;
    background-size: 24px !important; }
  @media (min-width: 768px) and (max-width: 991px) {
    .mi_btn {
      background: url(../img/cargo.png) 70px 50% no-repeat #17c60e !important;
      -moz-background-size: 24px !important;
      -o-background-size: 24px !important;
      -webkit-background-size: 24px !important;
      background-size: 24px !important;
      margin: 10px 0 0 0;
      width: 260px !important; }
      .mi_btn:hover {
        background: url("../img/cargo.png") 70px 50% no-repeat #129d0c !important;
        -moz-background-size: 24px !important;
        -o-background-size: 24px !important;
        -webkit-background-size: 24px !important;
        background-size: 24px !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mi_btn {
      margin: 0 auto;
      width: 240px !important;
      background: url(../img/cargo.png) 60px 50% no-repeat #17c60e !important;
      -moz-background-size: 24px !important;
      -o-background-size: 24px !important;
      -webkit-background-size: 24px !important;
      background-size: 24px !important; }
      .mi_btn:hover {
        background: url("../img/cargo.png") 60px 50% no-repeat #129d0c !important;
        -moz-background-size: 24px !important;
        -o-background-size: 24px !important;
        -webkit-background-size: 24px !important;
        background-size: 24px !important; } }

.productfull .mi_btn {
  width: 269px !important;
  margin: 10px 0px 0 69px;
  display: block;
  padding-top: 2px;
  background-position: 86px 12px !important;
  text-transform: capitalize;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  padding-left: 73px;
  height: 48px;
  /*me4*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .productfull .mi_btn {
      width: 269px !important;
      margin: 10px 0 0 49px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .productfull .mi_btn {
      margin: 10px 0 0 0;
      width: 264px !important;
      background-position: 88px 9px !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .productfull .mi_btn {
      font-size: 0;
      padding: 0px;
      width: 57px !important;
      background-position: 50% 50% !important;
      display: inline-block;
      margin: 0 0 0 0;
      position: relative;
      top: 0px;
      left: auto;
      height: 38px !important;
      float: right; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .productfull .mi_btn {
      left: 0; } }

.prod__img {
  display: block;
  margin: 0 auto;
  width: 100%;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .prod__img {
      margin: 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prod__img {
      width: auto;
      margin: 0 auto; } }

.old_price {
  margin: 0 0 0 46px; }

.prod_price {
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 40px;
  margin: 0 0 0 46px;
  float: left; }
  .prod_price__num {
    font-size: 41px;
    color: #1dafed;
    line-height: 50px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .prod_price__num {
        font-size: 28px;
        color: #1dafed;
        line-height: 35px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .prod_price__num {
        font-size: 32px;
        color: #1dafed;
        line-height: 43px; } }

.prod_qty_input input {
  width: 350px !important;
  margin: 0 0 0px 41px; }

.extra_fields_value {
  float: left;
  padding: 10px 0 0 4px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .extra_fields_value {
      padding: 9px 0 0 4px;
      font-size: 16px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .extra_fields_value {
      padding: 9px 0 0 4px;
      font-size: 16px; } }

.fitches {
  display: block;
  margin-bottom: 20px;
  /*me4*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .fitches {
      margin-bottom: 10px; } }
  .fitches li {
    display: block;
    position: relative;
    font-size: 13px;
    line-height: 23px;
    padding-left: 24px;
    font-family: "MullerRegularItalic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*me4*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .fitches li {
        font-size: 12px; } }
    .fitches li:after {
      content: '';
      display: block;
      width: 18px;
      height: 18px;
      position: absolute;
      background: url("../img/check_01.png");
      -moz-background-size: 100%;
      -o-background-size: 100%;
      -webkit-background-size: 100%;
      background-size: 100%;
      top: 0;
      left: 0; }

.probiotics__title {
  text-align: center;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 53px;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .probiotics__title {
      font-size: 24px;
      line-height: 32px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .probiotics__title {
      font-size: 20px;
      line-height: 26px; } }

.probiotics__subtitle {
  text-align: center;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 29px;
  padding-bottom: 10px;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .probiotics__subtitle {
      font-size: 18px;
      line-height: 23px;
      padding-bottom: 0px;
      padding-top: 10px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .probiotics__subtitle {
      font-size: 14px;
      line-height: 21px; } }

.bestseller_products .buttons {
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .buttons {
      position: relative; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .bestseller_products .buttons {
      text-align: right; } }

.bestseller_products .image {
  float: left;
  width: 400px;
  padding-right: 30px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .bestseller_products .image {
      width: 320px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .image {
      float: none;
      width: 100%;
      padding-right: 0;
      text-align: center; } }
  .bestseller_products .image .image_block {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .bestseller_products .image .image_block {
        max-width: 300px;
        display: block;
        margin: 0 auto;
        width: 80%; } }

.bestseller_products .name {
  font-size: 30px;
  color: #333333;
  text-transform: uppercase;
  padding-bottom: 14px;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .name {
      text-align: center;
      font-size: 21px;
      padding-bottom: 4px; } }
  .bestseller_products .name a {
    color: #333333;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s; }
    .bestseller_products .name a:hover {
      color: #0070c9; }

.bestseller_products .description {
  font-size: 16px;
  line-height: 25px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 23px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .bestseller_products .description {
      font-size: 15px;
      line-height: 22px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .description {
      font-size: 14px;
      line-height: 20px; } }
  .bestseller_products .description .fitches {
    font-family: "MullerRegularItalic", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 29px;
    padding-top: 10px;
    margin-bottom: 21px;
    /*me2*/ }
    .bestseller_products .description .fitches li {
      font-size: 16.1px;
      line-height: 29px;
      padding-left: 31px;
      /*me3*/
      /*me2*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .bestseller_products .description .fitches li {
          font-size: 15px;
          line-height: 25px;
          padding-left: 27px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .bestseller_products .description .fitches li {
          font-size: 14px;
          line-height: 23px;
          padding-left: 25px; } }
      .bestseller_products .description .fitches li:after {
        width: 21px;
        height: 21px;
        top: 2px;
        /*me3*/
        /*me2*/ }
        @media (min-width: 768px) and (max-width: 991px) {
          .bestseller_products .description .fitches li:after {
            width: 18px;
            height: 18px;
            top: 1px; } }
        @media (min-width: 200px) and (max-width: 767px) {
          .bestseller_products .description .fitches li:after {
            width: 16px;
            height: 16px;
            top: 1px; } }

.bestseller_products input[type="text"].cb {
  margin: 0 7px; }

.bestseller_products .jshop_price {
  display: block;
  float: left;
  padding: 0 5px 0 0;
  /*me3*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) {
    .bestseller_products .jshop_price {
      min-width: 110px; } }
  @media (max-width: 350px) {
    .bestseller_products .jshop_price {
      float: none;
      padding-bottom: 20px !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .jshop_price {
      padding: 0 5px 0 5px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bestseller_products .jshop_price {
      padding-right: 10px; } }
  .bestseller_products .jshop_price b {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
    color: #1dafed;
    line-height: 24px;
    padding: 4px 0 0;
    display: block; }
  .bestseller_products .jshop_price .bestseller__units {
    font-size: 14px;
    font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #555;
    position: absolute;
    width: 100px;
    bottom: -11px;
    left: 0; }

.bestseller_products .button_buy {
  display: inline-block;
  height: 37px;
  width: 120px;
  font-size: 16px;
  line-height: 39px;
  color: #ffffff;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #17c60e;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .bestseller_products .button_buy {
      width: 80px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .button_buy {
      width: 80px; } }
  .bestseller_products .button_buy:hover {
    background: #129b0b; }

.bestseller_products .button_detail {
  display: none; }

.prob_info_section {
  padding-left: 440px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .prob_info_section {
      padding-left: 350px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prob_info_section {
      padding-left: 0; } }

.bestseller_products .block_item {
  padding-bottom: 40px;
  padding-top: 30px;
  zoom: 1;
  border-bottom: 1px solid #b5b5b5;
  /*me4*/ }
  .bestseller_products .block_item:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bestseller_products .block_item {
      padding-bottom: 10px; } }

body .accordion-group {
  border: 0px none;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

body .accordion-inner {
  border: 0px none;
  padding: 0px 15px 20px 0;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif; }

#sp-component .subtotal {
  text-align: right; }
  #sp-component .subtotal_name {
    font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #0070c9;
    font-size: 27px;
    text-transform: uppercase;
    padding-bottom: 10px; }
  #sp-component .subtotal_subname {
    font-size: 16px;
    color: #333333;
    text-align: right;
    padding-bottom: 10px; }
  #sp-component .subtotal_input {
    float: right;
    width: 220px;
    height: 39px !important;
    border: 1px solid #b5b5b5;
    box-sizing: border-box;
    margin-bottom: 40px; }
  #sp-component .subtotal_btn {
    float: right;
    color: #fff;
    background: #0070c9;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    padding: 0 10px;
    margin-left: 20px;
    display: block;
    border: 0px solid #b5b5b5;
    text-align: center;
    height: 39px;
    width: 40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }

#comjshop {
  border-bottom: 1px solid #b5b5b5;
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 50px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    #comjshop {
      padding-bottom: 30px;
      margin-bottom: 40px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    #comjshop {
      padding-bottom: 4vw;
      margin-bottom: 5vw; } }

.cont_list {
  padding-bottom: 18px; }
  .cont_list li {
    padding-left: 20px;
    position: relative;
    display: block; }
    .cont_list li:after {
      content: '';
      background: #333;
      position: absolute;
      display: block;
      width: 6px;
      height: 6px;
      top: 5px;
      left: 7px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px; }

body .posts__item {
  width: 202px;
  float: left;
  text-align: center;
  margin-right: 32px;
  margin-bottom: 20px; }
  body .posts__item:nth-child(5n+1) {
    clear: both; }
  body .posts__item:nth-child(5n+5) {
    margin-right: 0px; }
  body .posts__items {
    zoom: 1; }
    body .posts__items:after {
      content: "";
      display: table;
      clear: both; }

body .posts__title a {
  font-size: 16px;
  line-height: 27px;
  color: #333;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s; }
  body .posts__title a:hover {
    color: #0070c9; }

body .posts__img {
  margin-bottom: 19px; }

.custom_bot {
  text-align: center;
  padding-bottom: 40px; }
  .custom_bot strong {
    display: block;
    padding-bottom: 8px;
    font-size: 16px;
    font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_bot strong {
        padding-bottom: 7px; } }
  .custom_bot__title {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 36px;
    padding: 7px 0 60px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .custom_bot__title {
        padding: 17px 0 30px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .custom_bot__title {
        font-size: 30px;
        padding: 17px 0 20px;
        line-height: 30px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_bot__title {
        font-size: 7.5vw;
        line-height: 8vw;
        padding: 10px 0 0; } }
  .custom_bot_item__img {
    width: 100px;
    margin: 0 auto 24px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_bot_item__img {
        margin: 10px auto 12px; } }
  .custom_bot_item__title {
    font-size: 22.5px;
    line-height: 22.5px;
    text-transform: uppercase;
    padding-bottom: 2px;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*me4*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .custom_bot_item__title {
        font-size: 20px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_bot_item__title {
        padding-bottom: 2px; } }
  .custom_bot_item__text {
    display: block;
    font-size: 19px;
    line-height: 22px;
    padding-bottom: 10px; }
    .custom_bot_item__text a {
      font-size: 18px; }

.single_page {
  zoom: 1; }
  .single_page:after {
    content: "";
    display: table;
    clear: both; }

.article__content {
  width: 720px;
  float: left;
  position: relative;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .article__content {
      width: 600px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .article__content {
      width: 720px;
      margin: 0 auto;
      float: none; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .article__content {
      width: 95%;
      margin: 0 auto;
      float: none; } }

.article__sidebar {
  width: 312px;
  float: right;
  position: relative;
  top: -27px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .article__sidebar {
      width: 720px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .article__sidebar {
      width: 100%; } }
  .article__sidebar .mi__product .image_block {
    margin: 0 auto; }

.custom_prebot {
  text-align: center;
  padding-bottom: 21px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .custom_prebot {
      padding-bottom: 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .custom_prebot {
      padding-bottom: 0; } }
  .custom_prebot__title {
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 24px;
    padding: 30px 0 20px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_prebot__title {
        font-size: 18px;
        line-height: 24px; } }
  .custom_prebot img {
    width: 192px;
    float: left;
    margin-right: 20px;
    margin-top: 25px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .custom_prebot img {
        width: 195px;
        margin-top: 20px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .custom_prebot img {
        margin-right: 24px;
        margin-top: 20px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_prebot img {
        width: 110px;
        margin-right: 0;
        margin-top: 20px;
        margin-bottom: 30px; } }
  .custom_prebot__item {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_prebot__item {
        display: block;
        width: 90% !important;
        margin: 0 auto 20px;
        zoom: 1; }
        .custom_prebot__item:after {
          content: "";
          display: table;
          clear: both; } }
  .custom_prebot__section {
    width: 46%;
    float: left;
    border: 1px solid #bdbdbd;
    padding: 7px 10px 22px;
    /*me3*/
    /*me2*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .custom_prebot__section {
        width: 100%;
        margin-right: 0 !important; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_prebot__section {
        width: 100%;
        margin-right: 0 !important; } }
    .custom_prebot__section:first-child {
      margin-right: 8%; }
    @media (min-width: 768px) and (max-width: 991px) {
      .custom_prebot__section {
        display: block;
        float: none;
        zoom: 1;
        margin-bottom: 30px;
        padding-left: 65px; }
        .custom_prebot__section:after {
          content: "";
          display: table;
          clear: both; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_prebot__section {
        display: block;
        float: none;
        zoom: 1;
        margin-bottom: 40px; }
        .custom_prebot__section:after {
          content: "";
          display: table;
          clear: both; } }
  .custom_prebot_item__text {
    float: left;
    font-size: 16px;
    line-height: 22px;
    padding: 11px 0 10px;
    display: inline-block;
    text-align: left;
    width: 280px;
    color: #333;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .custom_prebot_item__text {
        width: 178px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .custom_prebot_item__text {
        font-size: 13px;
        line-height: 18px;
        width: 410px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .custom_prebot_item__text {
        width: calc(100% - 120px);
        padding-bottom: 10px;
        font-size: 14px;
        line-height: 20px; } }
    .custom_prebot_item__text strong {
      font-size: 20px;
      line-height: 22.5px;
      text-transform: uppercase;
      padding: 13px 0 10px;
      width: 240px;
      display: block;
      font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      /*me2*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .custom_prebot_item__text strong {
          padding: 0 0 10px;
          width: auto;
          font-size: 16px; } }

.buy__btn {
  float: left;
  display: inline-block;
  width: 145px;
  margin: 10px 0 0 0;
  height: 42px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #fff !important;
  background: #0070c9;
  text-align: center;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  font-size: 16px;
  line-height: 20px;
  padding-top: 14px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me2*/ }
  .buy__btn:hover {
    background: #005293;
    color: #ffffff; }
  .buy__btn:visited, .buy__btn:active {
    color: #fff; }
  @media (min-width: 200px) and (max-width: 767px) {
    .buy__btn {
      height: 36px;
      width: 105px;
      padding-top: 10px;
      margin-top: 0; } }

.article-body {
  font-size: 16px;
  line-height: 25px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .article-body {
      font-size: 14px;
      line-height: 20px; } }
  .article-body p {
    padding: 0 0 15px; }
  .article-body strong {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .article-body ul {
    display: block;
    padding-bottom: 20px; }
  .article-body li {
    padding-left: 20px;
    position: relative;
    display: block; }
    .article-body li:after {
      content: '';
      background: #333;
      position: absolute;
      display: block;
      width: 6px;
      height: 6px;
      top: 5px;
      left: 7px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px; }

.faq-page .sppb-col-sm-8,
.faq-page .sppb-col-sm-12 {
  font-size: 16px;
  line-height: 25px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .faq-page .sppb-col-sm-8,
    .faq-page .sppb-col-sm-12 {
      font-size: 14px;
      line-height: 20px; } }
  .faq-page .sppb-col-sm-8 p,
  .faq-page .sppb-col-sm-12 p {
    padding: 0 0 15px; }
  .faq-page .sppb-col-sm-8 strong,
  .faq-page .sppb-col-sm-12 strong {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .faq-page .sppb-col-sm-8 ul,
  .faq-page .sppb-col-sm-12 ul {
    display: block;
    padding-bottom: 20px; }
  .faq-page .sppb-col-sm-8 li,
  .faq-page .sppb-col-sm-12 li {
    padding-left: 20px;
    position: relative;
    display: block; }
    .faq-page .sppb-col-sm-8 li:after,
    .faq-page .sppb-col-sm-12 li:after {
      content: '';
      background: #333;
      position: absolute;
      display: block;
      width: 6px;
      height: 6px;
      top: 8px;
      left: 7px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      border-radius: 10px; }

.video {
  width: 100%;
  padding: 20px 0 10px; }
  .video iframe {
    width: 100%;
    height: 480px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .video iframe {
        height: 372px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .video iframe {
        height: 422px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .video iframe {
        width: 80vw;
        height: 45vw;
        margin: 0 auto; } }

body .mednet-accordion {
  /*me3*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    body .mednet-accordion {
      padding: 0px 0 !important; } }

.sp-contact-info a {
  color: #333 !important; }

.mod-languages .pretext {
  position: absolute;
  right: 0; }

a[href="http://www.afisha-irkutsk.ru/"] {
  display: none !important; }

.nav > li > a:hover, .nav > li > a:focus {
  background: #ffffff; }

.article__sidebar .mi__product {
  display: block;
  float: none;
  width: 100%;
  margin: 0 1% 10px;
  padding-bottom: 10px;
  padding-top: 10px;
  border: 0 none;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .article__sidebar .mi__product {
      width: 38%;
      float: left;
      margin: 0 6% 20px; }
      .article__sidebar .mi__product:nth-child(odd) {
        zoom: 1; }
        .article__sidebar .mi__product:nth-child(odd):after {
          content: "";
          display: table;
          clear: both; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .article__sidebar .mi__product {
      width: 98%;
      float: none;
      max-width: 100% !important;
      margin: 0 auto 20px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .article__sidebar .mi__product {
      width: 98%;
      float: none;
      max-width: 270px;
      margin: 0 auto 20px; } }
  .article__sidebar .mi__product .con-wrap {
    margin: 0 10px 0 5px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .article__sidebar .mi__product .con-wrap {
        margin: 0 2px 0 2px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .article__sidebar .mi__product .con-wrap {
        position: absolute;
        top: 0;
        left: -110px;
        margin: 0 2px 0 2px; } }
  .article__sidebar .mi__product .con-wrap__min {
    display: inline-block;
    margin: 0 5px 0 0px; }
  .article__sidebar .mi__product .con-wrap__pls {
    display: inline-block;
    margin: 0 10px 0 5px; }
  .article__sidebar .mi__product .buttons {
    padding: 0; }
    .article__sidebar .mi__product .buttons a {
      padding: 0 6px 0;
      float: none;
      margin-right: 5px; }
      .article__sidebar .mi__product .buttons a img {
        padding-top: 7px;
        display: none; }
      .article__sidebar .mi__product .buttons a span {
        display: inline-block;
        font-size: 16px;
        padding: 0 0; }
    .article__sidebar .mi__product .buttons img {
      display: inline-block;
      margin: 1px 1px 0 0px; }
  .article__sidebar .mi__product a {
    margin-right: 0; }
  .article__sidebar .mi__product .name {
    text-transform: uppercase;
    margin-bottom: 5px; }

.article__sidebar_title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  padding: 32px 40px 25px 0px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .article__sidebar_title {
      padding-bottom: 10px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .article__sidebar_title {
      padding: 35px 0 10px;
      text-align: center; } }

.article__sidebar .top_hits_products {
  width: 100%;
  margin-bottom: 30px;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .article__sidebar .top_hits_products {
      margin-bottom: 30px; } }

.article__sidebar .mi__product .buttons a {
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .article__sidebar .mi__product .buttons a {
      padding: 0 12px 0 12px !important; } }

.article__sidebar .mi__product .buttons {
  /*me2*/ }

.article__sidebar .mi__product .buttons a.button_buy.ajax_buy {
  padding: 0 14px 0 14px !important; }

.cert_cont .sppb-title-heading {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.cont-cont {
  padding-top: 50px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .cont-cont {
      padding-top: 30px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .cont-cont {
      padding-top: 20px; } }

.basket {
  float: right; }
  .basket .basket_icon {
    background: url("../img/icons/bag_2.png");
    background-position: 50% 50%;
    -moz-background-size: 28px;
    -o-background-size: 28px;
    -webkit-background-size: 28px;
    background-size: 28px;
    background-repeat: no-repeat;
    color: #ec008c;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 18px 0 0;
    font-size: 13px;
    font-weight: bold;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .basket #basket_store {
    display: block;
    width: 55px;
    padding: 14px 0 0;
    z-index: 1000; }
  .basket .basket_content {
    -webkit-transition: visibility 0.1s, opacity 0.2s, right ease-out 0.3s;
    transition: visibility 0.1s, opacity 0.2s, right ease-out 0.3s; }
  .basket .basket_value {
    clear: none;
    padding-bottom: 17px;
    position: relative; }
  .basket .basket_name a {
    color: #333;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .basket a.basket_del {
    float: right;
    color: #bbbbbb;
    position: absolute;
    top: -22px;
    right: 0px;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s; }
    .basket a.basket_del:hover {
      color: #d50000; }
  .basket .basket_inputbox {
    display: inline-block;
    height: 20px !important;
    font-size: 14px;
    color: #333;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 20px;
    width: 25px;
    text-align: center;
    padding: 0 !important; }
  .basket .basket_price {
    padding-left: 9px;
    float: none; }
  .basket .basket_row {
    clear: both;
    border-bottom: 0.5px solid #d1d1d1; }
    .basket .basket_row:last-child {
      padding-bottom: 0;
      border-bottom: 0;
      margin-bottom: 0; }
  .basket .basket_name {
    padding: 19px 0 4px; }
  .basket .basket_minus, .basket .basket_plus {
    position: relative;
    bottom: -2px; }
  .basket .basket_incart {
    font-size: 16px;
    padding: 9px 0 0;
    background: #17c60e;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    border: none;
    height: 34px;
    box-shadow: 0 0 6px -2px transparent;
    text-shadow: 0px -1px 0px transparent;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 10px auto 8px; }
    .basket .basket_incart:hover {
      background: #129d0c; }
  .basket .basket_after {
    text-align: center;
    font-size: 13px;
    color: #333333;
    display: block; }
  .basket .basket_list {
    position: relative;
    background: #ffffff;
    border: 1px solid #d6d6d6;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }
  .basket .basket_list:after, .basket .basket_list:before {
    bottom: 100%;
    right: 14px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .basket .basket_list:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #ffffff;
    border-width: 7px;
    margin-left: -7px;
    right: 16px; }
  .basket .basket_list:before {
    border-color: rgba(214, 214, 214, 0);
    border-bottom-color: #d6d6d6;
    border-width: 8px;
    margin-left: -8px; }
  .basket .basket_total {
    height: 20px; }
    .basket .basket_total strong {
      font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 12px;
      color: #333;
      padding-left: 0px;
      text-transform: uppercase;
      padding-right: 15px;
      position: absolute;
      left: 109px;
      bottom: 3px; }
    .basket .basket_total span {
      color: #1dafed;
      font-size: 18px;
      line-height: 25px;
      position: absolute;
      bottom: 0;
      right: 34px; }
  .basket .basket_total {
    border-top: 0 none; }

#system-message-container {
  background: #f9f9f9; }

@media (min-width: 768px) {
  #system-message {
    width: 750px; } }

@media (min-width: 992px) {
  #system-message {
    width: 970px; } }

@media (min-width: 1200px) {
  #system-message {
    width: 1170px; } }

#system-message {
  margin: 0 auto; }

.alert {
  margin-bottom: 0; }

.sp-megamenu-parent .sp-dropdown.sp-dropdown-main {
  /*me4*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .sp-megamenu-parent .sp-dropdown.sp-dropdown-main {
      max-width: 190px; } }

#sp-header .header__logo {
  /*me3*/ }
  @media (min-width: 100px) and (max-width: 991px) {
    #sp-header .header__logo {
      text-align: center; }
      #sp-header .header__logo img {
        display: inline-block; }
      #sp-header .header__logo .logo {
        display: inline-block !important;
        margin: 13px auto 0;
        height: 57px; } }

@media (min-width: 100px) and (max-width: 991px) {
  #sp-header .sp-megamenu-wrapper {
    position: absolute;
    top: 0;
    right: 30px; }
  #sp-header .sp-module.basket {
    position: absolute;
    top: 0;
    left: 15px; } }

/*
.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\e744" !important;
  font-family: "icomoon" !important; }
*/

@media (min-width: 100px) and (max-width: 991px) {
  .deeper .deeper > span {
    display: none !important; } }

/*me3*/
#sp-footer1 {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-footer1 {
      padding-bottom: 15px; } }

.offcanvas-menu .offcanvas-inner .sp-module ul > li .offcanvas-menu-toggler {
  width: 100%;
  text-align: right; }

#sp-component {
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-component {
      position: relative;
      top: -5px; } }

#sp-header-sticky-wrapper .basket_content {
  /*me3*/ }
  @media (min-width: 200px) and (max-width: 991px) {
    #sp-header-sticky-wrapper .basket_content {
      right: auto;
      left: -500px;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s; } }

#sp-header-sticky-wrapper .basket_icon:hover + .basket_content {
  /*me3*/ }
  @media (min-width: 200px) and (max-width: 991px) {
    #sp-header-sticky-wrapper .basket_icon:hover + .basket_content {
      right: auto;
      left: 0; } }

#sp-header-sticky-wrapper .basket .basket_list:after,
#sp-header-sticky-wrapper .basket .basket_list:before {
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-header-sticky-wrapper .basket .basket_list:after,
    #sp-header-sticky-wrapper .basket .basket_list:before {
      right: auto;
      left: 22px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-header-sticky-wrapper .basket .basket_list:after,
    #sp-header-sticky-wrapper .basket .basket_list:before {
      right: auto;
      left: 22px; } }

.sp-megamenu-parent > li > a {
  display: inline-block;
  line-height: 66px;
  padding: 4px 15px 0;
  font-size: 16px;
  text-transform: uppercase;
  color: #333333;
  /*me4*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .sp-megamenu-parent > li > a {
      padding: 4px 8px 0;
      font-size: 14px; } }

.sp-megamenu-parent > li.sp-has-child > a:after {
  font-family: "FontAwesome";
  content: " \f107";
  line-height: 0; }

.close-offcanvas {
  position: absolute;
  top: 10px;
  right: 8px;
  z-index: 1;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  line-height: 28px;
  text-align: center;
  font-size: 16px;
  border: 0px solid #333;
  color: #333; }

.offcanvas-menu {
  width: 320px;
  height: 100%;
  background-color: #ffffff;
  color: #333;
  position: fixed;
  top: 0;
  right: -320px;
  z-index: 99999;
  overflow: inherit;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid #d3d3d3;
  -webkit-box-shadow: -5px 0px 5px -3px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: -5px 0px 5px -3px rgba(0, 0, 0, 0.28);
  box-shadow: -5px 0px 5px -3px rgba(0, 0, 0, 0.28); }

.offcanvas-menu .offcanvas-inner .sp-module ul > li a {
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
  font-weight: 500;
  line-height: 28px; }

.offcanvas-menu .offcanvas-inner .sp-module ul > li:hover a,
.offcanvas-menu .offcanvas-inner .sp-module ul > li:focus a,
.offcanvas-menu .offcanvas-inner .sp-module ul > li.active a {
  background: #eeeeee; }

.offcanvas-menu .offcanvas-inner .sp-module ul > li a:hover,
.offcanvas-menu .offcanvas-inner .sp-module ul > li a:focus {
  background: #dddddd; }

.offcanvas-menu .offcanvas-inner .sp-module ul > li ul > li.active > a,
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul > li:hover > a,
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul > li:focus > a {
  background: #aaaaaa !important; }

.offcanvas-menu .offcanvas-inner .sp-module ul > li ul > li > a:hover,
.offcanvas-menu .offcanvas-inner .sp-module ul > li ul > li > a:focus {
  background: #aaaaaa !important; }

.offcanvas-menu .offcanvas-inner .sp-module ul > li .offcanvas-menu-toggler {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px 20px 10px;
  cursor: pointer; }

.offcanvas-menu .offcanvas-inner .sp-module ul > li ul > li > a {
  padding-left: 30px;
  background: #eeeeee;
  text-transform: none;
  text-align: right; }

header .nav > .current.active.deeper > a {
  background: #119eda !important;
  color: #fff !important;
  font-family: 'GloberBold', "Helvetica Neue", Helvetica, Arial, sans-serif; }

a {
  -webkit-transition: color 250ms, background-color 250ms;
  transition: color 250ms, background-color 250ms; }

#sp-main-body {
  padding: 0px 0; }

#sp-bottom .sp-module .sp-module-title {
  text-transform: inherit;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 22px;
  line-height: 24px; }

#sp-bottom #sp-bottom3 .join-us-2 {
  margin: -80px 0 0 120px; }

#sp-bottom .bottom-social {
  margin-top: 15px;
  overflow: hidden; }

#sp-footer a {
  line-height: 1.5;
  padding: 0;
  color: rgba(255, 255, 255, 0.9) !important;
  text-transform: none;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s; }
  #sp-footer a:hover {
    color: #0070c9 !important; }

.sp-dropdown-sub {
  display: none !important; }

.prob_img_fix .jshop_img {
  padding-top: 30px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .prob_img_fix .jshop_img {
      padding-top: 35px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prob_img_fix .jshop_img {
      padding-top: 3vw; } }

.sp-megamenu-parent .sp-dropdown .sp-dropdown-items .sp-has-child > a:after {
  display: none !important; }

.small__subtitle {
  font-size: 24px;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .small__subtitle {
      font-size: 21px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .small__subtitle {
      font-size: 18px; } }

.main__howto .small__subtitle {
  padding: 10px 0 20px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .main__howto .small__subtitle {
      padding: 6px 0 15px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .main__howto .small__subtitle {
      padding: 6px 0 10px; } }

#basket_store .basket_icon {
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  color: #ec008c; }

#basket_store.empty .basket_icon {
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  color: rgba(236, 0, 140, 0); }

.assort__section .con-wrap {
  top: -6px;
  /*me1*/ }

.mi_readmore .readmore_btn_cls, .mi_readmore .mi_readmore__h {
  display: none; }

.mi_readmore ol {
  list-style-type: decimal;
  padding: 15px 0 17px 40px; }

.mi_readmore__switcher_o {
  text-align: center;
  height: 24px;
  margin-top: -13px; }

.ltr.offcanvas .offcanvas-menu {
  right: 0 !important; }

.ltr .offcanvas-menu {
  right: -340px !important; }

.info_table {
  font-size: 16px;
  margin-bottom: 25px; }
  .info_table tr:nth-child(odd) {
    background: #f5f5f5; }
  .info_table td {
    padding: 4px 15px 3px; }
    .info_table td:nth-child(even) {
      font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .info_table__title {
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #0070c9;
    font-size: 24px;
    line-height: 25px;
    padding: 6px 0 24px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .info_table__title {
        font-size: 21px;
        line-height: 25px;
        padding: 2px 0 16px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .info_table__title {
        font-size: 18px;
        line-height: 23px;
        padding: 2px 0 8px; } }

.rec__discount_label {
  position: absolute;
  background: #00ad1b;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  -webkit-background-size: 100%;
  background-size: 100%;
  text-align: center;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid #fff;
  width: 50px;
  height: 49px;
  line-height: 54px;
  top: -3px;
  left: -11px;
  z-index: 1;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .rec__discount_label {
      font-size: 13px;
      color: #fff;
      line-height: 43px;
      width: 40px;
      height: 40px;
      top: -14px;
      left: 5px; } }
  .rec__discount_label.biger_fix {
    font-size: 28px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .rec__discount_label.biger_fix {
        font-size: 26px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .rec__discount_label.biger_fix {
        font-size: 22px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .rec__discount_label.biger_fix {
        font-size: 16px; } }

.jshop_list_product .image_block {
  position: relative; }

.productfull__social_btn {
  width: 33%;
  float: left;
  text-align: left;
  padding-bottom: 12px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .productfull__social_btn {
      width: 49%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .productfull__social_btn {
      width: 33%;
      max-height: 35px; } }
  .productfull__social_btn:nth-child(odd) {
    /*me3*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .productfull__social_btn:nth-child(odd) {
        clear: both; } }
  .productfull__social_btn:nth-child(4) {
    /*me4*/
    /*me2*/ }
    @media (min-width: 992px) {
      .productfull__social_btn:nth-child(4) {
        clear: both; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .productfull__social_btn:nth-child(4) {
        clear: both; } }
  .productfull__social_btns {
    zoom: 1;
    padding-left: 68px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    .productfull__social_btns:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .productfull__social_btns {
        padding-left: 48px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .productfull__social_btns {
        padding-left: 0; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .productfull__social_btns {
        display: none; } }

.msg__title {
  text-align: center;
  text-transform: uppercase;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  padding: 30px 0 12px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .msg__title {
      line-height: 62px;
      font-size: 54px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .msg__title {
      padding: 25px 0 6px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .msg__title {
      padding: 18px 0 2px;
      text-align: center; } }

.msg__text {
  text-align: center;
  font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding-bottom: 20px;
  line-height: 21px;
  max-width: 450px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .msg__text {
      line-height: 24px;
      font-size: 16px;
      padding: 12px 0 2px;
      width: 100%; } }

.top_hits_products .hidde_at_sb {
  display: none; }

.out_btn_ok {
  max-width: 120px !important;
  cursor: pointer; }

.ab_prob_adition {
  zoom: 1;
  border-bottom: 1px solid #b5b5b5;
  margin-bottom: 50px; }
  .ab_prob_adition:after {
    content: "";
    display: table;
    clear: both; }
  .ab_prob_adition .top_hits_products {
    width: 100%;
    text-align: left; }
    .ab_prob_adition .top_hits_products .mi__product {
      width: 33.3%;
      float: left;
      padding: 0 3% 60px;
      margin: 0;
      /*me3*/
      /*me2*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .ab_prob_adition .top_hits_products .mi__product {
          width: 50%; }
          .ab_prob_adition .top_hits_products .mi__product:nth-child(3) {
            margin-left: 25%; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .ab_prob_adition .top_hits_products .mi__product {
          width: 100%;
          max-width: 400px;
          float: none;
          margin: 0 auto 0px;
          padding-bottom: 40px; } }
      .ab_prob_adition .top_hits_products .mi__product .name {
        margin-top: 10px; }
      .ab_prob_adition .top_hits_products .mi__product .buttons a img {
        /*me4*/
        /*me3*/
        /*me2*/ }
        @media (min-width: 992px) and (max-width: 1199px) {
          .ab_prob_adition .top_hits_products .mi__product .buttons a img {
            display: none; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .ab_prob_adition .top_hits_products .mi__product .buttons a img {
            display: none; } }
        @media (min-width: 200px) and (max-width: 767px) {
          .ab_prob_adition .top_hits_products .mi__product .buttons a img {
            display: none; } }
      .ab_prob_adition .top_hits_products .mi__product .buttons a span {
        /*me4*/ }
        @media (min-width: 992px) and (max-width: 1199px) {
          .ab_prob_adition .top_hits_products .mi__product .buttons a span {
            padding: 0 7px; } }
      .ab_prob_adition .top_hits_products .mi__product .con-wrap {
        /*me2*/
        /*me1*/
        /*me1*/ }
        @media (min-width: 200px) and (max-width: 767px) {
          .ab_prob_adition .top_hits_products .mi__product .con-wrap {
            margin-right: 14px; } }
        @media (min-width: 200px) and (max-width: 479px) {
          .ab_prob_adition .top_hits_products .mi__product .con-wrap {
            margin-right: 4px;
            left: -110px;
            top: 5px; } }
        @media (min-width: 200px) and (max-width: 340px) {
          .ab_prob_adition .top_hits_products .mi__product .con-wrap {
            left: -75px; } }
        .ab_prob_adition .top_hits_products .mi__product .con-wrap__min {
          display: inline-block;
          margin: 0 3px 0 0;
          /*me2*/ }
          @media (min-width: 200px) and (max-width: 767px) {
            .ab_prob_adition .top_hits_products .mi__product .con-wrap__min {
              margin: 0 5px 0 0; } }
          @media (min-width: 200px) and (max-width: 340px) {
            .ab_prob_adition .top_hits_products .mi__product .con-wrap__min {
              display: none; } }
        .ab_prob_adition .top_hits_products .mi__product .con-wrap__pls {
          display: inline-block;
          margin: 0 3px 0;
          /*me2*/ }
          @media (min-width: 200px) and (max-width: 767px) {
            .ab_prob_adition .top_hits_products .mi__product .con-wrap__pls {
              margin: 0 5px 0; } }
          @media (min-width: 200px) and (max-width: 340px) {
            .ab_prob_adition .top_hits_products .mi__product .con-wrap__pls {
              display: none; } }
    .ab_prob_adition .top_hits_products .jshop_price_outer {
      width: 87px;
      /*me4*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .ab_prob_adition .top_hits_products .jshop_price_outer {
          width: 80px; } }
  .ab_prob_adition .mi__product .buttons a.button_buy.ajax_buy {
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .ab_prob_adition .mi__product .buttons a.button_buy.ajax_buy {
        padding: 0;
        margin: 0; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .ab_prob_adition .mi__product .buttons a.button_buy.ajax_buy {
        padding: 0 7px 0 7px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .ab_prob_adition .mi__product .buttons a.button_buy.ajax_buy {
        padding: 0 7px 0 7px; } }

#sp-page-builder .prob_content .ab_prob_adition .sppb-addon-title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 36px;
  padding: 17px 0 40px;
  line-height: 40px;
  text-align: center;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    #sp-page-builder .prob_content .ab_prob_adition .sppb-addon-title {
      padding: 17px 0 30px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-page-builder .prob_content .ab_prob_adition .sppb-addon-title {
      font-size: 30px;
      padding: 17px 0 20px;
      line-height: 30px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-page-builder .prob_content .ab_prob_adition .sppb-addon-title {
      font-size: 4.5vw;
      line-height: 5vw;
      padding: 1vw 0 4vw; } }

.fb-comments, .fb-comments iframe[style], .fb-comments span {
  width: 100% !important; }

.prep__container .blue {
  margin: 2px 0 31px 0; }
  .prep__container .blue_button {
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #0070c9;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 15px;
    height: 52px;
    line-height: 57px;
    text-align: center;
    padding: 0 32px; }
    .prep__container .blue_button:hover {
      background: #005293; }
  .prep__container .blue_ml {
    margin: 2px 0 31px 60px; }

.milk {
  margin-top: -44px; }
  .milk_head {
    background: url("../img/icons/milk.jpg");
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    color: #fff;
    height: 433px;
    padding: 30px 40% 0 20px;
    margin-bottom: 35px;
    /*me4*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .milk_head {
        height: 364px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .milk_head {
        background-repeat: no-repeat;
        background-position: 50% -11vw;
        padding: 6.3vw 5vw 0 5vw;
        height: auto; } }
  .milk__title {
    text-transform: uppercase;
    font-size: 36px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 42px;
    padding-bottom: 45px;
    /*me4*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .milk__title {
        font-size: 30px;
        line-height: 32px;
        padding-bottom: 15px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .milk__title {
        font-size: 9vw;
        line-height: 10vw;
        padding-bottom: 10vw;
        padding-right: 15vw; } }
  .milk__text {
    display: block;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 20px;
    font-style: italic;
    /*me4*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .milk__text {
        font-size: 15px;
        line-height: 24px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .milk__text {
        color: #333; } }
  .milk .sppb-row {
    zoom: 1; }
    .milk .sppb-row:after {
      content: "";
      display: table;
      clear: both; }
  .milk .sppb-col-sm-12 {
    text-align: center; }
  .milk .sppb-col-sm-6 {
    float: left;
    width: 50%;
    text-align: center;
    padding: 0 15px 20px;
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 479px) {
      .milk .sppb-col-sm-6 {
        width: 100%;
        float: none; } }
  .milk .sppb-col-sm-8 {
    width: 66.66%;
    margin-left: 16.7%;
    text-align: center; }

.container .single_page .blue {
  margin: 2px 0 31px 0; }
  .container .single_page .blue_button {
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #0070c9;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 15px;
    height: 52px;
    line-height: 57px;
    text-align: center;
    padding: 0 32px; }
    .container .single_page .blue_button:hover {
      background: #005293; }
  .container .single_page .blue_ml {
    margin: 2px 0 31px 0px; }

.container .single_page .post__title {
  text-shadow: 2px 3px 3px rgba(0,0,0,0.5);
  text-transform: uppercase;
  font-size: 36px;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 14px;
  line-height: 40px; }

.container .single_page .post__title_h4 {
  font-size: 1.5em;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 10px;
  line-height: 40px; }


.accordion-heading .accordion-toggle {
  padding: 8px 0px; }

.mi_pseudo.menu_prod_selecter {
  margin-bottom: 0; }

.mi_pseudo_title {
  display: none;
  /*me3*/
  text-transform: uppercase;
  font-size: 18px;
  font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 24px;
  padding-bottom: 9px;
  text-align: center; }
  @media (min-width: 768px) and (max-width: 991px) {
    .mi_pseudo_title {
      display: block; } }

.mi_pseudo__prewrap {
  /*me3*/ }
  @media (min-width: 100px) and (max-width: 991px) {
    .mi_pseudo__prewrap {
      position: relative;
      max-width: 100%;
      width: 420px;
      margin: 0 auto;
      height: 60px; } }

.mi_pseudo__wrap {
  /*me3*/ }
  @media (min-width: 100px) and (max-width: 991px) {
    .mi_pseudo__wrap {
      border: 1px dashed #333;
      text-align: left;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      background: #fff;
      -webkit-box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
      -moz-box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
      box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
      padding: 0 23px 6px;
      z-index: 50;
      max-height: 55px;
      overflow: hidden;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s; }
      .mi_pseudo__wrap.open {
        max-height: 700px; }
        .mi_pseudo__wrap.open .mi_pseudo_opener:after {
          -ms-transform: rotate(-90deg);
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
          right: 9px;
          /*me1*/ } }
      @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
        .mi_pseudo__wrap.open .mi_pseudo_opener:after {
          right: 3px; } }
  .mi_pseudo__wrap li {
    /*me3*/ }
    @media (min-width: 100px) and (max-width: 991px) {
      .mi_pseudo__wrap li {
        display: block !important;
        text-transform: uppercase;
        border-bottom: 0px none !important;
        margin-bottom: 5px !important; }
        .mi_pseudo__wrap li a {
          border-bottom: 0px none !important;
          font-size: 18px;
          font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
          text-align: left;
          color: #333 !important;
          padding: 10px 0px 5px !important; }
          .mi_pseudo__wrap li a:after {
            display: none !important; }
          .mi_pseudo__wrap li a:hover {
            color: #ed145b !important; }
        .mi_pseudo__wrap li.current a {
          color: #333 !important;
          font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
          border-bottom: 0px none !important; } }

.mi_pseudo_opener {
  display: none;
  /*me3*/ }
  @media (min-width: 100px) and (max-width: 991px) {
    .mi_pseudo_opener {
      text-transform: uppercase;
      font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 18px;
      color: #333;
      line-height: 58px;
      border-bottom: 2px solid #333;
      display: block;
      cursor: pointer;
      position: relative;
      margin-bottom: 12px; }
      .mi_pseudo_opener:after {
        font-family: "FontAwesome";
        speak: none;
        font-style: normal;
        font-weight: normal;
        position: relative;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        content: "\f105";
        display: block;
        color: #333;
        right: -5px;
        top: 10px;
        -webkit-transition: All 0.3s;
        -khtml-transition: All 0.3s;
        -moz-transition: All 0.3s;
        -ms-transition: All 0.3s;
        -o-transition: All 0.3s;
        transition: All 0.3s;
        font-size: 35px; } }

.mi_pseudo2 {
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .mi_pseudo2 {
      padding-top: 12px; } }
  .mi_pseudo2.menu_prod_selecter {
    margin-bottom: 0; }
  .mi_pseudo2__prewrap {
    /*me3*/
    /*me1*/ }
    @media (min-width: 100px) and (max-width: 991px) {
      .mi_pseudo2__prewrap {
        position: absolute;
        max-width: 50%;
        width: auto;
        margin: 0;
        height: 60px;
        min-width: 50%;
        top: 0;
        right: 0;
        z-index: 52; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .mi_pseudo2__prewrap {
        min-width: 50%; } }
  .mi_pseudo2__wrap {
    /*me3*/ }
    @media (min-width: 100px) and (max-width: 991px) {
      .mi_pseudo2__wrap {
        border: 1px dashed #333;
        text-align: left;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: #fff;
        -webkit-box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
        -moz-box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
        box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
        padding: 0 12px 6px;
        z-index: 51;
        max-height: 55px;
        overflow: hidden;
        -webkit-transition: All 0.3s;
        -khtml-transition: All 0.3s;
        -moz-transition: All 0.3s;
        -ms-transition: All 0.3s;
        -o-transition: All 0.3s;
        transition: All 0.3s;
        /*me1*/ } }
  @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
    .mi_pseudo2__wrap {
      padding: 0 10px 6px; } }
    @media (min-width: 100px) and (max-width: 991px) {
        .mi_pseudo2__wrap.open {
          max-height: 700px; }
          .mi_pseudo2__wrap.open .mi_pseudo2_opener:after {
            -ms-transform: rotate(-180deg);
            -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
            right: 9px;
            /*me1*/ } }
      @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
        .mi_pseudo2__wrap.open .mi_pseudo2_opener:after {
          right: 0;
          top: 13px; } }
    .mi_pseudo2__wrap li {
      /*me3*/ }
      @media (min-width: 100px) and (max-width: 991px) {
        .mi_pseudo2__wrap li {
          display: block !important;
          text-transform: uppercase;
          border-bottom: 0px none !important;
          margin-bottom: 5px !important;
          text-align: right !important; }
          .mi_pseudo2__wrap li a {
            border-bottom: 0px none !important;
            font-size: 16px;
            font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
            text-align: left;
            color: #333 !important;
            padding: 10px 0px 5px !important;
            /*me1*/ } }
    @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
      .mi_pseudo2__wrap li a {
        font-size: 12px;
        padding: 5px 0px 5px !important;
        line-height: 15px; } }
      @media (min-width: 100px) and (max-width: 991px) {
            .mi_pseudo2__wrap li a:after {
              display: none !important; }
            .mi_pseudo2__wrap li a:hover {
              color: #ed145b !important; }
          .mi_pseudo2__wrap li.current a {
            color: #333 !important;
            font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
            border-bottom: 0px none !important; } }
  .mi_pseudo2_opener {
    display: none;
    /*me3*/ }
    @media (min-width: 100px) and (max-width: 991px) {
      .mi_pseudo2_opener {
        text-transform: uppercase;
        font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        color: #333;
        line-height: 58px;
        border-bottom: 1px solid #333;
        display: block;
        cursor: pointer;
        position: relative;
        margin-bottom: 12px;
        /*me2*/
        /*me1*/ } }
  @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 767px) {
    .mi_pseudo2_opener {
      font-size: 15px;
      line-height: 21px;
      position: relative;
      height: 55px;
      padding: 0 32px 0 0;
      display: table-cell;
      vertical-align: middle;
      min-width: calc((100vw - 30px)/2 - 36px); } }
  @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
    .mi_pseudo2_opener {
      font-size: 13px;
      line-height: 15px;
      position: relative;
      height: 55px;
      padding: 0 14px 0 0;
      display: table-cell;
      vertical-align: middle;
      min-width: calc((100vw - 30px)/2 - 30px); } }
    @media (min-width: 100px) and (max-width: 991px) {
        .mi_pseudo2_opener:after {
          font-family: "FontAwesome";
          speak: none;
          font-style: normal;
          font-weight: normal;
          position: relative;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          position: absolute;
          content: "\f107";
          display: block;
          color: #333;
          right: 0px;
          top: 10px;
          -webkit-transition: All 0.3s;
          -khtml-transition: All 0.3s;
          -moz-transition: All 0.3s;
          -ms-transition: All 0.3s;
          -o-transition: All 0.3s;
          transition: All 0.3s;
          font-size: 35px;
          /*me1*/ } }
    @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
      .mi_pseudo2_opener:after {
        font-size: 25px;
        top: 15px; } }

.mi_pseudo3.menu_prod_selecter {
  margin-bottom: 0; }

.mi_pseudo3__prewrap {
  /*me3*/ }
  @media (min-width: 100px) and (max-width: 991px) {
    .mi_pseudo3__prewrap {
      position: absolute;
      max-width: 50%;
      width: auto;
      margin: 0;
      height: 60px;
      min-width: 50%;
      top: 0;
      right: 10px;
      z-index: 52;
      margin-top: 24px; } }

.mi_pseudo3__wrap {
  /*me3*/ }
  @media (min-width: 100px) and (max-width: 991px) {
    .mi_pseudo3__wrap {
      border: 1px dashed #333;
      text-align: left;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      background: #fff;
      -webkit-box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
      -moz-box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
      box-shadow: 2px 2px 14px 0px rgba(2, 2, 2, 0.1);
      padding: 0 12px 6px;
      z-index: 51;
      max-height: 55px;
      overflow: hidden;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s;
      /*me1*/ } }
  @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
    .mi_pseudo3__wrap {
      padding: 0 20px 6px 8px; } }
  @media (min-width: 100px) and (max-width: 991px) {
      .mi_pseudo3__wrap.open {
        max-height: 700px; }
        .mi_pseudo3__wrap.open .mi_pseudo3_opener:after {
          -ms-transform: rotate(-90deg);
          -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
          right: 6px; } }
  .mi_pseudo3__wrap li {
    /*me3*/ }
    @media (min-width: 100px) and (max-width: 991px) {
      .mi_pseudo3__wrap li {
        display: block !important;
        text-transform: uppercase;
        border-bottom: 0px none !important;
        margin-bottom: 5px !important;
        text-align: right !important; }
        .mi_pseudo3__wrap li a {
          border-bottom: 0px none !important;
          font-size: 16px;
          font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
          text-align: right;
          color: #333 !important;
          padding: 10px 0px 5px !important;
          /*me1*/ } }
    @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
      .mi_pseudo3__wrap li a {
        font-size: 13px; } }
    @media (min-width: 100px) and (max-width: 991px) {
          .mi_pseudo3__wrap li a:after {
            display: none !important; }
          .mi_pseudo3__wrap li a:hover {
            color: #ed145b !important; }
        .mi_pseudo3__wrap li.current a {
          color: #333 !important;
          font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
          border-bottom: 0px none !important; } }

.mi_pseudo3_opener {
  display: none;
  /*me3*/ }
  @media (min-width: 100px) and (max-width: 991px) {
    .mi_pseudo3_opener {
      text-transform: uppercase;
      font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 16px;
      color: #333;
      line-height: 58px;
      border-bottom: 1px solid #333;
      display: block;
      cursor: pointer;
      position: relative;
      margin-bottom: 12px;
      /*me2*/
      /*me1*/ } }
  @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 767px) {
    .mi_pseudo3_opener {
      font-size: 15px;
      line-height: 21px;
      position: relative;
      height: 55px;
      padding: 0 32px 0 0;
      display: table-cell;
      vertical-align: middle;
      min-width: calc((100vw - 30px)/2 - 36px); } }
  @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
    .mi_pseudo3_opener {
      font-size: 12px;
      display: table-cell;
      vertical-align: middle;
      line-height: 16px;
      height: 55px;
      min-width: calc((100vw - 30px)/2 - 30px); } }
  @media (min-width: 100px) and (max-width: 991px) {
      .mi_pseudo3_opener:after {
        font-family: "FontAwesome";
        speak: none;
        font-style: normal;
        font-weight: normal;
        position: relative;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        content: "\f105";
        display: block;
        color: #333;
        right: -0px;
        top: 10px;
        -webkit-transition: All 0.3s;
        -khtml-transition: All 0.3s;
        -moz-transition: All 0.3s;
        -ms-transition: All 0.3s;
        -o-transition: All 0.3s;
        transition: All 0.3s;
        font-size: 35px;
        /*me1*/ } }
    @media (min-width: 100px) and (max-width: 991px) and (min-width: 200px) and (max-width: 479px) {
      .mi_pseudo3_opener:after {
        top: 14px;
        font-size: 27px;
        right: -8px; } }

.cert {
  text-align: center; }
  .cert__title {
    font-size: 36px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    padding-bottom: 15px;
    padding-top: 20px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .cert__title {
        font-size: 27px;
        padding-top: 10px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .cert__title {
        font-size: 27px;
        padding-top: 10px; } }
  .cert__subtitle {
    font-size: 24px;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 20px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .cert__subtitle {
        padding-bottom: 15px;
        font-size: 18px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .cert__subtitle {
        padding-bottom: 10px;
        font-size: 18px; } }
  .cert__item {
    width: 25%;
    float: left;
    padding: 20px 28px 0;
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .cert__item {
        width: 50%; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .cert__item {
        width: 50%; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .cert__item {
        width: 100%;
        padding: 0 28px 20px; } }
    .cert__item_img {
      width: 100%;
      height: 316px;
      -moz-background-size: 100% !important;
      -o-background-size: 100% !important;
      -webkit-background-size: 100% !important;
      background-size: 100% !important;
      background-position: 50% top !important;
      display: block;
      background-repeat: no-repeat !important;
      -webkit-box-shadow: 0px 0px 20px 0px rgba(175, 175, 175, 0.36);
      -moz-box-shadow: 0px 0px 20px 0px rgba(175, 175, 175, 0.36);
      box-shadow: 0px 0px 20px 0px rgba(175, 175, 175, 0.36);
      border: 3px solid #ffffff;
      /*me4*/
      /*me3*/
      /*me2*/
      /*me1*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .cert__item_img {
          height: 245px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .cert__item_img {
          height: 440px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .cert__item_img {
          height: 48.7vw; } }
      @media (min-width: 200px) and (max-width: 479px) {
        .cert__item_img {
          height: 89.7vw; } }
    .cert__item strong {
      text-align: center;
      font-size: 16px;
      padding: 25px 0 0px;
      color: #333 !important;
      display: block; }

body #sp-component #sp-page-builder .cert_cont {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    body #sp-component #sp-page-builder .cert_cont {
      padding-bottom: 0 !important;
      margin-bottom: 0 !important; }
      body #sp-component #sp-page-builder .cert_cont + .sppb-section {
        margin-top: 40px !important; } }

.prep_fix {
  float: right;
  margin-top: -16px;
  position: relative;
  top: -43px;
  right: -15px;
  max-width: 40vw;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .prep_fix {
      top: 0;
      margin-top: -82px !important; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .prep_fix {
      top: 0;
      margin-top: -16px !important; } }

.milk_fix ~ .uberfix {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .milk_fix ~ .uberfix {
      display: none !important; } }

#sp-footer #sp-footer1 ul.nav.menu > li {
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-footer #sp-footer1 ul.nav.menu > li {
      margin-right: 8px; } }

.fb_iframe_widget {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .fb_iframe_widget {
      display: block !important;
      max-width: 500px !important;
      margin: 0 auto 30px !important; } }

.fb-like-section {
  max-width: 80%;
  display: block !important;
  margin: 15px auto; }

.bad_oplata {
  border: 1px solid #ff0000;
  max-width: 528px;
  padding: 24px 20px 20px 12px; }
  .bad_oplata__title {
    color: #ff0000;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    padding: 0 0 25px 52px;
    line-height: 20px;
    position: relative;
    background: url("../img/bad_oplata.png");
    -moz-background-size: 34px;
    -o-background-size: 34px;
    -webkit-background-size: 34px;
    background-size: 34px;
    background-repeat: no-repeat;
    background-position: 6px 4px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .bad_oplata__title {
        padding: 0 0 15px 46px; } }
  .bad_oplata .quick_checkout {
    margin: 0 0 10px 40px; }

.bottom-newsletter .acymailing_form .acysubbuttons input {
  line-height: 42px !important; }

.bs_buy_img {
  display: inline-block;
  width: 19px;
  margin: -1px 5px 0 -7px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .bs_buy_img {
      display: none; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .bs_buy_img {
      display: none; } }

.cont_head {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .cont_head {
      position: relative !important;
      z-index: 10 !important; } }

.btn_absent__bs {
  display: none;
  height: 37px;
  width: 140px;
  font-size: 16px;
  line-height: 39px;
  color: #767676;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #dee2e7;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .btn_absent__bs {
      margin-left: 15px; } }

.single_page {
  padding-top: 60px;
  padding-bottom: 30px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .single_page {
      padding-top: 40px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .single_page {
      padding-top: 30px; } }

.menu_prod_selecter + .single_page {
  padding-top: 0;
  border-bottom: 1px solid #b5b5b5;
  margin-bottom: 40px;
  padding-bottom: 25px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .menu_prod_selecter + .single_page {
      padding-top: 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .menu_prod_selecter + .single_page {
      padding-top: 0; } }

.mob_socials__link {
  width: 38%;
  float: left;
  margin: 0 6% 20px;
  text-align: center;
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .mob_socials__link {
      width: 32%;
      margin: 0 9% 7px; } }
  .mob_socials__link img {
    max-width: 100px;
    display: inline-block;
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 479px) {
      .mob_socials__link img {
        max-width: 100%; } }

.productfull__mob_nav {
  display: none;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .productfull__mob_nav {
      display: block;
      text-align: left;
      position: relative;
      z-index: 1;
      padding-bottom: 35px; } }
  .productfull__mob_nav__link {
    position: relative;
    color: #0070c9;
    text-transform: uppercase;
    font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-align: left; }
    .productfull__mob_nav__link__start {
      padding-bottom: 15px; }
    .productfull__mob_nav__link:after {
      content: '';
      display: block;
      position: absolute;
      background: url("../img/icons/mob_nav__arrow.png");
      width: 15px;
      height: 23px;
      -moz-background-size: 100%;
      -o-background-size: 100%;
      -webkit-background-size: 100%;
      background-size: 100%;
      background-repeat: no-repeat;
      top: 14px;
      left: 5px; }

@media (min-width: 200px) and (max-width: 767px) {
  .jshop__info {
    position: relative;
    padding-top: 20px; }
    .jshop__info .prod__param_title {
      position: absolute;
      width: 100%;
      text-align: left;
      height: 30px;
      top: 24px;
      left: 24px; } }

/*me2*/
.okarin_fix {
  display: none;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okarin_fix {
      display: block;
      text-align: left;
      position: relative;
      padding-top: 6px; } }
  .okarin_fix .sppb-addon-title {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .okarin_fix .sppb-addon-title {
        font-size: 27px;
        line-height: 57px;
        padding-bottom: 0px;
        cursor: pointer;
        position: relative;
        display: inline-block;
        /*me1*/ } }
  @media (min-width: 200px) and (max-width: 767px) and (min-width: 200px) and (max-width: 479px) {
    .okarin_fix .sppb-addon-title {
      font-size: 16px;
      line-height: 49px; } }
    @media (min-width: 200px) and (max-width: 767px) {
        .okarin_fix .sppb-addon-title:after {
          font-family: "FontAwesome";
          speak: none;
          font-style: normal;
          font-weight: normal;
          position: relative;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          position: absolute;
          content: "\f105";
          display: block;
          color: #333;
          -webkit-transition: All 0.3s;
          -khtml-transition: All 0.3s;
          -moz-transition: All 0.3s;
          -ms-transition: All 0.3s;
          -o-transition: All 0.3s;
          transition: All 0.3s;
          right: -15px;
          top: 9px;
          font-size: 26px;
          /*me1*/ } }
    @media (min-width: 200px) and (max-width: 767px) and (min-width: 200px) and (max-width: 479px) {
      .okarin_fix .sppb-addon-title:after {
        top: 7px; } }

.oka_fix {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .oka_fix {
      display: none !important; } }

#sp-position8 p {
  line-height: 20px;
  text-align: left; }

.bottom-newsletter .acymailing_form .acyfield_email input {
  padding-top: 10px !important; }

.mednet-accordion .sppb-addon-accordion .sppb-addon-content .sppb-panel.sppb-panel-default .sppb-panel-heading .sppb-panel-title {
  line-height: 30px; }

.mednet-accordion.faq_page_1 .sppb-addon-accordion .sppb-addon-content:before {
  height: calc(94% + 122px) !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .mednet-accordion.faq_page_1 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 132px) !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .mednet-accordion.faq_page_1 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 132px) !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mednet-accordion.faq_page_1 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 122px) !important; } }

.mednet-accordion.faq_page_2 .sppb-addon-accordion .sppb-addon-content:before {
  height: calc(94% + -8px) !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .mednet-accordion.faq_page_2 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + -8px) !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .mednet-accordion.faq_page_2 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 12px) !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mednet-accordion.faq_page_2 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 12px) !important; } }

.mednet-accordion.faq_page_3 .sppb-addon-accordion .sppb-addon-content:before {
  height: calc(94% + 62px) !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .mednet-accordion.faq_page_3 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 62px) !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .mednet-accordion.faq_page_3 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 42px) !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mednet-accordion.faq_page_3 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 62px) !important; } }

.mednet-accordion.faq_page_4 .sppb-addon-accordion .sppb-addon-content:before {
  height: calc(94% + 62px) !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .mednet-accordion.faq_page_4 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 62px) !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .mednet-accordion.faq_page_4 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 62px) !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mednet-accordion.faq_page_4 .sppb-addon-accordion .sppb-addon-content:before {
      height: calc(94% + 62px) !important; } }

.faq-page .sppb-col-sm-8 {
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .faq-page .sppb-col-sm-8 {
      margin-bottom: 40px; } }

.faq-page .sppb-col-sm-4 {
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .faq-page .sppb-col-sm-4 {
      margin-bottom: 0px; } }

.faq-page .sppb-col-sm-8,
.faq-page .sppb-col-sm-4 {
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .faq-page .sppb-col-sm-8,
    .faq-page .sppb-col-sm-4 {
      width: 100%; } }

.kvas_fix strong {
  display: inline-block !important; }

.kvas_fix i {
  font-style: italic;
  color: #777;
  font-size: 14px; }

.cont_page .sppb-section-title {
  margin-bottom: 0px !important;
  text-align: center; }

.cont_page .sppb-title-heading {
  margin-bottom: 0 !important;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  bottom: -25px;
  font-size: 36px !important;
  margin-top: 25px !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .cont_page .sppb-title-heading {
      font-size: 32px !important;
      margin-top: 27px !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .cont_page .sppb-title-heading {
      font-size: 28px !important;
      margin-top: 24px !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .cont_page .sppb-title-heading {
      font-size: 24px !important;
      margin-top: 18px !important;
      line-height: 6px !important; } }

.cont_page_2 .sppb-section-title {
  margin-bottom: 0px !important;
  text-align: center; }

.cont_page_2 .sppb-title-heading {
  margin-bottom: 15px !important;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  bottom: 10px;
  font-size: 36px !important;
  margin-top: 25px !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .cont_page_2 .sppb-title-heading {
      font-size: 32px !important;
      margin-top: 27px !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .cont_page_2 .sppb-title-heading {
      font-size: 28px !important;
      margin-top: 24px !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .cont_page_2 .sppb-title-heading {
      font-size: 24px !important;
      margin-top: 18px !important;
      line-height: 6px !important; } }

.top_hits_products .block_item .old_price span {
  padding-bottom: 1px; }

.top_hits_products .block_item .item_price {
  color: #950000; }

.jshop_list_product .jshop .old_price span {
  text-decoration: none;
  position: relative; }
  .jshop_list_product .jshop .old_price span:after {
    content: '';
    display: block;
    position: absolute;
    width: 110%;
    height: 1px;
    background: #ca062b;
    left: -5%;
    top: 6.5px;
    -moz-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    -webkit-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
    transform: rotate(-8deg); }

.prefooter_line {
  margin-top: 12px !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .prefooter_line {
      margin-top: 48px !important; } }
  .prefooter_line .sppb-container {
    border-top: 1px solid #b5b5b5;
    padding-top: 43px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .prefooter_line .sppb-container {
        padding-top: 28px; } }

.prefooter_inside_line {
  border-top: 1px solid #b5b5b5;
  padding-top: 40px; }

.delivery_alert {
  display: none;
  color: #ff0000;
  padding-bottom: 15px; }
  .delivery_alert strong {
    display: block;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .delivery_alert span {
    display: none; }

.prod__param_content .prep__icon_02 {
  padding-bottom: 0; }

.content_list__mb {
  padding-bottom: 20px; }

.cart_prob_img {
  padding-top: 15px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .cart_prob_img {
      padding-top: 10px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .cart_prob_img {
      padding-top: 10px; } }

.kvas_fix .prep_fix {
  /*me4*/ }
  @media (min-width: 100px) and (max-width: 1199px) {
    .kvas_fix .prep_fix {
      display: none; } }

#sp-page-builder .page-content .sppb-section {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-page-builder .page-content .sppb-section {
      margin-top: 10px; } }

#del_error {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  color: #ff0000;
  padding-left: 39px;
  line-height: 19px;
  padding-bottom: 0; }
  #del_error strong {
    display: block;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  #del_error.open {
    max-height: 500px;
    padding-bottom: 13px; }

#del_error_bot {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  color: #ff0000;
  padding-left: 0px;
  line-height: 19px;
  padding-bottom: 0; }
  #del_error_bot strong {
    display: block;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  #del_error_bot.open {
    max-height: 500px;
    padding-bottom: 13px; }

#del_error {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  color: #ff0000;
  padding-left: 39px;
  line-height: 19px;
  padding-bottom: 0; }
  #del_error strong {
    display: block;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  #del_error.open {
    max-height: 500px;
    padding-bottom: 13px; }

.submit__btns {
  max-height: 0; }
  .submit__btns .submit__btn_blocked {
    max-height: 0;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    background: #c9c7c7;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    position: relative;
    border: 0 none;
    display: inline-block;
    color: #ffffff;
    width: 140px !important; }
    .submit__btns .submit__btn_blocked:hover {
      background: #c1bfbf; }
  .submit__btns .quick_checkout {
    max-height: 48px;
    height: 48px;
    padding-top: 5px;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .submit__btns .quick_checkout {
        height: 32px; } }
  .submit__btns.open .submit__btn_blocked {
    max-height: 48px;
    height: 48px;
    padding-top: 18px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .submit__btns.open .submit__btn_blocked {
        max-height: 32px;
        height: 32px;
        padding-top: 11px; } }
  .submit__btns.open .quick_checkout {
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
    display: none; }

.out__title {
  text-align: center;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  padding-bottom: 20px; }

.out__text p {
  font-size: 16px;
  padding-bottom: 20px;
  line-height: 21px;
  max-width: 450px;
  text-align: center;
  display: block;
  margin: 0 auto; }

.out__text strong {
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.out_btn {
  width: 200px;
  height: 32px;
  line-height: 32px;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #0070c9;
  color: #ffffff !important;
  display: block;
  margin: 0 auto;
  text-align: center;
  padding-top: 3px; }

.prer_mob_title {
  display: none;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .prer_mob_title {
      display: block;
      text-align: center;
      font-size: 7vw;
      line-height: 8vw;
      font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      position: absolute;
      text-transform: uppercase;
      width: 100%;
      top: 105px;
      left: 0; } }

.prep_selecter {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .prep_selecter {
      margin-top: 40px; } }

.insta-8 {
  margin-top: -18px; }

.insta-10 {
  margin-top: -18px; }

.faq-page .prep__icon_03 {
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: #333; }

.starter__title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 36px;
  padding: 17px 0 15px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .starter__title {
      font-size: 5.5vw;
      line-height: 6vw;
      padding: 15px 0 3px; } }

.starter__subtitle {
  font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  line-height: 27px;
  color: #0070c9;
  padding-bottom: 45px; }
  .starter__subtitle_1 {
    font-size: 27px;
    line-height: 38px;
    padding-bottom: 10px; }
  .starter__subtitle_2 {
    padding-bottom: 27px; }
  .starter__subtitle_3 {
    padding: 82px 0 40px; }
  .starter__subtitle_5 {
    color: #333;
    padding-bottom: 30px;
    font-size: 24px;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter__subtitle_5 {
        font-size: 16px;
        padding-bottom: 10px;
        line-height: 21px; } }

.starter_1 {
  background: url("../img/start_header.jpg");
  background-repeat: no-repeat;
  background-position: 50% -35px;
  -moz-background-size: 1528px;
  -o-background-size: 1528px;
  -webkit-background-size: 1528px;
  background-size: 1528px;
  height: 493px;
  display: block !important;
  width: 100%;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .starter_1 {
      -moz-background-size: 1368px;
      -o-background-size: 1368px;
      -webkit-background-size: 1368px;
      background-size: 1368px;
      background-position: 50% 15px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .starter_1 {
      background-position: 50% 41px;
      -moz-background-size: 900px;
      -o-background-size: 900px;
      -webkit-background-size: 900px;
      background-size: 900px;
      height: 433px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .starter_1 {
      background-position: -10vw -5vw;
      -moz-background-size: 170vw;
      -o-background-size: 170vw;
      -webkit-background-size: 170vw;
      background-size: 170vw;
      height: auto; } }
  .starter_1__wrap {
    padding: 38px 90px 0 723px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .starter_1__wrap {
        padding: 39px 10px 0 593px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_1__wrap {
        padding: 0px 0 0 449px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_1__wrap {
        padding: 52vw 5vw 0;
        text-align: center; } }
  .starter_1__title {
    color: #333333;
    text-transform: uppercase;
    font-size: 36px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_1__title {
        font-size: 30px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_1__title {
        font-size: 6vw; } }
  .starter_1__subtitle {
    font-size: 24px;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #0070c9;
    padding: 18px 0 19px 3px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_1__subtitle {
        font-size: 24px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_1__subtitle {
        font-size: 5vw; } }
  .starter_1 p {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 15px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_1 p {
        font-size: 14px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_1 p {
        font-size: 13px; } }

.starter_2 {
  text-align: center;
  padding-bottom: 42px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .starter_2 {
      padding-bottom: 12px; } }
  .starter_2__title {
    text-transform: uppercase;
    padding: 18px 0 19px 3px;
    text-align: center; }
  .starter_2_item {
    width: 25%;
    float: left;
    font-size: 16px;
    line-height: 20px;
    padding: 0 15px 0;
    /*me3*/
    /*me1*/ }
    @media (min-width: 100px) and (max-width: 991px) {
      .starter_2_item {
        width: 50%;
        padding: 15px; }
        .starter_2_item:nth-child(3) {
          clear: both; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .starter_2_item {
        width: 100%; } }
    .starter_2_item__img {
      display: inline-block;
      width: 125px; }
    .starter_2_item__title {
      font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      padding: 26px 0 22px;
      line-height: 19px;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .starter_2_item__title {
          padding: 16px 0 12px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .starter_2_item__title {
          padding: 6px 0 9px; } }

.starter_3 {
  background: url("../img/section_2s.jpg");
  background-repeat: no-repeat;
  background-position: 50% top;
  -moz-background-size: 1440px;
  -o-background-size: 1440px;
  -webkit-background-size: 1440px;
  background-size: 1440px;
  text-align: left; }
  @media (min-width: 768px) and (max-width: 991px) {
    .starter_3 {
      background-position: 25% 50%;
      -moz-background-size: 1200px;
      -o-background-size: 1200px;
      -webkit-background-size: 1200px;
      background-size: 1200px;
      height: 576px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .starter_3 {
      background: url("../img/section_2m.jpg");
      background-position: right 50%;
      background-repeat: no-repeat;
      -moz-background-size: 500px;
      -o-background-size: 500px;
      -webkit-background-size: 500px;
      background-size: 500px;
      height: auto; } }
  .starter_3 ul {
    padding-bottom: 15px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .starter_3 ul {
        padding-bottom: 15px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_3 ul {
        padding-bottom: 0; } }
  .starter_3 p {
    display: inline-block;
    background: rgba(255, 255, 255, 0.46);
    padding: 5px 0;
    /*me3*/
    /*me2*/
    /*me1*/
    /*me1*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_3 p {
        background: rgba(255, 255, 255, 0);
        padding: 5px 0; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_3 p {
        font-size: 2.4vw;
        line-height: 3.3vw;
        width: 60vw;
        background: rgba(255, 255, 255, 0);
        padding: 5px 0; } }
    @media (min-width: 200px) and (max-width: 570px) {
      .starter_3 p {
        width: 65vw;
        font-size: 3.3vw;
        line-height: 4vw; } }
    @media (min-width: 200px) and (max-width: 400px) {
      .starter_3 p {
        font-size: 4.8vw;
        line-height: 5vw; } }
  .starter_3 .sppb-container {
    padding: 10px 570px 0 0;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .starter_3 .sppb-container {
        padding: 10px 480px 0 0px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_3 .sppb-container {
        padding: 10px 320px 0 0; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_3 .sppb-container {
        padding: 4vw 2vw 2vw; } }
  .starter_3__title {
    font-size: 36px;
    color: #0061c3;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    padding: 35px 180px 0px 0;
    line-height: 45px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_3__title {
        font-size: 40px;
        line-height: 42px;
        padding: 30px 0 0 0; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_3__title {
        font-size: 6vw;
        line-height: 7.7vw;
        padding: 0 30vw 0 0; } }
  .starter_3__subtitle {
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333333;
    font-size: 24px;
    padding: 0 0 45px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .starter_3__subtitle {
        padding-bottom: 30px;
        font-size: 21px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_3__subtitle {
        font-size: 16px;
        padding: 7px 0 31px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_3__subtitle {
        padding: 0 25vw 6vw 0;
        font-size: 16px; } }
  .starter_3_li {
    display: block;
    position: relative;
    font-size: 16px;
    padding-left: 48px;
    padding-bottom: 40px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .starter_3_li {
        padding-bottom: 22px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_3_li {
        position: relative;
        padding-bottom: 20px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_3_li {
        padding-bottom: 0;
        padding-right: 0;
        padding-left: 0;
        padding-top: 7px;
        margin-bottom: 10px;
        margin-left: 30px;
        background: rgba(255, 255, 255, 0.46); } }
    .starter_3_li:after {
      display: block;
      width: 33px;
      height: 33px;
      position: absolute;
      left: 0;
      top: 0;
      content: '';
      background: url("../img/list_icon.png");
      background-repeat: no-repeat;
      -moz-background-size: 100%;
      -o-background-size: 100%;
      -webkit-background-size: 100%;
      background-size: 100%;
      /*me2*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .starter_3_li:after {
          left: -24px;
          width: 16px;
          height: 16px;
          top: 8px; } }
    .starter_3_li__subtitle {
      text-transform: uppercase;
      font-size: 20px;
      font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #000;
      display: block;
      padding-bottom: 10px;
      /*me3*/
      /*me2*/
      /*me1*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .starter_3_li__subtitle {
          width: 367px;
          font-size: 17px;
          line-height: 20px;
          padding-bottom: 0; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .starter_3_li__subtitle {
          font-size: 16px;
          font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; } }
      @media (min-width: 200px) and (max-width: 479px) {
        .starter_3_li__subtitle {
          padding-bottom: 1vw; } }

.starter_5 {
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 18px;
  border-bottom: 1px solid #b5b5b5;
  zoom: 1;
  /*me2*/ }
  .starter_5:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 200px) and (max-width: 767px) {
    .starter_5 {
      padding-bottom: 35px;
      margin-bottom: 8px; } }
  .starter_5__item {
    float: left;
    width: 33.2%;
    padding: 0 2% 30px;
    display: block;
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .starter_5__item {
        padding: 0 1% 30px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_5__item {
        padding: 0 1% 30px;
        width: 49.7%; }
        .starter_5__item:nth-child(odd) {
          clear: both; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_5__item {
        padding: 0 1% 20px;
        width: 49.7%; }
        .starter_5__item:nth-child(odd) {
          clear: both; } }
    @media (min-width: 200px) and (max-width: 540px) {
      .starter_5__item {
        padding: 0 5%;
        width: 100%; } }
    .starter_5__item_4 {
      margin-left: 16.6%;
      /*me3*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .starter_5__item_4 {
          margin-left: 0; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .starter_5__item_4 {
          margin-left: 0; } }
      .starter_5__item_4 .starter_5__text {
        padding: 0 20px; }
    .starter_5__item_5 {
      /*me3*/
      /*me2*/
      /*me1*/ }
      .starter_5__item_5 .starter_5__text {
        padding: 0 0px; }
      @media (min-width: 768px) and (max-width: 991px) {
        .starter_5__item_5 {
          margin-left: 25%; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .starter_5__item_5 {
          margin-left: 25%; } }
      @media (min-width: 200px) and (max-width: 540px) {
        .starter_5__item_5 {
          margin-left: 0%; } }
  .starter_5__img_1 {
    display: block;
    height: 140px;
    width: 100%;
    background: url("../img/star_1.jpg") 50% top no-repeat;
    -moz-background-size: 125px !important;
    -o-background-size: 125px !important;
    -webkit-background-size: 125px !important;
    background-size: 125px !important;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_5__img_1 {
        height: 130px;
        background-position: 50% -11px; } }
  .starter_5__img_2 {
    display: block;
    height: 140px;
    width: 100%;
    background: url("../img/star_2.jpg") 50% top no-repeat;
    -moz-background-size: 125px !important;
    -o-background-size: 125px !important;
    -webkit-background-size: 125px !important;
    background-size: 125px !important;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_5__img_2 {
        height: 130px;
        margin-top: 30px;
        background-position: 50% -6px; } }
  .starter_5__img_3 {
    display: block;
    height: 140px;
    width: 100%;
    background: url("../img/star_3.jpg") 50% top no-repeat;
    -moz-background-size: 125px !important;
    -o-background-size: 125px !important;
    -webkit-background-size: 125px !important;
    background-size: 125px !important;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_5__img_3 {
        height: 120px;
        margin-top: 10px;
        background-position: 50% -16px; } }
  .starter_5__img_4 {
    display: block;
    height: 140px;
    width: 100%;
    background: url("../img/star_4.jpg") 50% top no-repeat;
    -moz-background-size: 125px !important;
    -o-background-size: 125px !important;
    -webkit-background-size: 125px !important;
    background-size: 125px !important;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_5__img_4 {
        height: 117px;
        margin-top: 30px;
        background-position: 50% -16px; } }
  .starter_5__img_5 {
    display: block;
    height: 140px;
    width: 100%;
    background: url("../img/star_5.jpg") 50% top no-repeat;
    -moz-background-size: 125px !important;
    -o-background-size: 125px !important;
    -webkit-background-size: 125px !important;
    background-size: 125px !important;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .starter_5__img_5 {
        height: 135px;
        margin-top: 24px;
        background-position: 50% -4px; } }
  .starter_5__title {
    display: block;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    padding-bottom: 10px;
    font-size: 20px; }
  .starter_5__text {
    font-size: 16px;
    line-height: 20px;
    min-height: 100px;
    display: block;
    padding: 0 48px 0;
    /*me4*/
    /*me3*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .starter_5__text {
        padding: 0 4px 0; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .starter_5__text {
        padding: 0 4px 0; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .starter_5__text {
        padding: 0 4px 0; } }

.prob_head__bg {
  background: url(../img/head_03.jpg) 50% 50% no-repeat;
  height: 237px;
  -moz-background-size: 2132px;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  position: absolute;
  width: 100vw;
  top: 0px;
  left: calc(570px - 50vw);
  z-index: 1;
  border-bottom: 0.5px solid #d1d1d1;
  /*me4*/
  /*me3*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .prob_head__bg {
      left: calc(470px - 50vw); } }
  @media (min-width: 768px) and (max-width: 991px) {
    .prob_head__bg {
      left: calc(360px - 50vw); } }

.prob_head__bg {
  background: url(../img/head_03.jpg) 50% 50% no-repeat;
  height: 237px;
  -moz-background-size: 2132px;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  position: absolute;
  width: 100vw;
  top: 0px;
  left: calc(570px - 50vw);
  z-index: 1;
  border-bottom: 0.5px solid #d1d1d1;
  /*me4*/
  /*me3*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .prob_head__bg {
      left: calc(470px - 50vw); } }
  @media (min-width: 768px) and (max-width: 991px) {
    .prob_head__bg {
      left: calc(360px - 50vw); } }

.jog_head__bg {
  background: url(../img/head_06.jpg) 50% 50% no-repeat;
  height: 237px;
  -moz-background-size: 2132px;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  position: absolute;
  width: 100vw;
  top: 0;
  left: calc(570px - 50vw);
  z-index: 1;
  border-bottom: 0.5px solid #d1d1d1;
  display: block;
  /*me4*/
  /*me3*/ }
  .jog_head__bg:after {
    /*me4*/
    /*me3*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .jog_head__bg:after {
        position: absolute;
        width: 100%;
        height: 237px;
        top: 0;
        left: 0;
        background: -moz-linear-gradient(-45deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        background: -webkit-linear-gradient(-45deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
        content: ''; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .jog_head__bg:after {
        position: absolute;
        width: 100%;
        height: 237px;
        top: 0;
        left: 0;
        background: -moz-linear-gradient(-45deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        background: -webkit-linear-gradient(-45deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
        content: ''; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .jog_head__bg {
      left: calc(470px - 50vw); } }
  @media (min-width: 768px) and (max-width: 991px) {
    .jog_head__bg {
      left: calc(360px - 50vw); } }

.star_head__wrap {
  display: block;
  position: relative;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .star_head__wrap {
      display: none; } }

.star_head__bg {
  background: url(../img/head_01.jpg) 50% 50% no-repeat;
  height: 237px;
  -moz-background-size: 2132px;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  position: absolute;
  width: 100vw;
  top: 0px;
  left: calc(570px - 50vw);
  z-index: 1;
  border-bottom: 0.5px solid #d1d1d1;
  /*me4*/
  /*me3*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .star_head__bg {
      left: calc(470px - 50vw); } }
  @media (min-width: 768px) and (max-width: 991px) {
    .star_head__bg {
      left: calc(360px - 50vw); } }

.star_head__bread {
  position: relative;
  z-index: 2;
  padding: 28px 0 0;
  font-size: 15px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .star_head__bread {
      display: none; } }
  .star_head__bread a {
    color: #333; }

.star_head__title {
  position: relative;
  text-transform: uppercase;
  font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  z-index: 2;
  font-size: 40px;
  padding: 7px 0 0;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .star_head__title {
      text-align: center;
      font-size: 35px;
      line-height: 50px;
      padding-bottom: 18px;
      cursor: pointer; } }

.star_head__nav {
  position: relative;
  z-index: 2;
  padding: 14px 0 0 0;
  min-height: 138px;
  margin-bottom: 29px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .star_head__nav {
      display: none; } }
  .star_head__nav a {
    text-transform: uppercase;
    font-size: 15px;
    line-height: 24px;
    color: #333;
    display: inline-block !important;
    padding: 0px 0px 0 32px !important; }
    .star_head__nav a:hover {
      background-color: transparent !important;
      color: #0070c9; }

.com-jshopping #sp-main-body {
  padding: 0 0 0;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .com-jshopping #sp-main-body {
      padding-bottom: 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .com-jshopping #sp-main-body {
      padding: 0 0 0; } }

#sp-page-builder .starter__howto .main__howto {
  border-top: 0 none;
  padding-top: 18px; }

.menu_prod_selecter {
  text-align: center;
  margin-bottom: 48px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .menu_prod_selecter {
      margin-bottom: 40px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .menu_prod_selecter {
      margin-bottom: 22px; } }
  .menu_prod_selecter .sppb-addon-title {
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    padding: 12px 0 10px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .menu_prod_selecter .sppb-addon-title {
        font-size: 7vw;
        line-height: 8vw;
        font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
        padding: 1vw 0 3vw; } }
  .menu_prod_selecter li {
    margin-top: 20px;
    height: 30px;
    text-align: center;
    display: inline-block;
    /*me2*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .menu_prod_selecter li {
        margin-bottom: 15px;
        display: block; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .menu_prod_selecter li {
        margin-bottom: 15px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .menu_prod_selecter li {
        margin-bottom: 10px;
        padding: 0 0 0;
        height: auto; } }
    .menu_prod_selecter li a {
      padding: 10px 15px 5px;
      color: #333333;
      text-decoration: none;
      font-size: 16px;
      line-height: 19px;
      font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      border-style: solid;
      border-color: rgba(0, 112, 201, 0);
      border-width: 0 0 3px;
      position: relative;
      z-index: 2;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s;
      text-transform: uppercase;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .menu_prod_selecter li a {
          padding: 10px 8px 5px;
          font-size: 14px;
          text-transform: uppercase; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .menu_prod_selecter li a {
          padding: 10px 10px 5px;
          font-size: 14px;
          text-transform: uppercase; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .menu_prod_selecter li a {
          font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
          border: 0 none;
          text-align: center;
          text-transform: none; } }
      .menu_prod_selecter li a:after {
        content: '';
        display: block;
        height: 1px;
        width: calc(100% + 6px);
        background: #9f9f9f;
        position: absolute;
        left: 0;
        bottom: -1.5px;
        z-index: 0;
        opacity: 1;
        -webkit-transition: All 0.3s;
        -khtml-transition: All 0.3s;
        -moz-transition: All 0.3s;
        -ms-transition: All 0.3s;
        -o-transition: All 0.3s;
        transition: All 0.3s;
        /*me2*/ }
        @media (min-width: 200px) and (max-width: 767px) {
          .menu_prod_selecter li a:after {
            display: none; } }
      .menu_prod_selecter li a:hover {
        color: #ec5989;
        border-color: #ec5989;
        position: relative;
        z-index: 2;
        /*me2*/ }
        @media (min-width: 200px) and (max-width: 767px) {
          .menu_prod_selecter li a:hover {
            color: #0070c9; } }
        .menu_prod_selecter li a:hover:after {
          opacity: 0; }
    .menu_prod_selecter li.current {
      position: relative;
      z-index: 2; }
      .menu_prod_selecter li.current a {
        color: #ed145b;
        border-color: #ed145b;
        /*me2*/ }
        @media (min-width: 200px) and (max-width: 767px) {
          .menu_prod_selecter li.current a {
            color: #0070c9; } }
        .menu_prod_selecter li.current a:after {
          opacity: 0; }

@media (min-width: 200px) and (max-width: 767px) {
  .starers_selecter .nav,
  .menu_prod_selecter .nav {
    border-bottom: 1px solid #dedede;
    padding-bottom: 14px;
    width: 70%;
    margin: 0 auto; }
  /*me2*/ }

.menu_prod__desc {
  font-size: 16px;
  width: 70%;
  margin: 0 auto 0px;
  line-height: 24px;
  text-align: left;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .menu_prod__desc {
      width: 95%; } }
  .menu_prod__desc p {
    padding-bottom: 24px;
    display: block; }
  .menu_prod__desc .sppb-addon-title {
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #0070c9;
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 5px;
    text-align: center; }

.mi__product {
  width: 31%;
  float: left;
  margin: 20px 1% 10px;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .mi__product {
      width: 48%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mi__product {
      width: 100%;
      max-width: max-content;
      float: none;
      margin: 0 auto 20px;
      zoom: 1; }
      .mi__product:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 200px) and (max-width: 390px) {
    .mi__product {
      max-width: 300px; } }
  .mi__product img {
    max-width: 100%; }
  .mi__product .image_block {
    /*width: 230px;*/
    margin: 0 auto; }
  .mi__product .name {
    font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 15px;
    display: block;
    /*me4*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .mi__product .name {
        font-size: 15px;
        margin-bottom: 8px; } }
    .mi__product .name a {
      color: #333333;
      text-transform: uppercase;
      padding-top: 5px;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s; }
      .mi__product .name a:hover {
        color: #0070c9; }
  .mi__product .buttons {
    padding: 5px 0;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .mi__product .buttons {
        float: right; } }
    .mi__product .buttons a {
      display: inline-block;
      height: 37px;
      padding: 0 30px 0;
      font-size: 16px;
      line-height: 39px;
      margin-right: 0px;
      color: #ffffff;
      text-align: center;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px; }
      .mi__product .buttons a img {
        width: 19px;
        display: inline-block;
        margin: 1px 0px 0 6px; }
      .mi__product .buttons a span {
        padding: 0 10px; }
      .mi__product .buttons a.button_detail {
        /*me2*/ }
        @media (min-width: 200px) and (max-width: 767px) {
          .mi__product .buttons a.button_detail {
            display: none; } }
    .mi__product .buttons .button_buy {
      background: #17c60e;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s; }
      .mi__product .buttons .button_buy:hover {
        background: #129d0c; }
    .mi__product .buttons .button_detail {
      background: #0070c9;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s; }
      .mi__product .buttons .button_detail:hover {
        background: #005293; }

.top_hits_products {
  width: 100%;
  margin: 0 auto 0px; }

#mxcpr {
  display: none; }

.productfull {
  padding-bottom: 60px;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .productfull input.btn {
      height: 40px !important;
      line-height: 40px !important; } }

.readmore_btn:after {
  display: inline-block;
  background: url("../img/icons/s01.png");
  -moz-background-size: 100%;
  -o-background-size: 100%;
  -webkit-background-size: 100%;
  background-size: 100%;
  width: 24px;
  height: 24px; }

.mid__title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 36px;
  padding: 17px 0 40px;
  line-height: 40px;
  text-align: center;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .mid__title {
      padding: 17px 0 30px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .mid__title {
      font-size: 30px;
      padding: 17px 0 20px;
      line-height: 30px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mid__title {
      font-size: 5.5vw;
      line-height: 6vw;
      padding: 7px 0 20px; } }

.direct_link {
  position: relative;
  padding-right: 25px;
  display: inline-block; }
  .direct_link:after {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/icons/s01.png");
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    right: -0px;
    top: -4px; }

.custom_bot_item__text a {
  position: relative;
  padding-right: 23px;
  display: inline-block;
  font-size: 16px;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .custom_bot_item__text a:after {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/icons/s01.png");
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    right: -0px;
    top: -0px; }

.prod_item__icon {
  padding-left: 20px;
  display: block;
  zoom: 1;
  position: relative;
  /*me3*/
  /*me2*/
  /*me1*/ }
  .prod_item__icon:after {
    content: "";
    display: table;
    clear: both; }
  .prod_item__icon:hover .prod_item__icon_word {
    opacity: 1; }
  @media (min-width: 768px) and (max-width: 991px) {
    .prod_item__icon {
      padding-left: 10px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prod_item__icon {
      padding-left: 10px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .prod_item__icon {
      padding-left: 5px; } }
  .prod_item__icon_img {
    width: 80px;
    padding-right: 15px;
    float: left;
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 479px) {
      .prod_item__icon_img {
        width: 68px;
        padding-right: 6px; } }
    .prod_item__icon_img img {
      width: 65px;
      display: inline-block; }
  .prod_item__icon_word {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    opacity: 0; }
  .prod_item__icon_text {
    color: #333;
    text-transform: uppercase;
    float: left;
    padding-top: 11px;
    width: 70%;
    position: relative;
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .prod_item__icon_text {
        padding-top: 17px;
        line-height: 18px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .prod_item__icon_text {
        padding-top: 17px;
        line-height: 18px;
        font-size: 13px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .prod_item__icon_text {
        font-size: 12px; } }
  .prod_item__icons {
    padding-bottom: 20px;
    position: relative;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .prod_item__icons {
        padding-bottom: 0px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .prod_item__icons {
        padding-bottom: 0px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .prod_item__icons {
        padding-bottom: 0px; } }
  .prod_item__icon__dz {
    position: relative; }
    .prod_item__icon__dz:hover .prod_item__icon__dz_wrap {
      opacity: 1; }
    .prod_item__icon__dz_wrap {
      position: absolute;
      width: 49%;
      left: 50%;
      bottom: 20px;
      opacity: 0;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .prod_item__icon__dz_wrap {
          display: none !important; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .prod_item__icon__dz_wrap {
          display: none !important; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .prod_item__icon__dz_wrap {
          display: none !important; } }
      .prod_item__icon__dz_wrap:before {
        display: block;
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: #fff;
        bottom: 26px;
        left: -6px;
        z-index: 1;
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.3); }
      .prod_item__icon__dz_wrap:after {
        display: block;
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        background: #fff;
        bottom: 27px;
        left: -6px;
        z-index: 3;
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
    .prod_item__icon__dz_inn {
      position: relative;
      z-index: 2;
      background: #fff;
      -webkit-box-shadow: 2px 3px 9px 0px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 2px 3px 9px 0px rgba(0, 0, 0, 0.3);
      box-shadow: 2px 3px 9px 0px rgba(0, 0, 0, 0.3);
      font-size: 14px;
      padding: 15px;
      line-height: 18px; }
      .prod_item__icon__dz_inn p {
        padding-bottom: 0 !important; }
      .prod_item__icon__dz_inn strong {
        font-size: 16px;
        text-transform: uppercase;
        font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
        padding-bottom: 10px; }

.jshop_prod_description {
  font-size: 16px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .jshop_prod_description {
      font-size: 14px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .jshop_prod_description {
      font-size: 13px;
      padding-top: 0 !important;
      position: relative;
      top: -10px; } }
  .jshop_prod_description .fitches li {
    font-size: 16px;
    padding-bottom: 2px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .jshop_prod_description .fitches li {
        font-size: 14px;
        padding-bottom: 1px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .jshop_prod_description .fitches li {
        font-size: 13px;
        padding-bottom: 0px; } }

body .mi_related__title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  margin-top: 8px;
  border-top: 1px solid #b5b5b5;
  padding: 48px 0 35px;
  /*me4*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    body .mi_related__title {
      padding: 40px 0 25px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    body .mi_related__title {
      padding: 30px 0 20px;
      font-size: 24px;
      line-height: 24px; } }

body .mi_related .product {
  padding: 0 15px 0 0;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    body .mi_related .product {
      padding: 0 15px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    body .mi_related .product {
      zoom: 1;
      padding: 0; }
      body .mi_related .product:after {
        content: "";
        display: table;
        clear: both; } }
  body .mi_related .product .image {
    width: 156px;
    float: left;
    padding: 0px 14px 0 0;
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      body .mi_related .product .image {
        height: 150px;
        padding: 40px 14px 0 0; } }
    @media (min-width: 768px) and (max-width: 991px) {
      body .mi_related .product .image {
        padding: 4px 10px 0;
        height: 146px;
        margin: 0 auto 0px;
        float: none; } }
    @media (min-width: 200px) and (max-width: 767px) {
      body .mi_related .product .image {
        height: auto;
        width: 100%;
        padding: 0 3vw 10px 0; } }
  body .mi_related .product .name {
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: left;
    padding-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0 0 0;
    font-size: 15px; }
    body .mi_related .product .name a {
      color: #333;
      min-height: 33px;
      display: block;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        body .mi_related .product .name a {
          position: relative;
          left: -136px;
          font-size: 20px;
          width: 406px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        body .mi_related .product .name a {
          margin-bottom: 14px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        body .mi_related .product .name a {
          margin-bottom: 14px; } }

body .mi_related .oiproduct {
  zoom: 1; }
  body .mi_related .oiproduct:after {
    content: "";
    display: table;
    clear: both; }
  body .mi_related .oiproduct .jshop_price {
    text-align: left;
    float: left;
    color: #1dafed;
    padding-top: 6px;
    position: relative;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 26px;
    margin-bottom: 19px;
    /*me4*/
    /*me2*/ }
    body .mi_related .oiproduct .jshop_price .old_price {
      position: absolute;
      font-size: 14px;
      font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
      top: -8px;
      right: 0;
      margin: 0;
      text-align: left; }
    body .mi_related .oiproduct .jshop_price > b {
      font-size: 11px;
      color: #333;
      font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
      display: block;
      line-height: 16px;
      position: absolute;
      bottom: -12px;
      width: 150px; }
    body .mi_related .oiproduct .jshop_price > i {
      position: absolute;
      bottom: 5px;
      right: -15px;
      color: #000;
      font-size: 10px;
      font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  body .mi_related .oiproduct .buttons {
    float: left;
    text-align: right;
    padding: 0px 0 0;
    width: calc(100% - 158px);
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      body .mi_related .oiproduct .buttons {
        width: 100%; } }
    @media (min-width: 200px) and (max-width: 767px) {
      body .mi_related .oiproduct .buttons {
        text-align: left;
        width: 100%; } }
    body .mi_related .oiproduct .buttons .button_detail {
      display: none;
      /*me4*/
      /*me2*/
      /*me1*/ }
    body .mi_related .oiproduct .buttons .button_buy {
      margin-top: 0;
      display: inline-block;
      height: 34px;
      padding: 7px 10px 0;
      font-size: 14px;
      line-height: 43px;
      margin-right: 0;
      color: #ffffff;
      text-align: center;
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      border-radius: 3px;
      background: #17c60e;
      width: 100%;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s;
      /*me4*/ }
      body .mi_related .oiproduct .buttons .button_buy span {
        position: relative;
        top: -10px; }
      body .mi_related .oiproduct .buttons .button_buy:hover {
        background: #129d0c; }
      @media (min-width: 992px) and (max-width: 1199px) {
        body .mi_related .oiproduct .buttons .button_buy {
          width: 80%;
          float: left; } }
      body .mi_related .oiproduct .buttons .button_buy img {
        width: 17px;
        position: relative;
        display: inline-block;
        top: -6px; }
  body .mi_related .oiproduct .con-wrap {
    float: right;
    position: relative;
    top: -1px;
    /*me2*/
    /*me4*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      body .mi_related .oiproduct .con-wrap {
        left: 0; } }
    @media (min-width: 992px) and (max-width: 1199px) {
      body .mi_related .oiproduct .con-wrap {
        float: left;
        position: relative;
        top: -1px;
        margin-bottom: 6px; } }
    body .mi_related .oiproduct .con-wrap input[type="text"].cb {
      padding-top: 2px !important;
      height: 34px !important;
      width: 37px !important;
      margin: 0 3px 0; }
  body .mi_related .oiproduct .con-wrap__min {
    top: 5px; }
  body .mi_related .oiproduct .con-wrap__pls {
    top: 5px; }

.jshop_list_product .mi_related .sblock4 {
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .jshop_list_product .mi_related .sblock4 {
      width: 50%; }
      .jshop_list_product .mi_related .sblock4:nth-child(3) {
        clear: both; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .jshop_list_product .mi_related .sblock4 {
      width: 50%; }
      .jshop_list_product .mi_related .sblock4:nth-child(3) {
        clear: both; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .jshop_list_product .mi_related .sblock4 {
      width: 100%; } }

.jshop_list_product .mi_related .block_product {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .jshop_list_product .mi_related .block_product {
      border: 0px none;
      margin-bottom: 30px; } }
  .jshop_list_product .mi_related .block_product > .product {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .jshop_list_product .mi_related .block_product > .product {
        max-width: 250px;
        margin: 0 auto; } }

.productfull .prod_price {
  text-align: left;
  float: none;
  margin: 40px 66px 18px 69px;
  position: relative;
  zoom: 1;
  /*me4*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  .productfull .prod_price:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .productfull .prod_price {
      margin: 0 10px 25px 46px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .productfull .prod_price {
      margin: 0 0 25px 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .productfull .prod_price {
      width: 100%;
      margin: 0 auto 25px;
      padding: 0 0;
      display: block;
      zoom: 1; }
      .productfull .prod_price:after {
        content: "";
        display: table;
        clear: both; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .productfull .prod_price {
      text-align: center;
      margin: 0 auto 0px; } }
  .productfull .prod_price__old_price {
    display: block;
    position: absolute;
    top: -20px;
    right: 13px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .productfull .prod_price__old_price {
        text-align: center;
        height: 20px;
        top: -13px;
        right: 10px; } }
    .productfull .prod_price__old_price_inner {
      text-align: left;
      color: #555555;
      font-size: 20px;
      line-height: 29px;
      margin: 0 0 0 32px;
      display: inline-block;
      position: relative;
      font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
      /*me4*/
      /*me3*/
      /*me2*/
      /*me1*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .productfull .prod_price__old_price_inner {
          font-size: 19px;
          line-height: 24px;
          margin: 0 0 0 20px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .productfull .prod_price__old_price_inner {
          font-size: 17px;
          line-height: 24px;
          margin: 0 0 0 22px; } }
      @media (min-width: 200px) and (max-width: 479px) {
        .productfull .prod_price__old_price_inner {
          margin: 0; } }
      .productfull .prod_price__old_price_inner:after {
        content: '';
        display: block;
        position: absolute;
        width: 110%;
        height: 1px;
        background: #ca062b;
        left: -5%;
        top: 10.5px;
        -moz-transform: rotate(-8deg);
        /* Для Firefox */
        -ms-transform: rotate(-8deg);
        /* Для IE */
        -webkit-transform: rotate(-8deg);
        /* Для Safari, Chrome, iOS */
        -o-transform: rotate(-8deg);
        /* Для Opera */
        transform: rotate(-8deg); }

.productfull #block_price {
  display: block;
  padding-right: 7px;
  position: relative;
  float: left; }

.productfull .extra_fields_el {
  display: block;
  float: left;
  position: absolute;
  bottom: -20px;
  left: 0;
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .productfull .extra_fields_el {
      position: relative;
      float: none;
      bottom: 10px; }
      .productfull .extra_fields_el .extra_fields_value {
        float: none; } }

.productfull .con-wrap {
  float: right;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .productfull .con-wrap {
      height: 35px !important;
      top: -5px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .productfull .con-wrap {
      float: left;
      padding-left: 15px;
      left: calc(50vw - 160px); } }
  @media (min-width: 200px) and (max-width: 479px) {
    .productfull .con-wrap {
      padding-left: 0px;
      left: 90px; } }
  .productfull .con-wrap input[type="text"].cb {
    padding-top: 2px !important;
    height: 37px !important; }

.productfull .new-func {
  margin: 0 auto;
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .productfull .new-func {
      width: 100%; } }

  .prod_prep__img {
    display: block;
    background: url("../img/kak_3_en.jpg");
    width: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 0;
    height: 150px;
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px)  and (max-width: 1199px) {
      .prod_prep__img {
	    height: 130px;
        -moz-background-size: 100%;
        -o-background-size: 100%;
        -webkit-background-size: 100%;
        background-size: 100%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .prod_prep__img {
	    background: url("../img/kak_mob_2_en.jpg") 50% 0 no-repeat;
	    height: 300px;
        -moz-background-size: 100%;
        -o-background-size: 100%;
        -webkit-background-size: 100%;
        background-size: 100%; } }
    @media (min-width: 601px) and (max-width: 767px) {
      .prod_prep__img {
        height: 26vw;
        -moz-background-size: 110%;
        -o-background-size: 110%;
        -webkit-background-size: 110%;
        background-size: 110%; } }
    @media (min-width: 200px) and (max-width: 600px) {
      .prod_prep__img {
        background: url("../img/kak_mob_2_en.jpg") 50% 0 no-repeat;
        -moz-background-size: 90%;
        -o-background-size: 90%;
        -webkit-background-size: 90%;
        background-size: 90%;
        height: 66vw; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .prod_prep__img {
        background: url("../img/kak_mob_en.jpg") 50% 0 no-repeat;
        -moz-background-size: 220px;
        -o-background-size: 220px;
        -webkit-background-size: 220px;
        background-size: 220px;
        height: 440px; } }
        
.prod_prep__link_1 {
  display: inline-block;
  position: relative;
  padding: 0px 22px 0 0px;
  margin: 20px 0 20px 139px;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .prod_prep__link_1:after {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/icons/s01.png");
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    right: -0px;
    top: 1px;
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .prod_prep__link_1:after {
        top: 0; } }
    @media (min-width: 200px) and (max-width: 550px) {
      .prod_prep__link_1:after {
        display: none; } }

.prod_prep__link_2 {
  position: relative;
  display: inline-block;
  padding: 0px 22px 0 0px;
  margin: 30px 0 30px 120px;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .prod_prep__link_2 {
      font-size: 13px; } }
  .prod_prep__link_2:before {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/tab_2.png");
    background-position: 50% 50%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100px;
    height: 80px;
    left: -120px;
    top: -32px; }
  .prod_prep__link_2:after {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/icons/s01.png");
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    right: -0px;
    top: 1px;
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .prod_prep__link_2:after {
        top: 0; } }
    @media (min-width: 200px) and (max-width: 550px) {
      .prod_prep__link_2:after {
        display: none; } }

.prod_prep__link_3 {
  display: inline-block;
  position: relative;
  padding: 0px 22px 0 0px;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 30px 0 30px 120px;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .prod_prep__link_3 {
      font-size: 13px; } }
  .prod_prep__link_3:before {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/tab_3.png");
    background-position: 50% 50%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100px;
    height: 80px;
    left: -120px;
    top: -32px; }
  .prod_prep__link_3:after {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/icons/s01.png");
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    right: -0px;
    top: 1px;
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .prod_prep__link_3:after {
        top: 0; } }
    @media (min-width: 200px) and (max-width: 550px) {
      .prod_prep__link_3:after {
        display: none; } }

.prod_prep__link_4 {
  display: inline-block;
  position: relative;
  padding: 0px 22px 0 0px;
  margin: 30px 0 30px 120px;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .prod_prep__link_4 {
      font-size: 13px; } }
  .prod_prep__link_4:before {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/tab_1.png");
    background-position: 50% 50%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100px;
    height: 80px;
    left: -120px;
    top: -32px; }
  .prod_prep__link_4:after {
    content: '';
    position: absolute;
    display: block;
    background: url("../img/icons/s01.png");
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    right: -0px;
    top: 1px;
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .prod_prep__link_4:after {
        top: 0; } }
    @media (min-width: 200px) and (max-width: 550px) {
      .prod_prep__link_4:after {
        display: none; } }

.prod__img_wrap {
  position: relative;
  display: block;
  margin: 0 0 0 58px;
  width: 72.3%;
  margin-top: 20px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .prod__img_wrap {
      margin: 0 0 0 66px;
      margin-top: 30px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .prod__img_wrap {
      margin: 0 auto 30px;
      margin-top: 20px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prod__img_wrap {
      margin: 0 auto;
      max-width: 300px;
      margin-top: 15px; } }

.prod_price__discount_label {
  position: absolute;
  width: 74px;
  height: 74px;
  background: #00ad1b;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  -webkit-background-size: 100%;
  background-size: 100%;
  text-align: center;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 25px;
  color: #fff;
  line-height: 79px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid #fff;
  top: 29px;
  left: -21px;
  z-index: 1;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .prod_price__discount_label {
      width: 64px;
      height: 64px;
      line-height: 68px;
      font-size: 23px;
      top: 30px;
      left: -18px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .prod_price__discount_label {
      font-size: 19px;
      color: #fff;
      line-height: 59px;
      width: 54px;
      height: 54px;
      top: 22px;
      left: -25px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prod_price__discount_label {
      font-size: 13px;
      color: #fff;
      line-height: 43px;
      width: 40px;
      height: 40px;
      top: 36px;
      left: -5px; } }
  .prod_price__discount_label.biger_fix {
    font-size: 28px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .prod_price__discount_label.biger_fix {
        font-size: 26px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .prod_price__discount_label.biger_fix {
        font-size: 22px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .prod_price__discount_label.biger_fix {
        font-size: 16px; } }

.top_hits_products .mi__product .image_block {
  position: relative; }

.top_hits_products .top_hits_products__discount_label {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #00ad1b;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  -webkit-background-size: 100%;
  background-size: 100%;
  text-align: center;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 54px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid #fff;
  top: 9px;
  left: -9px;
  z-index: 1; }
  .top_hits_products .top_hits_products__discount_label.biger_fix {
    font-size: 18px; }

.top_hits_products .fitches {
  margin-bottom: 15px; }

.jshop_price__inner {
  position: relative;
  display: inline-block; }

.bestseller_products .image_block {
  position: relative; }

.bestseller_products .bestseller__old_price {
  position: absolute;
  top: -10px;
  right: 0; }
  .bestseller_products .bestseller__old_price_inner {
    position: relative;
    display: inline-block;
    margin-left: 40px;
    color: #555555; }
    .bestseller_products .bestseller__old_price_inner:after {
      content: '';
      display: block;
      position: absolute;
      width: 110%;
      height: 1px;
      background: #ca062b;
      left: -5%;
      top: 3.5px;
      -moz-transform: rotate(-8deg);
      -ms-transform: rotate(-8deg);
      -webkit-transform: rotate(-8deg);
      -o-transform: rotate(-8deg);
      transform: rotate(-8deg); }

.bestseller_products .bestseller__discount_label {
  position: absolute;
  background: #00ad1b;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  -webkit-background-size: 100%;
  background-size: 100%;
  text-align: center;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 25px;
  color: #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  border: 2px solid #fff;
  width: 74px;
  height: 74px;
  line-height: 79px;
  top: -21px;
  left: -11px;
  z-index: 1;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bestseller_products .bestseller__discount_label {
      width: 64px;
      height: 64px;
      line-height: 68px;
      font-size: 23px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bestseller_products .bestseller__discount_label {
      font-size: 19px;
      color: #fff;
      line-height: 59px;
      width: 54px;
      height: 54px;
      top: -18px;
      left: -11px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .bestseller__discount_label {
      font-size: 13px;
      color: #fff;
      line-height: 43px;
      width: 40px;
      height: 40px;
      top: -14px;
      left: 5px; } }
  .bestseller_products .bestseller__discount_label.biger_fix {
    font-size: 28px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .bestseller_products .bestseller__discount_label.biger_fix {
        font-size: 26px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .bestseller_products .bestseller__discount_label.biger_fix {
        font-size: 22px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .bestseller_products .bestseller__discount_label.biger_fix {
        font-size: 16px; } }

.mi_extra_field {
  padding-bottom: 5px; }
  .mi_extra_field.hidden {
    display: none; }
  .mi_extra_fields {
    text-align: left;
    font-size: 16px;
    margin: 20px 0 20px 68px;
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .mi_extra_fields {
        margin: 20px 0 20px 48px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .mi_extra_fields {
        font-size: 14px;
        margin: 20px 0 20px 0px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .mi_extra_fields {
        margin: 0 auto 15px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .mi_extra_fields {
        margin: 15px 0; } }
    .mi_extra_fields__name {
      font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .mi_extra_fields__value {
      padding: 0 0 0 0;
      font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .mi_extra_field__on {
    color: #28c427; }
    .mi_extra_field__on .mi_extra_fields__value {
      display: none; }
  .mi_extra_field__off {
    color: #de1f26; }
    .mi_extra_field__off .mi_extra_fields__value {
      display: none; }
  .mi_extra_field__units {
    position: absolute;
    bottom: -12px;
    left: -1px;
    font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .mi_extra_field__units {
        bottom: -17px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .mi_extra_field__units {
        left: 1px;
        border: -3px; } }

.productfull .prod_buttons {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .productfull .prod_buttons {
      min-width: 290px;
      max-width: 100%;
      position: relative; } }
  .productfull .prod_buttons .full-butt {
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 479px) {
      .productfull .prod_buttons .full-butt {
        float: right;
        margin: 0 12px 0 0; } }

.map {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .map {
      position: relative;
      z-index: 2; } }

.bottom.cart__bottom {
  position: relative; }
  .bottom.cart__bottom a.cart__btn {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    background: #0070c9;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    position: absolute;
    border: 0px none;
    display: inline-block;
    color: #ffffff;
    height: 48px;
    padding-top: 18px;
    width: 230px !important;
    top: -8px;
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .bottom.cart__bottom a.cart__btn {
        height: 36px;
        padding-top: 11px;
        width: 160px !important;
        top: -3px;
        font-size: 13px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .bottom.cart__bottom a.cart__btn {
        display: none; } }
    .bottom.cart__bottom a.cart__btn:hover {
      background: #005293; }

.prod_item__info_i strong {
  display: block;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  padding-bottom: 10px; }

@media (min-width: 1200px) {
  .prod_item__info_i {
    position: relative;
    z-index: 2;
    background: #fff;
    -webkit-box-shadow: 2px 3px 9px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 3px 9px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 3px 9px 0px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    padding: 15px;
    line-height: 18px; }
    .prod_item__info_i:after {
      display: block;
      content: '';
      position: absolute;
      width: 15px;
      height: 15px;
      background: #fff;
      bottom: 27px;
      left: -6px;
      z-index: 3;
      -ms-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); } }

.prod_item__info_w {
  /*me5*/
  /*me3-4*/
  /*me2*/ }
  @media (min-width: 1200px) {
    .prod_item__info_w {
      position: absolute;
      width: 49%;
      left: 50%;
      bottom: 40px;
      opacity: 0;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s; }
      .prod_item__info_w:before {
        display: block;
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: #fff;
        bottom: 26px;
        left: -6px;
        z-index: 1;
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.3); }
      .prod_item__info_w:after {
        display: block;
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        background: #fff;
        bottom: 27px;
        left: -6px;
        z-index: 3;
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); } }
  @media (min-width: 768px) and (max-width: 1199px) {
    .prod_item__info_w {
      background: #eee;
      padding: 0 19px 0;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
      margin-bottom: 0;
      overflow: hidden;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s;
      max-height: 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prod_item__info_w {
      background: #eee;
      padding: 0 18px 0 12px;
      margin-bottom: 0;
      overflow: hidden;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s;
      max-height: 0;
      position: relative; } }

@media (min-width: 1200px) {
  .prod_item__icon:hover + .prod_item__info_w {
    opacity: 1; } }

.prod_item__icon:hover + .prod_item__info_w,
.prod_item__icon.open + .prod_item__info_w {
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 1199px) {
    .prod_item__icon:hover + .prod_item__info_w,
    .prod_item__icon.open + .prod_item__info_w {
      max-height: 400px;
      padding: 14px 19px 10px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prod_item__icon:hover + .prod_item__info_w,
    .prod_item__icon.open + .prod_item__info_w {
      max-height: 400px;
      padding: 14px 18px 10px 12px; } }

.pb_fix__mob {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .pb_fix__mob {
      padding-bottom: 0 !important; } }

.mb_fix__mob {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .mb_fix__mob {
      margin-bottom: 0 !important; } }

.tabs-menu {
  text-align: center;
  margin-bottom: 24px; }
  .tabs-menu li {
    height: 30px;
    display: inline-block; }
    .tabs-menu li a {
      padding: 0 15px;
      color: #333333;
      text-decoration: none;
      font-size: 16px;
      line-height: 39px;
      font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      border-style: solid;
      border-color: rgba(0, 112, 201, 0);
      border-width: 0 0 3px;
      position: relative;
      z-index: 2;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s; }
      .tabs-menu li a:after {
        content: '';
        display: block;
        height: 1px;
        width: calc(100% + 6px);
        background: #d3d3d3;
        position: absolute;
        left: 0px;
        bottom: -1px;
        z-index: 1;
        opacity: 1;
        -webkit-transition: All 0.3s;
        -khtml-transition: All 0.3s;
        -moz-transition: All 0.3s;
        -ms-transition: All 0.3s;
        -o-transition: All 0.3s;
        transition: All 0.3s; }
      .tabs-menu li a:hover {
        color: #ee1164; }
    .tabs-menu li.current {
      position: relative; }
      .tabs-menu li.current a {
        color: #ee1164;
        border-color: #ee1164; }
        .tabs-menu li.current a:after {
          opacity: 0; }

.tab-content {
  display: none; }

#tab-1 {
  display: block; }

.contacts__text {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .contacts__text {
      padding-bottom: 20px; } }

.contacts__container {
  font-size: 16px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 21px;
  padding-bottom: 48px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .contacts__container {
      padding-bottom: 50px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .contacts__container {
      padding-bottom: 40px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .contacts__container {
      padding-bottom: 30px; } }
  .contacts__container sup {
    font-size: 11px;
    color: #888;
    line-height: 22px; }
    .contacts__container sup b {
      color: #000; }
  .contacts__container p {
    padding-bottom: 20px;
    padding-right: 10%; }
  .contacts__container strong {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .contacts__container a {
    color: #333;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s; }
    .contacts__container a:hover {
      color: #0070c9; }

.prep .tab {
  padding-top: 20px; }

.prep__title {
  text-transform: uppercase;
  font-size: 36px;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 14px;
  line-height: 40px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .prep__title {
      font-size: 21px;
      line-height: 27px;
      padding-bottom: 10px; } }
  .prep__title_1 {
    text-transform: uppercase;
    font-size: 20px;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 10px 0 12px; }
  .prep__title_2 {
    font-size: 16px;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 26px; }

.prep__desc {
  text-align: center;
  font-size: 16px;
  padding-bottom: 40px; }

.prep__subtitle {
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0070c9;
  font-size: 24px;
  line-height: 32px;
  padding-bottom: 25px; }

.prep__subinfo {
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  padding-bottom: 20px; }
  .prep__subinfo strong {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .prep__subinfo a {
    color: #0070c9; }

.prep__container p {
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 20px; }

.prep__container strong {
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.prep__container a {
  color: #0070c9;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.prep__container .video {
  width: 709px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .prep__container .video {
      width: 599px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .prep__container .video {
      width: 720px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .prep__container .video {
      width: 80vw;
      margin: 0 auto; } }
  .prep__container .video iframe {
    width: 100%;
    height: 372px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .prep__container .video iframe {
        height: 338px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .prep__container .video iframe {
        height: 405px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .prep__container .video iframe {
        height: 45vw; } }

.prep__important {
  font-size: 24px;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.prep__icon_01 {
  font-family: "GloberRegularItalic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #717171;
  padding: 4px 0 31px 58px;
  position: relative;
  font-size: 16px;
  line-height: 19px;
  display: block;
  min-height: 50px; }
  .prep__icon_01:after {
    content: '';
    display: block;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/tab_icon_1.png") left top no-repeat;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%; }

.prep__icon_02 {
  font-family: "GloberRegularItalic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #717171;
  padding-left: 59px;
  position: relative;
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 20px;
  display: block;
  min-height: 50px; }
  .prep__icon_02:after {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/tab_icon_2.png") left top no-repeat;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%; }

.prep__icon_03 {
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #717171;
  padding-left: 59px;
  position: relative;
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 20px;
  display: block;
  min-height: 20px; }
  .prep__icon_03:after {
    content: '';
    display: block;
    width: 42px;
    height: 53px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/tab_icon_3.png") left top no-repeat;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%; }

.prep__icon_04 {
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #717171;
  padding-left: 59px;
  position: relative;
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 20px;
  display: block;
  min-height: 20px;
  padding-right: 50px; }
  .prep__icon_04:after {
    content: '';
    display: block;
    width: 40px;
    height: 76px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/tab_icon_4.png") left top no-repeat;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%; }

#sp-main-body .rec_line {
  padding: 0 20px 22px 59px;
  position: relative;
  display: inline-block; }
  #sp-main-body .rec_line__num {
    position: absolute;
    font-size: 36px;
    color: #fff;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #0070c9;
    text-align: center;
    line-height: 54px;
    width: 45px;
    height: 45px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    top: 0;
    left: 0; }

.guarantee__title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 36px;
  padding: 17px 0 24px;
  text-align: center;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .guarantee__title {
      font-size: 25px;
      padding: 10px 0 15px; } }

.guarantee__subtitle {
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 24px;
  line-height: 27px;
  color: #0070c9;
  padding-bottom: 20px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .guarantee__subtitle {
      font-size: 19px;
      padding: 10px 0 15px;
      line-height: 26px; } }

.guarantee__text {
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  padding-bottom: 54px; }

.guarantee_reason {
  float: left;
  width: 20%;
  /*me4*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .guarantee_reason {
      width: 33%; }
      .guarantee_reason:nth-child(4) {
        clear: both;
        margin-left: 16.7%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .guarantee_reason {
      width: 49%; }
      .guarantee_reason:nth-child(odd) {
        clear: both; }
      .guarantee_reason:nth-child(5) {
        margin-left: 25%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .guarantee_reason {
      width: 49%; }
      .guarantee_reason:nth-child(odd) {
        clear: both; }
      .guarantee_reason:nth-child(5) {
        margin-left: 25%; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .guarantee_reason {
      width: 90%;
      float: none;
      margin: 0 auto 0px; }
      .guarantee_reason:nth-child(5) {
        margin-left: auto; } }
  .guarantee_reasons {
    zoom: 1;
    padding-bottom: 70px; }
    .guarantee_reasons:after {
      content: "";
      display: table;
      clear: both; }
  .guarantee_reason__img {
    height: 200px; }
    .guarantee_reason__img_1 {
      background: url("../img/gar_1.jpg") center top no-repeat;
      -moz-background-size: 180px;
      -o-background-size: 180px;
      -webkit-background-size: 180px;
      background-size: 180px; }
    .guarantee_reason__img_2 {
      background: url("../img/gar_2.jpg") center top no-repeat;
      -moz-background-size: 180px;
      -o-background-size: 180px;
      -webkit-background-size: 180px;
      background-size: 180px; }
    .guarantee_reason__img_3 {
      background: url("../img/gar_3.jpg") center top no-repeat;
      -moz-background-size: 180px;
      -o-background-size: 180px;
      -webkit-background-size: 180px;
      background-size: 180px; }
    .guarantee_reason__img_4 {
      background: url("../img/gar_4.jpg") center top no-repeat;
      -moz-background-size: 180px;
      -o-background-size: 180px;
      -webkit-background-size: 180px;
      background-size: 180px; }
    .guarantee_reason__img_5 {
      background: url("../img/gar_5.jpg") center top no-repeat;
      -moz-background-size: 180px;
      -o-background-size: 180px;
      -webkit-background-size: 180px;
      background-size: 180px; }
  .guarantee_reason__strong {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0 10px;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 19px; }
  .guarantee_reason__text {
    padding: 0 20px;
    text-align: center;
    display: block;
    font-size: 16px;
    line-height: 18px; }

.guarantee_form {
  width: 632px;
  -webkit-box-shadow: 0px 0px 31px 0px #dddddd;
  -moz-box-shadow: 0px 0px 31px 0px #dddddd;
  box-shadow: 0px 0px 31px 0px #dddddd;
  margin: 0 auto 70px;
  border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  display: block;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .guarantee_form {
      width: 90%; } }
  .guarantee_form__header {
    color: #fff;
    background: #0070c9;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 24px;
    line-height: 27px;
    padding: 30px 0 23px 22px;
    border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .guarantee_form__header {
        font-size: 18px;
        line-height: 24px;
        padding: 18px 0 13px 12px; } }
  .guarantee_form__content {
    padding: 38px 22px 3px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .guarantee_form__content {
        padding: 18px 12px 3px; } }
    .guarantee_form__content p {
      font-size: 16px;
      line-height: 25px;
      padding-bottom: 30px;
      /*me2*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .guarantee_form__content p {
          font-size: 14px;
          line-height: 20px;
          padding-bottom: 10px; } }
  .guarantee_form__is_in_1 {
    width: 60px;
    float: left;
    margin-right: 10px; }
  .guarantee_form__is_in_2 {
    width: 200px;
    float: left; }
  .guarantee_form__is label {
    color: #afafaf; }
  .guarantee_form .submit {
    display: none !important; }
  .guarantee_form .sppb-btn {
    cursor: pointer;
    padding: 5px 25px 0; }

#fin-custom {
  width: 100%; }

#form-row-name {
  width: 50%;
  float: left;
  font-size: 16px;
  padding: 0 0 0 22px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #form-row-name {
      width: 100% !important;
      float: none !important; } }
  #form-row-name input {
    background: #f5f7f7 !important;
    border: 0px none !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 90% !important; }
  #form-row-name label {
    display: block !important;
    padding-bottom: 7px !important; }
  #form-row-name .gcore-display-table {
    display: block; }

#form-row-phone {
  width: 50% !important;
  float: left !important;
  font-size: 16px !important;
  padding: 0 0 0 21px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #form-row-phone {
      width: 100% !important;
      float: none !important; } }
  #form-row-phone input {
    background: #f5f7f7 !important;
    border: 0px none !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 90% !important; }
  #form-row-phone label {
    display: block !important;
    padding-bottom: 7px !important; }
  #form-row-phone .gcore-display-table {
    display: block; }

#form-row-time {
  padding: 0 21px;
  font-size: 16px;
  padding-bottom: 8px;
  width: 307px; }
  #form-row-time .gcore-display-table {
    display: block; }
  #form-row-time select {
    background: #f5f7f7;
    border: 0px none !important;
    padding-bottom: 7px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; }
  #form-row-time label {
    display: block;
    padding-bottom: 7px; }

#form-row-message {
  width: 54%;
  float: left;
  padding: 0 21px;
  zoom: 1;
  margin-bottom: 25px;
  /*me2*/ }
  #form-row-message:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 200px) and (max-width: 767px) {
    #form-row-message {
      width: 100% !important;
      float: none !important; } }
  #form-row-message label {
    display: block;
    font-size: 16px;
    padding: 10px 0; }
  #form-row-message textarea {
    resize: none;
    width: 100% !important;
    float: left;
    margin: 0 5% 0 0;
    background: #f5f7f7;
    border: 0px none !important;
    height: 140px !important; }
  #form-row-message .guarantee_form__span {
    padding: 30px 0;
    display: block;
    width: 45%;
    float: right;
    font-size: 16px;
    line-height: 20px; }
    #form-row-message .guarantee_form__span strong {
      display: block;
      font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  #form-row-message .gcore-display-table {
    display: block; }

#form-row-submit5 {
  padding-left: 23px;
  padding-bottom: 13px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #form-row-submit5 {
      padding-left: 0px; }
      #form-row-submit5 #fin-submit5 {
        display: block;
        text-align: center; } }
  #form-row-submit5 input {
    color: #ffffff;
    background: #0070c9;
    border: 0 none;
    width: 173px !important;
    padding: 16px 0 24px;
    font-size: 15px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      #form-row-submit5 input {
        display: inline-block;
        float: left;
        margin: 0 0 0 20px; } }
    #form-row-submit5 input:hover {
      background: #005293; }

.form-row-message_desc {
  float: left;
  height: 196px;
  width: 45%;
  font-size: 16px;
  line-height: 25px;
  color: #333;
  padding-top: 56px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .form-row-message_desc {
      width: 100% !important;
      float: none !important;
      padding-top: 0;
      height: auto;
      text-align: left;
      padding: 0 20px 20px; } }
  .form-row-message_desc a {
    color: #333;
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

#fin-custom {
  border-bottom: 0.5px solid #d1d1d1; }

.del {
  font-size: 16px;
  line-height: 21px; }
  .del__container .prep__container {
    font-size: 14px; }
  .del_mian_title {
    text-transform: uppercase;
    text-align: center;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    line-height: 72px;
    padding-bottom: 5px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .del_mian_title {
        font-size: 7vw;
        line-height: 8vw; } }
  .del__subtitle {
    text-align: center;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .del__subtitle {
        padding: 10px 0 20px; } }
  .del__title {
    padding-bottom: 18px;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 24px;
    line-height: 27px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .del__title {
        text-align: center; } }
  .del img {
    width: 125px;
    margin: 46px 0 36px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .del img {
        margin: 15px auto 16px; } }
  .del p {
    padding-bottom: 19px;
    line-height: 20px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .del p {
        width: 80%;
        display: block;
        margin: 0 auto; } }
  .del .prep__container_1 img {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .del .prep__container_1 img {
        width: 156px;
        padding-left: 27px; } }
  .del .prep__container_4 img {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .del .prep__container_4 img {
        width: 156px;
        padding-left: 27px; } }
  .del .prep__container_5 img {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .del .prep__container_5 img {
        width: 143px;
        padding-left: 16px; } }

#sp-component #sp-page-builder .cert_cont {
  padding: 30px 20px 0px !important;
  margin-bottom: 0 !important; }
  #sp-component #sp-page-builder .cert_cont .sppb-title-heading {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      #sp-component #sp-page-builder .cert_cont .sppb-title-heading {
        font-size: 6vw !important;
        line-height: 7vw; } }
  #sp-component #sp-page-builder .cert_cont .sppb-title-subheading {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      #sp-component #sp-page-builder .cert_cont .sppb-title-subheading {
        font-size: 5vw !important;
        line-height: 5.5vw; } }

.sppb-gallery {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .sppb-gallery {
      text-align: center; } }
  .sppb-gallery li {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .sppb-gallery li {
        float: none; } }

.del_mian_title ~ .tabs-menu {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .del_mian_title ~ .tabs-menu {
      margin-bottom: 27px; } }

.pro {
  text-align: center; }
  .pro_title {
    font-size: 36px;
    color: #333333;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    padding: 18px 0 40px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .pro_title {
        padding: 10px 0;
        font-size: 24px; } }
  .pro__img {
    display: inline-block;
    width: 71%;
    padding: 4px 4px 68px 21px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .pro__img {
        width: 95%;
        padding: 20px 0 60px; } }
  .pro_subtitle {
    font-size: 24px;
    color: #0070c9;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    padding-bottom: 34px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .pro_subtitle {
        font-size: 21px;
        line-height: 27px; } }
  .pro__items {
    text-align: center;
    margin-bottom: 60px;
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .pro__items {
        margin-bottom: 20px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .pro__items {
        margin-bottom: 0; } }
  .pro_item {
    width: 33.2%;
    float: left;
    font-size: 16px;
    line-height: 20px;
    padding: 0 15px 0;
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .pro_item {
        width: 50%;
        padding-bottom: 20px; }
        .pro_item:last-child {
          margin-left: 25%; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .pro_item {
        width: 50%;
        font-size: 14px;
        line-height: 18px; }
        .pro_item:last-child {
          margin-left: 25%; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .pro_item {
        width: 100%;
        padding-bottom: 30px; }
        .pro_item:last-child {
          margin-left: 0%; } }
    .pro_item__img {
      display: inline-block;
      width: 125px; }
    .pro_item__title {
      font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      padding: 26px 0 22px;
      line-height: 19px;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .pro_item__title {
          padding: 16px 0 12px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .pro_item__title {
          padding: 10px 0 11px; } }
  .pro_ben {
    background: url("../img/icons/pro_ben.jpg");
    background-position: 50% top;
    -moz-background-size: 3000px;
    -o-background-size: 3000px;
    -webkit-background-size: 3000px;
    background-size: 3000px;
    text-align: left;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .pro_ben {
        -moz-background-size: 200vw;
        -o-background-size: 200vw;
        -webkit-background-size: 200vw;
        background-size: 200vw;
        background-repeat: no-repeat; } }
    .pro_ben ul {
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .pro_ben ul {
          padding-bottom: 20px; } }
    .pro_ben .sppb-container {
      padding: 10px 0 0 460px;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .pro_ben .sppb-container {
          padding: 10px 0 0 400px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .pro_ben .sppb-container {
          padding: 10px 0 0 188px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .pro_ben .sppb-container {
          padding: 10px; } }
    .pro_ben__title {
      font-size: 36px;
      color: #0061c3;
      font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      padding: 18px 0 24px;
      line-height: 42px;
      padding-right: 200px;
      /*me2*/
      /*me1*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .pro_ben__title {
          font-size: 6vw;
          padding: 9vw 0 3vw 37vw;
          line-height: 6vw; } }
      @media (min-width: 200px) and (max-width: 479px) {
        .pro_ben__title {
          padding: 4vw 0 3vw 39vw; } }
    .pro_ben__subtitle {
      font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #333333;
      font-size: 24px;
      padding: 0px 320px 35px 0;
      /*me4*/
      /*me3*/
      /*me2*/
      /*me1*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .pro_ben__subtitle {
          padding-bottom: 40px;
          padding-right: 70px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .pro_ben__subtitle {
          padding-bottom: 30px;
          padding-right: 0px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .pro_ben__subtitle {
          padding: 0 0 14vw 39vw;
          font-size: 3.9vw;
          line-height: 4vw; } }
      @media (min-width: 200px) and (max-width: 479px) {
        .pro_ben__subtitle {
          font-size: 4.9vw;
          line-height: 6vw; } }
    .pro_ben_li {
      display: block;
      position: relative;
      font-size: 16px;
      padding-left: 48px;
      padding-bottom: 50px;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .pro_ben_li {
          padding-bottom: 22px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .pro_ben_li {
          padding-bottom: 30px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .pro_ben_li {
          padding-bottom: 20px;
          padding-left: 36px; } }
      .pro_ben_li:after {
        display: block;
        width: 33px;
        height: 33px;
        position: absolute;
        left: 0;
        top: 0;
        content: '';
        background: url("../img/list_icon.png");
        background-repeat: no-repeat;
        -moz-background-size: 100%;
        -o-background-size: 100%;
        -webkit-background-size: 100%;
        background-size: 100%;
        /*me2*/
        /*me1*/ }
        @media (min-width: 200px) and (max-width: 767px) {
          .pro_ben_li:after {
            width: 23px;
            height: 23px;
            position: absolute;
            left: 10px; } }
        @media (min-width: 200px) and (max-width: 479px) {
          .pro_ben_li:after {
            width: 5vw;
            height: 5vw; } }
      .pro_ben_li__subtitle {
        text-transform: uppercase;
        font-size: 20px;
        font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #000;
        display: block;
        padding-bottom: 10px;
        /*me2*/
        /*me1*/ }
        @media (min-width: 200px) and (max-width: 767px) {
          .pro_ben_li__subtitle {
            font-size: 3vw; } }
        @media (min-width: 200px) and (max-width: 479px) {
          .pro_ben_li__subtitle {
            font-size: 4.5vw;
            padding: 0 0 7px; } }

.discount {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .discount {
      text-align: left; } }
  .discount p {
    padding: 8px 190px 47px;
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .discount p {
        padding: 8px 90px 47px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .discount p {
        padding: 8px 6vw 4vw;
        font-size: 14px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .discount p {
        padding: 8px 1vw 4vw;
        font-size: 13px; } }
  .discount__title {
    text-transform: uppercase;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    line-height: 44px;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .discount__title {
        font-size: 32px;
        line-height: 39px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .discount__title {
        font-size: 5.4vw;
        line-height: 6vw; } }
  .discount__img {
    display: block;
    width: 440px;
    margin: 0 auto 17px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .discount__img {
        display: block;
        width: 70%;
        margin: 0 auto 17px; } }
  .discount_check {
    background: #f1f1f1;
    margin-bottom: 10px; }
    .discount_check__title {
      color: #0070c9;
      text-transform: uppercase;
      font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 36px;
      line-height: 42px;
      padding: 100px 0 12px;
      /*me3*/
      /*me2*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .discount_check__title {
          padding: 40px 0 12px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .discount_check__title {
          font-size: 5.4vw;
          line-height: 6vw;
          padding: 6vw 0 2vw; } }
    .discount_check__subtitle {
      font-size: 24px;
      font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      padding-bottom: 15px;
      line-height: 28px;
      /*me2*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .discount_check__subtitle {
          font-size: 4.8vw;
          line-height: 5.4vw;
          padding: 6vw 0 2vw; } }
    .discount_check p {
      display: block;
      font-size: 16px;
      line-height: 24px;
      padding-bottom: 69px;
      padding-right: 40px;
      /*me3*/
      /*me2*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .discount_check p {
          padding-bottom: 29px; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .discount_check p {
          padding-right: 0;
          font-size: 13px;
          padding-bottom: 3vw; } }
    .discount_check__info {
      width: 46%;
      float: left;
      /*me3*/
      /*me2*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .discount_check__info {
          width: 53%; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .discount_check__info {
          width: 100%; } }
    .discount_check__img {
      width: 51.4%;
      padding: 25px 0;
      float: right;
      text-align: center;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .discount_check__img {
          padding: 85px 0; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .discount_check__img {
          width: 44%;
          padding: 100px 0px 100px;
          float: right;
          text-align: center; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .discount_check__img {
          width: 100%; } }
      .discount_check__img img {
        max-width: 90%;
        display: inline-block;
        /*me4*/ }
        @media (min-width: 992px) and (max-width: 1199px) {
          .discount_check__img img {
            max-width: 100%; } }

.main_com {
  text-align: center;
  border-bottom: 1px solid #bbbbbb;
  margin-bottom: 11px; }
  .main_com__title {
    padding: 17px 0 7px; }
  .main_com__text {
    font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 20px; }
  .main_com__item {
    width: 33%;
    float: left;
    padding: 0 10px 0;
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .main_com__item {
        width: 50%;
        padding: 0 10px 20px; } }
    @media (min-width: 200px) and (max-width: 480px) {
      .main_com__item {
        width: 90%;
        margin: 0 auto;
        float: none; } }
    .main_com__item:nth-child(3) {
      /*me2*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .main_com__item:nth-child(3) {
          margin-left: 25%;
          clear: both; } }
      @media (min-width: 200px) and (max-width: 480px) {
        .main_com__item:nth-child(3) {
          margin-left: auto; } }
    .main_com__item p {
      font-size: 16px;
      line-height: 19.5px;
      display: inline-block;
      padding: 10px 64px 0;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .main_com__item p {
          padding: 10px 24px 0; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .main_com__item p {
          padding: 10px 0px 0; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .main_com__item p {
          padding: 5px 0px 0; } }
    .main_com__item img {
      display: inline-block;
      width: 125px; }
    .main_com__items {
      zoom: 1;
      padding: 35px 0 51px;
      /*me2*/ }
      .main_com__items:after {
        content: "";
        display: table;
        clear: both; }
      @media (min-width: 200px) and (max-width: 767px) {
        .main_com__items {
          padding: 20px 0 10px; } }

.empty_page .empty__title {
  text-align: center;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #333333;
  font-size: 32px;
  margin: 39px 0 12px;
  letter-spacing: 0.6px;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .empty_page .empty__title {
      font-size: 27px;
      margin: 29px 0 2px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .empty_page .empty__title {
      font-size: 5vw;
      margin: 3vw 0 2vw;
      letter-spacing: 0; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .empty_page .empty__title {
      font-size: 7vw;
      margin: 40px 0 2vw; } }

.empty_page .empty__subtitle {
  text-align: center;
  font-size: 24px;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0070c9;
  letter-spacing: 0.5px;
  text-transform: none;
  padding-bottom: 40px;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .empty_page .empty__subtitle {
      font-size: 16px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .empty_page .empty__subtitle {
      font-size: 4vw;
      letter-spacing: 0; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .empty_page .empty__subtitle {
      font-size: 6.1vw;
      padding-bottom: 0; } }

#comjshop.empty_page {
  padding-bottom: 0;
  border: 0px none;
  margin-bottom: 30px !important;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #comjshop.empty_page {
      margin-bottom: 0px !important; } }

.custom_bot__cart .custom_bot_item__title {
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .custom_bot__cart .custom_bot_item__title {
      font-size: 18.5px;
      padding-bottom: 6px; } }

.custom_bot__cart .custom_bot_item__text {
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .custom_bot__cart .custom_bot_item__text {
      font-size: 17px;
      line-height: 19px;
      padding-bottom: 30px; } }

.custom_bot__cart .custom_bot strong {
  padding-bottom: 0px; }

.cart.mi_cart td {
  border: 0px none; }

.cart.mi_cart tr {
  border-bottom: 1px solid #e9e9e9; }
  .cart.mi_cart tr:last-child {
    border-bottom: 1px solid #b5b5b5; }

.cart.mi_cart .jshop_img_description_center {
  width: 105px; }
  .cart.mi_cart .jshop_img_description_center img {
    max-width: 100%; }

.cart.mi_cart .product_name {
  vertical-align: middle;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  padding: 5px 15px;
  text-align: left; }
  .cart.mi_cart .product_name a {
    color: #333; }

.cart.mi_cart .single_price {
  vertical-align: middle;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 30px;
  line-height: 42px;
  color: #333 !important;
  text-align: right; }
  .cart.mi_cart .single_price .data {
    position: relative;
    bottom: -5px;
    right: 30px; }
  .cart.mi_cart .single_price i {
    font-size: 16px;
    font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 60px;
    position: relative;
    top: 0px;
    right: 15px; }

.cart.mi_cart .total_price {
  vertical-align: middle;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 30px;
  line-height: 42px;
  color: #333 !important;
  text-align: right; }
  .cart.mi_cart .total_price i {
    font-size: 16px;
    font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 60px; }

.shops__title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 36px;
  padding: 15px 0 0px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .shops__title {
      font-size: 30px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .shops__title {
      font-size: 24px; } }

.shops__subtitle {
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  font-size: 24px;
  padding: 30px 0 20px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .shops__subtitle {
      font-size: 18px;
      padding: 10px 0 20px; } }

.shop__items {
  zoom: 1; }
  .shop__items:after {
    content: "";
    display: table;
    clear: both; }

.shop__item_1 {
  float: left;
  width: 10%;
  padding: 0 3px 10px;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .shop__item_1 {
      width: 16.6%;
      padding: 0 3px 7px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .shop__item_1 {
      width: 20%; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .shop__item_1 {
      width: 25%; } }
  .shop__item_1 img {
    width: 100%; }

.shop__item_2 {
  float: left;
  width: 12.5%;
  padding: 0 3px 10px;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .shop__item_2 {
      width: 16.6%;
      padding: 0 3px 7px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .shop__item_2 {
      width: 20%; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .shop__item_2 {
      width: 25%; } }
  .shop__item_2 img {
    width: 100%; }

.faq_page ~ .single_page .entry-header {
  display: none; }

.mi_cart__title {
  text-align: center;
  line-height: 80px;
  font-size: 36px !important;
  color: #333;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.mi_cart .remove img {
  opacity: 0.6;
  width: 18px;
  float: right;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s; }
  .mi_cart .remove img:hover {
    opacity: 1; }

.cart .quantity .inputbox {
  float: left;
  width: 40px;
  margin-bottom: 0px;
  padding: 2px 15px 0 !important;
  height: 39px !important; }

.cart .quantity .cart_reload {
  float: left;
  position: relative;
  left: 5px;
  top: 7px; }

.cart .quantity i {
  font-size: 19px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 42px;
  position: relative;
  right: -50px; }

body .jshop td {
  vertical-align: middle; }

.jshop_subtotal .total .name {
  color: #333;
  font-size: 18px;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.jshop_subtotal .total .value {
  color: #1dafed;
  font-size: 30px;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .jshop_subtotal .total .value i {
    font-size: 16px;
    font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    margin-left: 7px; }

.jshop.jshop_subtotal {
  margin: 35px 0 30px; }

#checkout .pull-left {
  text-transform: uppercase;
  font-size: 20px;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  background: #1dafed;
  text-align: center;
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s; }
  #checkout .pull-left a {
    color: #fff !important;
    display: block;
    padding: 14px 15px 9px 35px; }
  #checkout .pull-left:hover {
    background: #005293;
    color: #ffffff; }
  #checkout .pull-left:after {
    position: absolute;
    content: '';
    display: block;
    background: url("../img/icons/arrow.png");
    background-repeat: no-repeat;
    top: 14px;
    left: 16px;
    width: 9px;
    height: 12px;
    -moz-background-size: 9px;
    -o-background-size: 9px;
    -webkit-background-size: 9px;
    background-size: 9px;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    z-index: 2; }

#checkout .pull-right {
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  background: #17c60e;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  position: relative; }
  #checkout .pull-right a {
    color: #fff !important;
    display: block;
    padding: 14px 35px 9px 15px; }
  #checkout .pull-right:after {
    position: absolute;
    content: '';
    display: block;
    background: url("../img/icons/arrow.png");
    background-repeat: no-repeat;
    top: 14px;
    right: 16px;
    height: 12px;
    width: 9px;
    -moz-background-size: 9px;
    -o-background-size: 9px;
    -webkit-background-size: 9px;
    background-size: 9px;
    z-index: 2; }
  #checkout .pull-right:hover {
    background: #129b0b; }

form[name="updateCart"] {
  margin-bottom: 0px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    form[name="updateCart"] {
      margin-bottom: 0px; } }

.become_empty {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s; }
  .become_empty.open {
    max-height: 100%; }

.quick-checkout-form-block {
  padding-bottom: 87px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .quick-checkout-form-block {
      padding-bottom: 70px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .quick-checkout-form-block {
      padding-bottom: 64px; } }

#sp-header .logo img {
  height: 45px;
  display: block; }

#sp-page-builder .main__title {
  font-family: "MullerUltraLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-page-builder .main__title {
      font-size: 25px !important;
      line-height: 23px !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-page-builder .main__title {
      font-size: 6vw !important;
      line-height: 6vw !important; } }

#sp-page-builder .main__subtitle {
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 80px !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    #sp-page-builder .main__subtitle {
      font-size: 50px !important;
      line-height: 55px !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-page-builder .main__subtitle {
      font-size: 44px !important;
      line-height: 50px !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-page-builder .main__subtitle {
      font-size: 11vw !important;
      line-height: 12vw !important; } }

#sp-page-builder .main__section {
  -moz-background-size: 1560px !important;
  -o-background-size: 1560px !important;
  -webkit-background-size: 1560px !important;
  background-size: 1560px !important;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    #sp-page-builder .main__section {
      -moz-background-size: 1290px !important;
      -o-background-size: 1200px !important;
      -webkit-background-size: 1290px !important;
      background-size: 1290px !important;
      padding: 105px 0 62px !important;
      background-position: 50% 3px !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-page-builder .main__section {
      -moz-background-size: 980px !important;
      -o-background-size: 980px !important;
      -webkit-background-size: 980px !important;
      background-size: 980px !important;
      padding: 100px 0 25px !important;
      background-position: 50% 20px !important; } }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-page-builder .main__section {
      background: url("../img/main_header_m.jpg") !important;
      padding: 75vw 0 4vw !important;
      background-position: 50% 20px !important;
      -moz-background-size: 100% !important;
      -o-background-size: 100% !important;
      -webkit-background-size: 100% !important;
      background-size: 100% !important;
      background-repeat: no-repeat !important;
      text-align: center; } }
  #sp-page-builder .main__section .sppb-addon-container {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      #sp-page-builder .main__section .sppb-addon-container {
        padding: 0 0 0 0 !important; } }

#sp-page-builder .main__textsection {
  text-align: left;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-page-builder .main__textsection {
      text-align: center; } }
  #sp-page-builder .main__textsection p {
    font-size: 14.7px;
    line-height: 18px;
    padding-right: 10%;
    margin-bottom: 17px;
    /*me3*/
    /*me1*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      #sp-page-builder .main__textsection p {
        font-size: 14px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      #sp-page-builder .main__textsection p {
        font-size: 3vw;
        padding: 0 0 0 0;
        margin-bottom: 0;
        line-height: 3.7vw; } }
    @media (min-width: 200px) and (max-width: 479px) {
      #sp-page-builder .main__textsection p {
        font-size: 4.3vw;
        line-height: 5vw; } }
  #sp-page-builder .main__textsection .sppb-btn {
    text-transform: uppercase;
    line-height: 48px;
    padding-top: 4px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      #sp-page-builder .main__textsection .sppb-btn {
        line-height: 36px;
        margin-top: 20px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      #sp-page-builder .main__textsection .sppb-btn {
        text-transform: uppercase;
        line-height: 36px;
        padding-top: 4px;
        margin-top: 0; } }
    @media (min-width: 200px) and (max-width: 767px) {
      #sp-page-builder .main__textsection .sppb-btn {
        line-height: 36px;
        padding-top: 4px;
        margin-top: 18px; } }

#sp-page-builder .main__howto {
  border-top: 1px solid #b5b5b5;
  border-bottom: 1px solid #b5b5b5;
  padding: 30px 0 20px !important;
  text-align: center;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    #sp-page-builder .main__howto {
      padding: 20px 0 20px !important;
      margin-bottom: 20px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-page-builder .main__howto {
      padding: 10px 0 20px !important;
      margin-bottom: 10px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-page-builder .main__howto {
      padding: 2vw 0 4vw !important;
      margin-bottom: 0px; } }
  #sp-page-builder .main__howto_starter {
    padding-top: 0 !important;
    position: relative;
    top: -10px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      #sp-page-builder .main__howto_starter {
        top: 0; } }
    @media (min-width: 768px) and (max-width: 991px) {
      #sp-page-builder .main__howto_starter {
        top: 0; } }
    @media (min-width: 200px) and (max-width: 767px) {
      #sp-page-builder .main__howto_starter {
        top: 0; } }
  #sp-page-builder .main__howto_title {
    padding: 17px 0 0px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      #sp-page-builder .main__howto_title {
        padding: 17px 0 0px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      #sp-page-builder .main__howto_title {
        padding: 17px 0 0px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      #sp-page-builder .main__howto_title {
        padding: 15px 0 0; } }
  #sp-page-builder .main__howto_img {
    display: block;
    background: url("../img/kak_3_en.jpg");
    width: 100%;
    -moz-background-size: 75%;
    -o-background-size: 75%;
    -webkit-background-size: 75%;
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: 50% 0;
    height: 210px;
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      #sp-page-builder .main__howto_img {
        -moz-background-size: 85%;
        -o-background-size: 85%;
        -webkit-background-size: 85%;
        background-size: 85%; } }
    @media (min-width: 768px) and (max-width: 991px) {
      #sp-page-builder .main__howto_img {
        -moz-background-size: 110%;
        -o-background-size: 110%;
        -webkit-background-size: 110%;
        background-size: 110%; } }
    @media (min-width: 601px) and (max-width: 767px) {
      #sp-page-builder .main__howto_img {
        height: 26vw;
        -moz-background-size: 110%;
        -o-background-size: 110%;
        -webkit-background-size: 110%;
        background-size: 110%; } }
    @media (min-width: 200px) and (max-width: 600px) {
      #sp-page-builder .main__howto_img {
        background: url("../img/kak_mob_2_en.jpg") 50% 0 no-repeat;
        -moz-background-size: 90%;
        -o-background-size: 90%;
        -webkit-background-size: 90%;
        background-size: 90%;
        height: 66vw; } }
    @media (min-width: 200px) and (max-width: 479px) {
      #sp-page-builder .main__howto_img {
        background: url("../img/kak_mob_en.jpg") 50% 0 no-repeat;
        -moz-background-size: 220px;
        -o-background-size: 220px;
        -webkit-background-size: 220px;
        background-size: 220px;
        height: 440px; } }
  #sp-page-builder .main__howto a {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: inline-block;
    width: auto;
    margin: 22px 23px 28px 0;
    font-size: 16px;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      #sp-page-builder .main__howto a {
        margin: 2px 3px 14px 0; } }

#sp-page-builder .main__socials_box {
  min-height: 214px;
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 50px; }

#sp-page-builder .main__socials .sppb-addon-title {
  font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding: 32px 0 17px; }

#sp-page-builder .main__socials .sppb-addon-content {
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  font-size: 16.2px;
  line-height: 21px;
  padding-bottom: 37px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-page-builder .main__socials .sppb-addon-content {
      padding-bottom: 10px; } }

#sp-page-builder .main_info .sppb-title-heading {
  text-transform: uppercase;
  font-size: 36px;
  padding: 17px 0 0px;
  text-align: center;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

#sp-page-builder .main_info__item {
  text-align: center;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 56px; }
  #sp-page-builder .main_info__item .sppb-addon-title {
    text-transform: uppercase;
    padding-bottom: 35px; }
  #sp-page-builder .main_info__item strong {
    display: block;
    font-size: 19px;
    line-height: 22px;
    padding-bottom: 10px; }
  #sp-page-builder .main_info__item a {
    font-size: 18px; }
  #sp-page-builder .main_info__item_img {
    display: block;
    margin: 0 auto 48px; }
    #sp-page-builder .main_info__item_img img {
      height: 70px;
      display: inline-block; }

#sp-page-builder .main__socials_container .sppb-container {
  padding-bottom: 20px;
  border-bottom: 1px solid #b5b5b5; }

#sp-page-builder .prob__bc {
  font-size: 14.7px;
  padding-bottom: 19px; }

#sp-page-builder .prob_header {
  -moz-background-size: 1560px !important;
  -o-background-size: 1560px !important;
  -webkit-background-size: 1560px !important;
  background-size: 1560px !important;
  height: 240px; }

#sp-page-builder .prob__textsection .sppb-addon-title {
  font-size: 40px;
  font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif; }

#sp-page-builder .prob__textsection .sppb-addon-content {
  font-size: 14.8px;
  line-height: 24px;
  text-transform: uppercase;
  padding: 15px 0 0 31px; }
  #sp-page-builder .prob__textsection .sppb-addon-content div {
    color: #0070c9; }

#sp-page-builder .prob_content {
  text-align: center; }
  #sp-page-builder .prob_content .sppb-addon-title {
    font-size: 16px;
    padding-bottom: 20px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase; }
  #sp-page-builder .prob_content .sppb-addon-content {
    font-size: 16px;
    padding-bottom: 20px; }
  #sp-page-builder .prob_content .sppb-title-heading {
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    padding: 18px 0 0;
    margin-bottom: 0px; }
  #sp-page-builder .prob_content__header {
    text-align: center; }
    #sp-page-builder .prob_content__header .sppb-addon-title {
      font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #0070c9;
      padding: 47px 0 27px;
      font-size: 27px;
      text-transform: uppercase;
      text-align: center; }

.sp-contact-info {
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px; }

.prob_mid {
  height: 690px;
  background-position: 50% 50%; }

.prob_center__title {
  text-transform: uppercase;
  font-size: 23px;
  padding: 45px 0 70px 67px;
  line-height: 27px; }
  .prob_center__title h3 {
    font-size: 36px;
    padding-bottom: 6px;
    line-height: 50px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.prob_center {
  padding-left: 67px;
  font-size: 16px;
  padding-bottom: 40px;
  line-height: 22px; }
  .prob_center .sppb-addon-title {
    font-size: 20px;
    line-height: 27px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 6px;
    text-transform: uppercase; }

.mi_breadcrumbs__1 .breadcrumb_section__bg {
  background: url(../img/head_01.jpg) 50% 50% no-repeat;
  -moz-background-size: 2132px;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  border-bottom: 0.5px solid #d1d1d1;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 1199px) {
    .mi_breadcrumbs__1 .breadcrumb_section__bg:after {
      width: 100%;
      height: 237px;
      display: block;
      position: absolute;
      content: '';
      z-index: 2;
      top: 0;
      left: 0;
      background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.62) 28%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 100%);
      background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.62) 28%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.62) 28%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); } }

.mi_breadcrumbs__2 .breadcrumb_section__bg {
  background: url(../img/head_02.jpg) 50% 50% no-repeat;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  border-bottom: 0.5px solid #d1d1d1; }

.mi_breadcrumbs__3 .breadcrumb_section__bg {
  background: url(../img/head_03.jpg) 50% 50% no-repeat;
  -moz-background-size: 2132px;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  border-bottom: 0.5px solid #d1d1d1;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 1199px) {
    .mi_breadcrumbs__3 .breadcrumb_section__bg:after {
      width: 100%;
      height: 237px;
      display: block;
      position: absolute;
      content: '';
      z-index: 2;
      top: 0;
      left: 0;
      background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
      background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
      background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0) 58%, rgba(255, 255, 255, 0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); } }

.mi_breadcrumbs__4 .breadcrumb_section__bg {
  background: url(../img/head_04.jpg) 50% 50% no-repeat;
  -moz-background-size: 1920px;
  -o-background-size: 1920px;
  -webkit-background-size: 1920px;
  background-size: 1920px;
  border-bottom: 0.5px solid #d1d1d1; }

.mi_breadcrumbs__5 .breadcrumb_section__bg {
  background: url(../img/head_05.jpg) 50% 50% no-repeat;
  -moz-background-size: 2132px;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  border-bottom: 0.5px solid #d1d1d1; }

.mi_breadcrumbs__6 .breadcrumb_section__bg {
  background: url(../img/head_06.jpg) 50% 50% no-repeat;
  -moz-background-size: 2132px;
  -o-background-size: 2132px;
  -webkit-background-size: 2132px;
  background-size: 2132px;
  border-bottom: 0.5px solid #d1d1d1; }
  .mi_breadcrumbs__6 .breadcrumb_section__bg:after {
    /*me4*/
    /*me3*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .mi_breadcrumbs__6 .breadcrumb_section__bg:after {
        position: absolute;
        width: 100%;
        height: 237px;
        top: 0;
        left: 0;
        background: -moz-linear-gradient(-45deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        background: -webkit-linear-gradient(-45deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
        content: ''; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .mi_breadcrumbs__6 .breadcrumb_section__bg:after {
        position: absolute;
        width: 100%;
        height: 237px;
        top: 0;
        left: 0;
        background: -moz-linear-gradient(-45deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        background: -webkit-linear-gradient(-45deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.85) 41%, rgba(255, 255, 255, 0) 68%, rgba(255, 255, 255, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
        content: ''; } }

.breadcrumb_section {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .breadcrumb_section {
      display: none; } }
  .breadcrumb_section__wrap {
    display: block;
    position: relative; }
  .breadcrumb_section__bg {
    height: 237px;
    position: absolute;
    width: 105vw;
    top: 0px;
    left: calc(570px - 50vw);
    z-index: 1;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .breadcrumb_section__bg {
        left: calc(470px - 50vw); } }
    @media (min-width: 768px) and (max-width: 991px) {
      .breadcrumb_section__bg {
        left: calc(360px - 50vw); } }
  .breadcrumb_section__bread {
    position: relative;
    z-index: 2;
    padding: 8px 8px 3px 0;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.49);
    font-size: 15px;
    display: inline-block; }
    .breadcrumb_section__bread a {
      color: #333; }
  .breadcrumb_section__title {
    position: relative;
    text-transform: uppercase;
    font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    z-index: 2;
    font-size: 40px;
    padding: 19px 0 0; }
  .breadcrumb_section__nav {
    position: relative;
    z-index: 2;
    padding: 4px 0 0 0;
    min-height: 197px;
    margin-bottom: 0;
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .breadcrumb_section__nav {
        padding-bottom: 16px;
        -webkit-transition: All 0.3s;
        -khtml-transition: All 0.3s;
        -moz-transition: All 0.3s;
        -ms-transition: All 0.3s;
        -o-transition: All 0.3s;
        transition: All 0.3s;
        width: 100%;
        position: relative;
        min-height: 30px;
        margin: 15px 0 0;
        z-index: 969; } }
    .breadcrumb_section__nav.open {
      /*me2*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav.open:after {
          opacity: 0; } }
    .breadcrumb_section__nav .sppb-addon-title {
      font-size: 40px;
      font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      padding-bottom: 13px;
      /*me2*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav .sppb-addon-title {
          font-size: 27px;
          line-height: 57px;
          padding-bottom: 0px;
          cursor: pointer;
          position: relative;
          display: inline-block;
          /*me1*/ } }
  @media (min-width: 200px) and (max-width: 767px) and (min-width: 200px) and (max-width: 479px) {
    .breadcrumb_section__nav .sppb-addon-title {
      font-size: 16px;
      line-height: 49px; } }
      @media (min-width: 200px) and (max-width: 767px) {
          .breadcrumb_section__nav .sppb-addon-title:after {
            font-family: "FontAwesome";
            speak: none;
            font-style: normal;
            font-weight: normal;
            position: relative;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: absolute;
            content: "\f105";
            display: block;
            color: #333;
            -webkit-transition: All 0.3s;
            -khtml-transition: All 0.3s;
            -moz-transition: All 0.3s;
            -ms-transition: All 0.3s;
            -o-transition: All 0.3s;
            transition: All 0.3s;
            right: -15px;
            top: 9px;
            font-size: 26px;
            /*me1*/ } }
    @media (min-width: 200px) and (max-width: 767px) and (min-width: 200px) and (max-width: 479px) {
      .breadcrumb_section__nav .sppb-addon-title:after {
        top: 7px; } }
    .breadcrumb_section__nav li {
      /*me2*/
      /*me1*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav li {
          text-align: center; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav li {
          text-align: right !important; } }
    .breadcrumb_section__nav a {
      text-transform: uppercase;
      font-size: 15px;
      line-height: 24px;
      color: #333;
      display: inline-block !important;
      padding: 0 0 0 32px !important;
      /*me2*/
      /*me1*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav a {
          padding: 0 0 0 0 !important; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav a {
          text-align: right !important; } }
      .breadcrumb_section__nav a:hover {
        background-color: transparent !important;
        color: #0070c9; }
    .breadcrumb_section__nav .parent > ul {
      display: none;
      /*me1*/ }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav .parent > ul {
          text-align: right !important; } }
    .breadcrumb_section__nav .current, .breadcrumb_section__nav .alias-parent-active {
      position: relative;
      padding-left: 20px;
      /*me2*/
      /*me1*/ }
      .breadcrumb_section__nav .current a, .breadcrumb_section__nav .alias-parent-active a {
        color: #0070c9;
        font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
        /*me1*/ }
        @media (min-width: 200px) and (max-width: 479px) {
          .breadcrumb_section__nav .current a, .breadcrumb_section__nav .alias-parent-active a {
            text-align: right !important; } }
        .breadcrumb_section__nav .current a:after, .breadcrumb_section__nav .alias-parent-active a:after {
          /*me2*/ }
          @media (min-width: 200px) and (max-width: 767px) {
            .breadcrumb_section__nav .current a:after, .breadcrumb_section__nav .alias-parent-active a:after {
              content: '';
              position: absolute;
              top: 0;
              left: -20px;
              width: 20px;
              height: 20px;
              background: url("../img/icons/s01.png") no-repeat;
              -moz-background-size: 18px;
              -o-background-size: 18px;
              -webkit-background-size: 18px;
              background-size: 18px;
              display: block; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav .current, .breadcrumb_section__nav .alias-parent-active {
          padding-left: 0; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .breadcrumb_section__nav .current, .breadcrumb_section__nav .alias-parent-active {
          text-align: right !important; } }
      .breadcrumb_section__nav .current:after, .breadcrumb_section__nav .alias-parent-active:after {
        content: '';
        position: absolute;
        top: 0;
        left: 30px;
        width: 20px;
        height: 20px;
        background: url("../img/icons/s01.png") no-repeat;
        -moz-background-size: 18px;
        -o-background-size: 18px;
        -webkit-background-size: 18px;
        background-size: 18px;
        display: block;
        /*me2*/ }
        @media (min-width: 200px) and (max-width: 767px) {
          .breadcrumb_section__nav .current:after, .breadcrumb_section__nav .alias-parent-active:after {
            display: none; } }

.breadcrumb_section__nav__prep:before {
  content: 'Fermentos lácteos';
  display: block;
  font-size: 40px;
  font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding-bottom: 13px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .breadcrumb_section__nav__prep:before {
      text-align: center;
      font-size: 35px;
      line-height: 50px;
      padding-bottom: 18px;
      cursor: pointer; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .breadcrumb_section__nav__prep:before {
      display: none !important; } }

.breadcrumb_section__nav__cart:before {
  content: 'Cart';
  display: block;
  font-size: 40px;
  font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  padding-bottom: 13px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .breadcrumb_section__nav__cart:before {
      text-align: center;
      font-size: 35px;
      line-height: 50px;
      padding-bottom: 18px;
      cursor: pointer; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .breadcrumb_section__nav__cart:before {
      display: none !important; } }

.posts_title {
  text-transform: uppercase;
  font-size: 36px;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 40px 0 40px;
  text-align: center;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .posts_title {
      font-size: 24px;
      padding: 24px 0 20px;
      text-align: left;
      line-height: 50px;
      padding-bottom: 18px;
      cursor: pointer;
      font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
      display: inline-block;
      position: relative;
      /*me1*/ } }
  @media (min-width: 200px) and (max-width: 767px) and (min-width: 200px) and (max-width: 479px) {
    .posts_title {
      font-size: 15px;
      font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; } }
  @media (min-width: 200px) and (max-width: 767px) {
      .posts_title:after {
        font-family: "FontAwesome";
        speak: none;
        font-style: normal;
        font-weight: normal;
        position: relative;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        content: "\f05";
        display: block;
        color: #333;
        -webkit-transition: All 0.3s;
        -khtml-transition: All 0.3s;
        -moz-transition: All 0.3s;
        -ms-transition: All 0.3s;
        -o-transition: All 0.3s;
        transition: All 0.3s;
        right: -25px;
        top: 31px;
        font-size: 26px; } }

.menucat_selecter {
  text-align: left;
  margin-bottom: 39px; }
  .menucat_selecter li {
    height: 30px;
    text-align: center;
    display: inline-block; }
    .menucat_selecter li a {
      padding: 0 15px;
      color: #333333;
      text-decoration: none;
      font-size: 16px;
      line-height: 39px;
      font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      border-style: solid;
      border-color: rgba(0, 112, 201, 0);
      border-width: 0 0 3px;
      position: relative;
      z-index: 2;
      -webkit-transition: All 0.3s;
      -khtml-transition: All 0.3s;
      -moz-transition: All 0.3s;
      -ms-transition: All 0.3s;
      -o-transition: All 0.3s;
      transition: All 0.3s; }
      .menucat_selecter li a:after {
        content: '';
        display: block;
        height: 1px;
        width: calc(100% + 6px);
        background: #d3d3d3;
        position: absolute;
        left: 0px;
        bottom: -1px;
        z-index: 1;
        opacity: 1;
        -webkit-transition: All 0.3s;
        -khtml-transition: All 0.3s;
        -moz-transition: All 0.3s;
        -ms-transition: All 0.3s;
        -o-transition: All 0.3s;
        transition: All 0.3s; }
      .menucat_selecter li a:hover {
        color: #ee1164; }
    .menucat_selecter li.current {
      position: relative; }
      .menucat_selecter li.current a {
        color: #ed145b;
        border-color: #ed145b; }
        .menucat_selecter li.current a:after {
          opacity: 0; }

.top_hits_products .jshop_price {
  display: inline-block;
  padding: 0 0px 0 0;
  position: relative; }
  .top_hits_products .jshop_price_outer {
    width: 75px;
    float: left;
    position: relative;
    top: 7px; }
  .top_hits_products .jshop_price span {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 25px;
    color: #1dafed;
    line-height: 24px;
    padding: 8px 0 0;
    display: block; }
  .top_hits_products .jshop_price .price {
    font-size: 11px;
    color: #333;
    position: absolute;
    font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
    left: 0;
    bottom: -7px;
    width: 85px; }
  .top_hits_products .jshop_price .top_hits_products__old_price {
    position: absolute;
    height: 14px;
    font-size: 17px;
    top: -7px;
    right: 2px; }
    .top_hits_products .jshop_price .top_hits_products__old_price_inner {
      position: relative;
      display: inline-block;
      font-size: 14px;
      color: #555555;
      line-height: 16px;
      padding: 0 0 0;
      font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif; }
      .top_hits_products .jshop_price .top_hits_products__old_price_inner:after {
        content: '';
        display: block;
        position: absolute;
        width: 110%;
        height: 1px;
        background: #ca062b;
        left: -5%;
        top: 4.5px;
        -moz-transform: rotate(-8deg);
        -ms-transform: rotate(-8deg);
        -webkit-transform: rotate(-8deg);
        -o-transform: rotate(-8deg);
        transform: rotate(-8deg); }

.top_hits_products .jshop_price .top_hits_products__old_price {
  top: -10px; }

.top_hits_products .jshop_price .price {
  bottom: -13px; }

.assort__section {
  border-bottom: 1px solid #b5b5b5;
  zoom: 1;
  padding: 0 71px 35px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  .assort__section:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .assort__section {
      padding: 0 13px 25px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .assort__section {
      padding: 0 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .assort__section {
      padding: 0 0; } }
  @media (min-width: 1200px) {
    .assort__section .mi__product {
      padding: 0 0 0 28px; }
      .assort__section .mi__product > .image {
        margin-bottom: -17px;
        position: relative;
        padding-right: 28px;
        z-index: 1; }
      .assort__section .mi__product > .name {
        position: relative;
        z-index: 2; } }

.readmore_btn_opn {
  position: relative;
  width: 100px !important;
  margin: 0 auto;
  padding-right: 25px;
  color: #0070c9;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .readmore_btn_opn:after {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/icons/s01.png) no-repeat;
    width: 17px;
    height: 17px;
    -moz-background-size: 17px !important;
    -o-background-size: 17px !important;
    -webkit-background-size: 17px !important;
    background-size: 17px !important;
    right: -0px;
    top: 0px;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }

.readmore_btn_cls {
  position: relative;
  width: 72px !important;
  margin: 0 auto;
  padding-right: 25px;
  color: #0070c9;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
  .readmore_btn_cls:after {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/icons/s01.png) no-repeat;
    width: 17px;
    height: 17px;
    -moz-background-size: 17px !important;
    -o-background-size: 17px !important;
    -webkit-background-size: 17px !important;
    background-size: 17px !important;
    right: -0px;
    top: 0px;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg); }

.star__list .current {
  position: relative;
  padding-left: 20px; }
  .star__list .current a {
    color: #0070c9; }
  .star__list .current:after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 20px;
    height: 20px;
    background: url("../img/icons/s01.png") no-repeat;
    -moz-background-size: 18px;
    -o-background-size: 18px;
    -webkit-background-size: 18px;
    background-size: 18px;
    display: block; }

.star__list .parent > ul {
  display: none; }

.prob__list .current {
  position: relative;
  padding-left: 20px; }
  .prob__list .current a {
    color: #0070c9; }
  .prob__list .current:after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 20px;
    height: 20px;
    background: url("../img/icons/s01.png") no-repeat;
    -moz-background-size: 18px;
    -o-background-size: 18px;
    -webkit-background-size: 18px;
    background-size: 18px;
    display: block; }

.con-wrap {
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }
  .con-wrap__min {
    display: inline-block;
    width: 24px;
    height: 24px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 0 0 5px 0 rgba(182, 182, 182, 0.8);
    -moz-box-shadow: 0 0 5px 0 rgba(182, 182, 182, 0.8);
    box-shadow: 0 0 5px 0 rgba(182, 182, 182, 0.8);
    font-size: 25px;
    text-align: center;
    line-height: 30px;
    position: relative;
    top: -4px;
    cursor: pointer;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s; }
    .con-wrap__min:before {
      content: '-'; }
    .con-wrap__min:hover {
      background: #eeeeee; }
  .con-wrap__pls {
    display: inline-block;
    width: 24px;
    height: 24px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 0 0 5px 0 rgba(182, 182, 182, 0.8);
    -moz-box-shadow: 0 0 5px 0 rgba(182, 182, 182, 0.8);
    box-shadow: 0 0 5px 0 rgba(182, 182, 182, 0.8);
    font-size: 21px;
    text-align: center;
    line-height: 30px;
    position: relative;
    top: -4px;
    cursor: pointer;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s; }
    .con-wrap__pls:before {
      content: '+'; }
    .con-wrap__pls:hover {
      background: #eeeeee; }

.bestseller_products .con-wrap {
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  padding-left: 5px;
  padding-right: 10px;
  margin-right: 15px;
  margin-left: 15px;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .bestseller_products .con-wrap {
      margin: 0 14px 0 10px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .con-wrap {
      width: 112px;
      text-align: center;
      padding: 0; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .bestseller_products .con-wrap {
      width: calc(50vw - 70px);
      margin: 0px;
      position: relative;
      left: 0; } }
  .bestseller_products .con-wrap__pls {
    top: 6px;
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .bestseller_products .con-wrap__pls {
        margin-left: 0px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .bestseller_products .con-wrap__pls {
        margin-left: 0px; } }
    @media (min-width: 200px) and (max-width: 359px) {
      .bestseller_products .con-wrap__pls {
        display: none; } }
  .bestseller_products .con-wrap__min {
    top: 6px;
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .bestseller_products .con-wrap__min {
        margin-right: 0px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .bestseller_products .con-wrap__min {
        margin-right: 0px; } }
    @media (min-width: 200px) and (max-width: 359px) {
      .bestseller_products .con-wrap__min {
        display: none; } }

.mi__product .con-wrap__pls {
  top: 6px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) {
    .mi__product .con-wrap__pls {
      display: none; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .mi__product .con-wrap__pls {
      display: none; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mi__product .con-wrap__pls {
      display: none; } }

.mi__product .con-wrap__min {
  top: 6px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) {
    .mi__product .con-wrap__min {
      display: none; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .mi__product .con-wrap__min {
      display: none; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mi__product .con-wrap__min {
      display: none; } }

.probio__item .prod__img_wrap {
  width: 90%;
  /*me5*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) {
    .probio__item .prod__img_wrap {
      margin: -10px 0 10px 17px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .probio__item .prod__img_wrap {
      width: 100%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .probio__item .prod__img_wrap {
      max-width: 360px; } }

.quick__total {
  text-align: center; }
  .quick__total_name {
    color: #333;
    font-size: 18px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase; }
  .quick__total_value {
    color: #1dafed;
    font-size: 30px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.quick__title {
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 36px;
  padding: 40px 0 20px; }

.quick__subtitle {
  font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 27px;
  line-height: 30px;
  color: #0070c9;
  text-transform: uppercase;
  padding-bottom: 15px; }

.quick__subtext {
  font-size: 16px;
  padding-bottom: 10px;
  display: block; }

.quick__delivery {
  font-size: 16px; }
  .quick__delivery_name {
    font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 5px; }
  .quick__delivery_desc {
    padding-bottom: 15px;
    display: inline-block; }
  .quick__delivery_addition {
    font-size: 16px;
    line-height: 21px; }
    .quick__delivery_addition_title {
      font-size: 17px;
      text-transform: uppercase;
      color: #0070c9;
      font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
      display: block;
      padding-bottom: 5px; }
    .quick__delivery_addition b {
      font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.quick__payment_title {
  font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 27px;
  line-height: 30px;
  color: #0070c9;
  text-transform: uppercase;
  padding: 25px 0 15px;
  display: block; }

.quick__payment_name {
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 5px; }

.quick__payment_desc {
  padding-bottom: 15px;
  display: inline-block; }

.quick_checkout {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  background: #0070c9;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: All 0.3s;
  -khtml-transition: All 0.3s;
  -moz-transition: All 0.3s;
  -ms-transition: All 0.3s;
  -o-transition: All 0.3s;
  transition: All 0.3s;
  position: relative;
  border: 0px none;
  display: inline-block;
  color: #ffffff;
  height: 48px;
  padding-top: 5px;
  width: 140px !important; }
  .quick_checkout:hover {
    background: #005293; }

.dz__title {
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  text-transform: uppercase;
  padding: 10px 0 33px;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz__title {
      font-size: 24px;
      line-height: 32px;
      padding: 0px 0 23px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .dz__title {
      font-size: 21px;
      line-height: 28px; } }

.dz__subtitle {
  font-size: 20px;
  line-height: 24.5px;
  color: #333;
  text-align: center;
  padding: 0 180px 25px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz__subtitle {
      font-size: 18px;
      line-height: 24px;
      color: #777777;
      text-align: center;
      padding: 0 40px 10px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz__subtitle {
      font-size: 16px;
      line-height: 21px;
      color: #777777;
      text-align: center;
      padding: 0 20px 10px; } }

.dz_head {
  background: url("../img/dz_1.jpg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  -webkit-background-size: 100%;
  background-size: 100%;
  /*me4*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .dz_head {
      background-position: 50% 30%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz_head {
      background-position: -165px -20px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_head {
      background: url("../img/dz_1m.jpg");
      background-position: 50% 0;
      background-repeat: no-repeat;
      -moz-background-size: 70%;
      -o-background-size: 70%;
      -webkit-background-size: 70%;
      background-size: 70%; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .dz_head {
      -moz-background-size: 100%;
      -o-background-size: 100%;
      -webkit-background-size: 100%;
      background-size: 100%; } }
  .dz_head__content {
    font-size: 16px;
    line-height: 25px;
    padding: 24px 610px 58px 0;
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .dz_head__content {
        font-size: 14px;
        line-height: 22px;
        padding: 24px 490px 28px 0; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .dz_head__content {
        font-size: 14px;
        line-height: 22px;
        padding: 24px 0px 18px 0; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_head__content {
        font-size: 13px;
        line-height: 21px;
        padding: 46vw 0 0vw 0; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .dz_head__content {
        padding: 63vw 0 0vw 0; } }
  .dz_head__title {
    font-size: 24px;
    line-height: 35px;
    color: #0070c9;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 0 0 20px;
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .dz_head__title {
        font-size: 24px;
        line-height: 30px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .dz_head__title {
        padding: 236px 162px 24px;
        font-size: 24px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_head__title {
        font-size: 23px;
        line-height: 32px;
        padding: 0 0 7px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .dz_head__title {
        font-size: 20px;
        line-height: 27px; } }

.dz_middle {
  font-size: 16px;
  line-height: 25px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .dz_middle {
      font-size: 14px;
      line-height: 22px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz_middle {
      font-size: 14px;
      line-height: 22px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_middle {
      font-size: 13px;
      line-height: 21px; } }
  .dz_middle__content_title {
    font-size: 36px;
    line-height: 42px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    text-transform: uppercase;
    padding: 0 20px 13px 0px;
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .dz_middle__content_title {
        font-size: 30px;
        line-height: 36px;
        padding: 0 0 10px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_middle__content_title {
        font-size: 24px;
        line-height: 32px;
        padding: 0 0 5px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .dz_middle__content_title {
        font-size: 21px;
        line-height: 28px; } }
  .dz_middle__content_subtitle {
    font-size: 24px;
    line-height: 35px;
    color: #0070c9;
    font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 40px;
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .dz_middle__content_subtitle {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 30px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .dz_middle__content_subtitle {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 25px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_middle__content_subtitle {
        font-size: 23px;
        line-height: 32px;
        padding-bottom: 20px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .dz_middle__content_subtitle {
        font-size: 20px;
        line-height: 27px; } }
  .dz_middle__content_section {
    padding-bottom: 57px;
    border-bottom: 1px solid #b5b5b5;
    margin-bottom: 62px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .dz_middle__content_section {
        padding-bottom: 45px;
        margin-bottom: 45px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .dz_middle__content_section {
        padding-bottom: 35px;
        margin-bottom: 35px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_middle__content_section {
        padding-bottom: 4vw;
        margin-bottom: 4vw; } }
  .dz_middle__sidebar_title {
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 27px;
    padding: 4px 60px 0 50px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .dz_middle__sidebar_title {
        padding: 4px 0px 0 0px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .dz_middle__sidebar_title {
        font-size: 22px;
        line-height: 27px;
        padding: 24px 10px 15px 10px;
        text-align: center; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_middle__sidebar_title {
        padding: 24px 10px 20px 10px;
        font-size: 18px;
        line-height: 22px;
        text-align: center; } }
  .dz_middle__sidebar_btn {
    -moz-background-size: 20px;
    -o-background-size: 20px;
    -webkit-background-size: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 30px 10px;
    display: block;
    position: relative;
    top: -20px;
    height: 37px;
    width: 160px;
    font-size: 16px;
    line-height: 39px;
    color: #ffffff;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 1.5px 10px 0 10px;
    background-color: #0070c9;
    margin: 0 auto;
    -webkit-transition: All 0.3s;
    -khtml-transition: All 0.3s;
    -moz-transition: All 0.3s;
    -ms-transition: All 0.3s;
    -o-transition: All 0.3s;
    transition: All 0.3s;
    /*me3*/
    /*me2*/ }
    @media (min-width: 768px) and (max-width: 991px) {
      .dz_middle__sidebar_btn {
        background-position: 14px 10px;
        width: 136px;
        background-color: #0070c9; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_middle__sidebar_btn {
        background-color: #0070c9; } }
    .dz_middle__sidebar_btn:hover {
      background-color: #005293;
      color: #fff;
      /*me3*/
      /*me2*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .dz_middle__sidebar_btn:hover {
          background-color: #005293; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .dz_middle__sidebar_btn:hover {
          background-color: #005293; } }

.dz_video {
  padding-bottom: 40px;
  margin-bottom: 7px;
  width: 653px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .dz_video {
      padding-bottom: 30px;
      width: 616px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz_video {
      padding-bottom: 20px;
      width: 720px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_video {
      padding-bottom: 3vw;
      margin-bottom: 7px;
      width: 100%; } }

.dz_mid {
  padding-bottom: 43px;
  border-bottom: 1px solid #b5b5b5;
  margin-bottom: 50px; }

.dz_items .mi__product {
  width: 100%;
  margin: 0 1% 30px;
  /*me2*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_items .mi__product {
      margin: 0 1% 0px; } }
  .dz_items .mi__product .button_detail {
    padding: 1px 6px 0;
    /*me4*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .dz_items .mi__product .button_detail {
        display: none; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz_items .mi__product {
      width: 48%;
      float: left;
      padding: 0 19px; }
      .dz_items .mi__product:nth-child(3) {
        margin-left: 25%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_items .mi__product {
      max-width: 100%;
      zoom: 1;
      margin-bottom: 20px; }
      .dz_items .mi__product:after {
        content: "";
        display: table;
        clear: both; } }

.dz_items .top_hits_products {
  zoom: 1;
  width: 73%;
  margin: 0 auto 10px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  .dz_items .top_hits_products:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .dz_items .top_hits_products {
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz_items .top_hits_products {
      width: 100%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_items .top_hits_products {
      width: 100%; } }

.dz_items .description {
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_items .description {
      padding-left: 37%; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .dz_items .description {
      min-height: 65px; } }

.dz_items .name {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_items .name {
      padding-left: 37%; } }

.dz_items .buttons {
  float: right;
  position: relative;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .dz_items .buttons {
      top: -4px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz_items .buttons {
      top: -4px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_items .buttons {
      top: -4px; } }
  .dz_items .buttons a.button_buy.ajax_buy {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_items .buttons a.button_buy.ajax_buy {
        padding: 0 3px 0 3px !important; } }
    .dz_items .buttons a.button_buy.ajax_buy img {
      display: none; }
    .dz_items .buttons a.button_buy.ajax_buy.button_buy.ajax_buy {
      /*me3*/
      /*me2*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .dz_items .buttons a.button_buy.ajax_buy.button_buy.ajax_buy {
          padding: 0 15px; } }

.dz_items .jshop_price {
  display: block;
  float: none;
  padding: 0 10px 0 0;
  width: 60%;
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 400px) {
    .dz_items .jshop_price {
      padding: 0 10px 0 0; } }

.dz_items .image {
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_items .image {
      float: left;
      width: 30%;
      padding-right: 20px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .dz_items .image {
      width: 34%;
      padding-right: 23px; } }
  .dz_items .image .image_block {
    /*me2*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .dz_items .image .image_block {
        width: 100%; } }

.dz_items .con-wrap {
  margin-right: 0px;
  /*me4*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .dz_items .con-wrap {
      margin-right: 7px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz_items .con-wrap {
      margin-right: 13px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .dz_items .con-wrap {
      top: -1px;
      left: -30px;
      width: 120px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .dz_items .con-wrap {
      top: 5px;
      left: -120px;
      width: 120px; } }
  .dz_items .con-wrap .con-wrap__min {
    display: inline-block;
    margin: 0 5px; }
  .dz_items .con-wrap .con-wrap__pls {
    display: inline-block;
    margin: 0 5px; }

.dz_items .jshop_price_outer {
  width: 64px; }

.dz_items .top_hits_products__old_price {
  right: -8px !important; }

.main_dz {
  background: url("../img/dz_1m.jpg");
  background-position: 50% -19px;
  background-repeat: no-repeat;
  -moz-background-size: 44%;
  -o-background-size: 44%;
  -webkit-background-size: 44%;
  background-size: 44%;
  text-align: center;
  padding: 337px 0 49px;
  border-bottom: 1px solid #b5b5b5;
  margin-bottom: 10px;
  /*me4*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  .main_dz a {
    font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px; }
  @media (min-width: 992px) and (max-width: 1199px) {
    .main_dz {
      -moz-background-size: 44%;
      -o-background-size: 44%;
      -webkit-background-size: 44%;
      background-size: 44%;
      text-align: center;
      padding: 297px 0 49px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .main_dz {
      -moz-background-size: 60%;
      -o-background-size: 60%;
      -webkit-background-size: 60%;
      background-size: 60%;
      text-align: center;
      padding: 297px 0 49px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .main_dz {
      -moz-background-size: 75%;
      -o-background-size: 75%;
      -webkit-background-size: 75%;
      background-size: 75%;
      padding: 45vw 0 5vw; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .main_dz {
      -moz-background-size: 90%;
      -o-background-size: 90%;
      -webkit-background-size: 90%;
      background-size: 90%;
      padding: 54vw 0 30px;
      margin: 12px 0 6px; } }
  .main_dz__title {
    text-align: center;
    font-size: 36px;
    line-height: 44px;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000000;
    text-transform: uppercase;
    padding: 10px 0 23px;
    /*me2*/
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 767px) {
      .main_dz__title {
        font-size: 24px;
        line-height: 32px;
        padding: 0px 0 23px; } }
    @media (min-width: 200px) and (max-width: 479px) {
      .main_dz__title {
        font-size: 21px;
        line-height: 28px; } }
  .main_dz__text {
    font-size: 16px;
    line-height: 25px;
    padding: 0 260px 22px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .main_dz__text {
        padding: 0 160px 22px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .main_dz__text {
        font-size: 15px;
        line-height: 23px;
        padding: 0 70px 22px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .main_dz__text {
        font-size: 14px;
        line-height: 21px;
        padding: 0 2vw 5vw; } }
  .main_dz__link {
    font-size: 19px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .main_dz__link {
        font-size: 18px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .main_dz__link {
        font-size: 16px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .main_dz__link {
        font-size: 15px; } }

.dz_mid {
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .dz_mid .sppb-col-sm-8 {
      display: block;
      float: none;
      width: 100%; }
    .dz_mid .sppb-col-sm-4 {
      display: block;
      float: none;
      width: 100%; } }

.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a {
  padding: 12px 10px 8px !important; }

.assort__section .mi__product .buttons a.button_buy.ajax_buy {
  top: -6px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .assort__section .mi__product .buttons a.button_buy.ajax_buy {
      top: -1px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .assort__section .mi__product .buttons a.button_buy.ajax_buy {
      top: -1px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .assort__section .mi__product .buttons a.button_buy.ajax_buy {
      top: -1px; } }

.okpage .okpage__title {
  font-size: 36px;
  line-height: 50px;
  color: #17c60e;
  text-transform: uppercase;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-align: center;
  padding-bottom: 28px;
  padding-left: 64px;
  /*me4*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .okpage__title {
      font-size: 4vw;
      line-height: 5vw;
      padding-left: 0;
      padding-bottom: 1vw; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .okpage__title {
      font-size: 5vw;
      line-height: 6vw;
      padding-left: 0;
      padding-bottom: 1vw; } }
  .okpage .okpage__title:after {
    display: block;
    position: absolute;
    width: 45px;
    height: 45px;
    top: -3px;
    left: 213px;
    background: url("../img/ok_icon.png");
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    content: '';
    /*me4*/
    /*me3*/
    /*me2*/
    /*me1*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .okpage .okpage__title:after {
        left: 123px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .okpage .okpage__title:after {
        left: 13px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .okpage .okpage__title:after {
        display: none; } }

.okpage .okpage__subtitle {
  font-size: 27px;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .okpage__subtitle {
      font-size: 3vw;
      line-height: 3.5vw;
      padding-left: 0;
      padding-bottom: 3vw; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .okpage__subtitle {
      font-size: 5vw;
      line-height: 6vw;
      padding-left: 0;
      padding-bottom: 1vw; } }

.okpage .okpage__secondtitle {
  font-size: 36px;
  line-height: 50px;
  color: #333;
  text-transform: uppercase;
  font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-align: center;
  padding-bottom: 18px;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .okpage__secondtitle {
      font-size: 4vw;
      line-height: 5vw;
      padding-left: 0px;
      padding-bottom: 2vw; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .okpage__secondtitle {
      font-size: 4.6vw;
      line-height: 6vw;
      padding-left: 0;
      padding-bottom: 3vw; } }

.okpage .user-cart .basket_row {
  position: relative;
  border-bottom: 1px solid #e9e9e9;
  font-size: 0;
  padding-bottom: 20px;
  margin-top: 2px;
  height: 84px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .user-cart .basket_row {
      height: auto; } }

.okpage .user-cart .basket_row .img img {
  max-width: 83px;
  max-height: 83px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .user-cart .basket_row .img img {
      max-width: 60px;
      max-height: 60px; } }

.okpage .user-cart .basket_row .basket_value {
  margin-top: 18px;
  display: inline-block;
  width: 500px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .okpage .user-cart .basket_row .basket_value {
      display: inline-block;
      width: 390px;
      float: right; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .user-cart .basket_row .basket_value {
      width: auto;
      float: left; } }

.okpage .basket_value_num {
  font-size: 18px;
  display: inline-block;
  line-height: 40px;
  width: 70px; }

.okpage .basket_value_name {
  font-size: 18px;
  line-height: 40px;
  display: inline-block; }

.okpage .basket_price {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .basket_price {
      float: left !important;
      clear: none !important; }
      .okpage .basket_price em {
        margin: 0 3px 0 0 !important; } }

.okpage .user-cart .basket_row .desc .link {
  line-height: 74px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .user-cart .basket_row .desc .link {
      margin-bottom: 0;
      float: left;
      padding-right: 0;
      font-size: 13px; } }

.okpage .item__units {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .item__units {
      margin-left: 0px;
      padding-left: 0;
      float: left;
      padding: 6px 10px 0 0px; } }

.okpage .user-cart .basket_row .desc {
  padding-left: 110px;
  width: 100%;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .user-cart .basket_row .desc {
      padding-left: 80px;
      padding-top: 0px;
      zoom: 1; }
      .okpage .user-cart .basket_row .desc:after {
        content: "";
        display: table;
        clear: both; } }

.okpage_2 {
  position: relative; }
  .okpage_2__info {
    position: absolute;
    top: 52px;
    left: 420px; }
    .okpage_2__info .arrow_box {
      position: relative;
      background: #ffffff;
      border: 1px solid #006ecc;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
      font-size: 16px;
      padding: 20px 20px 0;
      width: 450px;
      line-height: 22px; }
      .okpage_2__info .arrow_box p {
        padding-bottom: 20px;
        display: block; }
      .okpage_2__info .arrow_box strong {
        font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .okpage_2__info .arrow_box:after, .okpage_2__info .arrow_box:before {
      right: 100%;
      top: 18%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none; }
    .okpage_2__info .arrow_box:after {
      border-color: rgba(255, 255, 255, 0);
      border-right-color: #ffffff;
      border-width: 15px;
      margin-top: -15px; }
    .okpage_2__info .arrow_box:before {
      border-color: rgba(0, 110, 204, 0);
      border-right-color: #006ecc;
      border-width: 16px;
      margin-top: -16px; }

.okpage .spacial_info {
  position: relative; }
  .okpage .spacial_info__line {
    font-size: 10px !important;
    position: absolute;
    left: 190px;
    top: 10px;
    width: 220px;
    color: #333333 !important; }

.okpage .payment-table tr > td:first-child {
  /*me1*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .payment-table tr > td:first-child {
      width: 50%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .payment-table tr > td:first-child {
      font-size: 14px !important;
      height: auto; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .payment-table tr > td:first-child {
      font-size: 13px !important;
      vertical-align: top;
      padding: 0 0 5px;
      height: auto; } }

.okpage .payment-table tr > td:last-child {
  /*me1*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .payment-table tr > td:last-child {
      width: 50%; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .payment-table tr > td:last-child {
      font-size: 16px !important;
      height: auto; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .payment-table tr > td:last-child {
      font-size: 15px !important;
      vertical-align: top;
      padding: 0 0 5px;
      height: auto; } }

.okpage .payment-table tr:last-child > td:first-child {
  width: 180px;
  height: 30px;
  color: #333333;
  font-size: 16px !important;
  text-transform: inherit !important;
  font-weight: inherit !important;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .payment-table tr:last-child > td:first-child {
      font-size: 14px !important; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .payment-table tr:last-child > td:first-child {
      font-size: 13px !important;
      vertical-align: top;
      padding-bottom: 5px; } }

.okpage .payment-table tr:last-child > td span {
  display: inline;
  color: #1dafed;
  text-transform: inherit !important;
  font-weight: inherit !important;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px !important;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .payment-table tr:last-child > td span {
      font-size: 16px !important; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .okpage .payment-table tr:last-child > td span {
      font-size: 15px !important;
      vertical-align: top;
      padding-bottom: 5px; } }

.okpage .payment-table {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .payment-table {
      width: 100%; } }

.okpage .payment-table {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .payment-table {
      width: 100%; } }

.okpage .payment-table tr > td span {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .payment-table tr > td span {
      font-size: 15px !important; } }

.okpage #paymentTable_2 .payment-table tr > td:first-child {
  width: 270px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage #paymentTable_2 .payment-table tr > td:first-child {
      width: 50%; } }

.okpage .basket_row .img {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .okpage .basket_row .img {
      width: 70px;
      height: 70px; } }

.foo_1 {
  font-size: 15px;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
  padding-bottom: 15px;
  display: block;
  line-height: 18px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .foo_1 {
      padding-top: 30px; } }

.foo_2 {
  font-size: 15px;
  color: #ffffff;
  padding-bottom: 15px;
  display: block;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 18px; }

.foo_3 {
  font-size: 15px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #6f6f6f;
  padding-bottom: 15px;
  display: block;
  line-height: 18px; }

iframe[name="google_conversion_frame"] {
  display: none; }

#sp-bottom {
  padding: 60px 0 50px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-bottom {
      padding-bottom: 0px !important; } }

.bestseller_products {
  /*me4*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bestseller_products {
      padding-bottom: 40px; } }

.yog_page .bestseller_products .prob_info_section {
  padding-top: 30px;
  padding-left: 390px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .yog_page .bestseller_products .prob_info_section {
      padding-left: 360px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .yog_page .bestseller_products .prob_info_section {
      padding-left: 0; } }

.yog_page .bestseller_products .image {
  width: 320px;
  padding-right: 0px;
  padding-left: 40px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .yog_page .bestseller_products .image {
      width: 100%;
      margin: 0 auto;
      padding: 0; } }

.yog_page .bestseller_products .block_item {
  padding: 10px 0 20px; }

.yog_page .bestseller_products .button_buy {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .yog_page .bestseller_products .button_buy {
      float: right; } }

.yog_page .bestseller_products .con-wrap {
  /*me3*/
  /*me2*/
  /*me1*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .yog_page .bestseller_products .con-wrap {
      margin: 0 15px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .yog_page .bestseller_products .con-wrap {
      width: calc(100vw - 270px); } }
  @media (max-width: 479px) {
    .yog_page .bestseller_products .con-wrap {
      width: calc(100vw - 220px);
      min-width: 112px; } }
  @media (max-width: 350px) {
    .yog_page .bestseller_products .con-wrap {
      width: calc(100vw - 200px); } }

.yog_page .bestseller_products .con-wrap__min {
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .yog_page .bestseller_products .con-wrap__min {
      display: inline-block; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .yog_page .bestseller_products .con-wrap__min {
      display: inline-block; } }

.yog_page .bestseller_products .con-wrap__pls {
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .yog_page .bestseller_products .con-wrap__pls {
      display: inline-block; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .yog_page .bestseller_products .con-wrap__pls {
      display: inline-block; } }

.yog_page input[type="text"].cb {
  margin: 0 7px; }

.cb_container {
  margin-top: 8px !important; }
  .cb_container .sppb-col-sm-12 {
    border-bottom: 1px solid #b5b5b5;
    zoom: 1;
    padding: 0 71px 38px;
    margin-bottom: 15px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    .cb_container .sppb-col-sm-12:after {
      content: "";
      display: table;
      clear: both; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .cb_container .sppb-col-sm-12 {
        padding: 0 13px 38px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .cb_container .sppb-col-sm-12 {
        padding: 0 0 30px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .cb_container .sppb-col-sm-12 {
        padding: 0 0 18px; } }
    @media (min-width: 1200px) {
      .cb_container .sppb-col-sm-12 .mi__product {
        padding: 0 0 0 28px; }
        .cb_container .sppb-col-sm-12 .mi__product > .image {
          margin-bottom: -17px;
          position: relative;
          padding-right: 28px;
          z-index: 1; }
        .cb_container .sppb-col-sm-12 .mi__product > .name {
          position: relative;
          z-index: 2; } }
  .cb_container .con-wrap {
    /*me1*/ }
    @media (min-width: 200px) and (max-width: 479px) {
      .cb_container .con-wrap {
        top: 5px;
        left: 0px; } }



/* new styles */
.zakvaski-bg-row .current.active {
  background-color: inherit;
  color: #0070c9;
  font-family: 'Glober', "Helvetica Neue", Helvetica, Arial, sans-serif; }

.scroll-to-products {
  display: none; }

.scroll-to-products:hover {
  border-color: white;
  background-color: #1dafed; }

@media (max-width: 768px) {
  .sppb-addon-container{
    padding: 0 15px;
  }
  .zakvaski-bg-row {
    height: inherit;
    position: relative;
    z-index: 51 !important; }
    .zakvaski-bg-row + .sppb-section {
      margin-top: 10px !important; }
  .scroll-to-products {
    display: none; } }

.mi__product .buttons a {
  padding: 1px 10px 0;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .mi__product .buttons a {
      padding: 1px 5px 0; } }

input[type="text"].cb {
  display: inline-block;
  vertical-align: top;
  font-size: 16px !important;
  border: 1px solid #b5b5b5;
  width: 42px !important;
  height: 37px !important;
  border-radius: 3px;
  position: relative;
  padding: 0 !important;
  color: #333333;
  text-align: center;
  padding-top: 2px !important; }

.con-wrap {
  position: relative;
  vertical-align: top;
  height: 37px !important;
  display: inline-block;
  margin-right: 4px;
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 479px) {
    .con-wrap {
      top: 0px;
      left: 0px;
      position: relative; } }

.count-button span {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 37px;
  text-align: center;
  position: relative;
  padding-right: 5px;
  cursor: pointer; }

.count-button span:before {
  position: absolute;
  right: 5px;
  top: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 3px 0 3px;
  border-color: #333333 transparent transparent transparent;
  content: ''; }

.count-button ul {
  display: none;
  width: 42px;
  background-color: #fff;
  left: -1px;
  border: 1px solid #b5b5b5;
  border-top: 0;
  margin-left: -1px;
  margin-top: -1px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px; }

.count-button ul li {
  text-align: center;
  line-height: 25px;
  height: 25px;
  padding-right: 4px;
  cursor: pointer;
  padding-top: 2px;
  transition: 0.5s; }

.count-button ul li:hover {
  background-color: rgba(181, 181, 181, 0.16); }

.button_loja_redirect {
  width: 269px !important;
  background-size: 24px !important;
  margin: 10px 0px 0 69px;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  background-position: 86px 12px !important;
  text-transform: capitalize;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  padding-left: 40px;
  height: 48px;
  color: white;
  background: url(https://vivofermentos.com/templates/shaper_doctor/img/cargo.png) 110px 50% no-repeat #17c60e;
}

.mi__product .buttons a.button_buy.ajax_buy {
  margin-left: auto;
  margin-right: 26px;
  padding: 0 4px 0 4px;
  vertical-align: top;
  position: relative;
  top: 0px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .mi__product .buttons a.button_buy.ajax_buy {
      padding: 0 4px 0 7px;
      top: 0px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .mi__product .buttons a.button_buy.ajax_buy {
      padding: 0 26px 0 34px;
      top: 0px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .mi__product .buttons a.button_buy.ajax_buy {
      padding: 0 3px 0 14px;
      top: 0px; } }

.block_item.mi__product .buttons {
  display: flex;
  font-size: 0;
  justify-content: flex-start;
}

span.empty_basket {
  display: block;
  text-align: center;
  padding: 0px 0;
  color: #333;
  font-size: 17px;
  line-height: 17px;
  padding-top: 3px;
  margin: 0 auto;
  max-width: 280px; }

.basket .basket_list {
  padding: 10px; }

.basket .basket_row {
  position: relative;
  margin: 10px 0 0 0;
  padding: 0 0 10px 0;
  height: 97px; }

.basket .basket_row .basket_img {
  float: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 87px;
  height: 87px;
  line-height: 87px; }

.basket .basket_row .basket_img img {
  width: auto;
  height: auto;
  max-width: 87px;
  max-height: 87px; }

.basket .basket_name {
  padding: 0;
  padding-left: 97px;
  padding-top: 5px;
  display: block; }

.basket .basket_value {
  padding: 0;
  margin: 0;
  padding-left: 97px;
  display: block;
  margin-top: 17px; }

.basket_minus_circle {
  margin-top: 4px;
  width: 26px;
  height: 26px;
  background: url(../img/icons/basket-minus.png) center no-repeat;
  background-size: contain;
  display: inline-block;
  cursor: pointer;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .basket_minus_circle {
      margin-top: 0px; } }

.basket_plus_circle {
  margin-top: 4px;
  width: 26px;
  height: 26px;
  background: url(../img/icons/basket-plus.png) center no-repeat;
  background-size: contain;
  display: inline-block;
  cursor: pointer;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .basket_plus_circle {
      margin-top: 0px; } }

.basket_dels {
  position: absolute;
  right: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background: url(../img/icons/del_cart.png) center no-repeat;
  display: inline-block;
  cursor: pointer;
  opacity: 0.3;
  background-size: 18px;
  transition: all 0.5s; }

.basket_dels:hover {
  opacity: 1; }

input[type="text"].basket_inputbox_q {
  display: inline-block !important;
  width: 34px;
  height: auto !important;
  vertical-align: top;
  border: 1px solid #b5b5b5 !important;
  padding: 0 !important;
  text-align: center;
  font-size: 16px;
  line-height: 14px;
  color: #333333;
  margin: 0 4px;
  vertical-align: middle;
  padding: 6px 0 !important;
  padding-top: 8px !important; }

.basket .basket_price {
  vertical-align: top;
  color: #1dafed;
  line-height: 34px;
  padding-left: 0;
  font-size: 14px;
  position: absolute;
  right: 24px;
  top: -5px; }

.basket_price em {
  vertical-align: top;
  color: #333333;
  margin-right: 6px;
  font-size: 12px; }

.inp-wrap {
  display: inline-block;
  vertical-align: top; }

/* Корзина и заказ */
.user-cart h1 {
  font-size: 30px;
  color: #333333;
  display: block;
  text-align: center;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 30px;
  line-height: 40px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart h1 {
      font-size: 24px;
      margin-top: 20px;
      line-height: 30px; } }

.user-cart .basket_row {
  position: relative;
  border-bottom: 1px solid #e9e9e9;
  font-size: 0;
  padding-bottom: 20px;
  margin-top: 20px;
  height: 120px; }

.user-cart .basket_row:last-child {
  /* border-bottom: 0; */ }

.user-cart .basket_row .img {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100px;
  height: 100px; }

.user-cart .basket_row .img img {
  max-width: 100px;
  max-height: 100px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .img img {
      max-width: 80px;
      max-height: 80px; } }

.user-cart .basket_row .desc {
  padding-left: 120px;
  width: 100%;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .desc {
      padding-left: 100px; } }

.user-cart .basket_row .desc .link {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 100px;
  color: #333333;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: inline-block;
  /*me4*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .user-cart .basket_row .desc .link {
      font-size: 20px;
      text-transform: uppercase;
      line-height: 30px;
      color: #333333;
      font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
      display: table-cell;
      max-width: 250px;
      vertical-align: middle;
      height: 100px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .desc .link {
      font-size: 16px;
      margin-right: 0px;
      line-height: 24px !important; } }

.user-cart .basket_row .basket_dels {
  top: 50%;
  margin-top: -22px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .basket_dels {
      margin-top: 0px;
      top: 1px; } }

.user-cart .basket_row .basket_value {
  margin-top: 30px;
  display: inline-block;
  width: 550px;
  padding-right: 40px;
  position: absolute;
  right: 0;
  top: 0;
  zoom: 1;
  /*me2*/ }
  .user-cart .basket_row .basket_value:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .basket_value {
      margin-top: 0 !important; } }

.user-cart .basket_row .basket_value .basket_quan {
  float: left;
  display: inline-block; }

.user-cart .basket_row .basket_value .basket_price {
  display: inline-block;
  float: right;
  font-size: 25px;
  line-height: 25px;
  text-align: right;
  margin-top: 2px;
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .user-cart .basket_row .basket_value .basket_price {
      font-size: 20px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .basket_value .basket_price {
      font-size: 18px;
      /* clear: both; */
      float: left;
      margin-top: -2px;
      margin-bottom: 4px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .user-cart .basket_row .basket_value .basket_price {
      font-size: 16px; } }

.user-cart .basket_row .basket_value .basket_price em {
  line-height: 25px;
  display: inline-block;
  margin: 0 25px;
  margin-top: -3px; }

.user-cart > .basket_row .basket_value .basket_price em:first-child {
  margin-left: 0; }

.user-cart .basket_row .basket_value input[type="text"].basket_inputbox_q {
  width: 40px;
  margin: 0 10px; }

.user-cart .bottom {
  margin-top: 25px;
  display: block; }

.user-cart .bottom a {
  float: left;
  display: inline-block;
  padding: 12px 0 7px 0;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 3px;
  text-align: center;
  width: 150px;
  color: #fff;
  background-color: #1dafed;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 16px;
  /*me2*/ }

.user-cart .bottom a:hover {
  background-color: #0070c9; }

.user-cart .bottom .total {
  float: right;
  height: 39px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .bottom .total {
      float: none;
      width: 100%;
      clear: both;
      text-align: right;
      padding-top: 10px; } }

.user-cart .bottom .total b {
  vertical-align: baseline;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  text-transform: uppercase;
  font-size: 20px;
  display: inline-block;
  height: 41px; }

.user-cart .bottom .total span {
  vertical-align: baseline;
  display: inline-block;
  height: 41px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px; }

.user-cart .bottom .total span.tprice {
  vertical-align: baseline;
  margin-left: 20px;
  margin-right: 10px;
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #1dafed;
  font-size: 30px; }

.order .block {
  margin-top: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #b5b5b5;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .block {
      margin-top: 20px;
      padding-bottom: 10px; } }

.order h2 {
  margin-bottom: 10px;
  color: #0070c9;
  display: block;
  font-size: 30px;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order h2 {
      font-size: 24px; } }

.order .block span {
  display: block;
  margin-bottom: 10px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .block span {
      font-size: 15px;
      line-height: 20px; } }

.order .phone-number .wrap {
  display: block;
  width: 250px;
  padding-right: 50px;
  position: relative; }

.order input[type='text'], input[type='email'] {
  height: 40px !important;
  font-size: 16px;
  line-height: 20px;
  padding-top: 8px !important;
  width: 100%;
  border: 1px solid #b5b5b5;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order input[type='text'], input[type='email'] {
      width: 98%;
      margin: 0;
      display: block;
      padding: 5px 6px 0 !important;
      line-height: 34px;
      text-align: left; } }

.order .phone-number .wrap div.ok-button {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  background-color: #0070c9;
  color: #fff;
  border-radius: 3px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  padding-top: 2px;
  transition: 0.5s; }

.order .phone-number .wrap div.ok-button:hover {
  background-color: #1dafed; }

.order .phone-number .wrap b.numb {
  text-transform: uppercase;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  font-size: 20px;
  display: inline-block;
  margin-right: 20px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .phone-number .wrap b.numb {
      padding-bottom: 5px; } }

.order .phone-number .n2 .wrap {
  width: 100%; }

.order .phone-number .n2 .wrap .discont b {
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333; }

.order .phone-number .n2, .order .phone-number .n1.hiddened {
  display: none; }

.order .phone-number .n2.active, .order .phone-number .n1 {
  display: block; }

.order .phone-number .n2 .wrap .discont {
  margin-bottom: 0;
  line-height: 18px; }

.order .phone-number .wrap .edit-number {
  display: inline-block;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0070c9;
  cursor: pointer; }

.order .about-link {
  display: block;
  margin-top: 40px;
  font-size: 16px;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0070c9;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .about-link {
      margin-top: 18px; } }

.deleviry {
  position: relative; }

.deleviry .method_deliviry {
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.order input[type="radio"] {
  display: none; }

.order input[type="radio"] + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: red;
  cursor: pointer;
  background: url(../img/icons/radio-off.png) center no-repeat;
  background-size: contain; }

.order input[type="radio"]:checked + label:after {
  background: url(../img/icons/radio-on.png) center no-repeat;
  background-size: contain; }

.order input[type="checkbox"] {
  display: none; }

.order .payment-item {
  margin: 20px 0;
  position: relative; }

.order .payment-item label span {
  margin-left: 40px;
  padding-top: 3px;
  cursor: pointer; }

.order input[type="checkbox"] + label {
  position: relative; }

.order input[type="checkbox"] + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: red;
  cursor: pointer;
  background: url(../img/icons/box-o.png) center no-repeat;
  background-size: contain; }

.order input[type="checkbox"]:checked + label:after {
  background: url(../img/icons/box-on.png) center no-repeat;
  background-size: contain; }

.order input[type="checkbox"] + label span {
  margin-left: 40px;
  padding-top: 3px;
  cursor: pointer;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order input[type="checkbox"] + label span {
      margin-bottom: 0;
      line-height: 20px; } }

.deleviry .method_deliviry span, .payment-item > span {
  margin-left: 40px;
  padding-top: 3px; }

.order span.method_deliviry_name {
  cursor: pointer;
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  text-transform: uppercase;
  font-size: 18px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order span.method_deliviry_name {
      font-size: 16px; } }

.deleviry h3 {
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #0070c9;
  display: block;
  font-size: 20px;
  margin: 20px 0; }

.deleviry .shippingFull > span {
  margin-bottom: 0;
  line-height: 20px; }

.deleviry .shippingFull > span > b {
  text-transform: uppercase;
  font-family: "GloberSemiBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.deleviry .shippingFull .active1, .deleviry .shippingFull .active2 {
  display: none; }

.deleviry .shippingFull.active1 .active1, .deleviry .shippingFull.active2 .active2 {
  display: block;
  /*me2*/ }

.order .shippingFull .wrap-inputs {
  margin-top: 20px;
  max-width: 600px; }

.order .form-control-wrap {
  margin: 15px 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.order .form-control-wrap textarea {
  height: 200px !important;
  resize: none;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .form-control-wrap textarea {
      padding: 5px 7px !important;
      width: 99%; } }

.order .sp-select {
  height: 40px;
  padding: 0;
  max-width: 300px; }

.order .sp-select .sp-select-result i.fa {
  top: -2px;
  position: absolute;
  right: 10px; }

.ferty {
  max-width: 300px;
  position: relative; }

#cityList {
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 1;
  width: 100%;
  background-color: #fff; }

#cityList li {
  display: block;
  font-size: 14px;
  line-height: 30px;
  padding: 0 10px;
  padding-top: 3px;
  cursor: pointer;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9; }

#cityList li:hover {
  background-color: #0070c9;
  color: #fff; }

#cityList li:last-child {
  border-bottom: 1px solid #d9d9d9; }

#select_otdel .selected i {
  color: #b5b5b5 !important; }

#select_otdel .selected {
  display: block;
  height: 40px;
  font-size: 16px;
  line-height: 16px;
  width: 98%;
  color: #555555;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 13px;
  padding-top: 15px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

#select_otdel ul {
  display: none;
  position: absolute;
  left: 0;
  top: 38px;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  max-height: 200px;
  overflow-y: scroll;
  border: 1px solid #d9d9d9; }

#select_otdel ul li {
  display: block;
  font-size: 14px;
  line-height: 30px;
  padding: 0 10px;
  padding-top: 3px;
  cursor: pointer; }

#select_otdel ul li:hover {
  background-color: #0070c9;
  color: #fff; }

.noti-free-deleviry {
  display: block;
  width: 400px;
  height: 190px;
  background: #fff url(../img/notify-free-deleviry.png) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  padding-top: 49px;
  line-height: 22px;
  font-size: 15px;
  z-index: -1;
  padding-left: 20px;
  /*me4*/
  /*me1*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .noti-free-deleviry {
      padding-top: 54px;
      width: 310px;
      height: 190px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .noti-free-deleviry {
      -moz-background-size: 260px;
      -o-background-size: 260px;
      -webkit-background-size: 260px;
      background-size: 260px;
      width: 280px;
      font-size: 13px;
      line-height: 17px;
      padding: 60px 0 60px 10px;
      height: auto;
      margin: 0 auto !important; } }

.noti-free-deleviry b {
  font-family: "MullerExtraBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333; }

input[type='text'].warning-validate, input[type='email'].warning-validate, .warning-validate input[type='text'], .warning-validate .ferty .selected, .warning-validate input[type='email'] {
  transition: 3s;
  border-color: #fa0e0e !important; }

.req {
  position: relative; }

.req:before {
  position: absolute;
  right: -15px;
  top: 5px;
  content: '*';
  font-size: 30px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .req:before {
      right: -5px; } }

.order .payment-table {
  margin: 20px 0;
  position: relative;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .payment-table {
      padding-top: 30px; } }

.order .payment-table tr > td:first-child {
  width: 180px;
  height: 30px;
  color: #333333;
  font-size: 16px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /*me2*/
  /*me1*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .payment-table tr > td:first-child {
      width: 50%;
      min-width: 150px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .order .payment-table tr > td:first-child {
      min-width: 150px;
      width: 50%; } }

.order .payment-table tr > td:nth-child(2) {
  min-width: 100px; }

.order .payment-table tr > td:nth-child(3) {
  padding: 1px 5px 0;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .payment-table tr > td:nth-child(3) {
      float: left;
      display: block;
      width: 90vw;
      position: absolute;
      top: -14px;
      left: 0;
      text-align: left !important;
      padding: 0 0 0 0; } }

.order .payment-table tr > td span {
  display: inline;
  color: #1dafed;
  font-weight: 100;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .order .payment-table tr > td span {
      font-size: 16px; } }

.order .payment-table tr > td:nth-child(2) {
  text-align: right;
  font-size: 14px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.order .payment-table tr:nth-child(2) span {
  font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.order .payment-table tr:last-child td:first-child {
  font-size: 20px;
  font-weight: 800;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

#sp-heading h1 {
  font-family: "MullerRegular", Helvetica, Arial, sans-serif !important;
  font-size: 40px;
  text-transform: uppercase; }

@media (max-width: 750px) {
  .w100 {
    display: none; } }

@media (max-width: 991px) {
  .noti-free-deleviry {
    position: relative;
    margin: 20px 0; }
  .user-cart .basket_row .basket_value {
    position: relative;
    padding-right: 0;
    text-align: left;
    margin-top: 10px; }
  .user-cart .basket_row {
    height: 130px;
    /*me2*/ } }
  @media (max-width: 991px) and (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row {
      height: auto; } }

@media (max-width: 991px) {
  .user-cart .basket_row .desc .link {
    padding-right: 0; }
  .user-cart .basket_row .basket_value .basket_price {
    width: auto;
    padding-left: 0; }
  .user-cart .basket_row .basket_value .basket_quan {
    position: relative;
    /*me2*/ } }
  @media (max-width: 991px) and (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .basket_value .basket_quan {
      height: 27px;
      display: inline-block; } }

@media (max-width: 991px) {
  .user-cart .basket_row .desc .link {
    line-height: 30px; } }

@media (max-width: 670px) {
  .user-cart .basket_row .basket_value .basket_price em {
    margin: 0 10px; }
  .user-cart .basket_row .basket_value {
    width: 100%;
    padding-right: 30px; } }

.order .block:last-child {
  border-bottom: none; }

#sp-header > .row:first-child {
  width: 1170px;
  padding: 0 20px;
  margin: 0 auto;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    #sp-header > .row:first-child {
      width: 970px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    #sp-header > .row:first-child {
      width: 750px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-header > .row:first-child {
      width: 95%; } }

.prod__param_content {
  text-align: left !important; }

#sp-main-body {
  padding-top: 0; }

input:focus::-webkit-input-placeholder {
  color: transparent; }

input:focus:-moz-placeholder {
  color: transparent; }

/* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent; }

/* FF 19+ */
input:focus:-ms-input-placeholder {
  color: transparent; }

/* IE 10+ */
textarea:focus::-webkit-input-placeholder {
  color: transparent; }

textarea:focus:-moz-placeholder {
  color: transparent; }

/* FF 4-18 */
textarea:focus::-moz-placeholder {
  color: transparent; }

/* FF 19+ */
textarea:focus:-ms-input-placeholder {
  color: transparent; }

/* IE 10+ */
.order .block span.s_notice {
  display: none;
  color: #ff0000; }

.req.em:before {
  display: none; }

.req.em.active:before {
  display: block; }

#basket_store, #user_cart {
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none; }

#basket_store > a {
  outline: none; }

#sp-main-body input[type="text"].basket_inputbox_q {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    #sp-main-body input[type="text"].basket_inputbox_q {
      height: 26px !important;
      margin: 0 8px;
      line-height: 26px;
      padding: 0;
      text-align: center;
      width: 40px;
      font-size: 15px; } }

.menu_prod__desc ~
.assort__section .jshop_price {
  /*me5*/
  /*me4*/ }
  @media (min-width: 1200px) {
    .menu_prod__desc ~
.assort__section .jshop_price {
      margin: -6px 13px 0 1px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .menu_prod__desc ~
.assort__section .jshop_price {
      margin-bottom: 5px;
      padding-left: 0px; } }

.menu_prod__desc ~
.assort__section .con-wrap {
  top: -6px;
  margin-right: 13px;
  /*me4*/
  /*me3*/
  /*me2*/
  /*me1*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .menu_prod__desc ~
.assort__section .con-wrap {
      margin-right: 17px;
      margin-bottom: 5px;
      top: 0; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .menu_prod__desc ~
.assort__section .con-wrap {
      top: 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .menu_prod__desc ~
.assort__section .con-wrap {
      top: -1px;
      margin-right: 0;
      left: -30px; } }
  @media (min-width: 200px) and (max-width: 479px) {
    .menu_prod__desc ~
.assort__section .con-wrap {
      top: 4px;
      margin-right: 0;
      left: -70px; } }

.menu_prod__desc ~
.assort__section .button_buy.ajax_buy {
  margin-right: 0px; }

.menu_prod__desc ~
.assort__section .button_detail {
  /*me4*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .menu_prod__desc ~
.assort__section .button_detail {
      width: 166px; } }

.menu_prod__desc ~
.assort__section .buttons {
  /*me4*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .menu_prod__desc ~
.assort__section .buttons {
      padding: 5px 0 5px 35px; } }

.item__units {
  font-size: 16px;
  font-family: "GloberRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: lowercase;
  padding: 10px 0 0 10px;
  display: inline-block;
  float: left;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .item__units {
      padding: 6px 0 0 10px;
      font-size: 14px;
      line-height: 20px;
      height: 27px; } }

.user-cart .basket_row .desc .link {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .desc .link {
      margin-bottom: 15px;
      padding-right: 25px;
      line-height: 20px; } }

.user-cart .basket_row .basket_value {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .user-cart .basket_row .basket_value {
      position: static;
      padding-right: 0; } }

.payment-item img {
  max-width: 300px;
  width: 75%;
  display: block;
  margin-bottom: 20px;
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .payment-item img {
      margin-bottom: 10px; } }

.new-func {
  margin: 0 0 0 50px;
  width: 340px;
  /*me3*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .new-func {
      display: none; } }
  .new-func .images-l {
    display: block;
    height: auto;
    text-align: center;
    vertical-align: top;
    font-size: 0;
    zoom: 1; }
    .new-func .images-l:after {
      content: "";
      display: table;
      clear: both; }
    .new-func .images-l .new-func__img {
      width: 33%;
      float: left;
      text-align: center; }
      .new-func .images-l .new-func__img img {
        display: inline-block;
        width: 35px;
        height: 35px; }
  .new-func .text-l {
    text-align: center;
    vertical-align: top;
    font-size: 0;
    zoom: 1; }
    .new-func .text-l:after {
      content: "";
      display: table;
      clear: both; }
    .new-func .text-l span {
      display: block;
      float: left;
      width: 33%;
      padding: 0 10px;
      color: #333333;
      font-size: 13px;
      text-align: center;
      vertical-align: top;
      margin-top: 15px;
      /*me3*/ }
      @media (min-width: 768px) and (max-width: 991px) {
        .new-func .text-l span {
          padding: 0 3px; } }

.bestseller_products .new-func {
  width: 400px;
  margin: 0;
  margin-top: 20px;
  /*me3*/
  /*me2*/ }
  @media (min-width: 768px) and (max-width: 991px) {
    .bestseller_products .new-func {
      width: 320px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .bestseller_products .new-func {
      width: 100%;
      max-width: 390px;
      margin: 20px auto 20px; } }

.fb-like-box {
  /*me5*/
  /*me2*/ }
  @media (min-width: 1200px) {
    .fb-like-box {
      margin: 0 30px 0; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .fb-like-box {
      margin: 0 auto 20px; } }

#sp-logo {
  padding-left: 0;
  padding-right: 0px; }

.main__socials .jt-code {
  /*me4*/ }
  @media (min-width: 200px) and (max-width: 1199px) {
    .main__socials .jt-code {
      padding: 0 25px; } }

.breadcrumb_section__nav__cart {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .breadcrumb_section__nav__cart {
      display: none; } }

.breadcrumb_section__nav__cart li a {
  font-size: 14px; }

.buttons {
  position: relative; }

.uberfix {
  padding: 0 !important;
  max-height: 0;
  min-height: 0;
  margin: 15px 0 0 0 !important;
  position: relative;
  z-index: 100; }

.other_magic {
  font-family: "MullerRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 5px 0 10px;
  position: relative; }
  .other_magic:after {
    top: 13px !important; }

.p404 {
  background: url("../img/main_header.jpg");
  -moz-background-size: 1520px;
  -o-background-size: 1520px;
  -webkit-background-size: 1520px;
  background-size: 1520px;
  background-repeat: no-repeat;
  background-position: 50% 8px;
  /*me4*/
  /*me3*/
  /*me2*/ }
  @media (min-width: 992px) and (max-width: 1199px) {
    .p404 {
      -moz-background-size: 1200px;
      -o-background-size: 1200px;
      -webkit-background-size: 1200px;
      background-size: 1200px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .p404 {
      -moz-background-size: 760px;
      -o-background-size: 760px;
      -webkit-background-size: 760px;
      background-size: 760px;
      background-repeat: no-repeat;
      background-position: 50% 216px; } }
  @media (min-width: 200px) and (max-width: 767px) {
    .p404 {
      background: #fff; } }
  .p404__title {
    text-transform: uppercase;
    font-family: "MullerBold", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 82px;
    font-size: 68px;
    padding: 30px 0 12px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .p404__title {
        line-height: 62px;
        font-size: 54px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .p404__title {
        line-height: 50px;
        font-size: 42px;
        padding: 25px 0 6px; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .p404__title {
        line-height: 30px;
        font-size: 24px;
        padding: 18px 0 2px;
        text-align: center; } }
  .p404__text {
    width: 40%;
    font-family: "MullerLight", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
    line-height: 36px;
    padding-bottom: 25px;
    /*me4*/
    /*me3*/
    /*me2*/ }
    @media (min-width: 992px) and (max-width: 1199px) {
      .p404__text {
        width: 40%;
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 20px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .p404__text {
        font-size: 18px;
        line-height: 28px;
        padding-bottom: 15px;
        width: 100%; } }
    @media (min-width: 200px) and (max-width: 767px) {
      .p404__text {
        line-height: 24px;
        font-size: 16px;
        padding: 12px 0 2px;
        width: 100%; } }
  .p404 .nav {
    padding-bottom: 25px; }
    .p404 .nav a {
      position: relative;
      display: inline-block;
      font-size: 19px;
      line-height: 30px;
      padding: 12px 0 5px 0;
      /*me4*/
      /*me3*/
      /*me2*/ }
      @media (min-width: 992px) and (max-width: 1199px) {
        .p404 .nav a {
          font-size: 18px;
          padding: 7px 0 3px; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .p404 .nav a {
          font-size: 17px;
          line-height: 30px;
          padding: 8px 0 5px 0; } }
      @media (min-width: 200px) and (max-width: 767px) {
        .p404 .nav a {
          font-size: 15px;
          line-height: 27px;
          padding: 8px 0 5px 0; } }
      .p404 .nav a:after {
        content: '';
        position: absolute;
        display: block;
        background: url("../img/icons/s01.png");
        -moz-background-size: 100%;
        -o-background-size: 100%;
        -webkit-background-size: 100%;
        background-size: 100%;
        background-repeat: no-repeat;
        width: 18px;
        height: 18px;
        right: -29px;
        top: 15px;
        /*me4*/
        /*me3*/
        /*me2*/ }
        @media (min-width: 992px) and (max-width: 1199px) {
          .p404 .nav a:after {
            right: -25px;
            top: 11px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .p404 .nav a:after {
            right: -24px;
            top: 11px; } }
        @media (min-width: 200px) and (max-width: 767px) {
          .p404 .nav a:after {
            right: -24px;
            top: 11px; } }

/*Стили для блока ассортимента заквасок*/
.manageableJshpMdl .mi__product .buttons a img {
  display: none; }

.manageableJshpMdl .mi__product .con-wrap__min {
  display: inline-block;
  margin: 0 8px 0 0; }

.manageableJshpMdl .mi__product .con-wrap__pls {
  display: inline-block;
  margin: 0 0 0 8px; }

.manageableJshpMdl .mi__product .con-wrap {
  display: none;
  margin: 0 14px 0 0; }

.manageableJshpMdl .mi__product .buttons a.button_buy.ajax_buy {
  /*me2*/ }
  @media (min-width: 200px) and (max-width: 767px) {
    .manageableJshpMdl .mi__product .buttons a.button_buy.ajax_buy {
      padding: 0 3px 0 4px; } }
.order h2{
  padding-top: 5px;
}
.order .block .deleviry-rates{
  position: absolute;
  right: 0;
  top: 0;
  width: 400px;
  background: url('/images/checkout-bg.png') center no-repeat;
  background-size: contain;
  padding: 40px;
}
.order .block .deleviry-rates h3{
  margin-top: 10px;
  font-size: 30px;
}
.order .block .deleviry-rates p{
  line-height: 20px;
}
.order .block .deleviry-rates span{
  display: inline-block;
  margin: 0;
  color: #0070c9;
  font-weight: 600;
}
.order .block.deleviry{
  overflow: hidden;
}
.order .block.deleviry .shippingFull{
  max-width: 600px;
  padding-right: 10px;
}
.order .block.deleviry .shippingFull b{
  font-weight: bold;
  font-size: 16px;
}
.m200{
  max-width: 200px;
}
.m300{
  max-width: 300px;
}
.m400{
  max-width: 400px;
}
.payment-panel{
  display: none;
  max-width: 400px;
}
.payment-panel .payment-row{
  margin: 5px 0;
  position: relative;
}
.payment-panel .payment-row.hidden{
  display: none;
}
.payment-panel .payment-row .lab{
  position: absolute;
  left: 100%;
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-left: 20px;
  width: 100px;
}
.payment-panel .payment-row.zak{
/*   max-width: 350px; */
}
.payment-panel .payment-row.mt-20{
  margin-top: 20px;
}
.payment-panel .payment-row.mb-20{
  margin-bottom: 20px;
}
.payment-panel .payment-row:after{
  content: '';
  width: 100%;
  clear: both;
  display: block;
}
.payment-panel .payment-row > div{
  float: left;
}
.payment-panel .payment-row > div.left{
  width: 70%;
  font-size: 16px;
  color: #333333;
}
.payment-panel .payment-row.zak > div.left{
  width: 50%;
}
.payment-panel .payment-row.zak > div.price{
  width: 50%;
}
.payment-panel .payment-row > div.left b{
  font-weight: 600;
}
.payment-panel .payment-row > div.left b.upper{
  text-transform: uppercase;
  font-family: 'MullerBold';
}
.payment-panel .payment-row > div.price{
  text-align: right;
  width: 30%;
}
.payment-panel .payment-row .value{
  color: #0070c9;
  font-weight: 600;
}
.payment-panel .payment-row.zak .value{
  color: #333333;
}
.payment-panel .payment-row .currency{
  margin-left: 5px;
  color: #333333;
}
.payment-panel .payment-row .price span{
  display: inline-block;
  margin: 0;
  font-size: 20px;
}
.payment-panel .payment-row .nst{
  display: inline-block;
  margin: 0;
}
.payment-panel hr{
  background-color: #b5b5b5;
  color: #b5b5b5;
  height: 1px;
  border: none;
  margin: 10px 0;
}
button[type="submit"].paypall-button{
  position: relative;
  border-radius: 3px;
  background-color: #fec348;
  color: #333;
  border: 1px solid #fcae29;
  padding-left: 20px;
  padding-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;  
  padding-top: 8px;
  padding-right: 70px;
  margin-top: 20px;
  max-width: 240px;
  font-weight: 600;
    width: 100%;
  text-align: left;
  font-family: Arial;
}
button[type="submit"].paypall-button:after{
  position: absolute;
    content: '';
    right: 20px;
    top: 0;
    display: block;
    width: 90px;
    bottom: 0;
    background: transparent url(/images/pp.png) center no-repeat;
    background-size: contain;
}
button[type="submit"].paypall-button:hover{
  transition: 0.5s;
  background-color: #fcae29;
  border-color: #fec348;
}
#prepend-order-layer{
  background: #000 url('/images/spinner.gif') center no-repeat;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  opacity: 0.7;
}
input[type="text"].error-validate{
  border-color: #ff0000 !important;
}
@media(max-width: 1200px){
  .order .block.deleviry .shippingFull{
    max-width: 400px;
  }
}
@media(max-width: 990px){
  .order .block .deleviry-rates{
    position: relative;
  }
  .order .block.deleviry .shippingFull{
    width: 100%;
    max-width: 100%;
  }
}
@media(max-width: 600px){
  #totalTax .left, #totalTax .left .nst{
    font-size: 0;
  }
  #totalTax .left b{
    font-size: 16px;
  }
  .order .block .deleviry-rates{
    width: 100%;
    background: none;
    padding-right: 0;
    padding-left: 0;
  }
}
@media(max-width: 400px){

  .payment-panel .payment-row > div.left,
  .payment-panel .payment-row > div.price{
    width: 50%;
  }
}
.payment-panel.p50every .payment-row > div.left,
.payment-panel.p50every .payment-row > div.price{
    width: 50%;
}
 
/* СоцСети в шапке сайта */
.top2-social {margin-left: -30px;}
.top2-social-item {
	display: inline-block !important;	
}
.top2-social-item > a {
	display: block;
    width: 1.4em;
    line-height: 1.4em !important;
    text-align: center;
    border: 1px solid #0070c9;
    color: #0070c9 !important;
    height: 1.4em;
    font-size: 1.3em;
    margin: 0 0 3px 3px;
    transition: all .3s;
}
.top2-social-item:first-child > a {margin-left: 0;}
.top2-social-item > a:hover {
	background-color: #0070c9 !important;
    color: #fff !important;
}

/* блок с картой на странице где купить */
.where-to-buy-map-block .shops__title {
	text-align: left;
}
.where-to-buy-map-block .shops__title + p{
	line-height: 1.3;
    font-size: 1.1em;
    padding: 1em 0;
}

/* выделенный текст */
.imp {
	background-color: #fc0;
	display: inline-block !important;
	font-size: inherit;
	line-height: 1;
	padding: 5px 5px 2px;
	position: relative;
}
/* жирный текст */
.text-bold {
	font-family: "GloberBold", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}













