@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,700;1,400&display=swap');
/*import { Autoplay } from "@fancyapps/ui/dist/carousel/carousel.autoplay.esm.js";
import "@fancyapps/ui/dist/carousel/carousel.autoplay.css";
font-family: 'Roboto', sans-serif;
font-family: 'Roboto Condensed', sans-serif;*/
/*
:root {
  --base-color: #ff7d00;
  --base-color-hover: #FF9D40;
  --base-color-border: #BF7630;
  --second-color: #04859D;
  --second-color-hover: #37B6CE;
  --second-color-border: #206876;
  --link-color: #333;

  --bg-color: #f8f9fa;
}
*/
:root {
  --base-color: #FFED7B;
  --base-color-hover: #FF9D40;
  --base-color-border: #BF7630;
  --second-color: #333;
  --second-color-hover: #37B6CE;
  --second-color-border: #206876;
  --link-color: #333;
  --bg-color: #efefef;
}

body{
	font-family: 'Roboto', sans-serif;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
a {
    color: var(--second-color);
}
a:hover {
    color: var(--base-color-hover);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--second-color);
	border-color: var(--second-color-border);
}
.btn-primary:hover {
    background-color: var(--second-color-hover);
	border-color: var(--second-color-border);
}
/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
}
.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
}
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
}
.scroll-element {
    display: none;
}
.scroll-element, .scroll-element div {
    box-sizing: content-box;
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
    cursor: default;
}
.scroll-textarea {
    border: 1px solid #cccccc;
    border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
}
/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div
{
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
}
.scrollbar-inner > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_outer {
    overflow: hidden;
}
.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    opacity: 0.4;
}
.scrollbar-inner > .scroll-element .scroll-element_track { background-color: #e0e0e0; }
.scrollbar-inner > .scroll-element .scroll-bar { background-color: #c2c2c2; }
.scrollbar-inner > .scroll-element:hover .scroll-bar { background-color: #919191; }
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px; }
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px; }
/*************** SIMPLE OUTER SCROLLBAR ***************/
.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div
{
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.scrollbar-outer > .scroll-element {
    background-color: #ffffff;
}
.scrollbar-outer > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.scrollbar-outer > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    width: 100%;
}
.scrollbar-outer > .scroll-element.scroll-y {
    height: 100%;
    right: 0;
    top: 0;
    width: 12px;
}
.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer { height: 8px; top: 2px; }
.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer { left: 3px; width: 7px; }
.scrollbar-outer > .scroll-element .scroll-element_outer { overflow: hidden; }
.scrollbar-outer > .scroll-element .scroll-element_track { background-color: #fff; }
.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.scrollbar-outer > .scroll-element .scroll-bar { background-color: rgba(232, 230, 230, 1); }
.scrollbar-outer > .scroll-element .scroll-bar:hover { background-color: rgba(232, 230, 230, 1); }
.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar { background-color: rgba(232, 230, 230, 1); }
/* scrollbar height/width & offset from container borders */
.scrollbar-outer > .scroll-content.scroll-scrolly_visible { left: 0; margin-left: 0; }
.scrollbar-outer > .scroll-content.scroll-scrollx_visible { top:  0; margin-top:  0; }
.scrollbar-outer > .scroll-element.scroll-x .scroll-bar { min-width: 10px; }
.scrollbar-outer > .scroll-element.scroll-y .scroll-bar { min-height: 10px; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -14px; }
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -14px; }
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -14px; }
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -14px; }
/*************** SCROLLBAR MAC OS X ***************/
.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div
{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.scrollbar-macosx > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.scrollbar-macosx > .scroll-element .scroll-element_track { display: none; }
.scrollbar-macosx > .scroll-element .scroll-bar {
    background-color: #6C6E71;
    display: block;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}
.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    opacity: 0.7;
}
.scrollbar-macosx > .scroll-element.scroll-x {
    bottom: 0px;
    height: 0px;
    left: 0;
    min-width: 100%;
    overflow: visible;
    width: 100%;
}
.scrollbar-macosx > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0px;
    top: 0;
    width: 0px;
}
/* scrollbar height/width & offset from container borders */
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar { height: 7px; min-width: 10px; top: -9px; }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar { left: -9px; min-height: 10px; width: 7px; }
.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer { left: 2px; }
.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size { left: -4px; }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer { top: 2px; }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size { top: -4px; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -11px; }
.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -11px; }
/*************** SCROLLBAR LIGHT ***************/
.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.scrollbar-light > .scroll-element {
    background-color: #ffffff;
}
.scrollbar-light > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.scrollbar-light > .scroll-element .scroll-element_outer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.scrollbar-light > .scroll-element .scroll-element_size {
    background: #dbdbdb;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#dbdbdb), color-stop(100%,#e8e8e8));
    background: -webkit-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: -o-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: -ms-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: linear-gradient(to right, #dbdbdb 0%,#e8e8e8 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.scrollbar-light > .scroll-element.scroll-x {
    bottom: 0;
    height: 17px;
    left: 0;
    min-width: 100%;
    width: 100%;
}
.scrollbar-light > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 17px;
}
.scrollbar-light > .scroll-element .scroll-bar {
    background: #fefefe;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#fefefe), color-stop(100%,#f5f5f5));
    background: -webkit-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: -o-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: -ms-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: linear-gradient(to right, #fefefe 0%,#f5f5f5 100%);
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
/* scrollbar height/width & offset from container borders */
.scrollbar-light > .scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px; }
.scrollbar-light > .scroll-content.scroll-scrollx_visible { top:  -17px; margin-top:  17px; }
.scrollbar-light > .scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 0px; }
.scrollbar-light > .scroll-element.scroll-y .scroll-bar { left: 0px; min-height: 10px; width: 10px; }
.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer { height: 12px; left: 2px; top: 2px; }
.scrollbar-light > .scroll-element.scroll-x .scroll-element_size { left: -4px; }
.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer { left: 2px; top: 2px; width: 12px; }
.scrollbar-light > .scroll-element.scroll-y .scroll-element_size { top: -4px; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -19px; }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -19px; }
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -19px; }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -19px; }
/*************** SCROLLBAR RAIL ***************/
.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div
{
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.scrollbar-rail > .scroll-element {
    background-color: #ffffff;
}
.scrollbar-rail > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.scrollbar-rail > .scroll-element .scroll-element_size {
    background-color: #999;
    background-color: rgba(0, 0, 0, 0.3);
}
.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
    background-color: #666;
    background-color: rgba(0, 0, 0, 0.5);
}
.scrollbar-rail > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    min-width: 100%;
    padding: 3px 0 2px;
    width: 100%;
}
.scrollbar-rail > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    padding: 0 2px 0 3px;
    right: 0;
    top: 0;
    width: 12px;
}
.scrollbar-rail > .scroll-element .scroll-bar {
    background-color: #d0b9a0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
/* scrollbar height/width & offset from container borders */
.scrollbar-rail > .scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px; }
.scrollbar-rail > .scroll-content.scroll-scrollx_visible { margin-top: 17px; top: -17px; }
.scrollbar-rail > .scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 1px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-bar { left: 1px; min-height: 10px; width: 10px; }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer { height: 15px; left: 5px; }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size { height: 2px; left: -10px; top: 5px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer { top: 5px; width: 15px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size { left: 5px; top: -10px; width: 2px; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -25px; }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -25px; }
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -25px; }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -25px; }
/*************** SCROLLBAR DYNAMIC ***************/
.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div
{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.scrollbar-dynamic > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.scrollbar-dynamic > .scroll-element.scroll-x {
    bottom: 2px;
    height: 7px;
    left: 0;
    min-width: 100%;
    width: 100%;
}
.scrollbar-dynamic > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 2px;
    top: 0;
    width: 7px;
}
.scrollbar-dynamic > .scroll-element .scroll-element_outer {
    opacity: 0.3;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
.scrollbar-dynamic > .scroll-element .scroll-element_size {
    background-color: #cccccc;
    opacity: 0;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.scrollbar-dynamic > .scroll-element .scroll-bar {
    background-color: #6c6e71;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
/* scrollbar height/width & offset from container borders */
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
    bottom: 0;
    height: 7px;
    min-width: 24px;
    top: auto;
}
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
    left: auto;
    min-height: 24px;
    right: 0;
    width: 7px;
}
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
    bottom: 0;
    top: auto;
    left: 2px;
    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -o-transition: height 0.2s;
    -ms-transition: height 0.2s;
    transition: height 0.2s;
}
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
    left: auto;
    right: 0;
    top: 2px;
    -webkit-transition: width 0.2s;
    -moz-transition: width 0.2s;
    -o-transition: width 0.2s;
    -ms-transition: width 0.2s;
    transition: width 0.2s;
}
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size { left: -4px; }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size { top: -4px; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -11px; }
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -11px; }
/* hover & drag */
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
    overflow: hidden;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    opacity: 0.7;
}
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
    opacity: 1;
}
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
    height: 100%;
    width: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
    height: 20px;
    min-height: 7px;
}
.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
    min-width: 7px;
    width: 20px;
}
/*************** SCROLLBAR GOOGLE CHROME ***************/
.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div
{
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.scrollbar-chrome > .scroll-element {
    background-color: #ffffff;
}
.scrollbar-chrome > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.scrollbar-chrome > .scroll-element .scroll-element_outer {}
.scrollbar-chrome > .scroll-element .scroll-element_track {
    background: #f1f1f1;
    border: 1px solid #dbdbdb;
}
.scrollbar-chrome > .scroll-element.scroll-x {
    bottom: 0;
    height: 16px;
    left: 0;
    min-width: 100%;
    width: 100%;
}
.scrollbar-chrome > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 16px;
}
.scrollbar-chrome > .scroll-element .scroll-bar {
    background-color: #d9d9d9;
    border: 1px solid #bdbdbd;
    cursor: default;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.scrollbar-chrome > .scroll-element .scroll-bar:hover {
    background-color: #c2c2c2;
    border-color: #a9a9a9;
}
.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    border-color: #7e7e7e;
}
/* scrollbar height/width & offset from container borders */
.scrollbar-chrome > .scroll-content.scroll-scrolly_visible { left: -16px; margin-left: 16px; }
.scrollbar-chrome > .scroll-content.scroll-scrollx_visible { top:  -16px; margin-top:  16px; }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar { height: 8px; min-width: 10px; top: 3px; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar { left: 3px; min-height: 10px; width: 8px; }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer { border-left: 1px solid #dbdbdb; }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track { height: 14px; left: -3px; }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size { height: 14px; left: -4px; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer { border-top: 1px solid #dbdbdb; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track { top: -3px; width: 14px; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size { top: -4px; width: 14px; }
/* update scrollbar offset if both scrolls are visible */
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -19px; }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -19px; }
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -19px; }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -19px; }

