@font-face {
    font-family: 'Roboto';
    src: url('/catalog/view/theme/default/stylesheet/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/catalog/view/theme/default/stylesheet/fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/catalog/view/theme/default/stylesheet/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/catalog/view/theme/default/stylesheet/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/catalog/view/theme/default/stylesheet/fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
body {
	font-family: 'Roboto';
	font-weight: 400;
	color: #222;
	font-size: 16px;
	line-height: 20px;
}
h1, h2, h3, h4, h5, h6 {font-weight:600;color:#444}
h1 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;
	margin-top: 40px;
	text-transform: uppercase;
}
h2 {margin:0 0 20px;font-size:25px}
h3 {margin:0 0 20px;font-size:20px}
h4 {font-size:15px}
h5 {font-size:12px}
h6 {font-size:10.2px}
a {color:#23a1d1}
a:hover {text-decoration:none}
legend {font-size:18px;padding:7px 0px}
label {font-size:12px;font-weight:normal}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	height:34px;
	font-size:12px;
	border-color:#ddd;
	box-shadow:none
}
.fa {font-size:14px}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {font-size:12px}
.input-group .input-group-addon {font-size:12px;height:30px}
button,select,.btn,.btn:active,.btn:hover,.btn:focus,.nav-tabs .li {outline:none!important;-moz-user-select:none!important;-webkit-user-select:none!important}
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {display:inline;}
.nav-tabs {margin-bottom:15px}
div.required .control-label:before {content:'* ';color:#f00;font-weight:700}
.dropdown-menu li > a:hover, .dropdown-menu li > button:hover {text-decoration:none;color:#333;background:rgba(0 0 0 /.05)}
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  font-family: Arial, sans-serif;
  display: none; /* Скрыто по умолчанию */
}

.cookie-content p {
  margin: 0 0 15px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.cookie-content a {
  color: #0066cc;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.accept-btn {
  background: #0066cc;
  color: white;
}

.reject-btn {
  background: #f0f0f0;
  color: #333;
}

.accept-btn:hover {
  background: #0055aa;
}

.reject-btn:hover {
  background: #e0e0e0;
}
#top {
	background-color: #eee;
	margin: 0 0 25px;
	min-height: 36px;
	font-size: 14px;
	text-transform: uppercase;
}
#top a {
	color: #000;
}
#top .btn.btn-link.dropdown-toggle {
	color: #000;
	font-size: 14px;
	text-transform: uppercase;
}
#logo img {
	max-height: 80px;
	margin-top: -25px;
	margin-bottom: -7px;
}
.hamburger {
	cursor: pointer;
	position: absolute;
	left: 0;
	z-index: 2000;
	color: black;
	top: 0;
	margin-top: 0px;
}
.hamburger img {
	width: 70px;
	margin-top: -10px;
	margin-left: 10px;
}
.btncentetmodal {
	text-align: center;
}
#myModal {
	z-index: 999999;
}
    .hamburger.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .full-menu {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background-color: rgba(0, 0, 0, 0.95);
      color: white;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 1500;
      display: flex;
      flex-direction: column;
      padding: 80px 20px 20px;
      overflow-y: auto;
    }

.full-menu.active {
	transform: translateX(0);
	height: 100%;
}
    .close-btn {
      position: fixed;
      top: 20px;
      right: 20px;
      font-size: 48px;
      color: white;
      cursor: pointer;
      z-index: 2500;
      display: none;
      background: transparent;
      border: none;
      padding: 0;
      width: 50px;
      height: 50px;
      margin: 0;
    }

    .menu-item {
      margin: 15px 0;
    }
.btncentetmodal .btn.btn-lg.btn-danger {
	text-transform: uppercase;
	font-weight: bold;
}
.menu-button {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	text-align: left;
	width: 100%;
	padding-left: 20px;
	display: block;
	line-height: 30px;
}

    .submenu {
      margin-left: 20px;
      margin-top: 10px;
      display: none;
      flex-direction: column;
    }

.submenu a {
	color: #ccc;
	font-size: 15px;
	margin: 5px 0;
	text-decoration: none;
	padding: 8px 0;
	display: block;
	float: left;
	position: relative;
    transition: 0.3s;
}
.submenu a:hover {
	transform: scale(1.1);
}
.submenu a img {
	width: 140px;
	border-radius: 10px;
	margin-right: 20px;
	border: 1px solid;
}
.submenu span {
	display: block;
	position: absolute;
	top: 15px;
	left: 1px;
	background-color: #000;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
	max-width: 130px;
}
.breadcrumb a {
	color: #000;
	background-color: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	text-transform: uppercase;
	font-size: 14px;
	display: inline-block;
}

    .submenu a:hover {
      text-decoration: underline;
    }
