.jq-file__browse, .jq-file__name {
  font: 14px/32px Arial, sans-serif;
  color: #333;
}
.jq-checkbox, .jq-radio {
  vertical-align: -4px;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
  border: 1px solid #C3C3C3;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  cursor: pointer;
}
.jq-checkbox.focused, .jq-radio.focused {
  border: 1px solid #08C;
}
.jq-checkbox.disabled, .jq-radio.disabled {
  opacity: 0.55;
}
.jq-checkbox {
  border-radius: 3px;
}
.jq-checkbox.checked .jq-checkbox__div {
  width: 8px;
  height: 4px;
  margin: 3px 0 0 3px;
  border-bottom: 2px solid #666;
  border-left: 2px solid #666;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}
.jq-radio {
  border-radius: 50%;
}
.jq-radio.checked .jq-radio__div {
  width: 10px;
  height: 10px;
  margin: 3px 0 0 3px;
  border-radius: 50%;
  background: #777;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7);
}
.jq-file {
  width: 270px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.jq-file input {
  cursor: pointer;
}
.jq-file__name {
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 0 80px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: #FFF;
  box-shadow: inset 1px 1px #F1F1F1;
}
.jq-file__browse {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  border-left: 1px solid #CCC;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  text-shadow: 1px 1px #FFF;
}
.jq-file:hover .jq-file__browse {
  background: linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-file:active .jq-file__browse {
  background: #F5F5F5;
  box-shadow: inset 1px 1px 3px #DDD;
}
.jq-file.focused .jq-file__name {
  border: 1px solid #5794BF;
}
.jq-file.disabled, .jq-file.disabled .jq-file__browse, .jq-file.disabled .jq-file__name {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}
.jq-number {
  position: relative;
  vertical-align: middle;
  padding: 0 36px 0 0;
}
.jq-number__field {
  width: 100px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
}
.jq-number__field:hover {
  border-color: #B3B3B3;
}
.jq-number__field input {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 9px;
  border: none;
  outline: 0;
  background: 0 0;
  font: 14px Arial, sans-serif;
  color: #333;
}
.jq-number__spin {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 14px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: 1px 1px #FFF;
  cursor: pointer;
}
.jq-number__spin.minus:after, .jq-number__spin:after {
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.jq-number__spin.minus {
  top: auto;
  bottom: 0;
}
.jq-number__spin:hover {
  background: linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-number__spin:active {
  background: #F5F5F5;
  box-shadow: inset 1px 1px 3px #DDD;
}
.jq-number__spin:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 11px;
  width: 0;
  height: 0;
  border-bottom: 5px solid #999;
}
.jq-number__spin.minus:after {
  top: 5px;
  border-top: 5px solid #999;
  border-bottom: none;
}
.jq-number__spin.minus:hover:after {
  border-top-color: #000;
}
.jq-number__spin.plus:hover:after {
  border-bottom-color: #000;
}
.jq-number.focused .jq-number__field {
  border: 1px solid #5794BF;
}
.jq-number.disabled .jq-number__field, .jq-number.disabled .jq-number__spin {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}
.jq-number.disabled .jq-number__spin:after {
  border-bottom-color: #AAA;
}
.jq-number.disabled .jq-number__spin.minus:after {
  border-top-color: #AAA;
}
.jq-selectbox {
  vertical-align: middle;
  cursor: pointer;
}
.jq-selectbox__select {
  height: 32px;
  padding: 0 45px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
}
.jq-selectbox__select:hover {
  background: linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-selectbox__select:active {
  background: #F5F5F5;
  box-shadow: inset 1px 1px 3px #DDD;
}
.jq-selectbox.focused .jq-selectbox__select {
  border: 1px solid #5794BF;
}
.jq-selectbox.disabled .jq-selectbox__select {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}
.jq-selectbox__select-text {
  display: block;
  width: 100%;
}
.jq-selectbox .placeholder {
  color: #888;
}
.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  border-left: 1px solid #CCC;
}
.jq-selectbox__trigger-arrow {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 0;
  height: 0;
  border-top: 5px solid #999;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #000;
}
.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  border-top-color: #AAA;
}
.jq-selectbox__dropdown, .jq-selectbox__search input {
  width: 100% !important;
  border: 1px solid #CCC;
  box-sizing: border-box;
}
.jq-selectbox__dropdown {
  margin: 2px 0 0;
  padding: 0;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font: 14px/18px Arial, sans-serif;
}
.jq-selectbox__search {
  margin: 5px;
}
.jq-selectbox__search input {
  margin: 0;
  padding: 5px 27px 6px 8px;
  border-radius: 10px;
  outline: 0;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==)  100% 50% no-repeat;
  box-shadow: inset 1px 1px #F1F1F1;
  color: #333;
}
.jq-selectbox__not-found {
  margin: 5px;
  padding: 5px 8px 6px;
  background: #F0F0F0;
  font-size: 13px;
}
.jq-selectbox ul {
  margin: 0;
  padding: 0;
}
.jq-selectbox li {
  min-height: 18px;
  padding: 5px 10px 6px;
  color: #231F20;
}
.jq-selectbox li.selected {
  background-color: #A3ABB1;
  color: #FFF;
}
.jq-selectbox li:hover {
  background-color: #08C;
  color: #FFF;
}
.jq-selectbox li.disabled {
  color: #AAA;
}
.jq-selectbox li.disabled:hover {
  background: 0 0;
}
.jq-selectbox li.optgroup {
  font-weight: 700;
}
.jq-selectbox li.optgroup:hover {
  background: 0 0;
  color: #231F20;
  cursor: default;
}
.jq-selectbox li.option {
  padding-left: 25px;
}
.jq-select-multiple {
  box-sizing: border-box;
  padding: 1px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  background: #FFF;
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/18px Arial, sans-serif;
  color: #333;
  cursor: default;
}
.jq-select-multiple.focused {
  border: 1px solid #5794BF;
}
.jq-select-multiple.disabled {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}
.jq-select-multiple ul {
  margin: 0;
  padding: 0;
}
.jq-select-multiple li {
  padding: 3px 9px 4px;
  list-style: none;
}
.jq-select-multiple li:first-child {
  border-radius: 3px 3px 0 0;
}
.jq-select-multiple li:last-child {
  border-radius: 0 0 3px 3px;
}
.jq-select-multiple li.selected {
  background: #08C;
  color: #FFF;
}
.jq-select-multiple li.disabled {
  color: #AAA;
}
.jq-select-multiple li.optgroup {
  font-weight: 700;
}
.jq-select-multiple li.option {
  padding-left: 25px;
}
.jq-select-multiple li.selected.disabled, .jq-select-multiple.disabled li.selected {
  background: #CCC;
  color: #FFF;
}
input[type=email].styler, input[type=password].styler, input[type=search].styler, input[type=tel].styler, input[type=text].styler, input[type=url].styler, textarea.styler {
  padding: 8px 9px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333;
}
input[type=search].styler {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea.styler {
  overflow: auto;
}
input[type=email].styler:hover, input[type=password].styler:hover, input[type=search].styler:hover, input[type=tel].styler:hover, input[type=text].styler:hover, input[type=url].styler:hover, textarea.styler:hover {
  border-color: #B3B3B3;
}
input[type=email].styler:hover:focus, input[type=password].styler:hover:focus, input[type=search].styler:hover:focus, input[type=tel].styler:hover:focus, input[type=text].styler:hover:focus, input[type=url].styler:hover:focus, textarea.styler:hover:focus {
  border-color: #B3B3B3 #CCC #CCC;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
button.styler, input[type=button].styler, input[type=submit].styler, input[type=reset].styler {
  overflow: visible;
  padding: 8px 11px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  border-radius: 4px;
  outline: 0;
  background: linear-gradient(#FFF, #E6E6E6);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
  cursor: pointer;
}
button.styler.styler::-moz-focus-inner, input[type=button].styler.styler::-moz-focus-inner, input[type=submit].styler.styler::-moz-focus-inner, input[type=reset].styler.styler::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button.styler:not([disabled]):hover, input[type=button].styler:not([disabled]):hover, input[type=submit].styler:not([disabled]):hover, input[type=reset].styler:hover, input[type=reset].styler:not([disabled]):hover {
  background: linear-gradient(#F6F6F6, #E6E6E6);
}
button.styler:active, input[type=button].styler:active, input[type=submit].styler:active, input[type=reset].styler:active {
  background: #F5F5F5;
  box-shadow: inset 1px 1px 3px #DDD;
}
button.styler[disabled], input[type=button].styler[disabled], input[type=submit].styler[disabled] {
  border-color: #CCC;
  background: #F5F5F5;
  box-shadow: none;
  color: #888;
}
.jq-checkbox, .jq-radio, .jq-select-multiple li, .jq-selectbox li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.jq-file__name, .jq-selectbox__select-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.jq-checkbox, .jq-file, .jq-number, .jq-radio {
  display: inline-block;
}
.jq-checkbox, .jq-radio {
  position: relative;
  overflow: hidden;
  user-select: none;
}
.jq-checkbox input, .jq-radio input {
  position: absolute;
  z-index: -1;
  margin: 0;
  padding: 0;
  opacity: 0;
}
.jq-file {
  position: relative;
  overflow: hidden;
}
.jq-file input {
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 0;
  font-size: 100px;
  line-height: 1em;
}
.jq-select-multiple, .jq-selectbox {
  position: relative;
  display: inline-block;
}
.jq-select-multiple select, .jq-selectbox select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
}
.jq-select-multiple li, .jq-selectbox li {
  user-select: none;
  white-space: nowrap;
}
.jq-selectbox {
  z-index: 10;
}
.jq-selectbox__select {
  position: relative;
}
.jq-selectbox__select-text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.jq-selectbox__dropdown {
  position: absolute;
}
.jq-selectbox__search input {
  -webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button, .jq-selectbox__search input::-webkit-search-decoration {
  -webkit-appearance: none;
}
.jq-selectbox__dropdown ul {
  position: relative;
  overflow: auto;
  overflow-x: hidden;
  list-style: none;
  -webkit-overflow-scrolling: touch;
}
.jq-select-multiple ul {
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.jq-number__field input {
  -moz-appearance: textfield;
  text-align: left;
}
.jq-number__field input::-webkit-inner-spin-button, .jq-number__field input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled, .r-tabs .r-tabs-nav .r-tabs-state-disabled {
  opacity: 0.5;
}
form.shop2-filter {
  border: none;
  padding: 0;
}
form.shop2-filter table tr td, form.shop2-filter table tr th {
  color: #000;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.2;
}
form.shop2-filter table tr th {
  padding: 8px 14px;
}
form.shop2-filter table tr td {
  padding: 2px 12px;
}
form.shop2-filter table tr td select {
  margin-left: 0;
}
form.shop2-filter table tr:first-child th {
  padding-top: 2px;
}
form.shop2-filter label {
  padding: 0;
}
form.shop2-filter label input {
  width: 53px;
}
form.shop2-filter a.shop-filter-param-val {
  padding: 0 0 0 20px;
  position: relative;
  border: none;
  color: #000;
  font-weight: 700;
  font-size: 14px;
}
form.shop2-filter a.shop-filter-param-val:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid #b9b9b9;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
}
form.shop2-filter a.shop-filter-param-val-active {
  background: 0 0;
  color: #000;
  font-weight: 700;
  margin: 2px 2px 3px;
}
form.shop2-filter a.shop-filter-param-val-active:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 1px;
  z-index: 1;
  width: 7px;
  height: 11px;
  border-bottom: 2px solid #1a9f29;
  border-right: 2px solid #1a9f29;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
form.shop2-filter .shop2-button {
  display: block;
  -webkit-box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  -moz-box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  background: #059e14;
  border: none;
  color: #fff;
  width: 125px;
  margin: 0 auto 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
form.shop2-filter .shop2-button:hover {
  background: #000;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
form.shop2-filter .shop2-button span {
  color: #fff;
  background: 0 0 !important;
}
form.shop2-filter .shop2-button span.shop2-button-left {
  padding: 0 5px;
}
form.shop2-filter .shop2-button span.shop2-button-right {
  display: none;
}
form.shop2-filter span.filter-result {
  display: block;
  width: 125px;
  margin: 0 auto;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 3px;
}
#search-app #search-result hr, form.shop2-filter span.filter-result .filter-result-arrow {
  display: none;
}
#shop2-color-ext-popup {
  width: auto;
  max-width: 220px;
}
.shop2-color-ext-list li {
  margin-right: 5px;
}
div.tpl-product-list-h div.product-spec, div.tpl-product-list-v div.product-spec {
  background: #1a9f29;
  -webkit-border-radius: 0 0 0 3px;
  -moz-border-radius: 0 0 0 3px;
  -ms-border-radius: 0 0 0 3px;
  -o-border-radius: 0 0 0 3px;
  border-radius: 0 0 0 3px;
}
div.tpl-product-list-h div.product-new, div.tpl-product-list-v div.product-new {
  -webkit-border-radius: 3px 0 0 0;
  -moz-border-radius: 3px 0 0;
  -ms-border-radius: 3px 0 0 0;
  -o-border-radius: 3px 0 0;
  border-radius: 3px 0 0;
}
div.tpl-product-list-h div.product-new, div.tpl-product-list-h div.product-spec, div.tpl-product-list-v div.product-new, div.tpl-product-list-v div.product-spec {
  top: 0;
  padding-top: 3px;
}
div.tpl-product-list-v div.product-top {
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-bottom: 0;
  padding: 20px 20px 0;
  -webkit-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;
}
div.tpl-product-list-v div.product-bot {
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-top: 0;
  -webkit-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;
}
div.tpl-product-list-v p.product-name a {
  margin-bottom: 5px;
  font: 400 15px Arial, Helvetica, sans-serif;
  color: #000;
  text-decoration: none !important;
}
div.tpl-product-list-v p.product-name a:hover {
  color: #000;
}
div.tpl-product-list-v {
  margin: 15px -12px 21px 0;
}
@media (max-width: 1200px) {
  div.tpl-product-list-v {
    margin: 15px 0 21px;
    text-align: center;
  }
}
div.tpl-product-list-v p.product-name {
  margin: 0 0 6px;
}
div.tpl-product-list-v div.product-note {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  font: 13px Arial, Helvetica, sans-serif;
  padding: 8px 0 9px;
  margin-bottom: 0;
}
.tpl-product .product-compare, .tpl-product-list-h .product-compare, .tpl-product-list-v .product-compare {
  margin: 10px 0 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  font-size: 14px;
}
.tpl-product .product-compare input, .tpl-product-list-h .product-compare input, .tpl-product-list-v .product-compare input {
  margin: 0 5px 0 0;
}
div.tpl-product-list-v p.product-part {
  margin-bottom: 9px;
  line-height: 1.7;
  text-decoration: none;
  font-size: 11px;
  font-weight: 400;
}
div.tpl-product-list-v .old-price {
  margin-top: 0;
}
div.tpl-product-list-v div.product-hr {
  border: none;
  padding: 11px 0 8px;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
div.tpl-product-list-v div.product-price, div.tpl-product-list-v div.product-price b, div.tpl-product-list-v div.product-price span {
  font-size: 14px;
  font-weight: 700;
}
div.tpl-product-list-v .old-price span {
  font-size: 13px;
  color: #666;
}
div.tpl-product-list-v .old-price b {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}
div.tpl-product-list-v button.product-buy {
  margin-top: 0;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 50px;
  -webkit-box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  -moz-box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  background: #059e14;
  width: 60px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
div.tpl-product-list-v button.product-buy:hover {
  background: #000;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
div.tpl-product-list-v button.product-buy span {
  height: 50px;
  width: 100%;
}
div.tpl-product-list-v button.product-buy span.buy {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0iTGF5ZXJfMSIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMzAgMzAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxjaXJjbGUgY3g9IjIyIiBjeT0iMjUiIHI9IjIiIGlkPSJjaXJjbGUtMiIgZmlsbC1vcGFjaXR5PSIxIiB0eXBlPSJzb2xpZENvbG9yIiBmaWxsPSIjZmZmZmZmIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxMiIgY3k9IjI1IiByPSIyIiBpZD0iY2lyY2xlLTMiIGZpbGwtb3BhY2l0eT0iMSIgdHlwZT0ic29saWRDb2xvciIgZmlsbD0iI2ZmZmZmZiI+PC9jaXJjbGU+PHBvbHlnb24gcG9pbnRzPSIyNCwyMCAxMC41LDIwIDcsOSAyNyw5ICIgaWQ9InBvbHlnb24tNCIgZmlsbC1vcGFjaXR5PSIwIiB0eXBlPSJzb2xpZENvbG9yIiBmaWxsPSIjMDAwMDAwIiBzdHJva2Utb3BhY2l0eT0iMSIgc3Ryb2tlPSIjZmZmZmZmIiBkYXRhLWNoYW5nZWQ9InRydWUiPjwvcG9seWdvbj48cGF0aCBkPSJNMiwzICBoMS44NzhjMC42NjUsMCwxLjI1MSwwLjQzOCwxLjQzOSwxLjA3N2w0LjI2MSwxNC40ODhDOS44MjgsMTkuNDE1LDEwLjYwOSwyMCwxMS40OTYsMjBoMTAuOTc2YzAuOTAyLDAsMS42OTItMC42MDQsMS45My0xLjQ3NEwyNyw5ICBINyIgc3R5bGU9InN0cm9rZS1saW5lY2FwOiByb3VuZDsgc3Ryb2tlLWxpbmVqb2luOiByb3VuZDsgc3Ryb2tlLW1pdGVybGltaXQ6IDEwOyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1vcGFjaXR5PSIxIiBpZD0icGF0aC01IiB0eXBlPSJzb2xpZENvbG9yIiBkYXRhLWNoYW5nZWQ9InRydWUiPjwvcGF0aD48L3N2Zz4=)  left 50% top 50%/28px no-repeat;
}
div.tpl-product-list-v button.product-buy span.notavailable {
  height: 25px;
  background: url(../icons-btn.svg) 50% -180px no-repeat;
}
div.tpl-product-list-v button.product-buy span.onrequest {
  height: 25px;
  background: url(../icons-btn.svg) 50% -150px no-repeat;
}
div.tpl-product-list-v ul.product-param li.product-amount {
  padding: 11px 0;
}
div.tpl-product-list-h div.product-amount input.product-amount-field, div.tpl-product-list-v ul.product-param li.product-amount input.product-amount-field {
  height: 24px;
}
div.tpl-product-list-v ul.product-param li.product-amount.amount-calc input.product-amount-field {
  margin: 0 0 0 10px;
  width: 25px;
}
div.tpl-product-list-v ul.product-param li.product-amount.amount-calc select[name=type-unit] {
  height: 24px;
  width: 48px;
  margin-right: 9px;
  padding-left: 6px;
}
div.tpl-product-list-v ul.product-param li div.param-tit {
  margin: 1px 0 0;
  width: 65px;
}
div.tpl-product-list-v ul.product-param li.product-amount.amount-calc, form.tpl-product div.product-bot.amount-calc .product-amount {
  max-width: 100%;
  padding: 11px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
div.tpl-product-list-v ul.product-param li.product-amount.amount-calc .amount-result, form.tpl-product div.product-bot.amount-calc .product-amount .amount-result {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
  -moz-box-flex: 1;
  -moz-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form.tpl-product div.product-bot.amount-calc div.product-amount {
  width: 160px;
}
form.tpl-product div.product-bot.amount-calc div.product-amount .jq-selectbox {
  margin-right: 0;
}
form.tpl-product div.product-right-bar {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
@media (min-width: 1400px) {
  form.tpl-product div.product-right-bar {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 700px;
    -moz-box-flex: 0;
    -moz-flex: 0 1 700px;
    -ms-flex: 0 1 700px;
    flex: 0 1 700px;
  }
}
div.tpl-product-list-v div.product-item {
  width: 15.66%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 1% 20px 0;
}
@media (max-width: 1850px) {
  div.tpl-product-list-v div.product-item {
    width: 18.8%;
  }
  div.tpl-product-list-v div.product-item div.product-hr, div.tpl-product-list-v div.product-item form, div.tpl-product-list-v div.product-item ul.product-param > li {
    width: 100%;
  }
  div.tpl-product-list-v div.product-item div.product-price-wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
#search-app #search-result .result-product .product-item, #search-app form {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-align: center;
}
@media (max-width: 1630px) {
  div.tpl-product-list-v div.product-item {
    width: 23.5%;
  }
}
@media (max-width: 1420px) {
  div.tpl-product-list-v div.product-item {
    width: 31.33%;
  }
}
@media (max-width: 1200px) {
  div.tpl-product-list-v div.product-item {
    width: 220px;
    margin: 0 6px 20px;
  }
}
@media (max-width: 960px) {
  div.tpl-product-list-v div.product-item {
    width: 31.333%;
    margin: 0 1% 15px;
  }
}
@media (max-width: 640px) {
  div.tpl-product-list-v div.product-item {
    width: 46%;
  }
}
@media (max-width: 460px) {
  div.tpl-product-list-v div.product-item {
    width: 100%;
    margin: 0 0 15px;
  }
}
div.tpl-product-list-v div.product-item:nth-child(3n) {
  margin-right: 1%;
}
@media (max-width: 1630px) {
  div.tpl-product-list-v.last_view div.product-item {
    width: 17.5% !important;
  }
}
@media (max-width: 1400px) {
  div.tpl-product-list-v.last_view div.product-item {
    width: 20.5% !important;
  }
}
@media (max-width: 1270px) {
  div.tpl-product-list-v.last_view div.product-item {
    width: 22.5% !important;
  }
}
@media (max-width: 1160px) {
  div.tpl-product-list-v.last_view div.product-item {
    width: 23.5% !important;
  }
}
@media (max-width: 1060px) {
  div.tpl-product-list-v.last_view div.product-item {
    width: 31.3% !important;
  }
}
@media (max-width: 1630px) {
  .modifications .product-item {
    width: 17.5% !important;
  }
}
@media (max-width: 1400px) {
  .modifications .product-item {
    width: 20.5% !important;
  }
}
@media (max-width: 1270px) {
  .modifications .product-item {
    width: 22.5% !important;
  }
}
@media (max-width: 1160px) {
  .modifications .product-item {
    width: 23.5% !important;
  }
}
@media (max-width: 1060px) {
  .modifications .product-item {
    width: 31.3% !important;
  }
}
@media (max-width: 680px) {
  .modifications .product-item {
    width: 48.5% !important;
  }
}
@media (max-width: 480px) {
  .modifications .product-item {
    width: 100% !important;
  }
}
.amount-calc .jq-selectbox, .delivery-item .jq-selectbox, .product-options-wrap .jq-selectbox, .shop2-filter .jq-selectbox {
  margin-right: 9px;
}
.amount-calc .jq-selectbox__select, .delivery-item .jq-selectbox__select, .product-options-wrap .jq-selectbox__select, .shop2-filter .jq-selectbox__select {
  height: 24px;
  padding: 0 29px 0 10px;
  border-radius: 0;
  background: 0 0;
  box-shadow: none;
  text-shadow: none;
  border: 1px solid #e2e3ea;
  color: #131313;
  font: 400 12px Arial, Helvetica, sans-serif;
}
.amount-calc .jq-selectbox__trigger, .delivery-item .jq-selectbox__trigger, .product-options-wrap .jq-selectbox__trigger, .shop2-filter .jq-selectbox__trigger {
  border: none;
  width: 20px;
}
.amount-calc .jq-selectbox__trigger .jq-selectbox__trigger-arrow, .delivery-item .jq-selectbox__trigger .jq-selectbox__trigger-arrow, .product-options-wrap .jq-selectbox__trigger .jq-selectbox__trigger-arrow, .shop2-filter .jq-selectbox__trigger .jq-selectbox__trigger-arrow {
  top: 9px;
  right: 8px;
  border: none;
  border-bottom: 1px solid #666;
  border-right: 1px solid #666;
  width: 4px;
  height: 4px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#search-app #search-result, #search-app form {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.07);
}
.amount-calc .jq-selectbox__select-text, .delivery-item .jq-selectbox__select-text, .product-options-wrap .jq-selectbox__select-text, .shop2-filter .jq-selectbox__select-text {
  line-height: 24px;
}
.amount-calc .jq-selectbox li.selected, .delivery-item .jq-selectbox li.selected, .product-options-wrap .jq-selectbox li.selected, .shop2-filter .jq-selectbox li.selected {
  background: #1a9f29;
  color: #fff;
}
.amount-calc .jq-selectbox li:hover, .delivery-item .jq-selectbox li:hover, .product-options-wrap .jq-selectbox li:hover, .shop2-filter .jq-selectbox li:hover {
  background: #1a9f29;
}
.shop2-filter .jq-selectbox {
  width: 170px;
}
#search-app {
  position: relative;
}
#search-app form {
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.06);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  padding-right: 10px;
  padding-left: 10px;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  overflow: hidden;
}
#search-app form input[type=text] {
  padding: 4px 4px 6px 10px;
  margin: 0;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 13px;
  outline: 0;
  min-height: 40px;
  -webkit-appearance: none;
  font-family: Arial;
  text-align: left;
  color: #000;
  line-height: 1.2;
  letter-spacing: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
#search-app form button, #shop2-cart-preview {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
#search-app form button {
  padding: 3px 4px;
  margin: 0 0 0 5px;
  border: none;
  background: url(../images/wm_search_search.png) left 50% top 50% no-repeat;
  font-size: 0;
  outline: 0;
  min-height: 40px;
  position: relative;
  -webkit-appearance: none;
  width: 40px;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
#search-app #search-result {
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.06);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  position: absolute;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  top: 100%;
  z-index: 10;
  padding: 0 15px 15px;
  margin-top: 0;
  height: 20vh;
  overflow: auto;
}
#search-app #search-result .result-product .product-item {
  margin-bottom: 10px;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#search-app #search-result .result-product .product-item .image {
  margin-right: 15px;
}
#shop2-cart-preview {
  margin: 0;
  border: none;
  width: auto;
  position: relative;
  -webkit-box-shadow: 0 0 34px rgba(5, 138, 5, 0.43);
  -moz-box-shadow: 0 0 34px rgba(5, 138, 5, 0.43);
  box-shadow: 0 0 34px rgba(5, 138, 5, 0.43);
  background: #1a9f29;
  box-sizing: border-box;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 0 0 0 60px;
  height: 50px;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
#shop2-cart-preview:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -25px;
  display: block;
  height: 16px;
  width: 50px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0iTGF5ZXJfMSIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMzAgMzAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxjaXJjbGUgY3g9IjIyIiBjeT0iMjUiIHI9IjIiIGlkPSJjaXJjbGUtMiIgZmlsbC1vcGFjaXR5PSIxIiB0eXBlPSJzb2xpZENvbG9yIiBmaWxsPSIjZmZmZmZmIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxMiIgY3k9IjI1IiByPSIyIiBpZD0iY2lyY2xlLTMiIGZpbGwtb3BhY2l0eT0iMSIgdHlwZT0ic29saWRDb2xvciIgZmlsbD0iI2ZmZmZmZiI+PC9jaXJjbGU+PHBvbHlnb24gcG9pbnRzPSIyNCwyMCAxMC41LDIwIDcsOSAyNyw5ICIgaWQ9InBvbHlnb24tNCIgZmlsbC1vcGFjaXR5PSIwIiB0eXBlPSJzb2xpZENvbG9yIiBmaWxsPSIjMDAwMDAwIiBzdHJva2Utb3BhY2l0eT0iMSIgc3Ryb2tlPSIjZmZmZmZmIiBkYXRhLWNoYW5nZWQ9InRydWUiPjwvcG9seWdvbj48cGF0aCBkPSJNMiwzICBoMS44NzhjMC42NjUsMCwxLjI1MSwwLjQzOCwxLjQzOSwxLjA3N2w0LjI2MSwxNC40ODhDOS44MjgsMTkuNDE1LDEwLjYwOSwyMCwxMS40OTYsMjBoMTAuOTc2YzAuOTAyLDAsMS42OTItMC42MDQsMS45My0xLjQ3NEwyNyw5ICBINyIgc3R5bGU9InN0cm9rZS1saW5lY2FwOiByb3VuZDsgc3Ryb2tlLWxpbmVqb2luOiByb3VuZDsgc3Ryb2tlLW1pdGVybGltaXQ6IDEwOyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1vcGFjaXR5PSIxIiBpZD0icGF0aC01IiB0eXBlPSJzb2xpZENvbG9yIiBkYXRhLWNoYW5nZWQ9InRydWUiPjwvcGF0aD48L3N2Zz4=)  left 50% top 50%/29px no-repeat;
  margin-right: 10px;
  min-height: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
#shop2-cart-preview .right-part {
  padding-right: 10px;
  text-decoration: none;
}
#shop2-cart-preview .right-part .header-cart {
  color: #fff;
}
#shop2-cart-preview .right-part .header-cart .cart_title {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0;
  font-size: 12px;
}
#shop2-cart-preview .right-part .header-cart .all-price {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
}
div.tpl-product-list-v div.product-img {
  border: 1px solid rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.07);
  margin: 0 auto 10px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  min-height: 215px;
}
div.tpl-product-list-v ul.product-param > li:not(.product-amount) {
  display: none;
}
div.tpl-product-list-v div.product-price-wrap {
  width: 95px;
}
.r-tabs .r-tabs-nav {
  margin: 0;
  padding: 0;
}
.r-tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  list-style: none;
}
.r-tabs .r-tabs-accordion-title, .r-tabs .r-tabs-panel {
  display: none;
}
.r-tabs .r-tabs-panel p {
  margin: 0;
}
.r-tabs .r-tabs-panel * {
  color: #000 !important;
}
.r-tabs .r-tabs-panel * a {
  color: #000;
  text-decoration: underline;
}
.r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block;
}
@media only screen and (max-width: 767px) {
  .r-tabs .r-tabs-nav {
    display: none;
  }
  .r-tabs .r-tabs-accordion-title {
    display: block;
  }
}
.r-tabs {
  position: relative;
}
.r-tabs .r-tabs-nav .r-tabs-tab {
  position: relative;
  background-color: #e0e0e0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.r-tabs .r-tabs-nav .r-tabs-anchor {
  display: inline-block;
  padding: 16px 24px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  color: #000;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}
.r-tabs .r-tabs-panel {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  -webkit-border-radius: 0 4px 4px 4px;
  -moz-border-radius: 0 4px 4px;
  -ms-border-radius: 0 4px 4px 4px;
  -o-border-radius: 0 4px 4px;
  border-radius: 0 4px 4px;
  padding: 10px 33px 18px;
  font-size: 14px;
  line-height: 1.8;
}
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  display: block;
  padding: 10px;
  background-color: #e0e0e0;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.r-tabs .r-tabs-accordion-title.r-tabs-state-active {
  margin-bottom: -1px;
  position: relative;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border: 1px solid #e0e0e0;
  border-bottom: 0;
}
@media (max-width: 767px) {
  .r-tabs .r-tabs-accordion-title.r-tabs-state-active {
    margin-top: 2px;
    overflow: hidden;
  }
  .r-tabs .r-tabs-accordion-title.r-tabs-state-active + div {
    margin-bottom: 2px;
  }
}
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  background-color: #fff;
  color: #000;
}
div.shop2-tags {
  padding: 12px 20px;
  font: 13px Arial, Helvetica, sans-serif;
  margin-bottom: 31px;
}
div.shop2-tags > span {
  display: none;
}
div.shop2-tags a {
  font: 700 14px Arial, Helvetica, sans-serif;
  color: #1a9f29;
}
.shop2-folders-list_wr .title_list {
  font: 12px Arial, Helvetica, sans-serif;
}
.shop2-folders-list_wr .shop2-folders-list {
  font: 700 14px Arial, Helvetica, sans-serif;
}
.shop2-folders-list_wr .shop2-folders-list a {
  text-decoration: underline;
  color: #1a9f29;
}
.shop2-folders-list_wr .shop2-folders-list a:hover {
  text-decoration: none;
}
form.tpl-product div.product-bot {
  border: 1px solid #e4e4e4;
  margin-bottom: 0;
  width: 100%;
  padding: 7px 9px 8px 21px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
form.tpl-product div.product-bot div.buy-button {
  width: auto;
}
form.tpl-product div.product-options-wrap {
  border: 1px solid #e4e4e4;
  border-top: 0;
  padding: 6px;
}
form.tpl-product .vendr_wr {
  font-size: 0;
  border-bottom: 1px solid #e4e4e4;
  padding: 5px 14px 4px;
}
form.tpl-product .vendr_wr .product-options-tit, form.tpl-product .vendr_wr .product-vendor-name {
  margin: 0;
  font: 400 13px Arial, Helvetica, sans-serif;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 7px 0;
}
form.tpl-product .vendr_wr .product-options-tit {
  width: 38%;
  min-width: 110px;
}
form.tpl-product .vendr_wr .product-vendor-name {
  width: 62%;
}
form.tpl-product .vendr_wr .product-vendor-name a {
  text-decoration: underline;
}
.pr_page h1, form.tpl-product .vendr_wr .product-vendor-name a:hover {
  text-decoration: none;
}
form.tpl-product div.product-right-bar .product-options-row {
  font-size: 0;
  border-bottom: 1px solid #e4e4e4;
  padding: 5px 16px;
}
form.tpl-product div.product-right-bar div.product-options, form.tpl-product div.product-right-bar div.product-options-tit {
  margin: 0;
  padding: 7px 0;
  font: 400 13px Arial, Helvetica, sans-serif;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form.tpl-product div.product-right-bar div.product-options-tit {
  width: 38%;
}
form.tpl-product div.product-right-bar div.product-options {
  width: 62%;
}
form.tpl-product div.product-right-bar .tpl-rating-block {
  font: 400 13px Arial, Helvetica, sans-serif;
  color: #000;
  margin: 11px 17px 5px;
}
form.tpl-product div.product-right-bar .tpl-rating-block .tpl-stars {
  vertical-align: middle;
}
form.tpl-product div.product-wrap .product-left-bar .top_pic img, form.tpl-product div.product-wrap .product-thumbnails-wrapper .product-thumbnails li a img {
  vertical-align: top;
}
form.tpl-product div.product-bot div.product-price span {
  font: 400 25px Arial, Helvetica, sans-serif;
  color: #000;
}
form.tpl-product div.product-bot div.product-price em {
  font: 400 21px Arial, Helvetica, sans-serif;
  color: #000;
}
form.tpl-product div.product-bot div.product-price .price-old span {
  font: 400 20px Arial, Helvetica, sans-serif;
  color: #666;
}
form.tpl-product div.product-bot div.product-amount {
  margin: 0 15px 0 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: center;
  align-items: center;
}
form.tpl-product div.product-bot div.product-amount input {
  height: 24px;
  line-height: 24px;
  width: 25px;
}
.tpl-product.shop2-product-item .product-compare {
  margin: 5px 0 0;
  padding: 0 16px 13px;
}
form.tpl-product div.product-bot div.buy-button .product-buy {
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 50px;
  -webkit-box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  -moz-box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  box-shadow: 0 6px 21px rgba(5, 158, 20, 0.41);
  background: #1a9f29;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  width: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
form.tpl-product div.product-bot div.buy-button .product-buy:hover {
  background: #000;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
form.tpl-product div.product-bot div.buy-button .product-buy span {
  font: 700 15px/50px Arial, Helvetica, sans-serif;
  color: #fff;
  text-indent: 0;
  height: 50px;
  text-transform: uppercase;
  text-align: left;
  width: auto;
  padding: 0 46px 0 14px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form.tpl-product div.product-bot div.buy-button .product-buy span.buy {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBpZD0iTGF5ZXJfMSIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMzAgMzAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxjaXJjbGUgY3g9IjIyIiBjeT0iMjUiIHI9IjIiIGlkPSJjaXJjbGUtMiIgZmlsbC1vcGFjaXR5PSIxIiB0eXBlPSJzb2xpZENvbG9yIiBmaWxsPSIjZmZmZmZmIj48L2NpcmNsZT48Y2lyY2xlIGN4PSIxMiIgY3k9IjI1IiByPSIyIiBpZD0iY2lyY2xlLTMiIGZpbGwtb3BhY2l0eT0iMSIgdHlwZT0ic29saWRDb2xvciIgZmlsbD0iI2ZmZmZmZiI+PC9jaXJjbGU+PHBvbHlnb24gcG9pbnRzPSIyNCwyMCAxMC41LDIwIDcsOSAyNyw5ICIgaWQ9InBvbHlnb24tNCIgZmlsbC1vcGFjaXR5PSIwIiB0eXBlPSJzb2xpZENvbG9yIiBmaWxsPSIjMDAwMDAwIiBzdHJva2Utb3BhY2l0eT0iMSIgc3Ryb2tlPSIjZmZmZmZmIiBkYXRhLWNoYW5nZWQ9InRydWUiPjwvcG9seWdvbj48cGF0aCBkPSJNMiwzICBoMS44NzhjMC42NjUsMCwxLjI1MSwwLjQzOCwxLjQzOSwxLjA3N2w0LjI2MSwxNC40ODhDOS44MjgsMTkuNDE1LDEwLjYwOSwyMCwxMS40OTYsMjBoMTAuOTc2YzAuOTAyLDAsMS42OTItMC42MDQsMS45My0xLjQ3NEwyNyw5ICBINyIgc3R5bGU9InN0cm9rZS1saW5lY2FwOiByb3VuZDsgc3Ryb2tlLWxpbmVqb2luOiByb3VuZDsgc3Ryb2tlLW1pdGVybGltaXQ6IDEwOyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1vcGFjaXR5PSIxIiBpZD0icGF0aC01IiB0eXBlPSJzb2xpZENvbG9yIiBkYXRhLWNoYW5nZWQ9InRydWUiPjwvcGF0aD48L3N2Zz4=)  right 12px top 50%/28px no-repeat;
}
form.tpl-product div.product-wrap {
  margin: 25px 0 2px;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  form.tpl-product div.product-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  form.tpl-product div.product-wrap .product-left-bar {
    width: 100%;
  }
  form.tpl-product div.product-wrap .product-thumbnails-wrapper .product-thumbnails {
    text-align: center;
  }
}
form.tpl-product div.product-wrap .product-left-bar {
  width: 235px;
}
@media (max-width: 767px) {
  form.tpl-product div.product-wrap .product-left-bar {
    width: 100%;
  }
}
form.tpl-product div.product-wrap .product-left-bar .top_pic {
  text-align: center;
  margin-bottom: 6px;
}
form.tpl-product div.product-wrap div.product-left-bar {
  padding: 0 7px 0 0;
}
form.tpl-product div.product-wrap .product-thumbnails-wrapper .product-thumbnails {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0;
}
form.tpl-product div.product-wrap .product-thumbnails-wrapper .product-thumbnails li {
  display: inline-block;
  vertical-align: top;
  margin: 0 6px 6px 0;
  width: 74px;
  height: 74px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form.tpl-product div.product-wrap .product-thumbnails-wrapper .product-thumbnails li:nth-child(3n) {
  margin-right: 0;
}
form.tpl-product div.product-wrap .product-thumbnails-wrapper .product-thumbnails li a {
  display: block;
  position: relative;
  text-align: center;
}
form.tpl-product div.product-wrap .product-thumbnails-wrapper .product-thumbnails li.active a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 4px solid #1a9f29;
}
html body form.tpl-product.shop2-product-item div.product-bot.amount-calc .product-amount .amount-result {
  display: none;
}
html body form.tpl-product.shop2-product-item div.product-bot.amount-calc .product-amount .amount-result.active {
  display: inline-block;
}
form.tpl-product div.product-bot.amount-calc div.buy-button {
  margin-top: 0;
}
@media (max-width: 1200px) and (min-width: 961px) {
  form.tpl-product div.product-bot.amount-calc div.buy-button {
    margin-bottom: 10px;
  }
}
@media (max-width: 560px) {
  form.tpl-product div.product-bot.amount-calc div.buy-button {
    width: 100%;
    margin: 10px 0;
  }
}
form.tpl-product div.product-bot div.buy-button {
  height: 50px;
}
form.tpl-product div.product-bot.amount-calc div.product-price {
  width: auto;
}
@media (max-width: 1200px) and (min-width: 961px) {
  form.tpl-product div.product-bot.amount-calc div.product-price {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  form.tpl-product div.product-bot.amount-calc div.product-price {
    width: 100%;
    margin: 0 0 10px;
  }
}
.pr_page .widget-35 {
  padding: 0;
}
.pr_page h1 {
  margin: 0;
  font-size: 22px;
  box-sizing: border-box;
  font-weight: 700;
  padding-bottom: 14px;
}
.pr_page .block-27 {
  padding-top: 12px;
}
.pr_page form.tpl-product div.product-wrap {
  margin-top: 0;
}
.pr_page .block-13 {
  padding-right: 0;
}
@media (max-width: 1200px) {
  .pr_page .block-29 .layout_45 {
    display: none;
  }
}
h2.prod_h2 {
  font: 400 15px Arial, Helvetica, sans-serif;
  color: #000;
  margin: 0 0 15px;
}
h2.last_pr {
  font: 700 16px Arial, Helvetica, sans-serif;
  color: #000;
  margin: 33px 0 12px;
}
h2.last_pr + .new_products div.tpl-product-list-v {
  margin: 12px 0 21px;
}
div.shop2-cleanup-wrap {
  margin-bottom: 13px;
}
div.shop2-cleanup-wrap a.shop2-button {
  padding: 7px 31px 8px 5px;
  font: 13px Arial, Helvetica, sans-serif;
  color: #000;
  background: url(../close_btn.png) right 13px top 17px no-repeat #fff;
  border: 1px solid #c2c2c2;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
div.shop2-cleanup-wrap a.shop2-button span.shop2-button-left {
  background: 0 0;
  height: 100%;
}
div.shop2-cleanup-wrap a.shop2-button .shop2-button-right {
  display: none;
}
#shop2-cart #shop2-cart-page td.shop2-cart-image {
  width: 98px;
}
#shop2-cart #shop2-cart-page th {
  padding: 8px 5px;
  font: 400 11px Arial, Helvetica, sans-serif;
  background: #fff;
  border-bottom: 1px solid #ececec;
  color: #c1c1c1;
}
#shop2-cart #shop2-cart-page th:first-child {
  text-align: left;
}
#shop2-cart #shop2-cart-page th.price_discounted {
  min-width: 110px;
}
#shop2-cart #shop2-cart-page .shop2-cart-amount a {
  font: 11px Arial, Helvetica, sans-serif;
  color: #1a9f29;
  text-decoration: underline;
}
#shop2-cart #shop2-cart-page .shop2-cart-amount a:hover {
  text-decoration: none;
}
#shop2-cart #shop2-cart-page tr.odd td {
  border-bottom: 1px solid #f5f5f5;
}
#shop2-cart #shop2-cart-page tr.even td {
  background: #f5f5f5;
  border-bottom: 0;
}
@media (min-width: 641px) {
  #shop2-cart #shop2-cart-page tr td div.title, #shop2-cart #shop2-cart-page tr td span.title {
    display: none;
  }
}
#shop2-cart #shop2-cart-page tr td.price_discounted {
  color: #e30417;
}
#shop2-cart #shop2-cart-page tr td.price_discounted .title {
  color: #000;
}
#shop2-cart #shop2-cart-page .shop2-cart-delete-icon img {
  width: 12px;
  height: 12px;
  background: url(../cart_del.png) no-repeat;
}
#shop2-cart #shop2-cart-page td.shop2-cart-amount {
  width: 135px;
  font-size: 0;
}
#shop2-cart #shop2-cart-page td.shop2-cart-amount span, #shop2-cart #shop2-cart-page td.shop2-cart-amount strong {
  font-weight: 400;
  font-size: 11px;
}
#shop2-cart #shop2-cart-page td.shop2-cart-amount sup {
  font-size: 10px;
  margin-right: 5px;
}
#shop2-cart #shop2-cart-page td.shop2-cart-amount .title {
  font-size: 11px;
}
#shop2-cart #shop2-cart-page td.shop2-cart-price, #shop2-cart #shop2-cart-page td.shop2-cart-price.bold {
  font: 400 12px Arial, Helvetica, sans-serif;
  color: #000;
}
#shop2-cart #shop2-cart-page td.shop2-cart-body {
  padding-top: 5px;
}
@media (max-width: 640px) {
  #shop2-cart #shop2-cart-page tr td div.title span.title, #shop2-cart #shop2-cart-page tr td div.title span.title + img, #shop2-cart #shop2-cart-page tr td span.title span.title, #shop2-cart #shop2-cart-page tr td span.title span.title + img {
    display: inline-block;
    vertical-align: middle;
  }
  #shop2-cart #shop2-cart-page td.shop2-cart-body {
    padding-top: 13px;
    text-align: center;
  }
}
#shop2-cart #shop2-cart-page td.shop2-cart-price {
  min-width: 80px;
}
#shop2-cart #shop2-cart-page td.shop2-cart-image + .shop2-cart-body a {
  font: 12px Arial, Helvetica, sans-serif;
  color: #000;
}
#shop2-cart #shop2-cart-page td.shop2-cart-delete {
  width: 10px;
  padding: 8px;
}
@media (max-width: 640px) {
  #shop2-cart #shop2-cart-page tr {
    display: block;
  }
  #shop2-cart #shop2-cart-page tr th:not(:first-child) {
    display: none;
  }
  #shop2-cart #shop2-cart-page tr th:first-child {
    display: block;
    width: 100%;
  }
  #shop2-cart #shop2-cart-page tr td {
    display: block;
    width: 100% !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.iframe-wrapper {
  max-height: 450px;
  overflow-y: auto;
  display: block;
}
@media (max-width: 698px) {
  .iframe-wrapper tbody {
    display: block;
  }
}
#shop2-cart #shop2-cart-page td.shop2-cart-body a {
  font-size: 11px;
}
#shop2-cart #shop2-cart-page td, #shop2-cart #shop2-cart-page td.shop2-cart-body {
  padding: 3px 6px !important;
}
table.shop2-cart-totals td.total-item, table.shop2-cart-totals td.total-price {
  font: 400 13px/30px Arial, Helvetica, sans-serif;
  color: #000;
  border-bottom: 1px solid #f7f7f7;
}
table.shop2-cart-totals td.total-item.last-line, table.shop2-cart-totals td.total-price.last-line {
  border-bottom: 1px solid #f5f5f5;
  color: #e74c3c;
}
table.shop2-cart-totals td.total-item {
  width: auto;
  text-align: left;
}
table.shop2-cart-totals td.total-price {
  font-size: 20px;
  font-weight: 700;
}
table.shop2-cart-totals div.coupon-block div.coupon-block-arrow {
  background: 0 0;
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #f5f5f5;
  border-style: solid;
  border-width: 7px 0 7px 7px;
  right: -7px;
  top: 50%;
  margin-top: -7px;
}
table.shop2-cart-totals div.coupon-block {
  width: 303px;
  margin-right: 55px;
  height: auto;
  padding: 17px 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #f5f5f5;
}
@media (max-width: 640px) {
  table.shop2-cart-totals div.coupon-block {
    margin-right: 5px;
  }
}
table.shop2-cart-totals div.coupon-block #cart-coupon {
  outline: 0;
  width: 152px;
  height: 32px;
  font: 13px/32px Arial, Helvetica, sans-serif;
  padding: 0 15px;
  letter-spacing: 1px;
  border: none;
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
table.shop2-cart-totals div.coupon-block a.shop2-button {
  width: 110px;
  height: 32px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  background: #1a9f29;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
table.shop2-cart-totals div.coupon-block a.shop2-button .shop2-button-left {
  width: 100%;
  height: 100%;
  padding: 0;
  background: 0 0;
  font: 13px/32px Arial, Helvetica, sans-serif;
  letter-spacing: 1.5px;
  color: #fff;
}
table.shop2-cart-totals div.coupon-block a.shop2-button .shop2-button-right {
  display: none;
}
@media (max-width: 600px) {
  table.shop2-cart-totals tr {
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  table.shop2-cart-totals tr td.coupon-block {
    width: 100%;
  }
  table.shop2-cart-totals tr td {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  table.shop2-cart-totals tr div.coupon-block {
    width: 100%;
    margin-right: 0;
  }
  table.shop2-cart-totals tr div.coupon-block .coupon-block-arrow {
    display: none;
  }
  table.shop2-cart-totals tr div.coupon-block #cart-coupon {
    width: -webkit-calc(100% - 125px);
    width: -moz-calc(100% - 125px);
    width: calc(100% - 125px);
  }
  table.shop2-cart-totals tr td.coupons-list, table.shop2-cart-totals tr td.coupons-title {
    text-align: left;
    display: block;
    width: 100%;
    padding: 3px 0;
  }
  table.shop2-cart-totals tr td.coupons-list.empty, table.shop2-cart-totals tr td.coupons-title.empty {
    display: none;
  }
}
.cart_reg_wr {
  background: #f7f7f7;
  padding-bottom: 20px;
}
@media (max-width: 725px) {
  .cart_reg_wr {
    padding-bottom: 20px;
  }
}
.cart_reg_wr .cart-registration-header {
  font: 21px Arial, Helvetica, sans-serif;
  color: #000;
  text-align: center;
  padding: 15px 0;
}
.cart_reg_wr .cart-registration-left, .cart_reg_wr .cart-registration-right {
  float: none;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: 0 0;
  height: auto;
}
.cart_reg_wr .cart-registration-left {
  border: none;
}
.cart_reg_wr .cart-registration-left form {
  font-size: 0;
  width: 100%;
  margin: 10px auto 15px;
}
@media (max-width: 725px) {
  .cart_reg_wr .cart-registration-header {
    padding: 20px 0;
  }
  .cart_reg_wr .cart-registration-left form {
    margin: 0;
  }
}
.cart_reg_wr .cart-registration-left form input[name=login], .cart_reg_wr .cart-registration-left form input[name=password] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  outline: 0;
  border: none;
  background: #fff;
  height: 38px;
  font: 13px/38px Arial, Helvetica, sans-serif;
  color: #000;
  padding: 0 16px;
  vertical-align: top;
}
.cart_reg_wr .cart-registration-left form input[name=login] {
  width: 160px;
}
@media (max-width: 725px) {
  .cart_reg_wr .cart-registration-left form input[name=login] {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    margin: 0 10px 10px;
  }
}
.cart_reg_wr .cart-registration-left form input[name=password] {
  width: 220px;
  margin: 0 4px;
}
@media (max-width: 725px) {
  .cart_reg_wr .cart-registration-left form input[name=password] {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    margin: 0 10px 10px;
  }
  .cart_reg_wr .cart-registration-left form a.shop2-button {
    margin: 0 10px 10px;
  }
}
.cart_reg_wr .cart-registration-left form a.shop2-button {
  vertical-align: top;
  width: 250px;
  height: 38px;
  background: #1a9f29;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.cart_reg_wr .cart-registration-left form a.shop2-button .shop2-button-left {
  width: 100%;
  height: 100%;
  background: 0 0;
  color: #fff;
  padding: 0;
  font: 700 14px/38px Arial, Helvetica, sans-serif;
}
.cart_reg_wr .cart-registration-right .cart-registration-text .text_wr {
  width: 365px;
  display: inline-block;
  vertical-align: top;
  font: 14px/18px Arial, Helvetica, sans-serif;
  color: #000;
  padding-left: 7px;
}
@media (max-width: 725px) {
  .cart_reg_wr .cart-registration-right .cart-registration-text .text_wr {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.cart_reg_wr .cart-registration-right .cart-registration-text .text_wr a {
  font-weight: 700;
  text-transform: uppercase;
  color: #1a9f29;
}
.cart_reg_wr .cart-registration-right .cart-registration-text a.shop2-button {
  margin-top: 12px;
  vertical-align: top;
  border: 1px solid #ccc;
  width: 250px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
}
@media (max-width: 725px) {
  .cart_reg_wr .cart-registration-right .cart-registration-text a.shop2-button {
    margin: 10px auto 0;
  }
}
.cart_reg_wr .cart-registration-right .cart-registration-text a.shop2-button .shop2-button-left {
  width: 100%;
  height: 100%;
  background: 0 0;
  color: #89888c;
  padding: 0;
  text-transform: uppercase;
  font: 700 13px/37px Arial, Helvetica, sans-serif;
}
html body .remodal-cancel, html body .remodal_btn {
  font: 700 11px Arial, Helvetica, sans-serif;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.cart_reg_wr .cart-registration-right .cart-registration-text a.shop2-button:hover {
  border-color: #000;
}
.cart_reg_wr .cart-registration-right .cart-registration-text a.shop2-button:hover .shop2-button-left {
  background: #000;
  color: #fff;
}
.cart_reg_wr .cart-registration-right div.cart-registration-text {
  width: 638px;
  padding: 0;
  margin: 0 auto;
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 725px) {
  .cart_reg_wr .cart-registration-right div.cart-registration-text {
    width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#recount-button {
  margin: 14px 26px 0 0;
}
#recount-button a.shop2-button {
  background: #1a9f29;
  color: #fff;
  padding: 0 21px;
  text-align: center;
  letter-spacing: -0.5px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
#recount-button a.shop2-button .shop2-button-left {
  width: 100%;
  height: 100%;
  background: 0 0;
  color: #fff;
  padding: 0;
}
#recount-button a.shop2-button .shop2-button-right {
  display: none;
}
.cart_page .block-27 {
  padding-top: 15px;
}
.cart_page .widget-35 {
  padding: 0;
}
@media (max-width: 1200px) {
  .cart_page .block-13 {
    padding-right: 0;
  }
  .cart_page .block-29 .layout_45 {
    display: none;
  }
}
.cart_page .widget-31 {
  padding: 0;
  margin-bottom: -3px;
}
div.shop2-back > a span {
  color: #fff !important;
  background: #1a9f29;
}
html body .remodal-close {
  left: 100%;
  width: 37px;
  height: 37px;
  background: url(../form_close.png) 11px 11px no-repeat #616161;
}
html body .remodal-close:before {
  content: none;
}
html body .remodal-cancel {
  color: #000;
  background: 0 0;
  border: 1px solid #ccc;
  padding: 10px 19px 11px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
html body .remodal-cancel:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
html body .remodal_btn {
  display: inline-block;
  padding: 11px 33px;
  text-decoration: none;
  background: #1a9f29;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
html body .remodal_btn:hover {
  background: #0a6e11;
}
html body .remodal {
  padding: 10px;
}
@media (min-width: 821px) {
  html body .remodal {
    max-width: 680px;
  }
}
@media (max-width: 820px) {
  html body .remodal {
    max-width: -webkit-calc(100% - 70px);
    max-width: -moz-calc(100% - 70px);
    max-width: calc(100% - 70px);
  }
}
@media (max-width: 767px) {
  html body .remodal {
    max-width: 100%;
  }
  html body .remodal .remodal-close {
    margin-left: -37px;
  }
}
.remodal_btns_wr {
  display: -moz-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .remodal_btns_wr {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .remodal_btns_wr .remodal-cancel {
    margin: 10px 0;
  }
}
@media (max-width: 960px) {
  .filter_btns_wr {
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.filter_wr .filter_btn {
  font: 700 20px/48px Arial, Helvetica, sans-serif;
  padding: 0 10px;
  display: none;
  vertical-align: top;
  background: #1a9f29;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 auto 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.filter_wr .filter_btn:hover {
  background: #0a6e11;
}
@media (max-width: 640px) {
  .filter_btns_wr {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .filter_wr .filter_btn {
    text-align: center;
  }
}
@media (max-width: 960px) {
  .filter_wr .filter_btn {
    display: block;
  }
  .filter_wr .shop2-filter {
    display: none;
  }
  div.shop2-pageist a, div.shop2-pageist span {
    margin: 3px;
  }
}
.filter_select + .links_wr {
  display: none;
}
div.tpl-product-list-v.product-right-side div.product-hr {
  width: 100%;
}
div.tpl-product-list-v {
  text-align: left;
}
.r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect {
  width: 18%;
  margin: 0 1% 10px !important;
}
@media (max-width: 1700px) {
  .r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect {
    width: 20%;
  }
}
@media (max-width: 1440px) {
  .r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect {
    width: 21%;
  }
}
@media (max-width: 1320px) {
  .r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect {
    width: 27%;
  }
}
@media (max-width: 1120px) {
  .r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect {
    width: 30%;
  }
}
@media (max-width: 1020px) {
  .r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect {
    width: 31%;
  }
}
@media (max-width: 767px) {
  .r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect {
    width: 48%;
  }
}
@media (max-width: 560px) {
  .r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect {
    width: 100%;
    margin: 0 0 10px !important;
  }
}
.r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect form {
  width: 100%;
}
.r-tabs .r-tabs-panel div.tpl-product-list-v div.product-item.collect button.product-buy {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
div.shop2-cart-delivery {
  max-width: 100%;
}
div.shop2-cart-delivery .delivery-item input:not([type]), div.shop2-cart-delivery .delivery-item input[type=text], div.shop2-cart-delivery .delivery-item input[type=password], div.shop2-cart-delivery .delivery-item input[type=email], div.shop2-cart-delivery .delivery-item input[type=number], div.shop2-cart-delivery .delivery-item input[type=tel], div.shop2-cart-delivery .delivery-item input[type=url], div.shop2-cart-delivery .delivery-item textarea {
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  min-height: 28px;
}
div.shop2-cart-delivery .delivery-item label > span {
  font-weight: 700;
  padding: 1px 0 8px;
}
div.shop2-cart-delivery div.delivery-detail {
  background: 0 0;
  padding: 10px 0;
}
.jq-radio.checked .jq-radio__div {
  background: #1a9f29;
  box-shadow: none;
}
.content-57 .shop-cart-order {
  background: #1a9f29;
  color: #fff;
  font: 400 15px Arial, Helvetica, sans-serif;
  padding: 4px 15px 7px;
  width: auto;
  display: inline-block;
  height: auto;
}
.settings, .shop2-tags {
  display: none;
}
div.shop2-cleanup-wrap {
  margin-top: -32px;
}
@media (max-width: 1200px) {
  .pr_page div.tpl-product-list-v {
    text-align: left;
  }
}
@media (max-width: 1302px) and (min-width: 1024px) {
  .block-6 {
    margin-left: -10px;
  }
  .block-8 {
    padding-right: 20px;
  }
}
form.tpl-product div.spec-lable {
  background: #1a9f29;
  color: #fefefe;
  font-size: 13px;
  border-radius: 0 0 0 3px;
  top: 0;
  right: 7px;
}
.product-item form .product-img {
  overflow: hidden;
}
.product-item form .product-img img {
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
div.tpl-product-list-v div.product-spec.spec-and-new {
  right: auto;
  left: -1px;
  top: -3px;
  font-size: 0;
  width: 49px;
  height: 47px;
  background: url(../sale.png) 50%/contain no-repeat;
  z-index: 10;
}
div.tpl-product-list-v div.product-new {
  right: -1px;
  left: auto;
  top: -3px;
  font-size: 0;
  width: 82px;
  height: 68px;
  background: url(../new.png) 50%/contain no-repeat;
  z-index: 10;
}
div.tpl-product-list-v div.product-spec, form.tpl-product div.product-spec {
  right: auto;
  left: -1px;
  top: -3px;
  font-size: 0;
  width: 49px;
  height: 47px;
  background: url(../sale.png) 50%/contain no-repeat;
  z-index: 10;
}
form.tpl-product div.product-new {
  border-radius: 3px 0 0;
  margin-top: 0;
  right: -1px;
  left: auto;
  top: -3px;
  font-size: 0;
  width: 82px;
  height: 68px;
  background: url(../new.png) 50%/contain no-repeat;
  z-index: 10;
}
.gal_wrap {
  text-align: center;
}
body .popover-container {
  z-index: 9999;
}
.popover-wrap.popover-cart .popover-body {
  max-width: 680px;
  padding: 10px;
  width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.popover-wrap.popover-cart .popover-close {
  width: 37px;
  height: 37px;
  background: url(../form_close.png) 11px 11px no-repeat #616161;
  right: -37px;
  top: 0px;
}
.popover-wrap.popover-cart .cart-btns a {
  cursor: pointer;
}
.popover-wrap.popover-cart .cart-btns a + a {
  float: right;
}
.popover-wrap.popover-cart .cart-btns .cart-btns-1 {
  color: #000;
  background: 0 0;
  border: 1px solid #ccc;
  padding: 10px 19px 11px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font: 700 11px Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.popover-wrap.popover-cart .cart-btns .cart-btns-1:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}
.popover-wrap.popover-cart .cart-btns .cart-btns-2 {
  font: 700 11px Arial, Helvetica, sans-serif;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  display: inline-block;
  padding: 11px 33px;
  text-decoration: none;
  background: #1a9f29;
  color: #fff;
}
.popover-wrap.popover-cart .cart-btns .cart-btns-2:hover {
  background: #0A6E11;
}
body .popover-container .popover-dim {
  background: rgba(43, 46, 56, 0.9);
  opacity: 1 !important;
}
.popover-container .popover-scrolling {
  padding-left: 10px;
  padding-right: 10px;
}
.informer-block {
  padding-bottom: 60px !important;
}
@media (max-width: 767px) {
  .popover-wrap.popover-cart .popover-close {
    right: 0;
  }
  .popover-wrap.popover-cart {
    width: 100%;
    max-width: 680px;
  }
}
@media (max-width: 480px) {
  .popover-wrap.popover-cart .cart-btns .cart-btns-1, .popover-wrap.popover-cart .cart-btns .cart-btns-2 {
    display: block;
    float: none;
    text-align: center;
  }
  .popover-wrap.popover-cart .cart-btns .cart-btns-1 {
    margin: 10px 0;
  }
}
.new-wr-left {
  min-width: 200px;
  width: 200px;
  padding: 28px 0 5px 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
@media (min-width: 961px) {
  /*.withmenu .menu-3 .menu-scroll>ul>li.menu-item>a, .withmenu .menu-3 .menu-scroll>ul>li.menu-item>a {
		color: #fff;
		font: 13px/13px Arial;
		padding: 4px 6px 6px !important;
		border: 1px solid #1a9f29;
		border-radius: 5px;
		background: #1a9f29;
		transition: 0.25s;
		margin: 0 2px 1px 0;
		&:hover {
			box-shadow: none;
			color: #121212;
			background: #fff;
			border-color: #ffd200;
			text-decoration: none;
		}
	}
	.withmenu .menu-3 .menu-scroll>ul>li.menu-item.active.opened {
		margin-right: 1px;
	}
	.withmenu .menu-3 .menu-scroll>ul>li.menu-item.active.opened>.item-span {
		box-shadow: none;
		display: block;
		text-align: center;
		color: #121212;
		background: #fff;
		width: auto;
		margin: 0 2px 0 0;
		padding: 7px 2px !important;
		border-radius: 5px;
		border: 1px solid #ffd200;
		text-decoration: none;
	}
	.withmenu .menu-3 .menu-scroll>ul>li.delimiter, .withmenu .menu-3 .menu-scroll>ul>li.delimiter {display: none;}
	.wrapper .block-7 {padding-top: 7px;}
	
	.withmenu .menu-3 .menu-scroll>ul, .withmenu .menu-3 .menu-scroll>ul {
		display: table;
		width: 100%;
		& > li.menu-item {
			display: table-cell;
			vertical-align: top;
			padding: 0 1px 1px 0;
			text-align: center;
			& > a {
				display: block;
				margin: 0;
				padding: 7px 2px 8px !important;
			}
		}
	}*/
  .new-wr {
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .new-wr-right {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 100%;
  }
  .wrapper .block-6 {
    border-bottom: none;
  }
}
@media (min-width: 961px) and (max-width: 1270px) {
  /*.withmenu .menu-3 .menu-scroll>ul>li.menu-item>a, .withmenu .menu-3 .menu-scroll>ul>li.menu-item>a {
		height: 43px;
		display: table-cell;
		vertical-align: middle;
	}
	.withmenu .menu-3 .menu-scroll > ul > li.menu-item.active.opened > .item-span {
		height: 41px;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		display: table-cell !important;
		vertical-align: middle;
	}
	.withmenu .block-8 {
		padding-right: 10px;
	}*/
}
@media (max-width: 960px) {
  .new-wr {
    display: -moz-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .new-wr-left {
    min-width: 0;
    width: auto;
    padding-right: 20px;
  }
}
#sandbox_theme_panel_863011 {
  width: 100px !important;
  top: 50px !important;
}
.new-wr-left .widget-29 {
  margin-bottom: 40px;
}
/*.wrapper .menu-3 .menu-scroll > ul > li.menu-item.opened .item-span {
	box-shadow: none;
}*/
@media (min-width: 961px) {
  .wrapper .editable_block-20 .image {
    margin-right: 10px;
    top: 5px;
  }
  .wrapper .editable_block-20 .body {
    top: -4px;
  }
  .editable_block-20 .title {
    margin-top: 8px;
  }
}
.g-row {
  text-align: center;
}
.block-8 .layout_14 {
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 960px) {
  .block-8 .layout_14 {
    flex-direction: column;
    align-items: center;
    padding-top: 17px;
  }
}
.block-8 .layout_14 .logo {
  align-self: center;
}
.shop2-product-item.collect .product-name {
  height: auto !important;
}
@media (max-width: 960px) {
  .wrapper .block-5 {
    padding-top: 0;
  }
}