button, .button, .btn{
  border-radius: 4px;
}
.fixed-top>.container>div{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
header.navbar.navbar-expand-lg.navbar-light.bg-faded>div{
  border: 0px solid rgba(153, 153, 151, 1);
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35);
  margin: 0 auto;
  max-width: 1364px;
  width: 100%;
  height: 49px;
  padding: 3px 0px 3px;
}

header nav.navbar.navbar-expand-md.navbar-dark {
    padding: 0;
}
.top_block {
    /* background: #FFED7B; */
}

.bg-light {
    background: none !important;
}
a.navbar-brand>img {
    max-width: 250px;
    margin-right: 20px;
}
.head-rest {
    order: 3;
}
.head-rest a{
  color: #fff;
}
.custom.lang {
    position: relative;
    margin: 12px 0 0;
}
.custom.lang a{
    float: left;
    position: relative;
    padding: 0 5px;
    font-family: sneakerthree;
    font-size: 14px;
}
.lang a:last-child:before{
    content: '';
    width: 2px;
    height: 15px;
    background-color: #fff;
    display: block;
    top: 3px;
    left: -1px;
    position: absolute;
}
#navbarMain {
    flex-basis: 100%;
    padding: 10px 0;
}
header .navbar-dark .navbar-nav a.nav-link {
    color: #fff;
    font-size: 16px;
    padding: 9px 12px;
    font-family: sneakertwo;
}
header .navbar-dark .navbar-nav li.nav-item.item-128 a.nav-link{
  text-transform: uppercase;
  color: #F00505;
}
header .navbar-dark .navbar-nav a.nav-link:hover{
  color: #F00505;
}
header .navbar-dark .navbar-nav li.nav-item.item-128 a.nav-link:hover{
  color: #Fff;
}
li.nav-item.item-128 {
    padding-right: 9px;
}
li.nav-item.item-129 {
    padding-left: 8px;
    position: relative;
}
li.nav-item.item-129:before{
    content: '';
    width: 1px;
    height: 17px;
    background-color: #fff;
    display: block;
    top: 13px;
    left: -1px;
    position: absolute;  
}
.content {
    min-height: 300px;
}
.large-icon {
    font-size: 13em !important;
}
.contact .contact-address {
    padding: 0 1.5rem;
}
.navbar .mod-languages {
    padding-bottom: 0.425rem;
    padding-top: 0.425rem;
}
.lang-inline {
    list-style: outside none none;
    margin: 0;
}
.lang-inline > li {
    display: inline;
    margin-left: 8px;
}
.login {
    margin: 0 auto;
    max-width: 330px;
    padding-top: 1em;
}
.tags.inline {
    padding-left: 0;
}
.tags.inline li {
    display: inline;
}
.item-image {
    margin-bottom: 20px;
}
.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.autocomplete-suggestion {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.autocomplete-suggestion:hover, .autocomplete-suggestion:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.autocomplete-suggestion.active, .autocomplete-suggestion:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.moduletabletop img {
    max-width: 100%;
}

.main_intro {
    text-align: center;
    padding: 0px 20px;
    background: url("../images/whiteboots.png");
    background-size: contain;
    border: solid rgba(232, 230, 230, 1) 1px;
    float: left;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-evenly;
    min-height: 314px;
    flex-direction: row;
    align-items: center;
}
.main_intro.onlymain {
 /*.itemid-101*/
    flex-direction: column;
}
.main_intro div.slogan {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    box-shadow: 0.98px -0.21px 4px 0px rgba(0,0,0,0.35);
    border: 1px solid rgba(235, 235, 235, 1);
    border-radius: 4px 4px 4px 4px;
}
.main_intro div.slogan h3 {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 1em;
    font-family: sneakerthree;
}
.main_intro div.slogan .red {
    color: #F01616;
}
.main_intro div.slogan h4 {
    font-weight: 400;
    font-size: 20px;
    color: #414141;
    letter-spacing: -0.05em;
}
.main_intro .search {
    max-width: 383px;
    position: relative;
    width: 100%;
    max-height: 110px;
    height: 100%;
}
 .main_intro.onlymain .search{
 /*.itemid-101*/
    margin: 0 auto;
    max-width: 445px;
    width: 100%;
    height: auto;
}
.moduletable.search.main-search input[type=text] {
    border: solid rgba(199, 199, 199, 1) 1px;
    width: 100%;
    height: 47px;
    color: #C7C7C7;
    cursor: pointer;
    /*box-shadow: 0.99px 0.12px 4px 0px rgba(0,0,0,0.35);*/
    box-shadow: 0.98px -0.21px 4px 0px rgba(0,0,0,0.35);
    border-radius: 4px;
    padding: 0 20px;
    font-family: sneakertwo;
    font-size: 18px;
}

.moduletable.search.main-search input[type=text]::placeholder{
    color: #C7C7C7;
}
.moduletable.search.main-search input[type=text]:hover::placeholder, .moduletable.search.main-search input[type=text]:active::placeholder{
    color: #EBEBEB;
}
.moduletable.search.main-search input[type=text]:hover, .moduletable.search.main-search input[type=text]:focus{
    color: #414141;
    /*border-color: rgba(98, 98, 98, 1);*/
}
/*.main_intro .search .button{
  position: absolute;
  top: 1px;
  right: 1px;
  border: 1px solid rgba(153, 153, 151, 1);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  background-color: #000;
  width: 95px;
  height: 38px;
  font-weight: 600;
}*/
.main_intro .search .button {
    position: absolute;
    top: 1px;
    right: 0;
    border: transparent;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    background-color: #000;
    width: 112px;
    height: 45px;
    font-weight: 600;
}
.main_intro .search .button:hover{
  background-color: #fff;
  color: var(--link-color);
}
.moduletable.pop-brands{
  border: 1px solid rgba(199, 199, 199, 1);
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35);
    max-width: 383px;
    width: 100%;
    background: #fff;
    text-align: left;
    vertical-align: middle;
    padding: 11px;
    max-height: 110px;
}
.pop-brands h3{
  color: #626262;
  font-size: 18px;
  margin: 0 0 10px;
}
.pop-brands ul{
  padding: 0;
}
.pop-brands li{
  list-style: none;
  float: left;
  padding: 0;
  border: 1px solid rgba(199, 199, 199, 1);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px 4px 4px 4px;
    width: 53px;
    height: 50px;
    margin-right: 8px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	overflow: hidden;
}
.pop-brands li:last-child{
  margin-right: 0;
}
.pop-brands a{
  margin: auto;
}
.pop-brands img{
    width: 100%;
    padding: 0 3px;
}
.catincat {
    border: solid rgba(232, 230, 230, 1) 1px;
    border-top: 0;
    margin: 0 -15px 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}