.menu-item.open .submenu {
	display: block;
	float: left;
	width: 100%;
}
.faq-container {
	margin: 0 auto;
	padding: 20px;
}
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px 20px;
            background-color: #f8f8f8;
            color: #333;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #eee;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 20px;
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: #fff;
        }
        
.faq-answer.show {
	padding: 20px;
	max-height: 100%;
}
        .faq-answer p {
            margin: 0;
            line-height: 1.6;
            color: #555;
        }
.breadcrumb a {
	color: #000;
	background-color: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	text-transform: uppercase;
	font-size: 14px;
}
.footer-center a {
	text-transform: uppercase;
	font-size: 14px;
	background-color: #444444;
	margin-right: 20px;
	padding: 10px 20px;
	display: inline-block;
	border-radius: 10px;
	margin-bottom: 20px;
}
.copyright1 {
	text-transform: uppercase;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 14px;
}
.row.ots1 {
	margin-bottom: 20px;
}
.image .img-responsive {
	border-radius: 10px;
}
.caption h4 {
	text-align: center;
}
.caption a {
	color: #000;
	text-transform: uppercase;
}
.caption p {
	text-transform: uppercase;
	text-align: justify;
}
.product-thumb .price {
	font-size: 40px;
	text-align: right;
}
.product-thumb .button-group button {
	width: 100%;
	border: none;
	float: left;
	color: #000;
	line-height: 50px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
}
.product-thumb button {
	background-color: #61b8dd;
}
.product-thumb .fa-shopping-cart {
	font-size: 20px;
}
.uspeh {
	border: 2px solid #ff8300;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
}
.list-inline.custom22 .dropdown-menu li {
	display: block;
	float: none;
}
.contprod-custom h1 {
	text-align: left;
	margin-top: 0;
}
.catlinks li {
	list-style-type: none;
}
.catlinks ul {
	margin: 0;
	padding: 0;
}
.catlinks a {
	background-color: #009ccc;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 20px;
	display: block;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 20px;
	padding-left: 20px;
	border-radius: 10px;
	transition: 0.3s;
}
.catlinks a:hover {
	transform: scale(1.1);
}
.headinf-newhome {
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 30px;
}
@media (max-width:700px) {
.btncentetmodal .btn.btn-lg.btn-danger {
	width: 100%;
	height: auto;
	font-size: 12px;
}
.hamburger img {
	width: 70px;
	margin-top: -10px;
	margin-left: -3px;
}
.list-inline.custom22 li {
	padding-top: 5px;
}
.footer-center a {
	font-size: 10px;
	margin-right: 10px;
	padding: 5px 10px;
	margin-bottom: 10px;
}
.product-customcat .product-thumb .button-group {
	background: none;
	border: 0;
	text-align: center;
}
#cart {
	margin-bottom: 15px;
	position: absolute;
	z-index: 999999;
	width: 50px;
	height: 50px;
}
.product-customcat .button-group button {
	margin: auto;
	float: none;
	border-radius: 20px;
	margin-bottom: 10px;
}
.product-customcat .product-layout.product-grid.col-lg-3.col-md-3.col-sm-6.col-xs-12 {
	width: 50%;
}
.product-customcat .product-thumb {
	background: #f9f9f9;
	border: 0;
}
.breadcrumb a {
	padding: 3px 5px;
	font-size: 9px;
}
.breadcrumb {
	padding: 5px;
}
.product-thumb {
	overflow: visible !important;
}
.text-quantity-unit-xvr {
	text-align: center;
}
.ots1 .col-sm-2 {
	width: 100px;
	float: left;
}
.ots1 .col-sm-5 {
	width: 218px;
	float: left;
}
.col-sm-5.limit111 {
	display: none;
}
h1 {
	font-size: 16px;
	margin-bottom: 10px;
	margin-top: 10px;
}
    .nonemob {
        display: none;
    }
