/**
 *  Виды зания ф-ии анимации:
 *  ease            =   Анимация начинается медленно, затем ускоряется и к концу движения опять замедляется. Аналогично cubic-bezier(0.25,0.1,0.25,1).
 *  ease-in         =   Анимация медленно начинается, к концу ускоряется. Аналогично cubic-bezier(0.42,0,1,1).
 *  ease-out        =   Анимация начинается быстро, к концу замедляется. Аналогично cubic-bezier(0,0,0.58,1).
 *  ease-in-out     =   Анимация начинается и заканчивается медленно. Аналогично cubic-bezier(0.42,0,0.58,1).
 *  linear          =   Одинаковая скорость от начала и до конца.
 *  step-start      =   Как таковой анимации нет. Стилевые свойства сразу же принимают конечное значение.
 *  step-end        =   Как таковой анимации нет. Стилевые свойства находятся в начальном значении заданное время, затем сразу же принимают конечное значение.
 *  steps           =   Ступенчатая функция, имеющая заданное число шагов.
 *  cubic-bezier    =   Задаёт функцию движения в виде кривой Безье. (cubic-bezier(0.175, 0.885, 0.32, 1.275)) = С отстукиванием например)
 */
@media (max-width: 994px) {
  .modal-dialog {
    margin: 60px auto;
    max-width: 750px;
  }
  .modal-dialog .modal-content {
    -webkit-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.3);
    -khtml-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.3);
    box-shadow: 0 15px 100px rgba(0, 0, 0, 0.3);
  }
  .modal-dialog .modal-content .modal-header,
  .modal-dialog .modal-content .modal-footer {
    background: #FFF;
    text-shadow: #FFF 0px 1px 0;
  }
  .modal-dialog .modal-content .modal-header {
    padding: 15px 5px 10px 5px;
    -webkit-border-radius: 3px 3px 0 0;
    -khtml-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    -o-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    border: none 0;
  }
  .modal-dialog .modal-content .modal-header .close {
    z-index: 99;
    font-size: 32px;
    position: relative;
    border: 1px solid #DDD;
    color: #000;
    opacity: 1;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    margin-right: 7px;
  }
  .modal-dialog .modal-content .modal-header .modal-title {
    line-height: 1;
    font-size: 20px;
    word-spacing: 2px;
    margin-bottom: 4px;
    border: none 0;
  }
  .modal-dialog .modal-content .modal-header .close {
    margin-top: 0;
  }
  .modal-dialog .modal-content .modal-body {
    padding: 15px 5px;
  }
  .modal-dialog .modal-content .modal-body .close {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 32px;
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100 * 1);
    zoom: 1;
  }
  .modal-dialog .modal-content .modal-footer {
    padding: 15px 5px;
    -webkit-border-radius: 0 0 3px 3px;
    -khtml-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    -ms-border-radius: 0 0 3px 3px;
    -o-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
  }
  .modal-dialog {
    width: 100% !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    max-width: 100%;
    background: #FFF;
  }
  .modal-dialog .modal-content {
    max-width: 100%;
    min-height: 100%;
    height: auto;
    border: none 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .modal-dialog .modal-content .by-center-of-modal-window {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    padding: 0 15px;
  }
  body.modal-open {
    position: relative;
  }
}
.for-mobile {
  display: none;
}
@media (max-width: 994px) {
  .modal {
    z-index: 9999;
  }
  .for-mobile {
    display: block;
  }
  body {
    margin-top: 52px;
  }
  body * {
    outline: none !important;
  }
  .container {
    min-width: unset;
    max-width: unset;
    padding-left: 15px;
    padding-right: 15px;
  }
  #mini-menu {
    display: none;
  }
  #header {
    padding-bottom: 10px;
  }
  #header .user-auth,
  #header a,
  #header .main-tpl-search {
    float: none;
    text-align: right;
    margin: 0;
    padding: 1px 0;
  }
  #header .main-tpl-search {
    padding: 3px 6px;
    display: none;
  }
  #header .user-auth {
    display: none;
  }
  #header .head-phone {
    font-size: 13px;
  }
  #header .head-phone-wrap a .fa-phone {
    display: none;
  }
  #header .col-xs-4,
  #header .col-xs-3 {
    width: 50%;
  }
  #header .col-xs-8,
  #header .col-xs-9 {
    width: 50%;
  }
  #header .col-xs-8 .head-phone-wrap,
  #header .col-xs-9 .head-phone-wrap {
    margin-top: 0;
  }
  #menu {
    display: none;
  }
  .micron-notify-msg {
    width: 94%;
  }
  #content-wrap {
    padding-top: 11px;
  }
  .b24-widget-button-wrapper {
    display: none !important;
  }
  #slider-wrap {
    margin-bottom: 30px;
  }
  #slider-ctrl {
    bottom: -25px;
  }
  #slider-ctrl a {
    background: #AAA;
    border-color: #AAA;
  }
  #slider-ctrl .active {
    background: #683c81 !important;
    border-color: #683c81 !important;
  }
  .slider-home-wrap .slider-home-prev,
  .slider-home-wrap .slider-home-next {
    z-index: 9;
    position: relative;
  }
  .slider-home-prev {
    text-align: left !important;
  }
  .slider-home-next {
    text-align: right !important;
  }
  .t-breadcrumbs label {
    display: none;
  }
  h2 {
    font-size: 21px;
  }
  #page-home .col-xs-3 {
    width: 50%;
  }
  #page-home .col-xs-3 .home-icon-link {
    margin: 0;
    padding: 0;
    display: none;
  }
  #page-home .col-xs-3 .home-icon-link img {
    padding: 5px 0;
  }
  #page-home .col-xs-3 .home-icon-link h6 {
    font-size: 15px;
  }
  #page-home h1,
  #page-home h2 {
    font-size: 24px;
    border: none 0;
    margin: 0;
    padding: 15px 0 7px 0;
    text-align: center;
  }
  #page-home .home-bottom-box {
    float: left;
    background: #FFF;
  }
  #page-home .show-top-sale img {
    height: 132px;
  }
  .contacts-data {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .t-page-photos .col-xs-3,
  .t-page-photos .col-xs-4,
  .t-page-photos .col-xs-6,
  .t-page-photos .col-xs-8 {
    width: 100%;
  }
  #slider-feedbacks-wrap .col-xs-1 {
    display: none;
  }
  #slider-feedbacks-wrap .col-xs-10 {
    width: 100%;
  }
  #slider-feedbacks-wrap .col-xs-4 {
    width: 100%;
  }
  #slider-feedbacks-wrap .cycle-sentinel {
    height: 50px;
    overflow: hidden;
  }
  .feedback {
    margin-bottom: 70px;
  }
  #catalog-menu {
    display: none;
  }
  #mobile-catalog-menu {
    border: 1px solid #DDD;
    margin-top: 5px;
  }
  #mobile-catalog-menu .main-menu-inner {
    display: block;
  }
  #mobile-catalog-menu .main-menu-inner .main-menu-item {
    display: block;
    width: 100%;
  }
  #mobile-catalog-menu .main-menu-inner .main-menu-item .main-menu-item-link {
    padding: 4px 0 !important;
    font-weight: normal;
    font-size: 13px;
  }
  #t-catalog-filter {
    display: none;
  }
  #t-catalog-filter,
  #t-catalog-list {
    width: 100%;
  }
  #t-catalog-filter h1,
  #t-catalog-list h1 {
    padding-top: 15px;
    white-space: normal;
    padding-right: 70px;
  }
  #t-catalog-filter .col-xs-3,
  #t-catalog-list .col-xs-3 {
    width: 50%;
  }
  #t-catalog-filter .t-list-item a,
  #t-catalog-list .t-list-item a {
    text-align: center;
  }
  #t-catalog-filter hr,
  #t-catalog-list hr,
  #t-catalog-filter h2,
  #t-catalog-list h2 {
    display: none;
  }
  #left-menu {
    margin-bottom: 15px;
  }
  #left-menu ul {
    display: none;
  }
  .t-list-item-chain .col-xs-3,
  .t-list-item-chain .col-xs-9 {
    width: 100%;
  }
  .t-item-window-back {
    background: #FFF;
    overflow-y: hidden;
    margin-top: 50px;
  }
  .t-item-window-back .table-responsive {
    overflow-y: scroll;
    height: 100% !important;
    min-height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none 0;
  }
  .t-item-window-back .close {
    z-index: 99;
    font-size: 23px;
    border: 1px solid #DDD;
    color: #000;
    opacity: 1;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    margin: 0 7px 0 0 !important;
    padding-top: 4px;
  }
  .t-item-window-angular {
    margin: 0 auto;
    display: block;
  }
  .t-item-window-angular,
  .t-item-window {
    border: none 0;
    min-width: unset;
  }
  .t-item-window-angular .t-breadcrumbs,
  .t-item-window .t-breadcrumbs {
    display: none;
  }
  .t-item-window-angular .col-xs-3,
  .t-item-window .col-xs-3,
  .t-item-window-angular .col-xs-4,
  .t-item-window .col-xs-4,
  .t-item-window-angular .col-xs-5,
  .t-item-window .col-xs-5,
  .t-item-window-angular .col-xs-7,
  .t-item-window .col-xs-7,
  .t-item-window-angular .col-xs-9,
  .t-item-window .col-xs-9 {
    width: 100%;
  }
  .t-item-window-angular .col-xs-3,
  .t-item-window .col-xs-3 {
    height: 72px;
    overflow: hidden;
  }
  .t-item-window-angular .col-xs-3 > div,
  .t-item-window .col-xs-3 > div {
    float: left;
    margin-right: 5px;
  }
  .t-item-window-angular .t-item-img-wrap,
  .t-item-window .t-item-img-wrap {
    max-width: 310px !important;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .t-item-window-angular .item-previews,
  .t-item-window .item-previews {
    text-align: center;
  }
  .t-item-window-angular .table,
  .t-item-window .table {
    margin: 20px 0;
  }
  .t-item-window-angular .item-previews,
  .t-item-window .item-previews {
    margin-top: 5px;
  }
  .t-item-window-angular .item-previews .item-preview,
  .t-item-window .item-previews .item-preview {
    float: none !important;
  }
  .t-item-window-angular .t-complect,
  .t-item-window .t-complect {
    display: unset;
  }
  .t-item-window-angular .t-complect .col-xs-4,
  .t-item-window .t-complect .col-xs-4 {
    max-width: 175px;
  }
  .t-item-window,
  .window-container,
  #main-block {
    min-width: unset !important;
  }
  .t-main-cart-list .col-xs-8,
  .t-main-cart-list .col-xs-4 {
    width: 100%;
  }
  .t-fast-cart-add-wrap {
    display: none;
  }
  .t-params-table tr.param .value .t-value-tooltip-wrap .t-value-tooltip {
    width: 220px;
  }
  .a_demo_three {
    margin: 0 !important;
    white-space: nowrap;
  }
  .t-box-list-path1c-item {
    display: none;
  }
  #user-cabinet .col-xs-3,
  #user-cabinet .col-xs-9 {
    width: 100%;
  }
  #user-cabinet h1 {
    font-size: 13px;
    border: none 0;
    padding: 0;
    margin: 10px 0;
    display: inline-block;
  }
  #footer-wrap .col-xs-6 {
    width: 100%;
    text-align: center;
  }
  #footer-wrap .col-xs-4 {
    width: 100%;
    text-align: center;
  }
  #footer-wrap .col-xs-4 .title {
    text-align: center;
    border: none 0;
    margin: 15px 0;
    padding: 0;
  }
  #footer-wrap .col-xs-4 .col-xs-6 {
    width: 50% !important;
  }
  .fancybox-type-iframe {
    left: 0 !important;
    margin-top: -20px;
    width: 100% !important;
    border-radius: 0 !important;
  }
  .fancybox-type-iframe .fancybox-inner {
    width: 100% !important;
    height: 100vh !important;
  }
  .super-registration-form {
    border: none 0;
  }
  .super-registration-form_step {
    margin-top: 60px;
  }
  .super-cart_item > tbody {
    border-top: 1px solid #DDD !important;
  }
  .super-cart_item td.t-input-count,
  .super-cart_item td.t-no-br,
  .super-cart_item td.ng-scope {
    display: block;
    border: none 0;
    padding: 0 !important;
  }
  .super-cart_item td.t-input-count {
    margin-bottom: 7px;
  }
  .super-cart_item-photo {
    display: table-cell !important;
  }
}
#mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #DDD;
  background: #EEE;
  z-index: 999;
  padding-top: 5px;
  min-height: 50px;
}
.mobile-menu_toggle-button {
  border-radius: 3px;
  font-size: 20px;
  background: unset;
  border: none 0;
  padding-left: 0;
}
.mobile-menu_toggle-button .fa {
  color: #683c81;
}
.mobile-menu_logo-wrapper img {
  height: 42px;
  width: auto !important;
}
.mobile-menu_wrapper {
  margin-top: 5vh;
}
.mobile-menu_wrapper .main-menu-item-link,
.mobile-menu_wrapper .nav-delim-right,
.mobile-menu_wrapper .navbar-brand {
  display: block;
  text-align: center;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
  float: none;
}
.mobile-menu_wrapper .separator {
  width: 100%;
  height: 1px;
  background: #DDD;
  margin: 15px 0;
}
.mobile-menu_wrapper .dropdown-menu {
  left: 0;
  right: 0;
  max-width: 300px;
  margin: 0 auto;
}
.mobile-additional-menu_elem {
  display: inline;
  float: left;
}
.mobile-additional-menu_elem a,
.mobile-additional-menu_elem button {
  padding: 9px 0 9px 0;
  margin: 0;
  margin-left: 30px;
  display: inline-block;
  font-size: 19px;
  border: none 0;
  background: transparent;
}
.mobile-additional-menu_elem a .mini-menu_elem-text,
.mobile-additional-menu_elem button .mini-menu_elem-text {
  display: none;
}
.mobile-additional-menu_elem a .fa,
.mobile-additional-menu_elem button .fa {
  color: #683c81;
}
.mobile-additional-menu_elem a .label,
.mobile-additional-menu_elem button .label {
  margin-left: -17px;
  -webkit-border-radius: 15px;
  -khtml-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  letter-spacing: -1px;
}
.mobile-additional-menu #show-cart-popup {
  padding-right: 0;
}
#mobile-new-search-form {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
}
#mobile-new-search-form .search-form-group {
  padding-top: 7px;
  text-align: center;
  margin-bottom: 10px;
  background: #683c81;
  border: 1px solid #683c81;
}
#mobile-new-search-form input {
  border: 1px solid #DDD;
  font-size: 18px;
  padding: 5px;
  margin: 0 0 7px 0;
  vertical-align: top;
  background: #FFF;
  width: 80%;
}
#mobile-new-search-form input::placeholder {
  color: #666;
}
#mobile-new-search-form button {
  border: 1px solid #DDD;
  font-size: 21px;
  padding: 5px 7px;
  width: 15%;
  vertical-align: top;
  margin: 0;
  background: #FFF;
}
#mobileMainMenuModal {
  z-index: 9999;
}
.mobile-item-card {
  height: calc(100vh - 50px);
}
.mobile-item-card .col-xs-1,
.mobile-item-card .col-xs-2,
.mobile-item-card .col-xs-3,
.mobile-item-card .col-xs-4,
.mobile-item-card .col-xs-5,
.mobile-item-card .col-xs-6,
.mobile-item-card .col-xs-7,
.mobile-item-card .col-xs-8,
.mobile-item-card .col-xs-9,
.mobile-item-card .col-xs-10,
.mobile-item-card .col-xs-11,
.mobile-item-card .col-xs-12 {
  width: 100%;
}
.mobile-item-card_header,
.mobile-item-card_footer {
  height: 50px;
  background: #683c81;
  color: #FFF;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  -khtml-box-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  -ms-box-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  -o-box-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  z-index: 999;
  position: relative;
}
.mobile-item-card_header h1,
.mobile-item-card_footer h1 {
  margin: 0;
  border: 0;
  font-size: 19px;
  padding: 15px 0 0 45px;
  font-weight: bold;
  word-spacing: 0;
  white-space: nowrap !important;
  max-width: 100vw;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mobile-item-card_header .back-btn,
.mobile-item-card_footer .back-btn {
  position: absolute;
  left: 15px;
  top: 7.5px;
  font-size: 21px;
  border: 0 !important;
  color: #FFF !important;
  padding: 8px 0 0 0 !important;
}
.mobile-item-card_header {
  position: fixed;
  left: 0;
  top: 50px;
  width: 100%;
}
.mobile-item-card_body {
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 100px);
  padding: 75px 15px 75px 15px;
}
.mobile-item-card_body h1,
.mobile-item-card_body .close,
.mobile-item-card_body .t-item-like,
.mobile-item-card_body .t-item-window-not-simplified-add .btn-block {
  display: none;
}
.mobile-item-card_body .item-header {
  padding-right: 70px;
}
.mobile-item-card_footer {
  padding: 7px 15px;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
}
.mobile-item-card_footer .btn-buy {
  width: 80%;
}
.mobile-item-card_footer .btn-like {
  padding: 8px;
  top: 0;
  right: 0;
  width: 55px;
  background: transparent;
  color: #FFF;
  border-color: #FFF;
}
.mobile-item-card_footer .btn-like_wrapper {
  padding: 0;
  position: relative;
}
.mobile-item-card_footer .btn-like .fa {
  color: #FFF;
  font-size: 19px;
}
.mobile-item-card .btn-share {
  color: #FFF;
}
.mobile-item-card .btn-share_wrapper {
  border: 1px solid #FFF;
  height: 37px;
  border-radius: 3px;
  color: #FFF;
  width: 55px;
  text-align: center;
  padding-top: 1px;
  position: absolute;
  right: 15px;
  top: 6px;
  margin: 0;
}
.mobile-item-card .btn-share_wrapper .ya-share2__popup.ya-share2__popup_mobile.ya-share2__popup_visible .ya-share2__popup-content {
  z-index: 99999 !important;
}
.mobile-item-card .btn-share_wrapper .ya-share2__container_size_m .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more.ya-share2__link_more-button-type_short {
  background: none;
}
.mobile-item-card .btn-share_wrapper .ya-share2__badge_more {
  background: url("/i/image/share_icon.png") left top no-repeat !important;
  background-size: 100% !important;
  width: 20px;
  height: 20px;
  border-radius: 0;
  margin-top: 3px;
}
.mobile-item-card .btn-share_wrapper .ya-share2__icon_more {
  display: none;
}
.mobile-item-card .btn-share_wrapper .ya-share2__list.ya-share2__list_direction_horizontal {
  margin-top: -5px !important;
}
.mobile-menu_toggle-button {
  display: none;
}
#mobile-footer-main-menu {
  padding: 0 15px;
  max-width: 400px;
  margin: 0 auto 15px auto;
}
#mobile-footer-main-menu .main-menu-item-link {
  display: block;
  text-align: center;
  padding: 5px;
  border-bottom: 1px solid #DDD;
}
#mobile-footer-main-menu .dropdown-menu {
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  max-width: 400px;
}
#mobile-is-catalog-icon {
  position: absolute !important;
  left: 0;
  top: 0;
}
#mobile-catalog-menu {
  display: none;
}
#mobile-catalog-menu-2 {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  font-size: 15px;
}
#mobile-catalog-menu-2 .main-menu-item-link {
  display: block;
  padding: 0 15px 7px 15px;
  text-align: left;
  border-bottom: 1px solid #DDD;
}
#mobile-catalog-menu-2 .main-menu-item-link.without-border {
  border-bottom: none 0;
}
#mobile-catalog-menu-2 li.dropdown {
  padding-top: 5px;
  padding-bottom: 5px;
}
#mobile-catalog-menu-2 ul li a {
  padding: 5px 0;
  display: inline-block;
}
.super-registration-form_link {
  font-size: 15px;
}
.super-registration-form_link.is-wholesale-user {
  background: #f79d38;
  color: #FFF;
  padding: 7px;
  text-shadow: rgba(0, 0, 0, 0.15) 0px 1px 0;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.super-registration-form_link.is-retail-user {
  background: #5cb85c;
  color: #FFF;
  padding: 7px;
  text-shadow: rgba(0, 0, 0, 0.15) 0px 1px 0;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.fixed-search-panel {
  position: fixed;
  width: 100%;
  left: 0;
  top: 50px;
  z-index: 999;
}