.catincat>div:first-child{
  flex: 0 0 25%;
  border-right: solid rgba(232, 230, 230, 1) 1px;
}
.catincat>div:last-child{
  flex: 1 1 75%;
}
.catincat .jshop_menu_level_0, .catincat .jshop_menu_level_0_a {
    margin-top: 0;
    margin-bottom: 0;
}
.catincat .moduletable a {
    color: #626262;
    font-size: 18px;
    padding: 9px 19px;
    display: inline-block;
    width: 100%;
    min-height: 40px;
    transition: color 0.4s ease 0s;
    border-bottom: solid rgba(232, 230, 230, 1) 1px;
    cursor: pointer;
    line-height: 1.2em;
    border-radius: 4px;
    font-family: sneakertwo;
}
.catincat .jshop_menu_level_0:last-child a{
  border-bottom: none;
}
.catincat .moduletable a:hover, .catincat .moduletable a.active{
  color: #fff;
  background-color: rgba(240, 22, 22, 1);
  border-color: transparent;
  text-decoration: none;
}
.moduletabletop {
    min-height: 513px;
}
.bx-wrapper{
      box-shadow: none;
    border: none;
    background: rgba(240, 22, 22, 1);
    margin-bottom: 0;
}
.moduletabletop img{
  margin: auto;
}
.bx-wrapper .bx-controls-direction a{
  background:none;
  z-index: 999;
}
.bx-wrapper .bx-prev:before{
    content: "\f104";
    color: #fff;
    font-family: fontAwesome;
    font-size: 36px;
    position: absolute;
    line-height: 032px;
    top: 0;
    left: 2px;
    width: 30px;
    height: 36px;
    text-indent: 0;
}
.bx-wrapper .bx-next:before{
    content: "\f105";
    color: #fff;
    font-family: fontAwesome;
    font-size: 36px;
    position: absolute;
    line-height: 032px;
    top: 0;
    right: 2px;
    width: 30px;
    height: 36px;
    text-indent: 0;
}
.bx-wrapper .bx-pager{
  padding-top: 0;
  bottom: 20px;
}
.bx-wrapper .bx-pager-item{
  vertical-align: middle;
}
.bx-wrapper .bx-pager.bx-default-pager a{
  background:#fff;
      width: 8px;
    height: 8px;
    margin: 0 8px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus{
  background: transparent;
  border: 2px solid #fff;
  box-sizing: content-box;
  border-radius: 50%;
}
.moduletableprom{
  	margin: 0 auto 40px;
  	float: left;
  	width: 100%;
  	border: solid rgba(232, 230, 230, 0) 1px;
	box-sizing: border-box;
	position: relative;
}
.moduletableprom:before{
    content: '';
    position: absolute;
    height: 100%;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 15px;
    background: rgba(10, 10, 10, 1);
    border-radius: 4px 0 0 4px;
}
.moduletableprom:after{
    content: '';
    position: absolute;
    height: 100%;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 15px;
    background: rgba(240, 22, 22);
    border-radius: 0 4px 4px 0;
}
.promoslider {
    background: rgba(240, 22, 22, 0.98);
    color: #fff;
    height: 100px;
}
.promoslider .item{
  width: 100%;
  height: 100%;
}
.promoslider .item>div{
  float: left;
  width: 50%;
  height: 100%;
}
.promoslider .item>div.sec-1{
  background: rgba(10, 10, 10, 1);
}
.promoslider .item>div.sec-2{
}
.promoslider .item>div p{
  font-size: 20px;
      margin: 11px auto 8px;
      font-family: sneakertwo;
      letter-spacing: -0.05em;
}
.promoslider .item>div a, .promoslider .item>div button{
  background: rgba(255, 255, 255, 1);
  border: solid rgba(65, 65, 65, 1) 1px;
  border-radius: 4px;
  display: inline-block;
  color: #414141;
  font-family: sneakertwo;
  font-size: 16px;
  padding: 5px;
  cursor: pointer;
  transition: color 0.4s ease 0s;
  box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.6);
  transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
}
.promoslider .item>div.sec-2 button{
  color: #E21C21;
}
.promoslider .item>div a:hover, .promoslider .item>div button:hover{
  background: transparent;
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
.moduletableprom .bx-wrapper .bx-pager{
  padding-top: 0;
      bottom: 13px;
    height: 10px;
    line-height: 0;
}
.moduletableprom .bx-wrapper .bx-pager.bx-default-pager a{
  background:#fff;
      width: 6px;
    height: 6px;
    margin: 0 6px;
}
.moduletableprom .bx-wrapper .bx-pager.bx-default-pager a:hover, .moduletableprom .bx-wrapper .bx-pager.bx-default-pager a.active, .moduletableprom .bx-wrapper .bx-pager.bx-default-pager a:focus{
  background: transparent;
  border: 2px solid #fff;
  box-sizing: content-box;
  border-radius: 50%;
}
/*footer.footer{
  margin-top: 50px;
}*/
footer.footer>div .border {
    border: solid rgba(232, 230, 230, 1) 1px !important;
    padding: 32px 19px 5px;
}
.foodesc{
  font-size: 14px;
  color: #414141;
  max-width: 150px;
      line-height: 1.3em;
    margin: 5px 0 20px;
    font-family: sneakertwo;
}
img.footlogo {
    max-width: 168px;
    width: 100%;
}
footer.footer ul {
    list-style: none;
    padding: 0;
}
footer.footer ul li{
  padding: 0;
  margin-bottom: 10px;
}
footer.footer ul li a{
  color: #414141;
  font-size: 16px;
  padding: 0;
  font-family: sneakertwo;
}
footer.footer ul li a:hover{
  text-decoration: underline;
}
footer.footer h3{
  font-size: 20px;
  color: #000;
  font-weight: 600;
  font-family: sneakertwo;
}
.social {
    display: block;
    margin: 30px 0px;
}
.social>a {
    display: table;
    margin-bottom: 15px;
}
.social a>* {
    display: table-cell;
    vertical-align: middle;
}
.social>a:hover{
  text-decoration: none;
}
.social a img {
    padding: 8px;
    border: 2px solid rgba(240, 22, 22, 1);
    box-sizing: border-box;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    box-sizing: content-box;
}
.social>a:hover>img{
  border-color: rgb(226, 224, 224);
}
.social a span {
    padding-left: 10px;
    color: #414141;
    font-size: 16px;
    line-height: 1.3em;
    font-family: sneakertwo;
}
footer.footer hr {
    margin-bottom: 7px;
}
.footer-down, .footer-down a{
    color: #414141;
    font-size: 14px;
    font-family: sneakertwo;
}
.footer-down a{
  text-decoration: underline;
}
.footer-down a:hover{
  text-decoration: none;
}
.footer-down p{
  margin-bottom: 7px;
}
form#smart_filter_98>fieldset:first-child .sf_block_params div:first-child label:first-child{
  display: none;
}
.sf_header {
    color: #414141;
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
    font-family: sneakertwo;
    font-weight: 600;
}
div#jsfilter_98 {
    padding: 0 4px;
}
.sf_block_title{
    color: #414141;
    font-size: 18px;
    font-family: sneakertwo;
    margin-bottom: 15px;
}
div#jsfilter_98 input[type=radio]{
  display: none;
}
div#jsfilter_98 input[type=radio]+span{
  text-align: center;
  display: block;
  background-color: rgba(255, 255, 255, 1);
  border: solid rgba(199, 199, 199, 1) 1px;
  cursor: pointer !important;
  margin: 0;
  font-size: 16px;
  color: #414141;
  border-radius: 4px;
  transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.6);
  padding: 7px 8px;
  /* float: left; */
}
form#smart_filter_98>fieldset .sf_block_params div:last-child label{
  float: right;
}
div#jsfilter_98 input[type=radio]:checked+span{
  color: #fff;
  background: rgba(240, 22, 22, 1);
  border: solid rgba(240, 22, 22, 1) 1px;
}
div#jsfilter_98 input[type=radio]+span:hover{
  background: rgba(98, 98, 98, 1);
  border-color: rgba(98, 98, 98, 1);
  color: #EBEBEB;
}
form#smart_filter_98 fieldset {
    padding: 15px 0;
    border-bottom: solid rgba(232, 230, 230, 1) 1px;
}
form#smart_filter_98 .ui-widget-content {
    border: none;
    background: rgba(232, 230, 230, 1);
    color: #414141;
    height: 6px;
    margin: 30px 10px 15px;
}
form#smart_filter_98 .ui-widget-header{
  background: rgba(240, 22, 22, 1);
}
form#smart_filter_98 .ui-state-default, form#smart_filter_98 .ui-widget-content .ui-state-default, form#smart_filter_98 .ui-widget-header .ui-state-default {
    border: 1px solid #F01616;
    background: #fff;
    font-weight: bold;
    color: #F01616;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: -.4em;
}
form#smart_filter_98 .ui-state-default:after, form#smart_filter_98 .ui-widget-content .ui-state-default:after, form#smart_filter_98 .ui-widget-header .ui-state-default:after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F01616;
    display: block;
    margin: 5px auto 0;
}
.sf_slider_digits{
  margin: 0px 0 15px;
}
div#sf_slider_min {
    width: 48%;
    float: left;
}
div#sf_slider_max {
    width: 48%;
    float: right;
}
div#sf_slider_min span, div#sf_slider_max span{
  font-size: 18px;
  float: left;
  text-transform: capitalize;
}
div#sf_slider_min input, div#sf_slider_max input{
  font-size: 18px;
  float: left;
  width: 60px;
  text-align: center;
  border: 0;
  margin: 0 5px;
}
.sf_block_params label.change {
    width: 100%;
    color: #414141;
    font-size: 18px;
    margin-bottom: .7rem;
    cursor: pointer;
}
.sf_block_params label.change input{
  display: none;
}
.sf_block_params label.change span{
  padding-left: 35px;
  position: relative;
  line-height: 1em;
}
.sf_block_params label.change span:before{
  content: '';
  display: block;
  height: 17px;
  width: 17px;
  left: 0;
  border:1px solid rgba(232, 230, 230, 1);
  border-radius: 4px;
  background: #fff;
  position: absolute;
  top: 4px;
}
.sf_block_params label.change input:checked+span:before{
  background: rgba(240, 22, 22, 1);
  border-color: rgba(240, 22, 22, 1);
}
input.sf_submit {
    margin: 30px auto;
    display: block;
    background-color: rgba(255, 255, 255, 1);
    border: solid rgba(199, 199, 199, 1) 1px;
    cursor: pointer !important;
    font-size: 16px;
    color: #414141;
    border-radius: 4px;
    transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.6);
    padding: 7px 10px;
}
input.sf_submit:hover{
  background: rgba(98, 98, 98, 1);
  border-color: rgba(98, 98, 98, 1);
  color: #EBEBEB;
}
div#wishlist {
    position: fixed;
    top: 100px;
    right: 5%;
    z-index: 1001;
}
div#wishlist>div{
    border: 1px solid rgba(199, 199, 199, 1);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35);
}
.head-list{
  color: #626262;
  font-size: 16px;
  height: 44px;
  width: 294px;
  padding: 11px 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.head-list span{
  float: left;
}
.head-list span.count-list{
  color: #E21C21;
  float: right;
}
.head-list:hover span.count-list{
  text-decoration: underline;
}
.body-list {
  width: 294px;
  color: #626262;
  font-size: 15px;
  max-height: 250px;
  overflow-y: hidden;
  padding: 0;
  margin: 0;
}
.body-list .inner-list{
    display: none;
  padding: 15px 12px 25px 10px;
}
.body-list a {
    display: table;
    padding: 5px;
}
.body-list a:hover{
    text-decoration: none;
    background: rgba(232, 230, 230, 1);
}
.body-list a>* {
    display: table-cell;
    vertical-align: top;
}
.body-list a span span{
  display: block;
    font-size: 14px;
    color: #414141;
    font-weight: 500;
    line-height: 1.1em;
}
.body-list a span.title-item{
  padding: 0 6px;
}
.body-list a span.site-href{
  color: #999997;
  font-size: 12px;
  font-weight: 400;
      margin-top: 3px;
}
.body-list a span.price-item{
  min-width: 70px;
    text-align: center;
}
.body-list a span.price{
  color: #000;
  font-size: 16px;
}
.body-list a span.price.newprice{
  color: #F01616;
}
.body-list a span.old-price{
  color: #999997;
  font-size: 12px;
  text-decoration: line-through;
  font-weight: 400;
  margin-top: 3px;
}
.body-list a img{
  border:1px solid rgba(199, 199, 199, 1);
  border-radius: 4px;
  width: 38px;
  height: 38px;
}
.no-scroll{
  overflow-y: hidden;
}
.block_product .image {
    /* border: solid rgba(232, 230, 230, 1) 1px; */
}
.block_product .name{
  margin-top: 16px;
  margin-bottom: 4px;
}
.block_product h4 a {
    color: #414141;
    font-size: 16px;
    font-weight: 500;
    max-width: 165px;
    display: inline-block;
    font-weight: 600;
}
.block_product h4 a.wishlist.button_buy {
    color: #E21C21;
    margin-top: 4px;
    max-width: initial;
    font-size: 39px;
}
.block_product h4 a.wishlist.button_buy:hover:before, .block_product h4 a.inwishlist.button_buy:before {
    content: '\2665';
    color: #E21C21;
    text-decoration: none;
    font-family: "Segoe UI";
}
.block_product .vendorinfo a {
    color: #999997;
    font-size: 14px;
}
.block_product .jshop_price {
    color: #F01616;
    font-size: 22px;
    border-top: solid rgba(232, 230, 230, 1) 1px;
    margin-top: 10px;
    padding-top: 5px;
    font-weight: 500;
}
.block_product .jshop_price span {
    font-size: 16px;
    color: #999997;
    text-decoration: line-through;
    vertical-align: text-top;
    font-weight: 400;
    margin-left: 5px;
    line-height: 1.57em;
}
nav i.fa.fa-share-alt {
    color: #fff;
    font-size: 28px;
    margin: 5px 0 0 10px;
    font-weight: 400;
    cursor: pointer;
}
.soc-fon{
  z-index: 9888;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(255,255,255,0);
  display: none;
}
.fix-soc{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(199, 199, 199, 1);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35);
  margin: auto;
    max-width: 428px;
    max-height: 408px;
    z-index: 9999;
    display: none;
}
.fix-soc .close {
    opacity: 1;
    margin: 10px;
    font-size: 1em;
    border: 1px solid rgba(199, 199, 199, 1);
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px 4px 4px 4px;
    padding: 9px 10px;
}
.fix-soc h3 {
    color: #626262;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    margin: 0 50px 7px;
    font-family: sneakertwo;
}
.fix-soc .social{
    margin: 35px 50px;
}
.fix-soc .social a{
  margin-bottom: 20px;
}
.fix-soc .social>a:hover>img {
    border-color: rgb(226, 224, 224);
}
.fix-soc .social a img {
    padding: 11px;
    border: 4px solid rgba(240, 22, 22, 1);
    box-sizing: border-box;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.fix-soc .social a span{
    font-family: sneakertwo;
}
div#resSearch{
  position: absolute;
  z-index: 1000;
  background: #fff;
  font-size: 14px;
  /* max-width: 288px; */
  /* width: 100%; */
  /* text-align: left; */
  padding: 0;
  /* border: 1px solid #fefefe; */
  /* border-radius: 4px 4px 4px 4px; */
  /* box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35); */
  top: 42px;
}
div#resSearch span {
    display: table-cell;
    padding: 10px;
}
.itemid-101 div#resSearch {
 /*.itemid-101*/
 /* max-width: 350px; */
}
div#resSearch ul {
    padding: 0;
    border: 0;
    /* overflow-y: scroll; */
    display: table;
    /* min-width: 235px; */
}
div#resSearch li {
  margin-bottom: 5px;
  list-style: none;
  display: table-row;
}
div#resSearch li a {
    display: table-cell;
    /* vertical-align: middle; */
    /* padding: 10px; */
    /* line-height: 15px; */
    /* transition: color 0.4s ease 0s; */
    /* border-bottom: solid rgba(232, 230, 230, 1) 1px; */
    /* color: #626262; */
}
div#resSearch li a:hover{
  /* text-decoration: none; */
  /* color: #fff; */
  /* background-color: rgba(240, 22, 22, 1); */
  /* border-color: transparent; */
}
.page-link, .page-item.disabled .page-link {
    position: relative;
    display: block;
    padding: .2rem .75rem;
    margin-left: -2px;
    line-height: 1.25;
    color: #414141;
    background-color: #fff;
    border: 2px solid #fff;
    font-size: 19px;
    border-radius: 3px;
}
.page-item.active .page-link, .page-item.active .page-link:hover, .page-link:hover{
    z-index: 1;
    color: #414141;
    background-color: #fff;
    border-color: rgba(240, 22, 22, 1);
}
.controller-product .content .container, .view-manufacturer .content .container, .itemid-128 .content .container, .itemid-129 .content .container, .view-article .content .container{
    border: solid rgba(232, 230, 230, 1) 1px;
    border-bottom: 0;
}
.controller-product footer {
    margin-top: 0;
}
.breadcrumb {
    padding-left: 0;
    margin-left: 0;
    background-color: #fff;
    font-size: 15px;
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: .3rem;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .1rem;
    color: #414141;
    content: "/";
}
ul.breadcrumb a {
    color: #414141;
    font-family: 'Raleway', sans-serif;
}
.breadcrumb-item.active{
    color: #414141;
    font-family: 'Raleway', sans-serif;
}
.wlclose {
    position: absolute;
    top: -13px;
    right: -13px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Raleway';
    background: #fff;
    padding: 0px 8px;
    border: 1px solid rgba(199, 199, 199, 1);
    border-radius: 50%;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35);
    display: none;
}
.wlclose.act{
    display: block;
}
form#smart_filter_98 .sf_block_radio .sf_block_params label{
    display: inline-block;
    min-width: 54px;
}
form#smart_filter_98 fieldset .sf_block_params label:first-child {}