#top-links .fa {
	font-size: 16px;
}
.hamburger {
	font-size: 30px;
	margin-top: -7px;
	padding-bottom: 14.5px;
	padding-top: 5px;
	margin-left: 0;
	float: left;
	position: relative;
}
#top-links a {
	padding-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
	display: block;
	float: left;
}
#top-links {
	height: auto !important;
}
#top-links ul {
	margin-bottom: 0;
}
#top-links li {
	padding-left: 0;
	padding-right: 0;
}
#logo {
	margin-left: 0 !important;
	display: block;
	text-align: right;
	float: right;
}
.submenu a img {
	width: 120px;
}
.submenu span {
	max-width: 115px;
}
.submenu a {
	font-size: 14px;
	width: 136px;
	height: 136px;
}
    .full-menu {
	padding: 0;
}
}

#top #form-currency .currency-select,#top #form-language .language-select {text-align:left}
#top .btn-link, #top-links li, #top-links a {
	text-decoration: none;
}
#top-links .dropdown-menu a {text-shadow:none}
#top .btn-link strong {font-size:14px;line-height:14px}
#top-links {height:36px;padding:6px 0}
#top-links a + a {margin-left:15px}
#top .dropdown{height:28px}

#logo {
	margin-bottom: 0;
	margin-left: 70px;
	margin-top: 16px;
}

#search {width:100%;margin-bottom:15px}
#search .input-lg {height:38px;line-height:20px;padding:0 10px;border-radius:6px}
#search .btn-lg {position:absolute;z-index:99;top:1px;right:6px;font-size:15px;line-height:15px;padding:10px 15px;background:rgba(0 0 0 / .01);border-radius:0 6px 6px 0}

/* cart */
#cart {margin-bottom:15px}
#cart > .btn {font-size:12px;line-height:18px;color:#fff}
#cart > .btn {
	font-size: 12px;
	line-height: 18px;
	color: #fff;
	position: fixed;
	width: 60px;
	height: 60px;
	text-align: center;
	right: 20px;
	bottom: 20px;
	border-radius: 20px;
}
.cartcust {
	position: absolute;
	top: -5px;
	background-color: #ff0000;
	width: 20px;
	letter-spacing: 20px;
	padding-left: 6px;
	border-radius: 10px;
	right: -5px;
}
#cart i {
	font-size: 33px;
	color: #4c8da9;
	position: absolute;
	top: 0;
	margin-top: -40px;
	margin-left: -15px;
	text-align: center;
	left: 50%;
	width: 30px;
}
#cart.open > .btn:hover {color:#444;}
#cart .dropdown-menu {background:#eee;z-index:1001}
#cart .dropdown-menu {min-width:100%;overflow-y:auto;max-height:800px;scrollbar-width:thin;overflow-x:hidden}
.list-inline.custom22 li {
	display: block;
	float: left;
}
.list-inline.custom22 .btn.btn-link.dropdown-toggle {
	padding-top: 0;
}
#cart-total {
	background-color: #ff0000;
	position: absolute;
	bottom: -10px;
	left: 50%;
	width: 80px;
	margin-left: -40px;
	border-radius: 10px;
}
@media (max-width:478px) {
	#cart .dropdown-menu {width:100%}
}

#cart .dropdown-menu table {margin-bottom:10px}
#cart .dropdown-menu li > div {min-width:427px;padding:0 10px}

@media (max-width:478px) {
	#cart .dropdown-menu li > div {min-width:100%}
}

#cart .dropdown-menu li p {margin:20px 0}
/*#menu {margin:0 0 25px;background-color:#229ac8;min-height:46px;border:none;border-radius:6px}
#menu .nav > li > a {color:#fff;padding:13px 20px;min-height:15px}
#menu .nav > li > a:hover, #menu .nav > li.open > a {background-color:rgba(0, 0, 0, 0.1)}
#menu .dropdown-menu {padding-bottom:0}
#menu .dropdown-inner {display:table}
#menu .dropdown-inner ul {display:table-cell}
#menu .dropdown-inner a {min-width:250px;display:block;padding:5px 10px;clear:both;line-height:20px;color:#333333;font-size:12px}
#menu li.dropdown > a:after{display:inline-block;content:'›';margin:0 0 0 10px;font-weight:700;color:inherit;transform:rotate(90deg)}
#menu li.dropdown.open > a:after, #menu li.dropdown:hover > a:after{transform:rotate(-90deg)}
#menu .dropdown-inner li a:hover {color:#229ac8;background:none}
#menu .see-all {display:block;margin:10px;font-size:12px}
#menu .see-all:hover, #menu .see-all:focus {text-decoration:none;color:#333;background:none}
#menu #category {float:left;padding-left:15px;font-size:1.2em;font-weight:700;line-height:44px;color:#fff}
#menu .btn-navbar {font-size:15px;font-stretch:expanded;color:#fff;padding:2px 15px;float:right;background-color:#229ac8;border:solid 1px rgba(0 0 0 /.1)}
#menu .btn-navbar:hover, #menu .btn-navbar:focus, #menu .btn-navbar:active, #menu .btn-navbar.disabled, #menu .btn-navbar[disabled] {color:#fff;background-color:#229ac8}

@media (min-width:768px) {
	#menu .navbar-collapse {padding:0}
	#menu .dropdown:hover .dropdown-menu {display:block}
}
@media (max-width:767px) {
	#menu {}
	#menu .navbar-nav{margin:0 -15px}
	#menu div.dropdown-inner > ul.list-unstyled {display:block}
	#menu div.dropdown-menu {padding:10px;background-color:rgba(0, 0, 0, 0.05)}
	#menu .dropdown-inner {display:block}
	#menu .dropdown-inner a {width:100%;color:#fff}
	#menu .dropdown-menu a:hover,
	#menu .dropdown-menu ul li a:hover {background:rgba(0, 0, 0, 0.1)}
	#menu .see-all {margin:10px 10px 0;border:none;border-radius:0;color:#fff}
	#menu .nav > li{border-top:solid 1px rgba(0 0 0 /.1);}
}
*/
#content {
	min-height: 600px;
	margin-top: 20px;
}
#product-product #tab-description, #information-information #content {
	font-size: 16px;
}