form#smart_filter_98 fieldset .sf_block_params label:last-child {
}
form#smart_filter_98 fieldset .sf_block_params label:first-child input+span{
    width: 100%;
}
.image_block {
    position: relative;
}
.discount {
    fill: currentColor;
    color: #ff0000;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0px;
    left: 1px;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
}
.discount span {
    position: absolute;
    color: #fff;
    text-align: center;
    width: 100%;
    left: 0;
    font-weight: 700;
    font-size: 14px;
}
.discount>svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
#list_product_image_middle {
    float: left;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
#list_product_image_middle div{
    margin: auto;
}
.midslider a {
    display: block;
}
#list_product_image_middle .bx-wrapper .bx-pager.bx-default-pager a{
    background: #414141;
}
#list_product_image_middle .bx-wrapper .bx-pager.bx-default-pager a:hover, #list_product_image_middle .bx-wrapper .bx-pager.bx-default-pager a.active, #list_product_image_middle .bx-wrapper .bx-pager.bx-default-pager a:focus{
    background: #E21C21;
}
.productfull{
    font-family: 'DIN Pro Light';
    padding: 0 4px;
}
.prod_share{
    float: left;
    margin-top: 40px;
    width: 100%;
    margin-bottom: 50px;
}
.prod_share h3{
    font-size: 18px;
    margin-bottom: 15px;
    color: #414141;
}
.prod_share a{
    cursor: pointer;
    float: left;
    width: 150px;
    margin: 0 20px 20px 0;
    color: #fff !important;
    background: #4267b2;
    height: 32px;
    text-align: center;
    font-size: 18px;
    vertical-align: middle;
    line-height: 1.7em;
}
.prod_share a:first-child{
    background: #4a76a8;
}
.prod_share a:last-child{
    background: rgb(26, 145, 218);
    margin-right: 0;
}
.jshop .prod_desc h1 {
    text-align: left;
    font-size: 24px;
    color: #000;
    line-height: 1.2em;
    margin-bottom: 10px;
}
.prod_desc>*{
    padding: 0 10px;
}
.prod_desc h1+p.vendor_prod{
    color: #999997;
    font-size: 16px;
    position: relative;
}
.prod_desc h1+p.vendor_prod:after{
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(199, 199, 199, 1);
    display: block;
    margin-top: 8px;
}
.prod_desc h1+p.vendor_prod a{
    color: #000;
}
.prod_desc h1+p.vendor_prod a.button_buy {
    color: red;
    font-size: 40px;
    margin-top: -17px;
}
.prod_desc .prices{
    float: left;
    width: 100%;
    margin: 5px 0 20px;
    font-weight: bold;
}
.prod_desc .prod_price {
    float: left;
    color: #000;
    font-size: 28px;
    margin-right: 20px;
}
.prod_price.newprice{
    color: #F01616;
}
.prod_desc .old_price {
    margin-top: 6px;
    float: left;
    color: #999997;
    font-size: 22px;
    text-decoration: line-through;
}
.prod_desc .gray_prod {
    background: rgba(245, 242, 242, 1);
    float: left;
    padding-top: 12px;
}
.prod_desc .gray_prod p{
    font-size: 16px;
    color: #999997;
}
.prod_desc .gray_prod p.last_act{
    margin-bottom: 30px;
}
.prod_desc .gray_prod p.ext_prod{
    margin-bottom: 5px;
}
.prod_desc .gray_prod p.ext_prod:first-child{
    display: inline;
}
.prod_desc .gray_prod p span{
    color: #000;
}
.prod_desc .gray_prod p.poscriptum {
    line-height: 1.2em;
    margin-bottom: 20px;
}
.prod_desc .gray_prod a{
    display: block;
    margin: 30px auto;
    text-decoration: none;
    color: #fff;
    background-color: rgba(226, 28, 33, 1);
    border: solid rgba(65, 65, 65, 1) 0px;
    cursor: pointer;
    transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35);
    font-size: 18px;
    height: 40px;
    width: 151px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 4px;
        line-height: 2.1em;
}
.prod_desc .gray_prod a:hover{
    background-color: rgba(255, 111, 97, 1);
    border-color: rgba(98, 98, 98, 1);
    color: #EBEBEB
}
#jquery-overlay{
    z-index: 9998;
}
#jquery-lightbox{
    z-index: 9999;
}
.controller-manufacturer .main_intro{
    padding: 100px 0;
    max-width: 1070px;
    margin: 0 auto 50px;
    border-radius: 4px;
}
.controller-manufacturer .main_intro .search{
    float: none;
    margin: auto;
}
body.site.com_jshopping.view-manufacturer.controller-manufacturer.no-layout.no-task.itemid-126 h1 {
    color: #414141;
    font-size: 32px;
    font-family: sneakerthree;
    margin-top: 10px;
    margin-bottom: 15px;
    padding: 0 2px;
}
.block_brends_list {
    width: 33.33%;
    float: left;
}

.wrap_brends_list {
    padding: 0 5px;
}
.block_brends_list h3 {
    text-transform: uppercase;
    font-size: 30px;
    font-family: sneakerthree;
    font-weight: 700;
    color: #414141;
}
.block_brends_list ul {
    padding: 0;
    margin: 10px 0 40px;
}
.block_brends_list li {
    list-style: none;
    padding: 0;
}
.block_brends_list a {
    font-size: 16px;
    font-family: raleway,sans-serif;
    text-transform: uppercase;
    color: #414141;
    line-height: 1em;
}
.jshop_pagination {
    margin-bottom: 30px;
}
ul.pagination li {
    display: inline-block;
}
.pagination {
    margin: 10px auto;
    max-width: 100%;
    display: block;
    text-align: center;
}
a#more-prod {
    margin: auto;
    display: block;
    float: none;
    width: 138px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: rgba(240, 22, 22, 1);
    border: solid rgba(240, 22, 22, 1) 1px;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.6);
    cursor: pointer;
    height: 40px;
    border-radius: 4px;
    padding-top: 6px;
}
a#more-prod:hover{
    text-decoration: none;
    background-color: rgba(98, 98, 98, 1);
    border-color: rgba(98, 98, 98, 1);
    color: #e8e8e8;
}
h1.title-line{
    color: #414141;
    font-size: 32px;
    font-family: sneakerthree;
    margin-top: 10px;
    margin-bottom: 50px;
    padding: 0 4px 8px;
    border-bottom: 1px solid rgba(199, 199, 199, 1);
}
.moduletable.cathot ul {
    list-style: none;
    padding: 0;
}
.moduletable.cathot li {
    margin-bottom: 5px;
}
.moduletable.cathot a {
    color: #414141;
    font-family: Raleway;
    font-size: 15px;
}
.moduletable.cathot li.active a, .moduletable.cathot a:hover {
    color: #F01616;
    text-decoration: none;
}
.items-leading.clearfix>div {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 50px;
}
.items-leading.clearfix>div p{
    font-family: raleway,sans-serif;
    font-size: 15px;
    color: #999997;
    margin-top: 10px;
    margin-bottom: 8px;
}
.items-leading.clearfix>div a{
    text-decoration: underline;
    font-family: raleway,sans-serif;
    font-size: 25px;
    color: #414141;
}
.items-leading.clearfix>div a:hover{
    text-decoration: none;
}
.items-leading.clearfix>div button{
    background-color: rgba(255, 255, 255, 1);
    border: solid rgba(240, 22, 22, 1) 1px;
    cursor: pointer;
    height: 25px;
    width: 142px;
    transition: color 0.4s ease 0s, border-color 0.4s ease 0s, background-color 0.4s ease 0s;
    color: #F01616;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.6);
    line-height: 1.2em;
    margin-top: 12px;
}
.items-leading.clearfix>div button:hover{
    color: #fff;
    background-color: rgba(240, 22, 22, 1);
    border-color: rgba(98, 98, 98, 1);
}
.items-row.cols-3.row-0.row-fluid.row.clearfix {
    margin-bottom: 50px;
}
.items-row.cols-3.row-0.row-fluid.row.clearfix .col-sm-4 a.aimg {
    text-align: center;
    float: left;
    width: 100%;
    border: 1px solid rgba(65, 65, 65, 1);
}
a.aimg img {
    width: 100%;
    height: 100%;
}
.items-row.cols-3.row-0.row-fluid.row.clearfix .col-sm-4 p{
    color: #626262;
    font-size: 15px;
    margin: 10px 0;
    display: inline-block;
    width: 100%;
}
.items-row.cols-3.row-0.row-fluid.row.clearfix .col-sm-4 a{
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2em;
}
.items-row.cols-3.row-0.row-fluid.row.clearfix .col-sm-4 a:hover{}
.view-article.itemid-129 .content .container{
    border:none;
}
.prlx{
    position: relative;
    float: left;
    width: 100%;
    height: 344px;
    border: 1px solid rgba(65, 65, 65, 1);
    margin-bottom: 45px;
    background-size: cover !important;
    background-attachment: fixed !important;
    text-align: center;
}
.prlx>div{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    background: rgba(255,255,255,.4);
}
.prlx h1{
    margin: auto;
    font-size: 30px;
    font-weight: bold;
    font-family: 'DIN Pro Light';
    color: #000;
}
.prlx a{}
.prlx svg{
    position: absolute;
    width: 35px;
    height: 27px;
    bottom: 27px;
    margin: auto;
    left: 0;
    right: 0;
    stroke-width: 0;
    fill-opacity: 1;
    stroke: #5E97FF;
    stroke-opacity: 1;
    fill: #242323;
}
#blog-desc>div{
    max-width: 700px;
    margin: auto;
}
span.min-title {
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 25px;
    color: #414141;
    line-height: 1.2em;
    margin-bottom: 40px;
    font-family: 'DIN Pro Light';
}
a.blog-link, .view-article.itemid-129 a.tohome {
    display: block;
    margin: auto;
    float: none;
    max-width: 250px;
    text-align: center;
    transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s, color 0.4s ease 0s;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 1);
    border: solid rgba(0, 0, 0, 1) 3px;
    padding: 12px 3px;
    color: #000;
    line-height: 1.4em;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 40px;
}
.view-article.itemid-129 a.tohome{

}
a.blog-link:hover, .view-article.itemid-129 a.tohome:hover{
    color: #EBEBEB;
    background-color: rgba(98, 98, 98, 1);
    border-color: rgba(98, 98, 98, 1);
    text-decoration: none;
}
#blog-desc>div h2{
    font-family: 'DIN Pro Light';
    font-size: 25px;
    font-weight: 700;
    color: #414141;
    margin-bottom: 30px;
}
#blog-desc>div h3{
    font-family: 'DIN Pro Light';
    font-size: 22px;
    font-weight: 700;
    color: #414141;
    margin-bottom: 25px;
}
#blog-desc>div h4{
    font-family: 'DIN Pro Light';
    font-size: 20px;
    font-weight: 700;
    color: #414141;
    margin-bottom: 20px;
}
#blog-desc>div p{
    font-family: 'DIN Pro Light';
    font-size: 18px;
    line-height: 1.3em;
    color: #414141;
    margin-bottom: 25px;
}
#blog-desc>div a{
    font-family: 'DIN Pro Light';
    font-size: 18px;
    line-height: 1.3em;
    color: #155DE9;
}
#blog-desc>div img{
    margin: 0 auto 40px;
    display: block;
}
div#contentlike {
    border: 0px solid rgba(232, 230, 230, 1);
    background-color: rgba(232, 230, 230, 0.43);
    border-radius: 4px 4px 4px 4px;
    max-width: 568px;
    margin: 65px auto;
    text-align: center;
    padding: 30px 15px;
}
div#contentlike h4{
    font-size: 18px;
    color: #414141;
}
div#contentlike ul{
    padding: 0;
    margin: 40px auto;
    display: inline-block;
}
div#contentlike li{
    list-style: none;
    float: left;
    text-align: center;
    margin: 0 7px;
    cursor: pointer;
}
div#contentlike img{
    width: 41px;
    height: 41px;
}
div#contentlike .active img{
    height: 46px;
    width: 46px;
}
div#contentlike .counter{
    display: none;
    color: #414141;
    width: 100%;
    margin-top: 5px;
}
div#contentlike .active .counter{
    display: inline-block;    
}
.blog-soc {
    max-width: 568px;
    margin: 65px auto 40px;
    text-align: center;
}
.blog-soc h3{
    font-size: 25px;
    color: #414141;
}
.blog-soc ul{
    padding: 0;
    margin: 40px auto;
    display: inline-block;
}
.blog-soc li{
    list-style: none;
    float: left;
    text-align: center;
    margin: 0 5px;
}
.blog-soc a{
    text-decoration: none;
}
.blog-soc i{
    cursor: pointer;
    font-size: 45px;
    line-height: 0;
    height: 39px;
}
.blog-soc i.fa-vk{
    color: #fff;
    background: #4a76a8;
    font-size: 32px;
    padding: 19px 3px;
}
.blog-soc i.fa-facebook-official{
    color: #4267b2;
    padding-top: 19px;
}
.blog-soc i.fa-twitter{
    background: rgb(26, 145, 218);
    color: #fff;
    font-size: 29px;
    padding: 19px 6px;
}
div#vk_comments {
    max-width: 700px;
    margin: 0 auto 65px;
}
.toscrollhead{
    display: block;
    text-decoration: none;
    background-color: rgba(153, 153, 151, 1);
    border: solid rgba(153, 153, 151, 1) 2px;
    cursor: pointer !important;
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 10%;
    right: 15px;
    border-radius: 4px;
    transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.6);
    z-index:1001;
    padding: 1px 6px;
}
.toscrollhead:hover{
    background-color: rgba(240, 22, 22, 1);
    border-color: transparent;
}
.custom.lang a:first-child{
    padding-left: 0;
}
.custom.lang a:last-child{
    padding-right: 0;
}
.toscrollhead svg{
    stroke-width: 0;
    fill-opacity: 1;
    stroke: #ED1566;
    stroke-opacity: 1;
    fill: rgba(255, 255, 255, 1);
    width: 25px;
    height: 20px;
    margin: 9px auto 0;
    transform: rotate(180deg);
}
.closemenu{
    text-decoration: none;
    position: absolute;
    top: 20px;
    right: 30px;
}
.closemenu img{
    width: 20px;
    height: 20px;
}
.noscroll{
    overflow: hidden;
}
img.img-responsive {
    width: 100%;
}
.opencat{
    display: none;
}
.name .linktoprod{
	height: 54px;
	overflow: hidden;
}
.article.item-page{
	font-family: raleway,sans-serif;
	font-size: 20px;
	font-weight: 400;
	padding: 0 4px 30px;
	word-break: break-word;
}
.article.item-page h1.title-line{
	font-family: raleway,sans-serif;
    padding: 0 0 8px;
}
.article.item-page p{
	margin-bottom: 35px;
}
.article.item-page p a{
	text-decoration: underline;
}
.article.item-page p a:hover{
	text-decoration: none;
}
.article.item-page p+ol{
	margin-top: -15px;
}
.article.item-page ol{
	list-style: none;
	margin-bottom: 35px;
	padding: 0;
}
.article.item-page ol .num{
	font-weight: bold;
	padding-right: 12px;
}
.article.item-page ol li{
	line-height: 1.3em;
}
.article.item-page .gsoc{
	margin-bottom: 20px;
}
.article.item-page .gsoc a{
	width: 106px;
	height: 33px;
	display: inline-block;
	margin-bottom: 15px;
	margin-right: 20px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s, color 0.4s ease 0s;
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.35);
    border-radius: 4px;
    font-size: 17px;
    padding-top: 4px;
}
.article.item-page .gsoc a:last-child{
	margin-right: 0;
}
.article.item-page .gsoc a.gvk{
	background-color: rgba(89, 125, 163, 1);
    border: solid rgba(89, 125, 163, 1) 1px;
}
.article.item-page .gsoc a.gin{
	background-color: rgba(245, 133, 41, 1);
    border: solid rgba(245, 133, 41, 1) 1px;
}
.article.item-page .gsoc a.gte{
	background-color: rgba(0, 136, 204, 1);
    border: solid rgba(0, 136, 204, 1) 1px;
}
.article.item-page .gsoc a:Hover{
	background-color: rgba(98, 98, 98, 1);
    border-color: rgba(98, 98, 98, 1);
}
.article.item-page p a.inopros{
	transition: color 0.4s ease 0s, border-color 0.4s ease 0s, background-color 0.4s ease 0s;
    color: #FFFFFF;
    margin: 20px auto 30px;
    background-color: rgba(226, 28, 33, 1);
    border: solid rgba(226, 28, 33, 1) 1px;
    height: 37px;
    width: 168px;
    font-size: 15px;
    text-align: center;
    padding-top: 7px;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.35);
	border-radius: 4px;
	text-decoration: none;
	display: block;
}
.article.item-page p a.inopros:hover{
	background-color: rgba(98, 98, 98, 1);
    border-color: rgba(98, 98, 98, 1);
    text-decoration: none;
}
.itemid-140 h1.title-line {
    color: #626262;
    border: navajowhite;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    font-family: sneakertwo !important;
    margin: 80px auto 50px;
}
.footer-down a span{
    color: rgba(240, 22, 22, 1);
}
.bx-wrapper .bx-controls-direction a{
    font-size: 0;
    margin-top: -18px;
    overflow: hidden;
}
.bx-wrapper .bx-controls-direction a.bx-prev {
    text-align: left;
    left: 17px;
}
.bx-wrapper .bx-controls-direction a.bx-next {
    text-align: right;
    text-indent: 9999px;
    right: 17px;
}
.moduletableprom .bx-wrapper .bx-controls-direction a.bx-prev{
    left: 4px;
}
.moduletableprom .bx-wrapper .bx-controls-direction a.bx-next{
    right: 4px;
}
fieldset.sf_block.sf_block_radio>div {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.jsfilter_overlay{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(24, 22, 22, 0.4);
    z-index: 9990;
    display: none;
}
#view-filter{
    display: none;
        color: #414141;
    background: #fff;
    width: 100px;
    box-shadow: 0.98px -0.21px 4px 0px rgba(0,0,0,0.35);
    border: 1px solid rgba(235, 235, 235, 1);
    border-radius: 4px 4px 4px 4px;
    height: 36px;
    text-align: center;
    justify-content: space-around;
    align-items: center;
    float: left;
}
button.close-filter {
    width: 35px;
    height: 35px;
    color: #fff;
    background: transparent;
    position: absolute;
    right: -48px;
    font-size: 18px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    padding: 0;
    justify-content: center;
}