footer {
	margin-top: 30px;
	padding-top: 30px;
	background-color: #003c53;
	color: #e2e2e2;
}
footer hr {border-top:1px solid #444}
footer a {color:#ccc}
footer a:hover {color:#fff}
footer h5 {margin:0 0 15px;font-weight:700;font-size:1.2em;px;color:#fff}
footer li{padding:0 0 5px}

.alert {padding:8px 14px 8px 14px}
.alert .close{right:0}

.breadcrumb {
	margin: 20px 0 0 0;
	background: #b4e8ff;
	border-radius: 10px;
}
.breadcrumb i {font-size:15px}
.breadcrumb > li {position:relative;white-space:nowrap}
.breadcrumb > li + li:before {content:'»';padding:0 6px;color:#666}

.dropdown-menu{min-width:250px;padding:10px;font-size:12px;border:none;border-radius:6px}
.dropdown-menu > li > a, .dropdown-menu > li > button {padding:7px 10px;border-radius:4px}

.nav-tabs > li > a{font-size:1.1em}

html[dir=rtl] .breadcrumb > li::after {
  top:-3px;
  left:-5px;
  width:26px;
  height:26px;
  border-left:1px solid #DDD;
  border-top:1px solid #DDD;
  right:unset;
  border-right:unset;
  border-bottom:unset;
}
.pagination {margin:0}

.buttons {margin:1em 0}

.btn {padding:8.5px 12px;font-size:12px;border:none;border-radius:6px}
.btn-xs {font-size:9px}
.btn-sm {font-size:10.2px}
.btn-lg {padding:10px 16px;font-size:15px}

.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
	font-size: 12px;
	z-index: 9999;
}
.btn-group > .btn-xs {font-size:9px}
.btn-group > .btn-sm {font-size:10.2px}
.btn-group > .btn-lg {font-size:15px}

.btn-default {color:#777;background-color:#eee}
.btn-primary {color:#fff;background-color:#229ac8}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {background-color:#1f90bb;background-position:0 -15px}
.btn-warning {color:#fff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {box-shadow:inset 0 1000px 0 rgba(0, 0, 0, 0.1)}
.btn-danger {color:#fff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {box-shadow:inset 0 1000px 0 rgba(0, 0, 0, 0.1)}
.btn-success {color:#fff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {box-shadow:inset 0 1000px 0 rgba(0, 0, 0, 0.1)}
.btn-info {color:#fff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#df5c39;background-image:linear-gradient(to bottom, #e06342, #dc512c);background-repeat:repeat-x;border-color:#dc512c #dc512c #a2371a}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {background-image:none;background-color:#df5c39}
.btn-link {border-color:rgba(0, 0, 0, 0);cursor:pointer;color:#23A1D1;border-radius:0}
.btn-link, .btn-link:active, .btn-link[disabled] {background-color:rgba(0, 0, 0, 0);background-image:none;box-shadow:none}
.btn-inverse {color:#fff;background-color:#333}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {background-color:#222}

/* list group */
.list-group a {border:1px solid #ddd;color:#888;padding:10px 12px}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {color:#444;background:#eee;border:1px solid #ddd;text-shadow:0 1px 0 #fff}

/* carousel */
.carousel-caption {color:#fff;text-shadow:0 1px 0 #000}
.carousel-control .icon-prev:before {content:'\f053';font-family:FontAwesome}
.carousel-control .icon-next:before {content:'\f054';font-family:FontAwesome}

.product-thumb {
	border: 1px solid #f2f2f2;
	margin-bottom: 25px;
	overflow: auto;
	border-radius: 10px;
}
.product-thumb .image {text-align:center}
.product-thumb .image a {display:block}
.product-thumb .image a:hover {opacity:0.8}
.product-thumb .image img {
	width: 100%;
}
.product-grid .product-thumb .image {float:none}

@media (min-width:767px) {
	.product-list .product-thumb .image {float:left;padding:0 15px}
}

.product-thumb h4 {
	height: 54px;
	font-size: 14px;
}
.product-thumb .caption {
	padding: 0 20px;
	min-height: 90px;
}
.product-list .product-thumb .caption {margin-left:230px}

@media (max-width:1200px) {
	.product-grid .product-thumb .caption {min-height:210px;padding:0 10px}
}

@media (max-width:767px) {
	.product-list .product-thumb .caption {min-height:0;margin-left:0;padding:0 10px}
	.product-grid .product-thumb .caption {min-height:0}
}

.product-thumb .rating {padding-bottom:10px}
.rating .fa-stack {font-size:8px}
.rating .fa-star-o {color:#999;font-size:15px}
.rating .fa-star {color:#FC0;font-size:15px}
.rating .fa-star + .fa-star-o {color:#E69500}
h2.price {margin:0}

.product-thumb .price {color:#444;font-size:1.4em;font-weight:600}
.product-thumb .price-old {color:#999;text-decoration:line-through;margin-left:10px}
.product-thumb .price-tax {color:#999;font-weight:400;font-size:.65em;display:block;margin:5px 0 0}
.product-thumb .button-group {border-top:1px solid #ddd;background-color:#eee;overflow:auto}
.product-list .product-thumb .button-group {border-left:1px solid #ddd}

@media (max-width:768px) {
	.product-list .product-thumb .button-group {border-left:none}
}


.product-thumb .button-group button + button {width:20%;color:#229ac8;border-left:1px solid #ddd;background:#f7f7f7}
.product-thumb .button-group button:hover {color:#444;background-color:#ddd;text-decoration:none;cursor:pointer}

@media (max-width:1200px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width:33.33%;
	}
}
@media (max-width:767px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width:33.33%;
	}
}

.thumbnails {overflow:auto;clear:both;list-style:none;padding:0;margin:0}
.thumbnails > li {margin-left:20px}
.thumbnails {margin-left:-20px}
.thumbnails > img {width:100%}
.image-additional a {margin-bottom:20px;padding:5px;display:block;border:1px solid #ddd}
.image-additional {max-width:78px}
.thumbnails .image-additional {float:left;margin-left:20px}

.swiper-viewport{border-radius:6px}
.swiper-slide{display:flex;align-items:center;justify-content:center}
.swiper-pagination-bullet{background:#ddd !important;box-shadow:none !important}
.swiper-pagination-bullet-active{background:#229ac8 !important}
.panel-group .panel{margin:0 0 15px;border-radius:6px}
.panel-group .panel-heading{border-radius:5px 5px 0 0}
#product-product .tab-content{margin:0 0 40px}

#account-login #content > .row{display:flex;flex-wrap:wrap}
#account-login #content > .row .col-sm-6 {flex:1 0 50%;margin:0 0 20px}
#account-login #content > .row .well{display:flex;flex-wrap:wrap;height:100%;}
#account-login #content > .row .well h2{width:100%;}
#account-login #content > .row .well h2 + p {display:none;margin:0 0 auto}
#account-login #content > .row .well form {/* margin:auto 0 0; */}
#account-login #content > .row .well .control-label{display:none}
#account-login #content > .row .well input + a {display:inline-block;margin:10px 0 }
#account-login #content > .row .well .btn {margin:auto 0 0}
#account-login #content > .row .well input.btn {margin:auto 0 -10px}

#account-account .list-unstyled{display:flex;flex-wrap:wrap;margin:0 0 20px}
#account-account .list-unstyled li{margin:0 15px 15px 0;padding:10px 15px;background:rgba(0 0 0 / .03);border-radius:6px}
#account-account .list-unstyled li:last-child{margin-right:0}

@media (min-width:1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#content .col-lg-3:nth-child(4n+1),
	#content .col-lg-4:nth-child(3n+1),
	#content .col-lg-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width:992px) and (max-width:1199px) {
	#content .col-md-2:nth-child(6n+1),
	#content .col-md-3:nth-child(4n+1),
	#content .col-md-4:nth-child(3n+1),
	#content .col-md-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width:768px) and (max-width:991px) {
	#content .col-sm-2:nth-child(6n+1),
	#content .col-sm-3:nth-child(4n+1),
	#content .col-sm-4:nth-child(3n+1),
	#content .col-sm-6:nth-child(2n+1) {
		clear:left;
	}
}

/* fixed colum left + content + right*/
@media (min-width:768px) {
    #column-left  .product-layout .col-md-3 {width:100%}
	#column-left + #content .product-layout .col-md-3 {width:50%}
	#column-left + #content + #column-right .product-layout .col-md-3 {width:100%}
    #content + #column-right .product-layout .col-md-3 {width:100%}
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {width:100%}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {min-width:50px}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image:none;
    background-color:#df5c39;
}

html[dir=rtl] .checkbox input[type="checkbox"],
html[dir=rtl] .checkbox-inline input[type="checkbox"],
html[dir=rtl] .radio input[type="radio"],
html[dir=rtl] .radio-inline input[type="radio"] {position:absolute;margin-top:4px\9;margin-right:-20px;margin-left:unset}
html[dir=rtl] .input-group-btn:last-child > .btn {border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-bottom-left-radius:5px}
html[dir=rtl] .input-group .form-control:first-child {border-top-right-radius:5px;border-bottom-right-radius:5px;border-top-left-radius:unset;border-bottom-left-radius:unset}
html[dir=rtl] .container .row:first-child  .col-sm-4, html[dir=rtl] .container .row:first-child  .col-sm-5 {float:right}
html[dir=rtl] #cart .dropdown-menu {left:0;right:auto}
.faq-container h3 {
	margin-bottom: 10px;
	margin-top: 30px;
}
@media (min-width:768px) {
    html[dir=rtl] .navbar-nav {
        float:right;
        margin:0;
    }
    
    html[dir=rtl] .navbar-nav > li {
        float:right;
    }
}
.footer-center .copyright1 a {
	padding: 0;
	background: none;
	text-decoration: underline;
}
.alert.alert-success.alert-dismissible {
	position: fixed;
	z-index: 9999;
	top: 35%;
	width: 300px;
	margin-left: -150px;
	left: 50%;
	font-size: 20px;
	line-height: 33px;
	text-align: center;
	padding: 40px 20px;
}
.alert.alert-success.alert-dismissible .close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 40px;
}
.alert-success.alert-dismissible {
    animation: fadeOut 1s ease-in 1s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; display: none !impotant; }
}
#cart {
	margin-bottom: 15px;
	margin-top: -200px;
}
.vtornik {
	position: absolute;
	bottom: 20px;
	left: 50%;
	background-color: #9d5900;
	width: 100px;
	text-align: center;
	font-size: 12px;
	line-height: 15px;
	border-radius: 5px;
	margin-left: -60px;
	box-sizing: border-box;
	padding-top: 3px;
	padding-bottom: 3px;
	border: 1px solid;
}
.vtornik21 {
	background-color: #0d2400;
	border-radius: 20px;
	border: 1px solid;
	margin-bottom: 20px;
}
.pyatnitsa132 {
	background-color: #2f0000;
	border-radius: 20px;
	border: 1px solid;
}
.menuh2 {
	color: #ff7800;
	padding-left: 50px;
	padding-top: 30px;
	border-bottom: 1px solid;
	padding-bottom: 20px;
}
@media (max-width:768px) {
.pr-newcustom .product-layout {
	display: inline-block;
	float: none;
	width: 155px;
}
    .row.pr-newcustom {
	text-align: center;
}
    .pr-newcustom h4 {
	font-size: 14px;
}
    .pr-newcustom .product-thumb {
	background: none;
	border: none;
}
    .pr-newcustom .caption {
	padding: 0;
}
    .pr-newcustom .button-group {
	background: none;
	border: 0;
	text-align: center;
}
    .pr-newcustom .product-thumb .button-group button {
	display: block;
	margin: auto;
	float: none;
	border-radius: 100px;
	width: 60px;
	height: 60px;
}
.col-sm-5.searchcustom {
	float: left;
	width: 100%;
}
#logo img {
	max-height: 50px;
}
}