.sf_panel {
    padding: 44px 0 30px;
    float: left;
    width: 100%;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
    box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.6);
}
.moduletable.cathot {
    padding: 0 4px;
}
body.site.com_content.view-category.controller-.layout-blog.no-task.itemid-129 div.blog {
    padding: 0 4px;
}
.pblog{
    padding: 0 4px;
}
body.site.com_jshopping.view-.controller-search.no-layout.task-result.itemid-126 .main_intro{
    justify-content: center;
}
.main_intro.nomain {
    margin-bottom: 50px;
}
footer.footer .closemenu {
    display: none !important;
}
sidebar#sidebar-left .catincat {
    border-top: solid rgba(232, 230, 230, 1) 1px;
}
.block_product .jshop_price i.fa.fa-rub {
    font-size: .8em;
}
.sf_slider_digits i {
    font-size: 0.8em;
    font-weight: 400;
    color: #414141b3;
}
.prod_desc i {
    font-size: .8em;
}
#unijax_filter_offcanvas_button {
    padding: 2px;
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
}
.g-1 {
    padding-right: 3px;
    padding-left: 3px;
}
button#view-filter span, button#view-filter i.fa {
    display: inline;
}
@media (min-width: 1200px){
    .content .container{
	   max-width: 1110px;
    }
	.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
		top: 22%;
	}

}
@media (min-width: 992px){
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
    .navbar-expand-md .navbar-collapse {
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .closemenu{
        display: none;
    }
}
@media (min-width: 768px){
    
}
@media (max-width: 1199px){
    header.navbar.navbar-expand-lg.navbar-light.bg-faded>div{
        max-width: 100%;
        padding: 3px 0;
    }
    .catincat .moduletable a{
        padding: 9px 19px 9px 32px;
    }
    .bx-wrapper .bx-controls-direction a.bx-prev{
        left: 27px;
    }
    .bx-wrapper .bx-controls-direction a.bx-next{
        right: 27px;
    }
    .moduletableprom .bx-wrapper .bx-controls-direction a.bx-prev{
        left: 14px;
    }
    .moduletableprom .bx-wrapper .bx-controls-direction a.bx-next{
        right: 14px;
    }
    div#jsfilter_98 {
        padding: 0 4px 0 19px;
    }
    .controller-product .content .container, .view-manufacturer .content .container, .itemid-128 .content .container, .itemid-129 .content .container, .view-article .content .container{
        max-width: 930px;
    }
    .controller-manufacturer .main_intro{
        max-width: 890px;
    }
}
@media screen and (max-width: 991px) {
	.g-1 {
		padding-left: 3px;
		padding-right: 3px;
	}
	#labCarousel123 .f-button{top: 25%;}
    .custom.lang{
        margin-left: 5px;
    }
	#left-menu {
		margin: 10px;
	}
	#left-menu li {
		margin: 7px 0;
	}
    header .navbar-dark .navbar-nav a.nav-link{
        font-size: 15px;
        padding: 10px 6px;
    }
    .navbar-expand-md .navbar-toggler {
        display: inline-block;
    }
    footer.footer .col-md-3 img {
        max-width: 140px;
        width: 100%;
    }
    .toscrollhead{
        right: 15px;
    }
    .main_intro{
        padding: 0 20px;
        flex-direction: column;
    }
    .main_intro .search {
        margin: 0;
        float: none;
        max-height: none;
        height: auto;
    }
    .moduletable.pop-brands{
        display: inline-block;
        float: none;
    }
    .catincat{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-direction: column;
    }
    .catincat>div:first-child .moduletable {
        display: none;
        float: left;
    }
    .catincat>div:first-child .moduletable.block{
        display: block;
        width: 100%;
    }
    .catincat>div:first-child {
        width: 100%;
        flex: 0 0 100%;
        border-right: solid rgba(232, 230, 230, 1) 1px;
        float: left;
        display: block;
        border-top: solid rgba(232, 230, 230, 1) 1px;
    }
    .catincat>div:last-child{
            width: 100%;
    display: block;
    float: left;
    }
    .moduletabletop {
        min-height: auto;
    }
    .opencat{
        display: block;
        margin: auto;
        float: none;
        max-width: 250px;
        text-align: center;
        transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s, color 0.4s ease 0s;
        box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.35);
        border-radius: 4px;
        background-color: rgba(255, 255, 255, 1);
        border: solid rgba(0, 0, 0, 1) 3px;
        padding: 12px 3px;
        color: #000;
        line-height: 1.4em;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 40px;
        margin-top: 40px;
    }
    .opencat:hover{
        color: #EBEBEB;
        background-color: rgba(98, 98, 98, 1);
        border-color: rgba(98, 98, 98, 1);
        text-decoration: none;
    }
    .promoslider{
    	height: auto;
    }
    .promoslider .item>div {
	    width: 100%;
	    height: 100%;
        padding: 20px 0;
	}
	.promoslider .item>div a, .promoslider .item>div button{
		margin-bottom: 20px;
	}
    .moduletableprom:before, .moduletableprom:after{
       background: rgb(240,22,22);
       background: -webkit-linear-gradient(bottom, rgba(240,22,22,1) 50%, rgba(0,0,0,1) 50%);
       background: -o-linear-gradient(bottom, rgba(240,22,22,1) 50%, rgba(0,0,0,1) 50%);
       background: linear-gradient(to top, rgba(240,22,22,1) 50%, rgba(0,0,0,1) 50%);
   }
   .fixed-top>.container>div{
        position: relative;
   }
   .navbar-expand-md .navbar-collapse {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
    a.navbar-brand {
        margin: 0 0 0 35px;
    }
    div#navbarCollapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        display: none;
        background: rgba(10, 10, 10, 1);
        text-align: center;
        overflow: auto;
        z-index: 2;
    }
    div#navbarCollapse.show{
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
    }
    header nav.navbar.navbar-expand-md.navbar-dark{
        position: static;
    }
    .navbar-dark .navbar-toggler {
        color: rgba(255,255,255,1);
        border-color: rgba(255,255,255,.1);
        border: none;
        padding: 0;
        margin-top: 10px;
        position: absolute;
        top: 2px;
        left: 15px;
    }
    span.icon-bar {
        background: #fff;
        height: 3px;
        width: 24px;
        display: block;
        margin-bottom: 5px;
    }
    header .navbar-dark .navbar-nav a.nav-link{
        font-size: 16px;
    }
    nav i.fa.fa-share-alt{
        margin-top: 9px;
        position: absolute;
        right: 80px;
        top: 0;
    }
     ul.menu.navbar-nav.mr-auto {
        margin: auto;
    }
    li.nav-item.item-128, li.nav-item.item-129 {
        padding-right: 0;
        padding-left: 0;
    }
    li.nav-item.item-129:before{
        display: none;
    }
    a.navbar-brand>img{
        margin-top: 8px;
    }
    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    footer.footer>div .border{
        padding-bottom: 15px;
    }
    .footer-down p {
        margin-bottom: 0;
    }
    .social a img{
        height: 40px;
        width: 40px;
    }
    div#jsfilter_98 {
        padding: 15px 15px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9991;
        width: 255px;
        background: #fff;
        height: 100%;
        display: none;
    }
    .scrollbar-outer.sf_container{
        /*max-height: 200px;*/
        position: absolute;
        left: 0;
        top:0;
        width:255px;
        height: 100%;
        padding: 25px;
    }
    input.sf_submit{
        margin-bottom: 60px;
    }
    #view-filter{
    	display: -webkit-flex;
	    display: -moz-flex;
	    display: -ms-flex;
	    display: -o-flex;
        display: flex;
    }
    .catincat .moduletable a {
        padding: 9px 32px 9px 32px;
    }
    .controller-product .content .container, .view-manufacturer .content .container, .itemid-128 .content .container, .itemid-129 .content .container, .view-article .content .container{
        max-width: 690px;
    }
    .controller-manufacturer .main_intro{
        max-width: 650px;
    }
    .items-leading.clearfix>div{
        max-width: none;
        padding: 0 4px;
    }
}
@media screen and (max-width: 767px) {
	input[type=number]{
	  padding-right:10px;
	}
	input[type=number]::-webkit-inner-spin-button,
	input[type=number]::-webkit-outer-spin-button {
	 opacity: 1 !important;
	 width: 35px;
	 height: 35px;
	}
    #blog-desc>div img{
        width: 100%;
    }
    .prlx{
        background-attachment: scroll !important;
    }
    footer.footer h3{
        margin-bottom: 0;
    }
    footer.footer ul{
        margin-bottom: 20px;
    }
    .moduletable.cathot li{
        text-align: center;
    }
    .moduletable.cathot ul{
        margin-bottom: 45px;
    }
    .block_brends_list {
        width: 100%;
        float: left;
        text-align: center;
    }
    .itemid-129 .items-row{
        margin-bottom: 0;
    }
    .itemid-129 .items-row .item {
        margin-bottom: 40px;
    }
    .prod_share a{
        margin-right: 29px;
    }
  form#smart_filter_98 fieldset .sf_block_params label:first-child {
  margin-right: 0;
  }
  form#smart_filter_98 fieldset .sf_block_params label:last-child {
  margin-right: 0;
  }

  form#smart_filter_98 fieldset .sf_block_params label:nth-child(2n-1) {
  }
	div#wishlist {
		top: 70px;
	}  
	.itemid-140 .article.item-page img{
		width: 100%;
	}
    ul.pagination li:nth-child(4), ul.pagination li:nth-child(5), ul.pagination li:nth-last-child(6), ul.pagination li:nth-last-child(4), ul.pagination li:nth-last-child(5){
        display: none;
    }
    .controller-product .content .container, .view-manufacturer .content .container, .itemid-128 .content .container, .itemid-129 .content .container, .view-article .content .container{
        max-width: 510px;
    }
    .controller-manufacturer .main_intro{
        max-width: 470px;
    }
	#unijax_filter_container {
		display: none;
	}
	#unijax_filter_offcanvas_button span{
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
		float: right;
		width: 32px;
		height: 32px;
	}
}
@media screen and (max-width: 575px) {
    .prod_share{
        margin-bottom: 35px;
    }
    .prod_share a{
        float: none;
        display: block;
        margin: 0 auto 20px !important;
    }
    .prod_share h3{
        margin-bottom: 30px;
    }
    .block_product h4 a.wishlist.button_buy {
        position: absolute;
	    top: 5px;
	    right: 14px;
	}
	div#wishlist{
		right: 15px;
	}
	.head-list, .body-list{
		width: 270px;
	}
    .fix-soc h3{
        margin: 0 20px 7px;
    }
    .fix-soc .social {
        margin: 35px 20px;
    }
    .controller-product .content .container, .view-manufacturer .content .container, .itemid-128 .content .container, .itemid-129 .content .container, .view-article .content .container{
        max-width: none;
        border: none;
    }
    .controller-manufacturer .main_intro{
        max-width: none;
    }
}
#manCarousel {
  --f-carousel-slide-width: calc(94% / 6);
  --f-carousel-spacing: 0;
}
#manCarousel .f-carousel__slide img {
    width: 100%;
    padding: 10px;
}


.item-129 .dropdown-menu {
    z-index: 10000;
    right: 0;
    left: auto;
}

.top_block a.nav-link,.top_block .separator {
    padding-top: 0;
    padding-bottom: 0;
    color: #fefefe;
    font-size: 14px;
}
.category h4 {
    position: absolute;
    bottom: 0;
    margin: 0;
    text-align: center;
    line-height: 16px;
    background: rgba(0,0,0,0.5);
    width: 100%;
    padding: 5px;
}

.category h4 a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.category {
    margin-bottom: 20px;
}
#mxcpr{
	display:none!important;
}
.jshop_prod_cart img {
    width: 120px;
}
#manCarousel__ img {
    width: 100%;
    padding: 10px;
}
#manCarousel__ .carousel-control-prev, #manCarousel .carousel-control-next {
    width: 20px;
    background: #eee;
}
.card.product:hover {
    border: 1px solid var(--base-color);
	/*box-shadow: 2px 2px 2px var(--base-color);*/
}
.btn-success {
    color: #fff;
    background-color: #6dc7bd;
    border-color: #6dc7bd;
}
/*.btn-success {
    color: var(--link-color);
    background-color: var(--base-color);;
    border-color: var(--base-color);;
}*/
.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle {
    /* color: var(--link-color); */
    background-color: #55aca2;
    border-color: #6dc7bd;
}
.btn-success:hover {
    /* color: var(--link-color); */
    background-color: #6dc7bd;
    border-color: #6dc7bd;
    opacity: 0.85;
}
.card.product h5 {
    font-size: 14px;
    line-height: 16px;
}
.card.product h5 a{
    color: #000;
}
.card.product .card-subtitle {
    font-size: 12px;
    margin-bottom:5px;
}
.card-subtitle span.ean {
    float: right;
}
.card.product .price {
    font-size: 22px;
}
.advantages h2{
	line-height: 33px;
	font-size: 24px;
}

.advantages {
    text-align: center;
}
.advantages h2 img {
    padding-right: 10px;
    display: block;
	margin: 0 auto;
}
#mainBanner {
/*    max-height: 300px;*/
    overflow: hidden;
	margin-bottom: 40px;
}
#catmenu {
    background: #f8f9fa;
    margin-bottom: 20px;
    display:none;
	padding-top: 10px;
}
#catmenu a {
    color: #333;
}
#catmenu p a{
	font-size: 18px;
	line-height: 18px;
}
#catmenu p{
    font-size: 12px;
    line-height: 5px;
	padding-left:5px;
}
#catmenu h5 {
    font-size: 18px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 13px;
    font-weight: 700;
}
#catmenuDropdown {
    background-color: var(--base-color);
    padding: 12px 7px;
    border-radius: 4px;
    color: var(--link-color);
    white-space: nowrap;
    margin-right: 10px;
    font-size: 14px;
    line-height: 14px;
    color: #171717;
}
.manufacturers {
    margin: 40px 0;
}

.product-tabs img {
    width: 64px;
}

.nav-pills .nav-link.active, .nav-pills .nav-link {
    padding: 1px 2px 1px 0;
    background: none;
}
#product .sku {
    font-size: 14px;
}
#product .available {
    font-size: 14px;
    text-align: right;
}
.calculate {
    padding: 20px;
    background: #f3f3f3;
    border-radius: 4px;
}
.summ {
    font-weight: 700;
}
.cart_reload span {
    font-weight: 100;
    padding-left: 5px;
    font-size: 13px;
    color: #e33a3a;
}
.owl-dots button {
    border: none;
    background: none;
}

img.owl-dot {
    max-width: 106px;
}
.owl-dots {
    overflow-y: scroll;
    max-height: 405px;
}


#productContainer {
  --product-view-height: 450px;
}

#productContainer .f-thumbs.is-classic.is-vertical {
  height: var(--product-view-height, 100%);
  padding-right: 10px;
}

/*
  Thumbnails
*/

.f-thumbs.is-classic {
  /* --f-thumb-width: 120px; */
  /* --f-thumb-height: 90px; */
  /* --f-thumb-gap: 0.5rem; */
  /* --f-thumb-opacity: 1; */
  /* --f-thumb-selected-opacity: 0.2; */
  /* --f-button-color: #0d0c22; */
  /* --f-button-hover-color: #ff3520; */
  /* --f-button-bg: #fff; */
  /* --f-button-hover-bg: #fff; */
  /* --f-button-active-bg: #fff; */
}

.f-thumbs.is-classic .f-thumbs__slide__img {
  object-fit: contain;
}

.f-thumbs.is-classic .f-carousel__nav .f-button[disabled] {
  display: none;
}

/*
  Main carousel
*/
#productCarousel {
  --f-carousel-spacing: 0;

  --f-button-width: 48px;
  --f-button-height: 48px;
  --f-button-border-radius: 0;

  --f-button-color: #0d0c22;
  --f-button-hover-color: #ff3520;

  --f-button-bg: #fff;
  --f-button-hover-bg: #fff;
  --f-button-active-bg: #fff;

  --f-button-svg-width: 28px;
  --f-button-svg-height: 28px;

  --f-button-svg-stroke-width: 1;
  --f-button-svg-filter: none;

  height: var(--product-view-height);
}

#productCarousel .f-carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#productCarousel .f-carousel__slide img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

#productCarousel .f-carousel__nav {
  opacity: 0;
  transition: opacity 0.15s;
}

@media (hover: hover) {
  #productCarousel:hover .f-carousel__nav {
    opacity: 1;
  }
}
.myaccount_urls a {
    text-decoration: underline;
    color: #638c4b;
}
/*
  Fancybox
*/

.fancybox__container {
  --fancybox-color: #0d0c22;
  --fancybox-bg: #fff;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
}

.fancybox__toolbar,
.fancybox__nav {
  --f-button-width: 60px;
  --f-button-height: 60px;
  --f-button-border-radius: 0;

  --f-button-color: #0d0c22;
  --f-button-hover-color: #ff3520;

  --f-button-bg: #fff;
  --f-button-hover-bg: #fff;
  --f-button-active-bg: #fff;

  --f-button-svg-width: 32px;
  --f-button-svg-height: 32px;

  --f-button-svg-stroke-width: 1;
  --f-button-svg-filter: none;
}

.fancybox__nav {
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.grid {
    display: grid;
}
@media (min-width: 768px)
{
  .md\:grid-cols-\[106px_minmax\(0px\2c _1fr\)\] {
      grid-template-columns: 106px minmax(0px, 1fr);
  }
}
@media (min-width: 768px)
{
  .md\:max-w-lg {
      max-width: 32rem;
  }
}

@media (min-width: 768px){
  .md\:grid-cols-\[106px_minmax\(0px\2c _1fr\)\] {
      grid-template-columns: 106px minmax(0px, 1fr);
  }
}
@media (min-width: 768px)
{
.md\:max-w-lg {
    max-width: 32rem;
}
}
@media (min-width: 476px)
{
	#labCarousel112 {
		--f-carousel-slide-width: calc(96% / 4);
		--f-carousel-spacing: 10px;
	}
	#labCarousel123 {
		--f-carousel-slide-width: calc(96% / 4);
		--f-carousel-spacing: 10px;
	}

} 
@media (min-width: 1140px) {
    #labCarousel112 {
        --f-carousel-slide-width: calc(96% / 6);
        --f-carousel-spacing: 10px;
    } 
    #labCarousel123 {
        --f-carousel-slide-width: calc(96% / 6);
        --f-carousel-spacing: 10px;
    } 
}

.sinle-characters .sinle-characters-wr {
    margin: 10px 0px;
}

.sinle-characters .sinle-character {
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    margin-bottom: 5px;
}

.sinle-characters .sinle-character > div {
    font-size: 13px;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
}

.sinle-characters .sinle-character > span {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    margin: 16px 8px 0px;
    border-bottom: 1.6px dotted rgb(36, 36, 36);
    display: inline-block;
}

.sinle-characters .sinle-character > div:last-child {
    width: 50%;
}

.desc {
    font-size: 14px;
}
.desc .nav-link.active {
    font-weight: 700;
    color: var(--base-color-border);
}

.desc .nav-link {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ff9f4f;
}


#jshop_search {
    border: 1px solid #eee;
    padding: 5px 10px;
    /* margin-right: 10px; */

}
button.btn.btn-outline-dark {
    background: #9f6dc3;
    color: #fefefe;
}
.wrapper {
    background: #693290 url(../images/top1.jpg) no-repeat;
    background-size: contain;
}
footer {
	margin-top: 30px;
	background: #2b0845 url(../images/footer.png) no-repeat;
	padding-top: 20px;
	text-align: center;
	color: #fff;
	background-size: contain;
}
footer a {
    color: #fefefe;
}
.width100{
	width:100%;
}
.height100{
	height:100%;
}
.card.product>a {
    display: inline-block;
/*    height: 185px;
    overflow: hidden;*/
}
a.header-shopping-cart {
    background: #ffed7b;
    padding: 11px 7px;
    border-radius: 3px;
    color: #222;
    font-size: 14px;
    line-height: 14px;
    white-space: nowrap;
    margin: 0 5px;
    display: flex;
}
.header-shopping-cart span {
    margin-left: 5px;
}
#navbarMain a.dropdown-toggle, #navbarMain .item-114 a{
    background: #ffed7b;
    padding: 7px;
    border-radius: 3px;
    color: #222;
    white-space: nowrap;
    font-size: 14px;
}
.product_label {
    position: absolute;
}
.category_bage {
    margin-bottom: 10px;
    font-weight: 700;
}
.carousel .card {
    margin-left:5px;
    margin-right:5px;
}
.wa img {
    width: 24px;
    height: 24px;
}
a.wa {
}
.item-132 {
}
.brand img {
	width: 122px;
}
.phone-m{
	display:none;
}

@media (max-width: 992px) {
	.mobil-nav{
		display:inline-block;
	}
	.phone-m {
		text-align: right;
		display: block;
		width: 100%;
]	}
	.brand img {
		display:inline-block;
	}

	.phone-m .navbar-toggler {
		float: left;
		color: #ecaa54;
	}
}
.control-group {
    margin: 10px 0;
}
li.nav-item.item-134 {
}
.shopcart {
    /* white-space: nowrap; */
    /* margin: 0 5px; */
}
.key {
    padding: 0 0 2px;
}
nav.navbar-light{
    padding-bottom: 0;
}
nav.sticky-top {
    padding-top: 0;
    margin-bottom: 10px;
}
#topBanner .f-carousel__slide img{
    border: solid 1px #eee;
    margin: 0 6px;
    text-align: center;
}
#topBanner .f-carousel__slide img {
    max-width: 100%;
}
#topBanner {
    --f-carousel-slide-width: calc(100%);
    --f-carousel-spacing: 0;
    margin-top: 20px;
}
.f-carousel__nav .f-button.is-prev, .fancybox__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-next {
    opacity: 1;
    color: #eee;
    background: #333;
    padding: 0;
    height: 30px;
    width: 30px;
}

#topBanner .f-carousel__slide{
    opacity: 0.1;
}
#topBanner .f-carousel__slide.is-selected {
    opacity: 1;
    text-align: center;
}
@media (max-height: 2586px) {
	#topBanner {
		--f-carousel-slide-width: calc(67%);
		text-align: center;
	}
}

#pi2chat.pi2-bottom_right {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    text-align: right;
    line-height: 0;
}
a.pi2_wa img, a.pi2_tg img, a.pi2_tel img {
    width: 32px;
}

a.pi2_tel img{
    width: 37px;
}
.pi2_message {
    background: #fff;
    padding: 15px 7px;
    border-radius: 5px;
    display: block;
    border: solid 1px #eee;
    font-size: 12px;
}
/* ----- Animated button ----- */

.pi2_tel img{
  
  -moz-animation: cycle 2s linear infinite;            
  -webkit-animation: cycle 2s linear infinite;
  display: inline-block;
  
}
.pi2-buy{
    float: left;
}
.pi2-buy .pi2_tel{
	color: #fd7e14;
}
@-moz-keyframes cycle {
        35% {transform: rotate(0) translate(0, 0);}
        40% {transform: rotate(5deg) translate(0, -2px);}
        45% {transform: rotate(-3deg) translate(0, -2px);}
        50% {transform: rotate(5deg) translate(0, -2px);}
        55% {transform: rotate(-3deg) translate(0, -2px);}
        60% {transform: rotate(5deg) translate(0, -2px);}
        65% {transform: rotate(-3deg) translate(0, -2px);}
        70% {transform: rotate(0) translate(0, 0);}
    }

    @-webkit-keyframes cycle {
        35% {transform: rotate(0) translate(0, 0);}
        40% {transform: rotate(5deg) translate(0, -2px);}
        45% {transform: rotate(-3deg) translate(0, -2px);}
        50% {transform: rotate(5deg) translate(0, -2px);}
        55% {transform: rotate(-3deg) translate(0, -2px);}
        60% {transform: rotate(5deg) translate(0, -2px);}
        65% {transform: rotate(-3deg) translate(0, -2px);}
        70% {transform: rotate(0) translate(0, 0);}
    }

/* ----- Animated button END ----- */

h1 {
    padding-bottom: 20px;
    font-size: 28px;
}


@media screen and (max-width: 476px) {
	#manCarousel {
		--f-carousel-slide-width: calc(94% / 3);
		--f-carousel-spacing: 0;
		margin-bottom: 10px;
	}
	#labCarousel123 {
		--f-carousel-slide-width: calc(96% / 2);
		--f-carousel-spacing: 10px;
	}
	#labCarousel112 {
		--f-carousel-slide-width: calc(96% / 2);
		--f-carousel-spacing: 10px;
	}
    .fix-soc{
        margin: auto 15px;
    }
    .fixed-top>.container>div{
        padding: 0 6px;
    }
    .items-leading.clearfix>div a{
        font-size: 22px;
    }
    header nav.navbar.navbar-expand-md.navbar-dark {
        padding: 0;
        margin-top: 1px;
    }
    nav i.fa.fa-share-alt {
        margin-top: 11px;
        font-size: 25px;
        margin-left: 6px;
    }
    span.icon-bar{
        width: 20px;
    }
    a.navbar-brand {
        margin: 0 0 0 30px;
    }
    a.navbar-brand>img{
        max-width: 100%;
        margin-top: 0;
    }
    .navbar-dark .navbar-toggler{
        left: 5px;
    }
    nav i.fa.fa-share-alt{
        right: 65px;
    }
    .custom.lang {
        position: relative;
        margin: 13px 0 0;
    }
    footer.footer>div .border {
        padding: 32px 5px 15px;
    }
    .block_product {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .main_intro{
        min-height: 450px;
    }
    .moduletable.pop-brands{
        max-height: none;
    }
    .pop-brands li{
        width: 31%;
        height: 80px;
        margin-right: 3%;
        margin-bottom: 10px;
        padding: 0 2%;
    }
    .pop-brands li:last-child, .pop-brands li:nth-child(3) {
        margin-right: 0;
    }
    .pop-brands li:nth-child(4), .pop-brands li:nth-child(5), .pop-brands li:nth-child(6){
        margin-bottom: 0;
    }
    .bx-wrapper .bx-controls-direction a.bx-prev {
        left: 15px;
    }
    .bx-wrapper .bx-controls-direction a.bx-next {
        right: 15px;
    }
    .moduletableprom .bx-wrapper .bx-controls-direction a.bx-prev {
        left: 0px;
    }
    .moduletableprom .bx-wrapper .bx-controls-direction a.bx-next {
        right: 0px;
    }
    .catincat .moduletable a {
        padding: 9px 17px;
    }
    .productfull{
        padding: 0;
    }
  .cart .quantity .inputbox.pack {
      margin-left: 102px;
      margin-top:10px;
      width: 100px;
  }
  .cart .quantity .inputbox.calc_quantity {
      width: 100px;
  }
	#catmenuDropdown {
		font-size: 0;
		padding: 7px 10px;
	}
	#catmenuDropdown i{
		font-size: 19px;
		margin-top: 2px;
	}

	.item-114 {
		font-size: 0;
	}

	.item-114 span {
		font-size: 12px;
		padding: 6px;
	}
}
@media screen and (max-width: 360px) {
    .pop-brands li{
        height: 60px;
    }
    .page-link, .page-item.disabled .page-link{
        padding: .2rem .7rem;
    }
}

.search-form {
    position: relative;
}
div#resSearch ul {
  padding: 5px;
  /* overflow-y: scroll; */
  display: table;
  /* width: 100%; */
  border: 1px solid #dbdfe6;
  /* border-top: none; */
}
div#resSearch {
  /* position: absolute; */
  /* z-index: 1000; */
  /* background: #fff; */
  /* font-size: 12px; */
  /* width: 50%; */
  /* top: 40px; */
  /* left: 5px; */
}
div#resSearch li {
}
div#resSearch li img {
    max-height: 50px;
    max-width: 50px;
	margin-bottom: 3px;
    margin-right: 5px;
}

div#resSearch li a {
    /* display: block; */
    /* vertical-align: middle; */
    margin: 27px 0;
    /* line-height: 15px; */
}
#resSearch .btn-group {
    float: right;
    margin-top: -10px;
}

#resSearch .btn-sm {
    padding: 5px;
    font-size: 10px;
}
 