

/* Start:/bitrix/templates/.default/auth/css/modal.min.css?14793383385588*/
/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Deactivate browser history navigation in IE11
 * 7. force hardware acceleration to prevent browser rendering hiccups
 */
.uk-modal {
	/* 1 */
	display: none;
	/* 2 */
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1010;
	/* 3 */
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	/* 4 */
	background: rgba(0, 0, 0, 0.6);
	/* 5 */
	opacity: 0;
	-webkit-transition: opacity 0.15s linear;
	transition: opacity 0.15s linear;
	/* 6 */
	touch-action: cross-slide-y pinch-zoom double-tap-zoom;
	/* 7 */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
/*
 * Open state
 */
.uk-modal.uk-open {
	opacity: 1;
}
/*
 * Prevents duplicated scrollbar caused by 4.
 */
.uk-modal-page,
.uk-modal-page body {
	overflow: hidden;
}
/* Sub-object: `uk-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.uk-modal-dialog {
	/* 1 */
	position: relative;
	/* 2 */
	box-sizing: border-box;
	margin: 50px auto;
	padding: 20px;
	width: 600px;
	max-width: 100%;
	max-width: calc(100% - 20px);
	/* 3 */
	background: #fff;
	/* 4 */
	opacity: 0;
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	-webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
	transition: opacity 0.3s linear, transform 0.3s ease-out;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
	/*
		 * Fit in small screen
		 */
	.uk-modal-dialog {
		width: auto;
		margin: 10px auto;
	}
}
/*
 * Open state
 */
.uk-open .uk-modal-dialog {
	/* 4 */
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
/*
 * Remove margin from the last-child
 */
.uk-modal-dialog > :not([class*='uk-modal-']):last-child {
	margin-bottom: 0;
}
/* Close in modal
 ========================================================================== */
.uk-modal-dialog > .uk-close:first-child {
	margin: -10px -10px 0 0;
	float: right;
}
/*
 * Remove margin from adjacent element
 */
.uk-modal-dialog > .uk-close:first-child + :not([class*='uk-modal-']) {
	margin-top: 0;
}
/* Modifier: `uk-modal-dialog-lightbox`
 ========================================================================== */
.uk-modal-dialog-lightbox {
	margin: 15px auto;
	padding: 0;
	max-width: 95%;
	max-width: calc(100% - 30px);
	min-height: 50px;
	border-radius: 0;
}
/*
 * Close button
 */
.uk-modal-dialog-lightbox > .uk-close:first-child {
	position: absolute;
	top: -12px;
	right: -12px;
	margin: 0;
	float: none;
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
	.uk-modal-dialog-lightbox > .uk-close:first-child {
		top: -7px;
		right: -7px;
	}
}
/* Modifier: `uk-modal-dialog-blank`
 ========================================================================== */
.uk-modal-dialog-blank {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	-webkit-transition: opacity 0.3s linear;
	transition: opacity 0.3s linear;
}
/*
* Close button
*/
.uk-modal-dialog-blank > .uk-close:first-child {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
	margin: 0;
	float: none;
}
/* Modifier: `uk-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
	.uk-modal-dialog-large {
		width: 930px;
	}
}
/* Large screen and bigger */
@media (min-width: 1220px) {
	.uk-modal-dialog-large {
		width: 1130px;
	}
}
/* Sub-Object: `uk-modal-header` and `uk-modal-footer`
 ========================================================================== */
.uk-modal-header {
	margin-bottom: 15px;
	margin: -20px -20px 15px -20px;
	padding: 20px;
	border-bottom: 1px solid #ddd;
	border-radius: 4px 4px 0 0;
	background: #fafafa;
}
.uk-modal-footer {
	margin-top: 15px;
	margin: 15px -20px -20px -20px;
	padding: 20px;
	border-top: 1px solid #ddd;
	border-radius: 0 0 4px 4px;
	background: #fafafa;
}
/*
 * Remove margin from the last-child
 */
.uk-modal-header > :last-child,
.uk-modal-footer > :last-child {
	margin-bottom: 0;
}
/* Sub-Object: `uk-modal-caption`
 ========================================================================== */
.uk-modal-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	margin-bottom: -10px;
	color: #fff;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/* Sub-Object: `uk-modal-spinner`
 ========================================================================== */
.uk-modal-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 25px;
	color: #ddd;
}
.uk-modal-spinner:after {
	content: "\f110";
	display: block;
	font-family: FontAwesome;
	-webkit-animation: uk-rotate 2s infinite linear;
	animation: uk-rotate 2s infinite linear;
}
/* End */


/* Start:/bitrix/templates/.default/auth/css/form.min.css?147933833812350*/
.uk-width-1-1 {width: 100%;}
.uk-margin {margin-bottom: 15px;}
.uk-text-small {font-size: 11px;line-height: 16px;}
/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 */
.uk-form input,
.uk-form select,
.uk-form textarea {
	/* 1 */
	box-sizing: border-box;
	/* 2 */
	margin: 0;
	/* 3 */
	border-radius: 0;
	/* 4 */
	font: inherit;
	color: inherit;
}
/*
 * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
 */
.uk-form select {
	text-transform: none;
}
/*
 * 1. Correct `font` properties not being inherited.
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.uk-form optgroup {
	/* 1 */
	font: inherit;
	/* 2 */
	font-weight: bold;
}
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-form input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
/*
 * Removes excess padding in IE 8/9/10.
 */
.uk-form input[type="checkbox"],
.uk-form input[type="radio"] {
	padding: 0;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.uk-form input[type="checkbox"]:not(:disabled),
.uk-form input[type="radio"]:not(:disabled) {
	cursor: pointer;
}
/*
 * Remove default style in iOS.
 */
.uk-form textarea,
.uk-form input:not([type]),
.uk-form input[type="text"],
.uk-form input[type="password"],
.uk-form input[type="email"],
.uk-form input[type="url"],
.uk-form input[type="search"],
.uk-form input[type="tel"],
.uk-form input[type="number"],
.uk-form input[type="datetime"] {
	-webkit-appearance: none;
}
/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.uk-form input[type="search"]::-webkit-search-cancel-button,
.uk-form input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
/*
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
.uk-form input[type="number"]::-webkit-inner-spin-button,
.uk-form input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
/*
 * Define consistent border, margin, and padding.
 */
.uk-form fieldset {
	border: none;
	margin: 0;
	padding: 0;
}
/*
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 2. Improve readability and alignment in all browsers.
 */
.uk-form textarea {
	/* 1 */
	overflow: auto;
	/* 2 */
	vertical-align: top;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.uk-form ::-moz-placeholder {
	opacity: 1;
}
/*
 * Removes `box-shadow` for invalid controls in Firefox.
 */
.uk-form :invalid {
	box-shadow: none;
}
/*
 * Vertical alignment
 */
.uk-form input:not([type="radio"]):not([type="checkbox"]),
.uk-form select {
	vertical-align: middle;
}
/* Style
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.uk-form > :last-child {
	margin-bottom: 0;
}
/*
 * Controls
 * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
 * 1. Must be `height` because `min-height` is not working in OSX
 * 2. Responsiveness: Sets a maximum width relative to the parent to scale on narrower viewports
 * 3. Vertical `padding` needed for `select` elements in Firefox
 * 4. Style
 */
.uk-form select,
.uk-form textarea,
.uk-form input:not([type]),
.uk-form input[type="text"],
.uk-form input[type="password"],
.uk-form input[type="datetime"],
.uk-form input[type="datetime-local"],
.uk-form input[type="date"],
.uk-form input[type="month"],
.uk-form input[type="time"],
.uk-form input[type="week"],
.uk-form input[type="number"],
.uk-form input[type="email"],
.uk-form input[type="url"],
.uk-form input[type="search"],
.uk-form input[type="tel"],
.uk-form input[type="color"] {
	/* 1 */
	height: 30px;
	/* 2 */
	max-width: 100%;
	/* 3 */
	padding: 4px 6px;
	/* 4 */
	border: 1px solid #ddd;
	background: #fff;
	color: #444;
	-webkit-transition: all 0.2s linear;
	-webkit-transition-property: border, background, color, box-shadow, padding;
	transition: all 0.2s linear;
	transition-property: border, background, color, box-shadow, padding;
	border-radius: 4px;
}
.uk-form select:focus,
.uk-form textarea:focus,
.uk-form input:not([type]):focus,
.uk-form input[type="text"]:focus,
.uk-form input[type="password"]:focus,
.uk-form input[type="datetime"]:focus,
.uk-form input[type="datetime-local"]:focus,
.uk-form input[type="date"]:focus,
.uk-form input[type="month"]:focus,
.uk-form input[type="time"]:focus,
.uk-form input[type="week"]:focus,
.uk-form input[type="number"]:focus,
.uk-form input[type="email"]:focus,
.uk-form input[type="url"]:focus,
.uk-form input[type="search"]:focus,
.uk-form input[type="tel"]:focus,
.uk-form input[type="color"]:focus {
	border-color: #99baca;
	outline: 0;
	background: #f5fbfe;
	color: #444;
}
.uk-form select:disabled,
.uk-form textarea:disabled,
.uk-form input:not([type]):disabled,
.uk-form input[type="text"]:disabled,
.uk-form input[type="password"]:disabled,
.uk-form input[type="datetime"]:disabled,
.uk-form input[type="datetime-local"]:disabled,
.uk-form input[type="date"]:disabled,
.uk-form input[type="month"]:disabled,
.uk-form input[type="time"]:disabled,
.uk-form input[type="week"]:disabled,
.uk-form input[type="number"]:disabled,
.uk-form input[type="email"]:disabled,
.uk-form input[type="url"]:disabled,
.uk-form input[type="search"]:disabled,
.uk-form input[type="tel"]:disabled,
.uk-form input[type="color"]:disabled {
	border-color: #ddd;
	background-color: #fafafa;
	color: #999;
}
/*
 * Placeholder
 */
.uk-form :-ms-input-placeholder {
	color: #999 !important;
}
.uk-form ::-moz-placeholder {
	color: #999;
}
.uk-form ::-webkit-input-placeholder {
	color: #999;
}
.uk-form :disabled:-ms-input-placeholder {
	color: #999 !important;
}
.uk-form :disabled::-moz-placeholder {
	color: #999;
}
.uk-form :disabled::-webkit-input-placeholder {
	color: #999;
}
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct `color` not being inherited in IE 8/9/10/11.
 * 3. Remove padding
 * 4. `margin-bottom` is not working in Safari and Opera.
 *    Using `padding` and :after instead to create the border
 * 5. Style
 */
.uk-form legend {
	/* 1 */
	width: 100%;
	/* 2 */
	border: 0;
	/* 3 */
	padding: 0;
	/* 4 */
	padding-bottom: 15px;
	/* 5 */
	font-size: 18px;
	line-height: 30px;
}
/*
 * 1. Fixes IE9
 */
.uk-form legend:after {
	content: "";
	display: block;
	border-bottom: 1px solid #ddd;
	/* 1 */
	width: 100%;
}
/* Size modifiers
 * Higher specificity needed to override defaults
 ========================================================================== */
select.uk-form-small,
textarea.uk-form-small,
input[type].uk-form-small,
input:not([type]).uk-form-small {
	height: 25px;
	padding: 3px 3px;
	font-size: 12px;
}
select.uk-form-large,
textarea.uk-form-large,
input[type].uk-form-large,
input:not([type]).uk-form-large {
	height: 40px;
	padding: 8px 6px;
	font-size: 16px;
}
/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.uk-form textarea,
.uk-form select[multiple],
.uk-form select[size] {
	height: auto;
}
/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.uk-form-danger {
	border-color: #dc8d99 !important;
	background: #fff7f8 !important;
	color: #d85030 !important;
}
/*
 * Success state
 */
.uk-form-success {
	border-color: #8ec73b !important;
	background: #fafff2 !important;
	color: #659f13 !important;
}
/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.uk-form-blank {
	border-color: transparent !important;
	border-style: dashed !important;
	background: none !important;
}
.uk-form-blank:focus {
	border-color: #ddd !important;
}
/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.uk-form-width-mini {
	width: 40px;
}
select.uk-form-width-mini {
	width: 65px;
}
.uk-form-width-small {
	width: 130px;
}
.uk-form-width-medium {
	width: 200px;
}
.uk-form-width-large {
	width: 500px;
}
/* Sub-objects: `uk-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `uk-form-horizontal` modifier
 */
.uk-form-row:before,
.uk-form-row:after {
	content: "";
	display: table;
}
.uk-form-row:after {
	clear: both;
}
/*
 * Vertical gutter
 */
.uk-form-row + .uk-form-row {
	margin-top: 15px;
}
/* Help text
 * Sub-object: `uk-form-help-inline`, `uk-form-help-block`
 ========================================================================== */
.uk-form-help-inline {
	display: inline-block;
	margin: 0 0 0 10px;
}
.uk-form-help-block {
	margin: 5px 0 0 0;
}
/* Controls content
 * Sub-object: `uk-form-controls`, `uk-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.uk-form-controls > :first-child {
	margin-top: 0;
}
.uk-form-controls > :last-child {
	margin-bottom: 0;
}
/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.uk-form-controls-condensed {
	margin: 5px 0;
}
/* Modifier: `uk-form-stacked`
 * Requires sub-object: `uk-form-label`
 ========================================================================== */
.uk-form-stacked .uk-form-label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}
/* Modifier: `uk-form-horizontal`
 * Requires sub-objects: `uk-form-label`, `uk-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
	/* Behave like `uk-form-stacked` */
	.uk-form-horizontal .uk-form-label {
		display: block;
		margin-bottom: 5px;
		font-weight: bold;
	}
}
/* Desktop and bigger */
@media (min-width: 960px) {
	.uk-form-horizontal .uk-form-label {
		width: 200px;
		margin-top: 5px;
		float: left;
	}
	.uk-form-horizontal .uk-form-controls {
		margin-left: 215px;
	}
	/* Better vertical alignment if controls are checkboxes and radio buttons with text */
	.uk-form-horizontal .uk-form-controls-text {
		padding-top: 5px;
	}
}
/* Sub-object: `uk-form-icon`
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.uk-form-icon {
	/* 1 */
	display: inline-block;
	/* 2 */
	position: relative;
	/* 3 */
	max-width: 100%;
}
/*
 * 1. Make form element clickable through icon
 */
.uk-form-icon > [class*='uk-icon-'] {
	position: absolute;
	top: 50%;
	width: 30px;
	margin-top: -7px;
	font-size: 14px;
	color: #999;
	text-align: center;
	/* 1 */
	pointer-events: none;
}
.uk-form-icon:not(.uk-form-icon-flip) > input {
	padding-left: 30px !important;
}
/*
 * Sub-modifier: `uk-form-icon-flip`
 */
.uk-form-icon-flip > [class*='uk-icon-'] {
	right: 0;
}
.uk-form-icon-flip > input {
	padding-right: 30px !important;
}
/* End */


/* Start:/bitrix/templates/.default/auth/css/form.password.min.css?1479338338431*/
/*! UIkit 2.27.2 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-form-password{ display:inline-block; position:relative; max-width:100% }
.uk-form-password-toggle{ display:block; position:absolute; top:50%; right:10px; margin-top:-6px; font-size:13px; line-height:13px; color:#999 }
.uk-form-password-toggle:hover{ color:#999; text-decoration:none }
.uk-form-password > input{ padding-right:50px !important }
/* End */


/* Start:/bitrix/templates/.default/auth/css/button.min.css?16746500767653*/
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Style
 * 8. `line-height` is used to create a height
 * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
 * 10. Reset button group whitespace hack
 * 11. Required for `a`.
 */
.uk-button {
	/* 1 */
	-webkit-appearance: none;
	/* 2 */
	margin: 0;
	/* 3 */
	border: none;
	/* 4 */
	overflow: visible;
	/* 5 */
	font: inherit;
	color: #444;
	/* 6 */
	text-transform: none;
	/* 7 */
	display: inline-block;
	box-sizing: border-box;
	padding: 0 12px;
	background: #f7f7f7;
	vertical-align: middle;
	/* 8 */
	line-height: 28px;
	/* 9 */
	min-height: 30px;
	/* 10 */
	font-size: 1rem;
	/* 11 */
	text-decoration: none;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom-color: rgba(0, 0, 0, 0.3);
	background-origin: border-box;
	border-radius: 4px;
}
.uk-button:not(:disabled) {
	cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-button:hover,
.uk-button:focus {
	background-color: #fafafa;
	color: #444;
	/* 2 */
	outline: none;
	/* 3 */
	text-decoration: none;
	background-image: none;
}
/* Active */
.uk-button:active,
.uk-button.uk-active {
	background-color: #f5f5f5;
	color: #444;
	border-color: rgba(0, 0, 0, 0.2);
	border-top-color: rgba(0, 0, 0, 0.3);
	background-image: none;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `uk-button-primary`
 */
.uk-button-primary {
	background-color: #970b0c;
	color: #fff;
	border-color: rgba(0, 0, 0, 0.2);
	border-bottom-color: rgba(0, 0, 0, 0.4);
}
/* Hover */
.uk-button-primary:hover,
.uk-button-primary:focus {
	background-color: #be191a;
	color: #fff;
	background-image: none;
}
/* Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
	background-color: #be191a;
	color: #fff;
	background-image: none;
	border-color: rgba(0, 0, 0, 0.2);
	border-top-color: rgba(0, 0, 0, 0.4);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
/*
 * Modifier: `uk-button-success`
 */
.uk-button-success {
	background-color: #be191a;
	color: #fff;
	border-color: rgba(0, 0, 0, 0.2);
	border-bottom-color: rgba(0, 0, 0, 0.4);

}
/* Hover */
.uk-button-success:hover,
.uk-button-success:focus {
	background-color: #be191a;
	color: #fff;
	background-image: none;
}
/* Active */
.uk-button-success:active,
.uk-button-success.uk-active {
	background-color: #be191a;
	color: #fff;
	background-image: none;
	border-color: rgba(0, 0, 0, 0.2);
	border-top-color: rgba(0, 0, 0, 0.4);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
/*
 * Modifier: `uk-button-danger`
 */
.uk-button-danger {
	background-color: #d32c46;
	color: #fff;
	background-image: -webkit-linear-gradient(top, #ee465a, #c11a39);
	background-image: linear-gradient(to bottom, #ee465a, #c11a39);
	border-color: rgba(0, 0, 0, 0.2);
	border-bottom-color: rgba(0, 0, 0, 0.4);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* Hover */
.uk-button-danger:hover,
.uk-button-danger:focus {
	background-color: #e33551;
	color: #fff;
	background-image: none;
}
/* Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
	background-color: #c91c37;
	color: #fff;
	background-image: none;
	border-color: rgba(0, 0, 0, 0.2);
	border-top-color: rgba(0, 0, 0, 0.4);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.uk-button:disabled {
	background-color: #fafafa;
	color: #999;
	border-color: rgba(0, 0, 0, 0.2);
	background-image: none;
	box-shadow: none;
	text-shadow: 0 1px 0 #fff;
}
/* Modifier: `uk-button-link`
 ========================================================================== */
/* Reset */
.uk-button-link,
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active,
.uk-button-link:disabled {
	border-color: transparent;
	background: none;
	box-shadow: none;
	text-shadow: none;
}
/* Color */
.uk-button-link {
	color: #07D;
}
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active {
	color: #059;
	text-decoration: underline;
}
.uk-button-link:disabled {
	color: #999;
}
/* Focus */
.uk-button-link:focus {
	outline: 1px dotted;
}
/* Size modifiers
 ========================================================================== */
.uk-button-mini {
	min-height: 20px;
	padding: 0 6px;
	line-height: 18px;
	font-size: 11px;
}
.uk-button-small {
	min-height: 25px;
	padding: 0 10px;
	line-height: 23px;
	font-size: 12px;
}
.uk-button-large {
	min-height: 40px;
	padding: 0 15px;
	line-height: 38px;
	font-size: 16px;
	border-radius: 5px;
}
/* Sub-object `uk-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.uk-button-group {
	/* 1 */
	display: inline-block;
	vertical-align: middle;
	/* 2 */
	position: relative;
	/* 3 */
	font-size: 0.001px;
	/* 4 */
	white-space: nowrap;
}
.uk-button-group > * {
	display: inline-block;
}
/* 5 */
.uk-button-group .uk-button {
	vertical-align: top;
}
/* Sub-object: `uk-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.uk-button-dropdown {
	/* 1 */
	display: inline-block;
	vertical-align: middle;
	/* 2 */
	position: relative;
}
/* Sub-object `uk-button-group`
     ========================================================================== */
/*
     * Reset border-radius
     */
.uk-button-group > .uk-button:not(:first-child):not(:last-child),
.uk-button-group > div:not(:first-child):not(:last-child) .uk-button {
	border-radius: 0;
}
.uk-button-group > .uk-button:first-child,
.uk-button-group > div:first-child .uk-button {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.uk-button-group > .uk-button:last-child,
.uk-button-group > div:last-child .uk-button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
/*
     * Collapse border
     */
.uk-button-group > .uk-button:nth-child(n+2),
.uk-button-group > div:nth-child(n+2) .uk-button {
	margin-left: -1px;
}
/*
     * Create position context to superimpose the successor elements border
     * Known issue: If you use an `a` element as button and an icon inside,
     * the active state will not work if you click the icon inside the button
     * Workaround: Just use a `button` or `input` element as button
     */
.uk-button-group .uk-button:hover,
.uk-button-group .uk-button:active,
.uk-button-group .uk-button.uk-active {
	position: relative;
}
/* End */


/* Start:/bitrix/templates/.default/auth/auth.css?14793383365163*/
/***************************************************
                   #auth-modal
***************************************************/
#auth-modal.uk-modal{z-index:1800}
#auth-modal .uk-modal-dialog{ width:380px;padding: 30px; }
#auth-modal .uk-modal-header{font-size: 1.2em; line-height:1;font-weight: 600;color: #444;text-transform: uppercase;text-align:center;margin: -30px -30px 25px -30px;}
#auth-modal .uk-close{text-decoration:none;margin-top:-13px;cursor:pointer;font-size: 21px;font-weight: bold;line-height: 1;color: #000;text-shadow: 0 1px 0 #FFF;opacity: .2;filter: alpha(opacity=20);}
#auth-modal .uk-close:hover{opacity: 1;filter: alpha(opacity=100);}
#auth-modal .uk-close:after{display:none}
#auth-modal .preloader{background:url("/bitrix/templates/.default/auth/images/preloader.gif") no-repeat 50% 50%;display:block;width:32px;height:32px;margin:0 auto;}
#auth-modal .ajax-link{ border-bottom:1px dotted; text-decoration:none; }
#auth-modal .ajax-link:hover{ border-bottom:1px solid; text-decoration:none; }
#auth-modal .bx-captcha{ display:inline-block; width:180px; height:40px; margin:0 5px 5px 0; vertical-align:middle; overflow:hidden }
#auth-modal .errortext{ color:#f00; font-size:13px; }
#auth-modal .notetext{ color:#008000; font-size:13px; }
#auth-modal .asterisk{ color:#f00; display:inline-block; margin-left:2px }
#auth-modal .api-mf-antibot{ border:0 none !important; font-size:0 !important; height:0 !important; line-height:0 !important; padding:0 !important; position:absolute !important; right:0 !important; top:0 !important; width:0 !important; }
#auth-modal .auth-links{overflow:hidden}
#auth-modal .auth-links div{float:left; width:50%}
#auth-modal .auth-links div + div{text-align:right}
#auth-modal .auth-services{text-align:center; margin-top:25px}
#auth-modal .auth-services .bx-authform-title{border-top:1px solid #444;border-bottom:1px solid #444;font-size:14px}
#auth-modal .bx-authform-social{margin-top:15px}
#auth-modal .bx-authform-social ul {padding:0 !important;margin:0 !important;display: block;}
#auth-modal .bx-authform-social ul li {position: relative;display: inline-block;width: 35px;height: 35px;margin-right: 5px;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon {display: block;width: 35px;height: 35px;background-image: url(/bitrix/templates/.default/auth/images/auth-social.png);background-repeat: no-repeat;border-bottom: none;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon:hover{opacity: .9;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.box {background-position: 0 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.dropbox {background-position: -44px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.bitrix24 {background-position: -88px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.yandex {background-position:-132px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.openid {background-position:-176px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.odnoklassniki {background-position:-220px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.google {background-position:-264px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.mymailru {background-position:-308px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.livejournal {background-position:-352px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.openid-mail-ru {background-position:-440px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.liveid {background-position:-484px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.liveinternet {background-position:-528px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.blogger {background-position:-572px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.vkontakte {background-position:-616px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.twitter {background-position:-660px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.facebook {background-position:-704px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.google-plus {background-position:-748px 0;}
#auth-modal .bx-authform-social ul li .bx-authform-social-icon.office365 {background-position:-792px 0;}
/*     */
.show-auth{ font-size:12px; border-bottom:1px dotted; text-decoration:none; }
.show-auth:hover{ border-bottom:1px solid; text-decoration:none;  }
/*   popup- */
.popup-window{z-index:1900 !important;}
.bx-authform-social-popup{display: none;background: #fff;width: auto;white-space: nowrap;padding:0;}
.bx-authform-social-popup form{margin-bottom: 0;}
.bx-authform-social-popup input[type="text"] {display: inline-block;max-width: 150px;font-size: inherit;height: 30px;margin: 0;padding: 0 4px;border: 1px solid #CCD5DB;border-radius: 2px;background: #f8fafc;outline: none;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
/*    */
.bx-system-auth-changepasswd{
	display:inline-block;
	width:380px;
}

/* End */


/* Start:/bitrix/templates/.default/components/bitrix/menu/telemento/style.css?177563641910356*/
/**Top menu**/
#horizontal-multilevel-menu,#horizontal-multilevel-menu ul
{
	margin:0; 
	padding:0;
	height:32px;
	list-style:none;
	font-size:11px;
	float:left;
		width:1024px;
	padding-top:-20px;
	margin-top:-0px;
}
.top-pan-menu ul.dropdown-menu {
    background: #eeeeee;
    text-transform:none;
    list-style: square;
    padding-left: 30px;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    border-bottom:1px solid #ddd;
}
.top-pan-menu ul.dropdown-menu>.active>a, .top-pan-menu ul.dropdown-menu>.active>a:focus, .top-pan-menu ul.dropdown-menu>.active>a:hover {
    background: #eee;
    color: #ff8b2e;
    text-decoration: none;
    font-weight: normal;
}
.top-pan-menu .dropdown-menu>li>a {
    display: block;
    padding: 3px 8px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}
ul.dropdown-menu>.active>a, ul.dropdown-menu>.active>a:focus, ul.dropdown-menu>.active>a:hover {
    background: #59606f;
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;
}

/*Links*/
#horizontal-multilevel-menu a
{
    display:block;
	height:18px;
	padding:5px 15px;
	color:#fff;
	text-decoration:none;
	text-align:center;
		width:auto;
margin-top:1px;
margin-bottom:5px;
 -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;

}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
 -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;


}

#horizontal-multilevel-menu li 
{		
	float:left;

}

/*Root items*/
#horizontal-multilevel-menu li a.root-item
{
	height:18px;
	color:#fff;
	font-weight:bold;
padding-left:22px; 
padding-right:22px;
float:left;
padding-top:7px;
padding-bottom:5px;
margin-top:1px;
margin-bottom:5px;

}

/*Root menu selected*/
#horizontal-multilevel-menu li a.root-item-selected
{	
	height:18px;
/*	background: url(/images/men1.jpg) repeat-x top left;*/
	color:#fff;
	font-weight:bold;
padding-top:5px;

/*
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f86666), color-stop(1, #9b0000) );
	background:-moz-linear-gradient( center top, #f86666 5%, #9b0000 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f86666', endColorstr='#9b0000');
	background-color:#f86666;
padding-bottom:5px;

-webkit-border-top-left-radius:5px;
	-moz-border-radius-topleft:5px;
	border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius-topright:5px;
	border-top-right-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	-moz-border-radius-bottomright:5px;
	border-bottom-right-radius:5px;
	-webkit-border-bottom-left-radius:5px;
	-moz-border-radius-bottomleft:5px;
	border-bottom-left-radius:5px;

	border:1px solid #d83526;
-moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
	box-shadow:inset 0px 1px 0px 0px #f29c93;
*/

padding-bottom:5px;

border-top:#DF811F solid 4px;
border-bottom:#DF811F solid 4px;
//margin-top:3px;
margin-bottom:5px;

}

/*Root items: hover*/
#horizontal-multilevel-menu li:hover a.root-item, #horizontal-multilevel-menu li.jshover a.root-item
{
	height:18px;
/*	background: url(/images/men1.jpg) repeat-x top left;*/
	color:#fff;
	font-weight:bold;
padding-top:5px;

/*
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f86666), color-stop(1, #9b0000) );
	background:-moz-linear-gradient( center top, #f86666 5%, #9b0000 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f86666', endColorstr='#9b0000');
	background-color:#f86666;

-webkit-border-top-left-radius:5px;
	-moz-border-radius-topleft:5px;
	border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius-topright:5px;
	border-top-right-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	-moz-border-radius-bottomright:5px;
	border-bottom-right-radius:5px;
	-webkit-border-bottom-left-radius:5px;
	-moz-border-radius-bottomleft:5px;
	border-bottom-left-radius:5px;

	border:1px solid #d83526;
-moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
	box-shadow:inset 0px 1px 0px 0px #f29c93;
*/
padding-bottom:5px;


margin-bottom:5px;

border-top:#DF811F solid 4px;
border-bottom:#DF811F solid 4px;
}

/*Item-parents*/
#horizontal-multilevel-menu a.parent
{
	background: url(/bitrix/templates/.default/components/bitrix/menu/telemento/images/arrow.gif) center right no-repeat;
}

/*Denied items*/
#horizontal-multilevel-menu a.denied
{
	background: url(/bitrix/templates/.default/components/bitrix/menu/telemento/images/lock.gif) center right no-repeat;
}

/*Child-items: hover*/
#horizontal-multilevel-menu li:hover, #horizontal-multilevel-menu li.jshover
{

	color:#fff;
}

/*Child-items selected*/
#horizontal-multilevel-menu li.item-selected
{

	color:#fff;
}

/*Sub-menu box*/
/*

#horizontal-multilevel-menu li ul
{
	position:absolute; 

	top:auto;
	display:none;


	height:auto;

	width:200px;
	background:#999;
	border:1px solid #C1C1C1;
	margin-top:38px;
}

#horizontal-multilevel-menu li.item-selected ul ul
{

	display:none;

}

#horizontal-multilevel-menu li.item-selected:hover ul ul,
#horizontal-multilevel-menu li.item-selected.jshover ul ul
{

	display:none;

}

#horizontal-multilevel-menu li.item-selected:hover li:hover ul,
#horizontal-multilevel-menu li.item-selected.jshover li.jshover ul
{

	display:block;
	top:auto;

}



#horizontal-multilevel-menu li.item-selected:hover ul,
#horizontal-multilevel-menu li.item-selected.jshover ul
{
	position:absolute; 

	display:block;
	height:auto;

	width:200px;
	background:#999;
	border:1px solid #C1C1C1;
margin-top:0px;
}


#horizontal-multilevel-menu li li 
{
	width:100%;
	border-bottom:1px solid #eee;
	padding:5px;
}


#horizontal-multilevel-menu li ul a
{
	text-align:left;
		padding:5px;
			height:auto;
			font-weight:normal;
}

#horizontal-multilevel-menu li a,
#horizontal-multilevel-menu li:hover li a,
#horizontal-multilevel-menu li.jshover li a,
#horizontal-multilevel-menu li:hover li:hover li a,
#horizontal-multilevel-menu li.jshover li.jshover li a,
#horizontal-multilevel-menu li:hover li:hover li:hover li a,
#horizontal-multilevel-menu li.jshover li.jshover li.jshover li a,
#horizontal-multilevel-menu li:hover li:hover li:hover li:hover li a,
#horizontal-multilevel-menu li.jshover li.jshover li.jshover li.jshover li a,
#horizontal-multilevel-menu li:hover li:hover li:hover li:hover li:hover li a,
#horizontal-multilevel-menu li.jshover li.jshover li.jshover li.jshover li.jshover li a
{
	color:#111111;
	font-weight:bold;
}


#horizontal-multilevel-menu li:hover li:hover a,
#horizontal-multilevel-menu li.jshover li.jshover a,
#horizontal-multilevel-menu li:hover li:hover li:hover a,
#horizontal-multilevel-menu li.jshover li.jshover li.jshover a,
#horizontal-multilevel-menu li:hover li:hover li:hover li:hover a,
#horizontal-multilevel-menu li.jshover li.jshover li.jshover li.jshover a
#horizontal-multilevel-menu li:hover li:hover li:hover li:hover li:hover a,
#horizontal-multilevel-menu li.jshover li.jshover li.jshover li.jshover li.jshover a
#horizontal-multilevel-menu li:hover li:hover li:hover li:hover li:hover li:hover a,
#horizontal-multilevel-menu li.jshover li.jshover li.jshover li.jshover li.jshover li.jshover a
{
	color:#fff;
}

#horizontal-multilevel-menu li ul ul
{
	margin:-44px 0 0 172px;

}

#horizontal-multilevel-menu li:hover ul ul,
#horizontal-multilevel-menu li.jshover ul ul,
#horizontal-multilevel-menu li:hover ul ul ul,
#horizontal-multilevel-menu li.jshover ul ul ul,
#horizontal-multilevel-menu li:hover ul ul ul ul,
#horizontal-multilevel-menu li.jshover ul ul ul ul,
#horizontal-multilevel-menu li:hover ul ul ul ul ul,
#horizontal-multilevel-menu li.jshover ul ul ul ul ul
#horizontal-multilevel-menu li.item-selected:hover ul ul,
#horizontal-multilevel-menu li.item-selected.jshover ul ul
{

	display:none;
}

#horizontal-multilevel-menu li:hover ul,
#horizontal-multilevel-menu li.jshover ul,
#horizontal-multilevel-menu li li:hover ul,
#horizontal-multilevel-menu li li.jshover ul,
#horizontal-multilevel-menu li li li:hover ul,
#horizontal-multilevel-menu li li li.jshover ul,
#horizontal-multilevel-menu li li li li:hover ul,
#horizontal-multilevel-menu li li li li.jshover ul,
#horizontal-multilevel-menu li li li li li:hover ul,
#horizontal-multilevel-menu li li li li li.jshover ul
#horizontal-multilevel-menu li.item-selected li:hover ul
#horizontal-multilevel-menu li.item-selected li.jshover ul
{
	z-index:1000;
	top:auto;
	display:block;
}
*/
div.menu-clear-left
{
	clear:left;
}
.dropdown-menu ul ul  {
    display: none;
}
@media all and (min-width:1200px) {
li.cols-menu {
    float: left;
}


.dropdown-menu li ul li {
    width: 100%;
}
/*
ul.dropdown-menu {
    width: 900px;
    background: #59606f;
    color: #fff;

}*/
.pict-sect-menu {
    width: 100%;
    text-align: center;
}
div ul.dropdown-menu a {
    color: #333;
}
.top-pan-menu ul.dropdown-menu>li>a {
    color: #333;
 /*   text-transform: uppercase;*/
  /*  white-space: normal;*/
}
ul.dropdown-menu ul li a {
    color: #b7bdca;
}
}

@media all and (min-width:1025px) and (max-width:1199px) {
li.cols-menu {
    float: left;
}
/*
ul.dropdown-menu {
    width: 900px;
    background: #59606f;
    color: #fff;
}

.dropdown-menu li ul li {
    width: 100%;
}
*/
.pict-sect-menu {
    width: 100%;
    text-align: center;
}
div ul.dropdown-menu a {
    color: #fff;
}
ul.dropdown-menu>li>a {
    color: #fff;
 /*   text-transform: uppercase;*/
  /*  white-space: normal;*/
}
ul.dropdown-menu ul li a {
    color: #b7bdca;
}
}
@media screen and (max-width:1024px) and (min-width:768px) {
li.cols-menu {
    float: left;
}/*
ul.dropdown-menu {
    width: 750px;
    background: #59606f;
    color: #fff;
    margin-left: -50px;
}

.dropdown-menu ul ul li {
    display: none;
}
.dropdown-menu ul li:hover ul li {
    display: block;
}*/
.dropdown-menu li ul li {
    width: 100%;
}

.pict-sect-menu {
    width: 100%;
    text-align: center;
}
div ul.dropdown-menu a {
    color: #fff;
}
ul.dropdown-menu>li>a {
    color: #fff;
 /*   text-transform: uppercase;*/
    white-space: normal;
}
ul.dropdown-menu ul li a {
    color: #b7bdca;
}
}
@media screen and (max-width:767px) {}
/* End */


/* Start:/bitrix/templates/.default/components/bitrix/search.title/infrared/style.css?17599892124252*/
div.title-search-result {
	border:1px solid #c6c6c6;
	display:none;
	overflow:hidden;
	z-index:205;
}

table.title-search-result {
	border-collapse: collapse;
	border:none;
	width:10%;
}

table.title-search-result th {
	background-color:#F7F7F7;
    border: none;
	border-right:1px solid #e8e8e8;
	color:#949494;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
	padding-left:14px;
 	padding-right:12px;
	text-align:right;
	vertical-align:top;
	white-space:nowrap;
	width:1%;
}

table.title-search-result td {
	background-color:white;
	color:black;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
	text-align:left;
	white-space:nowrap;
}

table.title-search-result td.title-search-item {
	padding-left:8px;
	padding-right:15px;
}

table.title-search-result td.title-search-item a {
	padding-left:4px;
	padding-right:15px;
	text-decoration: none;
	color:black;
	vertical-align:top;
	display:block;
}

table.title-search-result td.title-search-item img {
	vertical-align:top;
}

table.title-search-result td.title-search-item b {
	color:#cf0000;
	font-weight:normal;
}

table.title-search-result tr.title-search-selected td
,table.title-search-result tr.title-search-selected a
,table.title-search-result tr.title-search-selected td.title-search-more a
{
	background-color:#fff2be;
}

table.title-search-result td.title-search-more {
	font-size:11px;
	font-weight:normal;
	padding-right:15px;
	padding-left:24px;
	padding-top:0px;
}

table.title-search-result td.title-search-more a
{
	padding-left:12px;
	padding-right:15px;
	text-decoration:none;
	color:#999999;
}

table.title-search-result td.title-search-all {
	padding-left:24px;
	padding-right:15px;
}

table.title-search-result td.title-search-all a
{
	padding-left:4px;
	text-decoration:none;
	color:#808080;
}

table.title-search-result td.title-search-separator
, table.title-search-result th.title-search-separator {
	padding-top:0px;
	padding-bottom:0px;
	font-size:4px;
}

div.title-search-fader {
	display:none;
	background-image: url('/bitrix/templates/.default/components/bitrix/search.title/infrared/images/fader.png');
	background-position: right top;
	background-repeat: repeat-y;
	position:absolute;
}
#title-search {
  width: clamp(220px, 14vw, 300px) !important;
  max-width: 100%;
}

#title-search #main-search {
  width: 100% !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
}

#title-search #title-search-input {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0;
  height: 32px;
  padding: 5px 10px;
  font-size: 14px;
  box-sizing: border-box;
}

#title-search .btn.btn-default {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 0;
  line-height: 32px;
}
/* чтобы меню не обрезало подсказки */
#bs-example-navbar-collapse-2.collapse.navbar-collapse {
  overflow: visible !important;
}

/* поднимем слой подсказок, не трогая позиционирование Bitrix */
.title-search-result {
  z-index: 10000 !important;
}

/* контейнер поиска можно оставить как есть, позицию НЕ меняем */
#title-search {
  z-index: 9999; /* можно вообще убрать, если не требуется */
}
/* --- АККУРАТНАЯ ВЫПАДАЮЩАЯ ПОДСКАЗКА ПОИСКА --- */
.title-search-result {
  min-width: 320px !important;
  max-width: 380px !important;
  width: auto !important;
  font-size: 13px !important;        /* 👈 уменьшили шрифт */
  line-height: 1.3 !important;
  white-space: normal !important;
  word-wrap: break-word;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  color: #333;
}

/* ссылки и строки */
.title-search-result td,
.title-search-result a {
  padding: 5px 8px !important;
  display: block;
  font-size: 12px !important;        /* 👈 одинаковый размер для ссылок */
  color: #333;
}

/* подсветка при наведении */
.title-search-result a:hover {
  background: #f5f5f5;
  text-decoration: none;
  color: #000;
}

/* не обрезаем подсказку меню */
#bs-example-navbar-collapse-2,
.navbar,
.container,
.header {
  overflow: visible !important;
}

/* End */


/* Start:/bitrix/templates/.default/components/bitrix/menu/topcatalog/style.css?177746171111195*/
/**Top menu**/
.submenu ul {
    padding-left: 0;
}


#horizontal-multilevel-menu,#horizontal-multilevel-menu ul
{
	margin:0; 
	padding:0;
	height:32px;
	list-style:none;
	font-size:11px;
	float:left;
		width:1024px;
	padding-top:-20px;
	margin-top:-0px;
}
ul.dropdown-menu {
    background: #3c3838;
}


/*Links*/
#horizontal-multilevel-menu a
{
    display:block;
	height:18px;
	padding:5px 15px;
	color:#fff;
	text-decoration:none;
	text-align:center;
		width:auto;
margin-top:1px;
margin-bottom:5px;
 -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;

}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
 -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;


}

#horizontal-multilevel-menu li 
{		
	float:left;

}

/*Root items*/
#horizontal-multilevel-menu li a.root-item
{
	height:18px;
	color:#fff;
	font-weight:bold;
padding-left:22px; 
padding-right:22px;
float:left;
padding-top:7px;
padding-bottom:5px;
margin-top:1px;
margin-bottom:5px;

}

/*Root menu selected*/
#horizontal-multilevel-menu li a.root-item-selected
{	
	height:18px;
	color:#fff;
	font-weight:bold;
padding-top:5px;
padding-bottom:5px;
border-top:#DF811F solid 4px;
border-bottom:#DF811F solid 4px;
//margin-top:3px;
margin-bottom:5px;
}

/*Root items: hover*/
#horizontal-multilevel-menu li:hover a.root-item, #horizontal-multilevel-menu li.jshover a.root-item
{
	height:18px;

	color:#fff;
	font-weight:bold;
padding-top:5px;

padding-bottom:5px;

margin-bottom:5px;

border-top:#DF811F solid 4px;
border-bottom:#DF811F solid 4px;
}

/*Item-parents*/
#horizontal-multilevel-menu a.parent
{
	background: url(/bitrix/templates/.default/components/bitrix/menu/topcatalog/images/arrow.gif) center right no-repeat;
}

/*Denied items*/
#horizontal-multilevel-menu a.denied
{
	background: url(/bitrix/templates/.default/components/bitrix/menu/topcatalog/images/lock.gif) center right no-repeat;
}

/*Child-items: hover*/
#horizontal-multilevel-menu li:hover, #horizontal-multilevel-menu li.jshover
{

	color:#fff;
}

/*Child-items selected*/
#horizontal-multilevel-menu li.item-selected
{

	color:#fff;
}


div.menu-clear-left
{
	clear:left;
}
.dropdown-menu ul ul  {
    display: none;
}
@media all and (min-width:1200px) {
.submenu ul {
    padding: 0;
    width: 110%;
    margin-left: -10px;
}
li.col-lg-4.col-md-4.col-sm-6.col-xs-12.tovar.mar-top-10 {
    margin-top: 15px;
}
nav ul.dropdown-menu .tovar .submenu a {
    color: #555;
    font-family: arial;
    /* text-decoration: underline; */
}
.subdir, .tovar {
  /*  margin-left: -15px;*/
  /*  margin-right: -15px;*/
    margin-bottom: 15px;
}
div#bs-example-navbar-collapse-2 {
    margin-left: -15px;
    margin-right: -15px;
}
.navbar-default .container-fluid {
    padding: 0;
}

nav ul.dropdown-menu .submenu li {
margin-bottom:5px;
}

ul.dropdown-menu.drop1 {
    left: 0px;
}
li.dropdown:hover ul.dropdown-menu {
    display: block;
z-index:1100;
}


.titlesubmenu a {
    text-transform: uppercase;
    color: #333!important;
    padding-left: 15px;
}
.submenu li a {
    color: #333!important;
    font-size: 12px;
    font-family: Arial;
}
.top-catal ul.dropdown-menu {
    width: 1139px;
    background: #fff;
    margin-left: 0px;
}
li.cols-menu {
    float: left;
}
ul.dropdown-menu.drop2 {
    left: -148px;
}
ul.dropdown-menu.drop3 {
    left: -202px;
}
ul.dropdown-menu.drop4 {
    left: -323px;
}
ul.dropdown-menu.drop5 {
    left: -470px;
}
ul.dropdown-menu.drop6 {
    left: -617px;
}
ul.dropdown-menu.drop7 {
    left: -667px;
}
ul.dropdown-menu.drop8 {
    left: -813px;
}
ul.dropdown-menu.drop9 {
    left: -961px;
}

.dropdown-menu li ul li {
    width: 100%;
}
/*
ul.dropdown-menu {
    width: 900px;
    background: #59606f;
    color: #fff;

}*/
.pict-sect-menu {
    width: 100%;
    text-align: center;
}
div ul.dropdown-menu a {
    color: #fff;
}
ul.dropdown-menu>li>a {
    color: #fff;
 /*   text-transform: uppercase;*/
  /*  white-space: normal;*/
}
ul.dropdown-menu ul li a {
    color: #b7bdca;
}


}

@media all and (min-width:992px) and (max-width:1199px) {
div div .top-catal li.dropdown {
    max-width: 118px;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    margin: auto 0;
    vertical-align: middle;
}
.submenu ul {
    padding: 0;
    width: 110%;
    margin-left: -10px;
}
.submenu li.active, .tovar li.active, .submenu li:hover, .tovar li:hover {
    border-right: #f68521 solid 5px;
    background: #ded9d2;
}
li.col-lg-4.col-md-4.col-sm-6.col-xs-12.tovar.mar-top-10 {
    margin-top: 15px;
}
nav ul.dropdown-menu .tovar .submenu a {
    color: #555;
    font-family: arial;
    /* text-decoration: underline; */
}
.subdir, .tovar {
  /*  margin-left: -15px;*/
  /*  margin-right: -15px;*/
    margin-bottom: 15px;
}
div#bs-example-navbar-collapse-2 {
    margin-left: -15px;
    margin-right: -15px;
}
.navbar-default .container-fluid {
    padding: 0;
}

nav ul.dropdown-menu .submenu li {
margin-bottom:5px;
}

ul.dropdown-menu.drop1 {
    left: 0px;
}
li.dropdown:hover ul.dropdown-menu {
    display: block;
z-index:1100;
}


.titlesubmenu a {
    text-transform: uppercase;
    color: #333!important;
    padding-left: 15px;
}
.submenu li a {
    color: #333!important;
    font-size: 12px;
    font-family: Arial;
}

.top-catal ul.dropdown-menu {
    width: 940px;
    font-family: Roboto Condensed;
    background: #fff;
    margin-left: 0px;
}
nav.navbar-default .container .navbar-nav>li>a {
    color: #3c3838;
    font-size: 12px;
    /* font-style: italic; */
    padding-left: 8px;
    padding-right: 8px;
    /* border-right: 1px solid #eee; */
}
ul.dropdown-menu.drop2 {
    left: -119px;
}
ul.dropdown-menu.drop3 {
    left: -167px;
}
ul.dropdown-menu.drop4 {
    left: -271px;
}
ul.dropdown-menu.drop5 {
    left: -389px;
}
ul.dropdown-menu.drop6 {
    left: -507px;
}
ul.dropdown-menu.drop7 {
    left: -553px;
}
ul.dropdown-menu.drop8 {
    left: -671px;
}
ul.dropdown-menu.drop9 {
    left: -789px;
}
li.cols-menu {
    float: left;
}
/*
ul.dropdown-menu {
    width: 900px;
    background: #59606f;
    color: #fff;
}

.dropdown-menu li ul li {
    width: 100%;
}
*/
.pict-sect-menu {
    width: 100%;
    text-align: center;
}
div ul.dropdown-menu a {
    color: #fff;
}
ul.dropdown-menu>li>a {
    color: #fff;
 /*   text-transform: uppercase;*/
  /*  white-space: normal;*/
}
ul.dropdown-menu ul li a {
    color: #b7bdca;
}
li.cols-menu {
    float: left;
}
}

@media screen and (max-width:989px) and (min-width:768px) {
li.cols-menu {
    float: left;
}
/*
nav.navbar-default ul.navbar-nav>li>a {
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 7px;

}
ul.dropdown-menu {
    width: 940px;
    background: #fff;
    color: #fff;
    margin-left: -17px;
}

.dropdown-menu ul ul li {
    display: none;
}
.dropdown-menu ul li:hover ul li {
    display: block;
}
.pictmenu {
    margin-bottom: 10px;
}
.dropdown-menu li ul li {
    width: 100%;
}
*/
.pict-sect-menu {
    width: 100%;
    text-align: center;
}
div ul.dropdown-menu a {
    /* color: #fff; */
    font-size: 12px;
}
.submenu ul {
    padding: 0;
    width: 110%;
    margin-left: -10px;
}


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

/* ==== ВЕРХНЕЕ МЕНЮ: маленький шрифт + 2 строки ==== */
@media (min-width: 992px) {
  /* равные ширины без flex — работает везде */
  nav.navbar-default ul.navbar-nav.top-catal {
    display: table !important;
    table-layout: fixed !important;
    width: 100% !important;
    border-collapse: separate !important;
  }
  nav.navbar-default ul.navbar-nav.top-catal > li {
    display: table-cell !important;
    width: 12.5% !important;     /* 8 колонок */
    float: none !important;
    vertical-align: middle !important;
    position: relative !important;
  }

  /* КНОПКА: компактно и читаемо */
  header nav.navbar-default .navbar-nav.top-catal > li > a,
  nav.navbar-default .container .navbar-nav.top-catal > li > a,
  nav.navbar-default .container-fluid .navbar-nav.top-catal > li > a,
  .navbar-default .navbar-nav.top-catal > li > a {
    font-size: 11.5px !important;     /* можно 11px, если надо ещё меньше */
    line-height: 1.35 !important;     /* больше воздуха между строками */
    height: 56px !important;          /* под 2 строки */
    padding: 0 8px !important;
    margin: 0 !important;
    text-align: center !important;
    white-space: normal !important;   /* перенос разрешён */
    word-break: break-word !important;
    display: block !important;
  }
}
/* === Вертикальное выравнивание текста в кнопках меню === */
@media (min-width: 992px) {
  nav.navbar-default ul.navbar-nav.top-catal > li > a {
    display: flex !important;         /* включаем flex внутри ссылки */
    align-items: center !important;   /* выравниваем по вертикали */
    justify-content: center !important; /* и по горизонтали */
    text-align: center !important;
    height: 56px !important;          /* можно 58–60px, если нужно больше воздуха */
    line-height: 1.3 !important;
    padding: 0 8px !important;
  }
}
/* ==== ВЕРХНЕЕ МЕНЮ: чуть крупнее шрифт + 2 строки ==== */
@media (min-width: 992px) {
  nav.navbar-default ul.navbar-nav.top-catal {
    display: table !important;
    table-layout: fixed !important;
    width: 100% !important;
    border-collapse: separate !important;
  }
  nav.navbar-default ul.navbar-nav.top-catal > li {
    display: table-cell !important;
    width: 12.5% !important;
    float: none !important;
    vertical-align: middle !important;
    position: relative !important;
  }

  /* КНОПКА: компактно и читаемо */
  header nav.navbar-default .navbar-nav.top-catal > li > a,
  nav.navbar-default .container .navbar-nav.top-catal > li > a,
  nav.navbar-default .container-fluid .navbar-nav.top-catal > li > a,
  .navbar-default .navbar-nav.top-catal > li > a {
    font-size: 12.3px !important;     /* увеличено с 11.5px */
    line-height: 1.4 !important;      /* чуть больше воздуха */
    height: 60px !important;          /* под 2 строки */
    padding: 0 10px !important;
    margin: 0 !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: break-word !important;
    display: block !important;
  }
}

/* === Вертикальное выравнивание текста в кнопках меню === */
@media (min-width: 992px) {
  nav.navbar-default ul.navbar-nav.top-catal > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: 60px !important;          /* увеличено для равновесия */
    line-height: 1.35 !important;
    padding: 0 10px !important;
  }
}

/* End */


/* Start:/bitrix/templates/.default/components/bitrix/form/telemento_question/bitrix/form.result.new/.default/style.css?1684568894420*/
div.form-bottom input, div.form-bottom textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #9e9e9e;
    border-radius: 10px;
}
div.form-bottom .captcha {
    float: right;
    margin-top: 0;
}
.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/bitrix/templates/.default/components/bitrix/form/telemento_question/bitrix/form.result.new/.default/images/icon_warn.gif);
}
/* End */


/* Start:/bitrix/templates/.default/components/bitrix/form/telemento_tovar/bitrix/form.result.new/.default/style.css?17606070661780*/

.captcha {
    overflow: hidden;
    margin-bottom: 10px;
    margin-top: 15px;
}
div.contactform_category textarea {
    height: 102px;
}
.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/bitrix/templates/.default/components/bitrix/form/telemento_tovar/bitrix/form.result.new/.default/images/icon_warn.gif);
}
/* Контейнер чекбокса согласия */
.consent-inline {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: normal;   /* убираем жирность */
  cursor: pointer;
  margin: 0;
  padding: 0;
}

/* Галочка */
.consent-inline input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

/* Отступ текста справа от галочки */
.consent-inline span {
  margin-left: 8px;  /* регулируй число: 6px, 10px и т.д. */
}
/* Ограничиваем высоту списка подсказок */
input[list]::-webkit-calendar-picker-indicator {
  display: none !important; /* убираем стрелку */
}

datalist {
  max-height: 240px; /* ограничиваем высоту списка */
  overflow-y: auto;   /* прокрутка */
}

/* В Chrome/Edge можно управлять внутренним списком */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999;
}
 /* Стиль только для надписи "Регион" */
  #region-label {
    display:inline-block;
    margin-bottom:6px;
    font-size:12px;      /* чуть меньше */
    color:#888;          /* светло-серый */
    font-weight:400;     /* не жирный */
    line-height:1.1;
  }


/* End */


/* Start:/bitrix/templates/.default/components/bitrix/form/telemento1/bitrix/form.result.new/.default/style.css?1524147126666*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/bitrix/templates/.default/components/bitrix/form/telemento1/bitrix/form.result.new/.default/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/bitrix/templates/.default/components/bitrix/form/telemento1/bitrix/form.result.new/.default/images/icon_warn.gif);
}
/* End */


/* Start:/bitrix/components/niges/cookiesaccept/templates/.default/style.css?17271638872729*/
/* NIGES.COOKIESACCEPT */

.nca-cookiesaccept-line {
    font-size: inherit;
    font-family: inherit;
    line-height: 1;
    padding: 10px;
}


.nca-cookiesaccept-line.style-1 .nca-cookiesaccept-line-text,
.nca-cookiesaccept-line.style-3 .nca-cookiesaccept-line-text,
.nca-cookiesaccept-line.style-5 .nca-cookiesaccept-line-text,
.nca-cookiesaccept-line.style-7 .nca-cookiesaccept-line-text {
    color:#111;
}
.nca-cookiesaccept-line.style-2 .nca-cookiesaccept-line-text,
.nca-cookiesaccept-line.style-4 .nca-cookiesaccept-line-text,
.nca-cookiesaccept-line.style-6 .nca-cookiesaccept-line-text,
.nca-cookiesaccept-line.style-8 .nca-cookiesaccept-line-text {
    color:#eee;
}

.nca-cookiesaccept-line.style-1 {
    /* background-position: center;
    background-repeat: repeat-x;
	background-image: url(/bitrix/components/niges/cookiesaccept/templates/.default/images/style-1-2.svg);
    background-size: contain; */
    background-color: rgb(61, 168, 255); 
}

.nca-cookiesaccept-line.style-2 {
    background-color: rgb(13, 62, 102);
}


.nca-cookiesaccept-line.style-3 {
    background-color: rgb(197, 197, 197);
}

.nca-cookiesaccept-line.style-4 {
    background-color: rgb(71, 71, 71);
}

.nca-cookiesaccept-line.style-5 {
    background-color: rgb(61, 255, 158);
}

.nca-cookiesaccept-line.style-6 {
    background-color: rgb(9, 92, 50);
}

.nca-cookiesaccept-line.style-7 {
    background-color: rgb(84, 255, 61);
}

.nca-cookiesaccept-line.style-8 {
    background-color: rgb(92, 5, 5);
}

.nca-cookiesaccept-line.style-9 {
    background-color: rgb(203, 255, 61);
}

.nca-cookiesaccept-line.style-10 {
    background-color: rgb(70, 94, 4);
}

.nca-cookiesaccept-line.style-11 {
    background-color: rgb(255, 148, 61);
}

.nca-cookiesaccept-line.style-12 {
    background-color: rgb(138, 70, 14);
}

.nca-cookiesaccept-line.style-13 {
    background-color: rgb(255, 61, 61);
}

.nca-cookiesaccept-line.style-14 {
    background-color: rgb(119, 22, 22);
}

.nca-cookiesaccept-line.style-15 {
    background-color: rgb(255, 61, 152);
}

.nca-cookiesaccept-line.style-16 {
    background-color: rgb(85, 10, 45);
}

.nca-cookiesaccept-line.style-17 {
    background-color: rgb(83, 129, 255);
}

.nca-cookiesaccept-line.style-18 {
    background-color: rgb(6, 37, 122);
}

 
.nca-cookiesaccept-line.style-19 {
    background-color: rgb(255, 255, 255);
}

.nca-cookiesaccept-line.style-20 {
    background-color: rgb(0, 0, 0);
}
 

@media screen and (min-width:767.01px) {
	.nca-hidden-pc {display: none !important;}
}
@media screen and (max-width:767px) {
	.nca-hidden-mobile {display: none !important;}
}
/* End */


/* Start:/bitrix/templates/Termo/styles.css?1779286883112008*/
@font-face {
    font-family: Glyphicons Halflings;
    src: url(/images/bootstrap-3.3.6-dist/fonts/glyphicons-halflings-regular.ttf); 
   }

@font-face {
	font-family: 'Circle';
	src: url('/images/Circe-Regular.eot');
	src: local('☺'), url('/images/Circe-Regular.woff') format('woff'), url('/images/Circe-Regular.ttf') format('truetype'), url('/images/Circe-Regular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Circle';
	src: url('/images/Circe-Bold.eot');
	src: local('☺'), url('/images/Circe-Bold.woff') format('woff'), url('/images/Circe-Bold.ttf') format('truetype'), url('/images/Circe-Bold.svg') format('svg');
	font-weight: 700;
	font-style: normal;
}
@font-face {
	font-family: 'Circle';
	src: url('/images/Circe-ExtraBold.eot');
	src: local('☺'), url('/images/Circe-ExtraBold.woff') format('woff'), url('/images/Circe-ExtraBold.ttf') format('truetype'), url('/images/Circe-ExtraBold.svg') format('svg');
	font-weight: 800;
	font-style: normal;
}
button.navbar-toggle {
    float: left;
    margin-left: 10px;

}
.plus li, .minus li
{
list-style-type:none;
}
.plus ul, .minus ul
{
margin-top:20px;
}
.in150 {
    margin-top: 20px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}
.plus li::before {
    content: "+";
    margin-left: -30px;
    margin-right: 30px;
    position: absolute;
    font-weight: bold;
    font-size: 25px;
    line-height: 20px;
    color: #78dc83;
}
.minus li::before {
    content: "-";
    margin-left: -25px;
    margin-right: 30px;
    position: absolute;
    font-size: 38px;
    line-height: 20px;
    color: #f24f6a;
}
.mt-0 {margin-top:0!important;}
.mt-80 {margin-top:80px!important;}
.mb-80 {margin-bottom:80px!important;}
.pt-80 {padding-top:80px!important;}
.pb-80 {padding-bottom:80px!important;}
.m-80 {margin-top:80px!important; margin-bottom:80px!important; padding-top:80px!important; padding-bottom:80px!important;}
input#power {
    padding: 7px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
span.showpower {
    color: #f44336;
    font-weight: bold;
}
.inputdata {
    padding: 20px;
    border: 1px solid #fff;
    margin: 50px 0px;
    border-radius: 10px;
    background: #eee;
}
input.btn-main, input.btn-main2 {
    background: #ff8938;
    border: 1px solid #e6936a;
    color: #fff;
    padding: 10px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.result, .result2 {
    background: #eee;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
}
.image-left {
    background-position: left  center;
    background-repeat: no-repeat;
    /* background-color: #ddd; */
    background-size: 48%;
}
.image-right {
    background-position: left 100% center;
    background-repeat: no-repeat;
    /* background-color: #ddd; */
    background-size: 48%;
}
@media  (max-width:767px) {
input#title-search-input {
    padding: 5px;
    background: #eaded5;
    border: 1px solid #ef7e32;
}
div.top-pan {
    background: #f1f1f1;
    padding-bottom: 30px;
    margin-bottom: 20px;
}
div.top-pan-menu {
    background: #3b3c3e;
    padding: 0;
}
.image-right, .image-left {
    background-size: contain;
    padding-top: 70%;
    background-position: top;
}}
form.calc input, select {
    padding: 5px;
    margin: 5px;
    border: 1px solid #ddd;
}
.block-orange h2 {
    background: none;
    border: none;
    color: #fff;
    font-weight: bold;
    /* border-bottom: 1px solid; */
}
form.calc {
    background: #eee;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
}
.center-img img {
    max-width: 100%;
}
.center-img {
    text-align: center;
}
html body {font-family:Circle; font-size: 15px;}
div h1 {
    color: #0b2c40;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 0px 0px 0px 20px;
    font-family: Circle;
     border-left: 20px solid #b62c40; 
    /* box-shadow: -10px 0px 0px #02507d; */
}
.bx-catalog-element h1 {
    margin-top: 10px;
}
.grey-block, .block-grey {
    background: #ddd;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.l-grey-block, .block-l-grey {
    background: #fafafa;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.white-block, .block-white {
    background: #fff;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}
p.img-center {
    text-align: center;
}
p.img-center img {
    max-width: 100%;
    height: auto;
}

/*------slider------------*/
.slider-prim .col-xs-6, .slider-prim .col-xs-12 {
    padding: 0px 7px;
}
.slider-prim1 div.tovs h4 {
    margin-bottom: 12px;
    margin-top: -11px;
}
.slider-prim1 .primimg, .slider-prim1 .tovs {
    margin-top: -40px;

}
.slider-prim img:hover {
    filter: brightness(1.1);
}
div.tovs h4 {
    opacity: 0.9;
    margin-top: -35px;
    font-size: 18px;
    border: none;
    box-shadow: none;
    margin-left: 0;
    margin-bottom: 6px;
    min-height: 47px;
}
.news-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 5px;
    font-weight: normal;
    padding-left: 10px;
    background: #eee;
    border-left: 10px solid #ff8b2e;
}
.orange-block, .block-orange {
    background: #ffad1b;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.dark-block, .block-dark {
    background: #3c3838;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
color:#fff;
}
.dark-block a, .block-dark a {
color:#fff;
}
div h1::before {}

div h1 a {
    color: #0b2c40;
}
div h1 b {
    color: #0084c0;
}
div h2, div .h2 {
    color: #313131;
    font-family: Circle;
    font-size: 25px;
    background: #f1f1f1;
    padding: 5px;
    /* text-shadow: 0px 0px 3px rgba(0,0,0,0.5); */
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 10px solid #ff8b2e;
}
.h3, div h3 {
    font-size: 20px;
    font-family: Circle;
    color: #313131;
    margin-bottom: 30px;
    box-shadow: -10px 0px 0px #c90722;
    padding-left: 15px;
    padding-top: 0px;
    margin-left: 10px;
    /* text-shadow: 1px 1px 0px rgba(0,0,0,0.2); */
    /* margin-right: -10px; */
    /* background: #eee; */
    border-left: 10px solid #ff8b2e;
    /* border-bottom: 3px solid #0084c0; */
    padding-bottom: 0px;
    /* text-transform: uppercase; */
    font-weight: 700;
}

.ask-question h3, .block-why-us h3 {
    text-align: center;
    border-bottom: none;
    color: #fff;
    font-size: 35px;
}

div h4 {
    color: #313131;
    border: none;
    /* line-height: 30px; */
    padding: 5px;
    font-family: Circle;
    margin-bottom: 20px;
    font-size: 30px;
    text-shadow: 1px 1px 1px #fff;
    border-left: 20px solid #ff8b2e;
    padding-left: 20px;
    margin-left: 10px;
    background: #f1f1f1;
    box-shadow: -10px 0px 0px #b62c40;
}

div h5 {
    color: #0084c0;
    font-family: Circle;
    font-size: 25px;
}
div h6 {
    color: #0b2c40;
    font-family: Circle;
    font-size: 25px;
}
p {
text-align:justify;
}


.art-main .product-item-info-container {
    display: none!important;
}
.art-main .product-item-image-wrapper {
    display: block;
    padding-top: 30%;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
div.bx-red .product-item-label-text span, .bx-red .product-item-label-ring {
    background-color: #b62c40;
}
.product-item-big-card div.product-item-title a {
    font-size: 18px;
}
.top-main-tovar dl.product-item-properties {
    display: none;
}
span.oldprice {
    text-decoration: line-through;
    font-size: 25px;
}
.blockgr {
    padding-top: 50px;
    /* margin-top: 50px; */
    padding-bottom: 50px;
    background: #f5f5f5 url(/images/f1.png);
    /* margin-bottom: 50px; */
    background-size: cover;
}
.blocks h4 {
    border: none;
    background: #c90722;
    font-size: 15px;
    text-shadow: none;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
}
.blocks h3 {
    text-align: center;
    border: none;
    box-shadow: none;
    text-transform: uppercase;
}
.ar li p {
    text-align: left;
}
.ar {
    background: #eee;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.h1-block.slidermain {
    background: url(/images/slider03.jpg) no-repeat top center;
    background-size: cover;
    margin-top: -65px;
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 400px;

}
h2.bounceInLeft.wow {
    background: rgba(255,255,255,0.7);
    font-size: 40px;
    max-width: 800px;
    /* color: #fff; */

}
.h1-block.slidermain p {
    font-size: 25px;
    max-width: 800px;
  /*  background: rgba(255,255,255,0.6);*/
    padding: 10px;

}
h2.bounceInLeft.wow b {
    color: #ac1027;
}
.button-order {
    float: left;
    background: #b62c40;
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 2px;
    min-width: 200px;
    text-align: center;
    margin: 0 auto;

}
.logo-foot img {
    width: 40px;
    float: left;
    margin-right: 10px;
}
.main-goods a.bx_catalog_tile_img1 img {
    min-height: 145px;
}
div.tel_top_region {
    font-size: 20px;
    text-align: right;
    padding-right: 20px;
}
.top-main a {
    color: #181818;
}
.top-order .top-main {
    padding-top: 10px;
    font-size: 12px;
    color: #262626;
    font-family: circle;
    text-transform: uppercase;
}
.top-order .top-info a {
    font-size: 14px;
    padding-top: 5px;
    line-height: 25px;
    color: #0084c5;
    font-family: Circle;
    text-transform: uppercase;
}
.top-main a:focus, .top-main a:hover {
    color: #05a0e6;
    text-decoration: none;
}
.top-phone .top-info a {
    color: #0082be;
    font-size: 12px;
    /* padding-left: 5px; */
    font-family: circle;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
}
.tel_top_region.top-icon.top-order {
    margin-top: 20px;
    font-size: 14px;
    text-align: left;
    padding-left: 30px;
    color: #444;
}
.tel_top_region.top-icon.top-order::before {
    float: left;
    margin-left: -40px;
    content: "\2709";
    font-family: Glyphicons Halflings;
    font-size: 20px;
    color: #ff8938;
    margin-top: 10px;
}
.top-phone .top-main {
    font-family: Circle;
    font-size: 20px;
    font-weight: normal;

}
.tel_top_region.top-icon.top-phone {
    margin-top: 20px;
    padding-left: 40px;
    padding-right: 0px;
    font-size: 16px;
    text-align: left;
    color: #aaa;

}
.tel_top_region.top-icon.top-phone::before {
    float: left;
    margin-left: -40px;
    content: "\e145";
    font-family: Glyphicons Halflings;
    font-size: 25px;
    color: #ff8938;
    margin-top: 0px;
}
.tel_top_region.top-icon.top-phone .top-info {
    font-size: 12px;
    font-family: circle;
    text-transform: uppercase;
    margin-top: 30px;
color: #262626;
}
.tel_top_region.top-icon.top-form {
    margin-top: 30px;
}
.top-pan {
    background: #f1f1f1;
    padding-bottom: 30px;
    margin-bottom: -30px;
}

a div.tel_top_region {
    color: #3c414c;
        font-family: Circle;
}
a div.tel_top_region b {

    color: #ef9a0b;
}
a div.tel_top_region span {
    font-size: 18px;

    color: #888888;
}
.al-right {
    text-align: right;
}
.top_mail {

    line-height: 30px;
    /* margin-top: 10px; */
    /* padding-top: 20px; */
}
div a {

    text-decoration: none;
    color: #607d8b;
}
div a:hover {

    text-decoration: underline;
}


/*==================Slider========================*/
img.slider-main {
    margin-top: -50px;
}

/*==================MENU========================*/
div .navbar-nav>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
}
nav.navbar.navbar-default {
 /*   background: #ff8938;*/
  /*  border: #d8722c;*/
 /*   color: #fff;*/
    font-family: circle;
    text-transform: uppercase;
}
ul.dropdown-menu ul li a {
    color: #b7bdca;
    text-transform: none;
}
nav.navbar-default .navbar-nav>li>a {
    padding-top: 20px;
 /*   color: #fff;*/
    padding-bottom: 20px;
}
/*==================BUTTONS========================*/
.button-second {
    background: #ff8938;
    padding: 15px 10px;
    font-size: 12px;
    text-transform: uppercase;
    /* margin-top: 30px; */
    color: #fff;
border-radius: 10px;
text-align:center;
}
.button-second:hover {
    background: #b62c40;
text-decoration:none;
    color: #fff;
}

a:hover .button-second {
text-decoration:none;
}
a:hover .button-main {
text-decoration:none;
}
.button-main {
    background: #b62c40;
    padding: 15px 10px;
    font-size: 12px;
    text-transform: uppercase;
    /* margin-top: 30px; */
    color: #fff;
border-radius: 10px;
text-align:center;
}
.button-main:hover {
    background: #ff8938;
text-decoration:none;
    color: #fff;
}

/*=========футер=========*/
ul.footer-links li {
    list-style: none;
    margin-top: 5px;
}
.zag1 {
    color: #363939;
    width: 100%;
    padding-bottom: 7px;
    /* margin: 15px; */
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 8px;
    text-align: left;
    /* background: url(/images/str.png) center bottom no-repeat; */
    background-size: 50%;
    border-bottom: 1px solid #f4f4f2;

}
div#footer a {
    color: #333;
}   
div#footer a:hover {
    color: #ffffff;
} 
div#footer-copyright {
    background:  #969696;
    color: #fff;
    padding-top: 5px;
}   
div#footer-copyright p {
    text-align: center;
}   
div#footer {
    background: #ddd;
    padding-top: 40px;
    /* border-top: 10px solid #d0d0d0; */
    padding-bottom: 40px;
    z-index: 100;
    position: relative;
}
.logo-foot {
    color: #fff;
    /* text-align: left; */
}
div.foot2, div.foot3 {
    padding-left: 30px;
    padding-right: 30px;

}
.foot1 .glyphicon-envelope:before {
    content: "\2709";
    position: absolute;
    margin-top: -18px;
}

.foot1 {

}

ul.footer-links {
    margin: 0;
    padding: 0;
}
div.foot3 div.col-lg-6.col-md-6.col-sm-6.col-xs-6 {
    padding: 0;
}
.tel-foot span {
    font-size: 16px;
    margin-right: 15px;
    color: #f2a907;
}
.email-foot span {
    font-size: 25px;
    color: #969696;
    /* position: relative; */
    /* margin-top: 10px; */
}
.email-foot {
    color: #ffffff;
    text-align: left;
    margin-top: 15px;
}
.foot2 span, .foot3 span {
    color: #ff8938;
    padding-right: 10px;
    font-size: 12px;
}
.email-foot a {
    line-height: 40px;
    padding-bottom: 15px;
    margin-top: -10px;
    padding-top: 10px;
}
.logo-foot1 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 2px 2px black;
}

.foot1 img {
    width: 150px;
    margin-bottom: 10px;
}
.clearleft {clear:left;}
.clearright{clear:right;}
.block-consult h3 {
    color: #fff;
    text-align: center;
    border: none;
    margin-bottom: 50px;
}
/*====================CATALOG===========================*/
.bx_catalog_tile .bx_catalog_tile_category_title {
    margin-top: 10px;
    font-size: 25px;
    padding: 0 15px;
    /* border-bottom: 0; */
}
.bx_catalog_tile_title1 {
    font-size: 14px;
    padding: 5px;
    margin-top: 0;
    background: #b62c40;
    border-left: none;
    border-top: 5px solid #ff8b2e;
    min-height: 50px;
    color: #fff;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    /* overflow: hidden; */
}
.bx_catalog_tile_title1 a {
    color: #fff;
}
a.product-item-image-wrapper {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-top: 53%;
    width: 100%;
    transition: all 300ms ease;
}

div.product-item-detail-slider-controls-image {
    width: 64px;
    height: 40px;
    background-color: #fff;
    position: relative;
    text-align: center;
    display: inline-block;
    outline: 1px solid #c0cfda;
    cursor: pointer;
    overflow: hidden;
}
div.product-item-detail-info-section {
    padding: 0;
}
.tovar-min-price {
    float: left;
    padding: 15px;
    font-size: 20px;
    color: #888;
    /* font-style: italic; */
}
.tovar-min-price b {
    font-size: 35px;
    font-weight: bold;
    padding-left: 10px;
    color: #ff8938;
}
.bottom_pan {
    background: #eee url(/images/f1.png) bottom repeat-y;
    padding-top: 50px;
margin-top: 20px;
    padding-bottom: 50px;
}
.tov-buy {
    float: right;
    margin-top: 15px;
    min-width: 200px;
    text-align: center;
}
a.product-item-detail-tab-link:after {
    background: #ff8938;
}
a.product-item-detail-tab-link {
    color: #5f5f5f;
    padding: 15px;
}
.bx-red div.product-item-detail-slider-controls-image.active {
    outline-color: #ff8938;
}
div.product-item-detail-tab-content h3 {
    /* border: 1px solid; */
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

table.table>tbody>tr>th, table.table>tfoot>tr>th, table.table>thead>tr>th {
    background: #ddd;
    border: 1px solid #fff;
}
table.table>tbody>tr>td, table.table>tfoot>tr>td, table.table>thead>tr>td {
    border: 1px solid #ddd;
}
.product-item-info-container .row {
    margin-bottom: 20px;
    margin-top: 20px;
}
div.product-item-title {
    overflow: unset;
    white-space: unset;
    font-size: 15px;
    /* background: #ddd; */
}
.bx-section-desc {
    padding-top: 40px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-bottom: 40px;
    background: #eee;
}
span.product-item-image-slide {
    border: 1px solid #ddd;
}
.recom-text {
    background: #b62c40;
    color: #fff;
    padding: 5px;
    border-left: 5px solid #ff8b2e;
}
.recom:hover .recom-text {
    text-decoration: none;
    background: #ff8b2e;
}
.recom:hover img {
    filter:brightness(1.1);
}
.main-goods {
    padding: 60px 0;
}
.bx_catalog_tile .col-xs-12:hover img {
    filter: brightness(1.1);
}

.bx_catalog_tile .col-xs-12:hover .bx_catalog_tile_title1{
    text-decoration: none;
    background: #ff8b2e;
}
.bx_catalog_tile .col-xs-12:hover .bx_catalog_tile_title1 a{
    text-decoration: none;
    color: #fff;
}
.product-item-properties dd {
    width: 100%;
}
div.bx-filter.bx-red .bx-filter-section {
    background: #f1f1f1;
}
div.bx-filter.bx-red .btn-themes {
    background-color: #b62c40;
    border-color: #af1e33;
    color: #FFF;
}
a.pricelist {
    padding: 10px 0px 10px 30px;
    background: url(/images/pdf.png) no-repeat left center;
    background-size: 25px;
    margin-bottom: 10px;
}
.pricelist_section {
    margin-bottom: 10px;
    margin-top: 10px;
}
div.bx-filter {
    width: 100%;
    min-width: 170px;
    font-family: circle;
    margin-bottom: 20px;
}
.bx_catalog_tile div.col-xs-12 {
    margin-bottom: 15px;
}
.recom {
    margin-bottom: 15px;
}
/*=========поиск=========*/

.search-form{
background: url("/images/search_new.png") no-repeat scroll 0 0 transparent;
      margin-bottom: 8px;
    height: 34px;
    overflow: hidden;
    position: relative;
    width: 222px;
margin-top:10px;
}

#main-search .form-control {
    background: #bac0ce none repeat scroll 0 0;
}

#main-search .search-submit:hover {
    background: url("/images/search-button.png") no-repeat scroll 4px -23px transparent;
}

.search-name
{
	text-align:right;
	font-size:11px;
	font-weight:bold;
	color:#3C414C;
	padding-right:30px;
}
#main-search .btn.btn-default {
    font-family: "Glyphicons Halflings"!important;
    color: #3C414C;
    /* font-family: Verdana; */
    font-size: 13px;
    font-weight: normal;
    padding: 8px;
    text-shadow: 0 0 0;
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
    left: -5px;
}

input.search-suggest {
    background: #f1f1f1;
    width: 150px;
    border: 1px solid #e0e0e0;
    margin-right: -30px;
    padding: 10px;
    border-radius: 10px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    color: #777;
}
input.search-suggest:focus {
    background: #eee;
    width: 250px;
    margin-right: -30px;
outline: none;
}

div#title-search {
    float: right;
    width: 300px;
}

/*=============FORM===========================*/
.modal input, .modal textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.formt input, .formt textarea {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #dddddd;
    background: #d2d2d2;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#myModal1 input.button-main {
    padding: 12px;
    margin-top: 20px;
}
h3#myModalLabel {
    border: NONE;
    box-shadow: none;
    color: #25292d;
}
.form-bottom input, .form-bottom textarea {
    width: 100%;
    padding: 21px;
    margin-bottom: 20px;
    border: 1px solid #9e9e9e;
    border-radius: 10px;
}
.form-bottom {
    padding: 60px 0px;
    background: #ffffff url(/images/f8.jpg);
}



.main-about {
    padding: 50px 0;
    background: #eee url(/images/f1.png) bottom repeat-y;
}
.main-abouttwo {
    padding: 50px 0;
    background: #eee url(https://telemento.ru/upload/medialibrary/db0/4pykigm5nc0u40wmboctwxnn4md39ew0/fonn.png) bottom repeat-y;
}

.top_block {
    background: url(/images/f1.png) bottom;
    padding: 10px 0px 50px 0px;
    border-bottom: 1px solid #eee;
}
.white_block {
    padding: 50px 0px;
}
a.price div {
    background: #f1f1f1;
    padding: 5px;
}
.scrollup {
    width: 40px;
    height: 40px;
    opacity: 0.3;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    text-indent: -9999px;
    background: url(/images/icon_top.png) no-repeat;
}



/*==========================ADAPTIVE============================*/

@media all and (max-width:1200px) {


}
@media all and (max-width:992px) {


div.tel_top_region.top-icon.top-phone .top-info, div.tel_top_region.top-icon.top-phone .top-main,
div.tel_top_region.top-icon.top-order .top-info, div.tel_top_region.top-icon.top-order .top-main {
    font-size: 13px;
    /* text-transform: none; */
}

div.top-order .top-info a {
    font-size: 13px;
    padding-top: 5px;
    line-height: 18px;
    color: #0084c5;
    font-family: Circle;
    text-transform: none;
}
a.button-main {
    padding: 15px 5px;
    font-size: 11px;
}
nav.navbar.navbar-default {
    font-size: 10px;
}
}
@media all and (max-width:720px) {
}

/* Small devices (tablets, 768px and up) */

@media (max-width: 768px) {
.tel_top.col-lg-6.col-md-6.col-sm-12.col-xs-12 {
    background: none;
text-align:right;
    padding-left: 0px!important;
    margin-top: -15px;
    margin-bottom: 10px;
}
  .row-offcanvas {
    position: relative;
    -webkit-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

  .row-offcanvas-right {
    right: 0;
  }

  .row-offcanvas-left {
    left: 0;
  }

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -50%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -50%; /* 6 columns */
position: absolute;
  }

  .row-offcanvas-right.active {
    right: 50%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 50%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 50%; /* 6 columns */}

 .inputfile {width:100%;}

 .inputtext {width:100%;}
  }

@media (max-width: 360px) {
div .banner-header {
    font-size: 20px;
   
}
.tel_top.col-lg-6.col-md-6.col-sm-12.col-xs-12 {
 font-size:14px;
}
div .banner-text {

    font-size: 16px;

}

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -80%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -80%; /* 6 columns */
  }

  .row-offcanvas-right.active {
    right: 80%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 80%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 80%; /* 6 columns */
  }

 .inputfile {width:100%;}

 .inputtext {width:100%;}

.dost1 {
    float: left;
    padding-top: 85px;
    text-align: center;
    width: 100%;
}
}
.bx_catalog_tile .col-xs-12 {
    min-height: 200px;
}
#chart .col-lg-3 img {
    margin: 20px 0px;
    border: 1px solid #ddd;
}

.header-line b {
    font-size: 16px;
    text-transform: uppercase;
    color: #313131;
}
a.inv {
    color: #333;
    text-decoration: none;
}
a.inv:hover {
    color: #333;
    text-decoration: none;
    cursor: text;
}
a.inv:visited {
    color: #333;
    text-decoration: none;
    cursor: text;
}
div.bx_catalog_tile {
    margin-bottom: 0px;
}
a.bx_catalog_tile_img1 img {
    /*min-height: 145px;*/
}
p.zagol {
    background: #ff8b2e;
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
}
.news-item {
    margin-bottom: 50px;
}

.header-line {
    background: #ddd;
    margin-top: 10px;
    /* border-top: 5px solid #fff; */
    margin-bottom: 20px;
    padding: 10px;
    border-left: 30px solid #ff8b2e;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
div.news-list img.preview_picture {
    border: 1px solid #eee;
    border-radius: 10px;
}
div.news-list img.preview_picture:hover {
    filter: brightness(1.1);
}
.header-line:hover {
    background: #eee;
}






.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
div.top-main {
    padding-top: 10px;
}
.top-info img {
    width: 30px!important;
    margin-left: 10px;
}
div.top-info {
    margin-top: -55px;
}
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
div .navbar-nav {
    float: left;
    font-size: 13px;
    margin: 0;
}
input#title-search-input {
    width: 50px;
}
div div#title-search {
    float: right;
    width: 80px;
}
}
@media (min-width: 992px) {

.column-xl-2 {column-count:2;}
.column-xl-3 {column-count:3;}
  .container {
    width: 970px;
  }
div div#title-search {
    float: right;
    width: 250px;
}
input#title-search-input {
    width: 150px;
}
}
@media (min-width: 1200px) {
.img-7p {
    background-size: 52%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.top-pan-menu .container {
    /*padding: 0;*/
}
.numbers-block .col-lg-2 {
    margin-left: 30px;
}
div .top-catal li.dropdown:last-child {
    margin-right: -25px;
    width: 176px;
    max-width: 178px;
}
  .container {
    width: 1170px;
  }
.logo.sn-ten {
    margin-top: 5px;
}
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {

  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
.contacts-dep div {
    padding-left: 85px;
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: top 3px left;
    padding-bottom: 20px;
}
.row.contacts-dep {
    padding-left: 20px;
    margin-top: 80px;
}
div.contacts blockquote {
    margin-top: 10px;
}
.prom-dep {
    background-image: url(/images/contact-icon1-g3.png);
}
.inf-dep {
    background-image: url(/images/contact-icon2-g2.png);
}
.comp-dep {
    background-image: url(/images/contact-icon3-g2.png);
}
.dealer-dep {
    background-image: url(/images/contact-icon4-g2.png);
}
.sklad-dep {
    background-image: url(/images/contact-icon5-g2.png);
}
.buh-dep {
    background-image: url(/images/contact-icon6-g2.png);
}
.dost-zakaz {
    background: url(/images/icon-dost1.png) no-repeat center right;
    background-size: 170px;
}
.dost-im {
    background: url(https://telemento.ru/upload/medialibrary/3ab/gaic2rnh1lgc0akbfbjcb43dc2akmgsj/Dostavka_im1.png) no-repeat center right;
    background-size: 170px;
}
.dost-pay {
    background: url(/images/icon-dost2.png) no-repeat center right;
    background-size: 170px;
}
p.dep-name {
    color: #b62c40;
}
.navbar.navbar-default {
  position: relative !important;
  z-index: 9999 !important;
}
#bs-example-navbar-collapse-2 {
  position: relative !important;
  z-index: 9999 !important;
}
.navbar-default .dropdown-menu {
  position: absolute !important;
  z-index: 10000 !important;
}
.catalog-element .price,
.catalog-element .price-new,
.catalog-element .price-old {
  position: relative !important;
  z-index: 1 !important;
}
.navbar.navbar-default,
#bs-example-navbar-collapse-2,
.navbar-default .dropdown-menu {
  z-index: 800 !important; /* или любое число <10000 */
}
.dost-found {
    background: url(https://telemento.ru/upload/medialibrary/db0/4pykigm5nc0u40wmboctwxnn4md39ew0/fonn.png) no-repeat center right;
    background-size: 170px;
}
.sku-selector { margin: 20px 0; }
.sku-property { margin-bottom: 10px; }
.sku-name { font-weight: bold; margin-right: 10px; }
.sku-values { list-style: none; padding: 0; display: inline-flex; }
.sku-value {
  border: 1px solid #ddd;
  padding: 5px 10px;
  margin-right: 5px;
  cursor: pointer;
  user-select: none;
  border-radius: 3px;
}
.sku-value.selected { background: #007bff; color: #fff; border-color: #007bff; }
}
.form-consent label {
    display: flex;
    align-items: center;
    gap: 8px; /* отступ между чекбоксом и текстом */
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin: 0;
}
@media (max-width: 767px) {
  .menu-sitemap-tree2 {
    display: none !important;
  }
}
/************
 * Шаг 1. Верхний дропдаун — вертикальный список подгрупп
 ************/

/* показывать дропдаун по hover (если у тебя уже есть — можно не дублировать) */
.top-catal > li.dropdown:hover > .dropdown-menu {
  display: block;
}

/* сам выпадающий блок — узкий, как у обычного меню, а не «мегаменю» */
.top-catal > li.dropdown > .dropdown-menu {
  left: 0;              /* под верхним пунктом */
  right: auto;
  min-width: 420px;     /* можно подогнать под дизайн */
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 3000;
}

/* каждый пункт подгруппы — в строку: слева картинка, справа текст */
.top-catal > li.dropdown > .dropdown-menu .subdir {
  float: none;          /* отключаем колонки Bootstrap */
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
}
.top-catal > li.dropdown > .dropdown-menu .subdir:last-child {
  border-bottom: none;
}

/* внутри subdir: картинка фиксированной ширины, текст занимает оставшееся */
.top-catal > li.dropdown > .dropdown-menu .subdir .titlesubmenu {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}
.top-catal > li.dropdown > .dropdown-menu .subdir .pictmenu {
  flex: 0 0 90px;       /* размер превью; при желании меняй */
  max-width: 90px;
}
.top-catal > li.dropdown > .dropdown-menu .subdir .secttextmenu {
  flex: 1 1 auto;
  padding: 0;
}

/* не показывать вложенные списки (уровень 2) на этом шаге */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  display: none !important;
}

/* убрать технические «переносы» из старой сетки мегаменю */
.top-catal > li.dropdown > .dropdown-menu .clearleft {
  display: none !important;
}

/* мелкие штрихи наведения */
.top-catal > li.dropdown > .dropdown-menu .subdir:hover {
  background: #fafafa;
}
.top-catal > li.dropdown > .dropdown-menu .subdir a {
  display: block;
  color: #222;
  text-decoration: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir a:hover {
  text-decoration: none;
}
/************
 * Шаг 2. Панель подпунктов справа от списка подгрупп
 ************/

/* сам выпадающий блок теперь — «двухпанельный» */
.top-catal > li.dropdown > .dropdown-menu {
  position: relative;      /* якорь для правой панели */
  width: 980px;            /* общая ширина дропдауна (подгони при желании) */
  min-width: 520px;        /* левая колонка не ломается */
}

/* левая колонка (подгруппы) — фиксируем ширину */
.top-catal > li.dropdown > .dropdown-menu .subdir {
  width: 520px;            /* подгони под дизайн (совпадает с left у правой панели) */
}

/* по умолчанию вложенные списки скрыты */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  display: none;
}

/* показываем правую панель при наведении на конкретную подгруппу */
.top-catal > li.dropdown > .dropdown-menu .subdir:hover > .submenu {
  display: block;
}

/* правая панель подпунктов (вылетает поверх, в пределах дропдауна) */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  position: absolute;
  top: 0;
  left: 520px;                     /* ровно справа от левой колонки */
  width: calc(100% - 520px);       /* занимает оставшееся место */
  max-height: 70vh;                /* ограничение по высоте */
  overflow: auto;                  /* скролл, если пунктов много */
  background: #fff;
  border-left: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 8px 0;
  z-index: 3100;
}

/* оформление пунктов правой панели */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li {
  padding: 10px 16px;
  border-bottom: 1px solid #f2f2f2;
  white-space: normal;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li:last-child {
  border-bottom: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu a {
  display: block;
  color: #222;
  text-decoration: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu a:hover {
  text-decoration: none;
  background: #fafafa;
}

/* убрать старые тех.элементы мегаменю */
.top-catal > li.dropdown > .dropdown-menu .clearleft {
  display: none !important;
}
/****************************************************
 *  ГЛАВНОЕ МЕНЮ — ВЕРТИКАЛЬНЫЕ ПОДГРУППЫ + ПОДМЕНЮ СПРАВА
 *  (аккуратно, компактно, без лишнего воздуха)
 ****************************************************/

/* показать выпадающее меню при наведении */
.top-catal > li.dropdown:hover > .dropdown-menu {
  display: block;
}

/* общий контейнер дропдауна */
.top-catal > li.dropdown > .dropdown-menu {
  position: relative;
  left: 0;
  right: auto;
  width: 880px;             /* общая ширина дропдауна */
  min-width: 420px;
  margin: 0;
  padding: 0;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 3000;
  font-size: 14px;          /* уменьшили общий текст */
  line-height: 1.3;
}

/* левая колонка — вертикальный список подгрупп */
.top-catal > li.dropdown > .dropdown-menu .subdir {
  float: none;
  width: 440px;             /* фиксированная ширина */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
  transition: background .2s;
  cursor: pointer;
}
.top-catal > li.dropdown > .dropdown-menu .subdir:hover {
  background: #fafafa;
}

/* обертка для картинки и текста */
.top-catal > li.dropdown > .dropdown-menu .subdir .titlesubmenu {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* картинка подгруппы */
.top-catal > li.dropdown > .dropdown-menu .subdir .pictmenu {
  flex: 0 0 70px;           /* меньше */
  max-width: 70px;
}
.top-catal > li.dropdown > .dropdown-menu .subdir .pictmenu img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0px;
}

/* текст подгруппы */
.top-catal > li.dropdown > .dropdown-menu .subdir .secttextmenu {
  flex: 1 1 auto;
  padding: 0;
  font-weight: 500;
  color: #333;
  text-transform: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir a {
  color: #222;
  text-decoration: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir a:hover {
  color: #e57200;
}

/* правая панель подпунктов */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  display: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir:hover > .submenu {
  display: block;
}

/* правая панель позиционирование */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  position: absolute;
  top: 0;
  left: 440px;              /* ровно справа от подгрупп */
  width: calc(100% - 440px);
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  border-left: 1px solid #eee;
  padding: 6px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* оформление подпунктов справа */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu ul li {
  padding: 6px 14px;
  border-bottom: 1px solid #f6f6f6;
  font-size: 13px;
  line-height: 1.2;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu ul li:last-child {
  border-bottom: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu a {
  color: #333;
  text-decoration: none;
  display: block;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu a:hover {
  color: #e57200;
  background: #fafafa;
}

/* убрать технические "clearleft" */
.top-catal > li.dropdown > .dropdown-menu .clearleft {
  display: none !important;
}
/****************************************************
 *  Правка — скрыть пустую правую часть подменю
 ****************************************************/

/* по умолчанию вообще ничего не показываем */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

/* показываем только если реально есть контент */
.top-catal > li.dropdown > .dropdown-menu .subdir:hover > .submenu {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

/* убираем резерв под панель справа (белое полотно) */
.top-catal > li.dropdown > .dropdown-menu {
  width: auto !important;      /* подстраивается по контенту */
  min-width: 440px;            /* не схлопывается */
}

/* позиционирование панели, если она есть */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  position: absolute;
  top: 0;
  left: 440px;                 /* появляется справа от левой колонки */
  width: auto;
  min-width: 360px;
  max-width: 520px;
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  border-left: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 6px 0;
  z-index: 3100;
}

/* если у подгруппы нет подпунктов — никаких пустых дивов */
.top-catal > li.dropdown > .dropdown-menu .subdir:not(:has(.submenu ul li)) > .submenu {
  display: none !important;
}
/* 1) дропдаун не должен резать вылетающую панель */
.top-catal > li.dropdown > .dropdown-menu {
  overflow: visible !important;
}

/* 2) каждая строка- подгруппа — опорный элемент для своей панели */
.top-catal > li.dropdown > .dropdown-menu .subdir {
  position: relative;         /* ВАЖНО */
  width: 440px;               /* как у тебя сейчас */
}

/* 3) панель подпунктов вылетает от самой строки */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  position: absolute !important;
  top: 0;                     /* ровно от верха строки */
  left: 100%;                 /* сразу справа от строки */
  right: auto;
  min-width: 360px;
  max-width: 520px;
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  border-left: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 6px 0;
  z-index: 3100;
  display: none;              /* по умолчанию скрыта */
  visibility: hidden;
  opacity: 0;
}

/* показываем только при наведении на конкретную строку */
.top-catal > li.dropdown > .dropdown-menu .subdir:hover > .submenu {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* 4) автопереворот у правых пунктов верхнего меню — панель уходит влево */
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir > .submenu {
  left: auto;
  right: 100%;                /* вылетает влево от строки */
  border-left: none;
  border-right: 1px solid #eee;
}
/***************************************
 * Подменю (правая панель) — аккуратная карточка
 ***************************************/
.top-catal > li.dropdown > .dropdown-menu {
  overflow: visible !important;               /* не режем вылет */
}

.top-catal > li.dropdown > .dropdown-menu .subdir {
  position: relative;                         /* якорь для своей панели */
}

/* сама панель справа/слева от строки */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  position: absolute !important;
  top: 0;
  left: 100%;                                  /* по умолчанию вправо от строки */
  right: auto;
  min-width: 360px;                            /* подгони при желании 340–420 */
  max-width: 520px;
  max-height: 68vh;                            /* только вертикальный скролл */
  overflow-y: auto;
  overflow-x: hidden;                          /* убрали нижний серый скролл */
  padding: 8px 0;
  margin-left: 10px;                           /* небольшой зазор от левой колонки */
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;                         /* красиво скруглили */
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  z-index: 3100;
  display: none;
}

/* показать панель только у наведённой строки */
.top-catal > li.dropdown > .dropdown-menu .subdir:hover > .submenu {
  display: block;
}

/* список внутри панели — чистый, без наследованных сеток */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li {
  display: flex;                               /* под маркер + текст */
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f3f3f3;
  white-space: normal;                         /* переносы длинных названий */
  line-height: 1.25;
  font-size: 13px;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li:last-child {
  border-bottom: none;
}

/* оранжевые квадратики-маркеры слева */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #f07d00;                         /* фирменный оранжевый */
  flex: 0 0 8px;
}

/* ссылки подпунктов */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu a {
  display: block;
  color: #2a2a2a;
  text-decoration: none;
  flex: 1 1 auto;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu a:hover {
  color: #e57200;
  background: #fafafa;
  border-radius: 6px;
}

/* картинки/колонки внутри подпунктов на всякий: скрыть всё лишнее */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu img,
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu [class*="col-"] {
  display: none !important;
}

/* автопереворот у правых пунктов верхнего меню — панель открывается влево */
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu {
  left: auto;
  right: 0;
}
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir > .submenu {
  left: auto;
  right: calc(100% + 10px);                    /* влево от строки + зазор */
  border-left: none;
  border-right: 1px solid #e9e9e9;
}
/* 1) Убрать рамку фокуса у ссылок при клике мышью (клавиатурный фокус оставим) */
.top-catal a:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* 2) «Мостик» между левой колонкой и карточкой, чтобы курсор не ронял ховер */
.top-catal > li.dropdown > .dropdown-menu .subdir {
  position: relative; /* уже есть, на всякий */
}
.top-catal > li.dropdown > .dropdown-menu .subdir::after {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;      /* ширина мостика */
  width: 16px;
  height: 100%;
  background: transparent;
  pointer-events: none; /* не перекрываем клики по карточке */
}

/* 3) Чуть компактнее карточка, ровнее заголовки */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  border-radius: 10px;
  padding: 8px 0;
  margin-left: 10px;      /* зазор от левой колонки */
  overflow-x: hidden;     /* убираем нижний скролл */
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li {
  font-size: 13px;
  line-height: 1.25;
  padding: 10px 14px;
}

/* 4) Оранжевые маркеры — выровнять и сделать одинаковыми */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li::before {
  content: "";
  width: 8px; height: 8px; border-radius: 2px;
  background: #f07d00;
  flex: 0 0 8px;
}

/* 5) Стили для «недоступных» (если пункт без ссылки или неактивен) */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li.is-disabled,
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li > a[href="#"] {
  color: #b9b9b9 !important;
  pointer-events: none;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li.is-disabled::before {
  background: #e1e1e1;
}

/* 6) Чуть приятнее вертикальный скролл (поддерживаемые браузеры) */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  scrollbar-width: thin;
  scrollbar-color: #d6d6d6 transparent;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu::-webkit-scrollbar {
  width: 8px;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 8px;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu::-webkit-scrollbar-track {
  background: transparent;
}
/************ Вариант «чистая карточка» ************/

/* левая колонка — ровные строки */
.top-catal > li.dropdown > .dropdown-menu .subdir{
  gap:10px; padding:8px 12px; border-bottom:1px solid #f3f3f3;
}
.top-catal > li.dropdown > .dropdown-menu .subdir .pictmenu{flex:0 0 60px;max-width:60px}
.top-catal > li.dropdown > .dropdown-menu .subdir .secttextmenu{font-size:14px;font-weight:500}

/* правая панель — аккуратная, компактная, без «простыни» */
.top-catal > li.dropdown > .dropdown-menu .subdir{position:relative}
.top-catal > li.dropdown > .dropdown-menu{overflow:visible}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu{
  position:absolute; top:-6px;                  /* приподнимаем, чтобы верх карточки был на уровне строки */
  left:calc(100% + 10px); right:auto;          /* справа от строки с небольшим зазором */
  min-width:360px; max-width:520px; 
  max-height:64vh; overflow-y:auto; overflow-x:hidden;
  background:#fff; border:1px solid #ececec; border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  padding:6px 0; margin:0; display:none; z-index:3100;
}
.top-catal > li.dropdown > .dropdown-menu .subdir:hover > .submenu{display:block}

/* маленький «якорь»-треугольник между колонкой и карточкой */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu::before{
  content:""; position:absolute; top:12px; left:-6px;
  width:12px; height:12px; transform:rotate(45deg);
  background:#fff; border-left:1px solid #ececec; border-top:1px solid #ececec;
}

/* список внутри карточки */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul{margin:0;padding:0;list-style:none}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li{
  display:flex; align-items:center; gap:10px;
  padding:10px 14px; font-size:13px; line-height:1.25;
  border-bottom:1px solid #f4f4f4;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li:last-child{border-bottom:none}

/* оранжевые маркеры — ровные и неброские */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li::before{
  content:""; flex:0 0 7px; width:7px; height:7px; border-radius:2px; background:#f07d00;
}

/* ссылки и ховер-состояния */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu a{
  flex:1 1 auto; color:#2a2a2a; text-decoration:none; border-radius:6px; padding:2px 4px;
}
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu a:hover{
  background:#fafafa; color:#e57200;
}

/* убираем любые «пустые» сеточные дивы из старого шаблона */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > [class*="col-"]{
  display:contents !important; margin:0 !important; padding:0 !important;
}

/* убираем рамки фокуса от кликов мышью на ссылках меню */
.top-catal .dropdown-menu a:focus{outline:none !important; box-shadow:none !important}

/* мостик между колонкой и карточкой — чтобы ховер не «падал» */
.top-catal > li.dropdown > .dropdown-menu .subdir::after{
  content:""; position:absolute; top:0; right:-14px; width:14px; height:100%; background:transparent;
}

/* автопереворот у правых пунктов верхнего меню */
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu{left:auto; right:0}
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir > .submenu{
  left:auto; right:calc(100% + 10px)
}
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir > .submenu::before{
  left:auto; right:-6px; transform:rotate(225deg)  /* треугольник в другую сторону */;
  border-left:none; border-top:none; border-right:1px solid #ececec; border-bottom:1px solid #ececec;
}
/* --- 1) Не залезать на серое меню: убираем поднимание карточки --- */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu{
  top: 0 !important;          /* было -6px — из-за этого уползало наверх */
  border-top-left-radius: 0;  /* чтобы стык был ровный с верхом строки */
  border-bottom-left-radius: 0;
}

/* для правых крайних пунктов (переворот влево) — тоже без подъёма */
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir > .submenu{
  top: 0 !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* --- 2) Убираем расстояние между уровнями (стык без щели) --- */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu{
  left: 100% !important;      /* ровно от правого края строки */
  margin-left: 0 !important;  /* был зазор 10px — убираем */
  border-left: 1px solid #ececec; /* визуальный разделитель вместо щели */
}

/* при перевороте влево — тоже без зазора */
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir > .submenu{
  right: 100% !important;
  left: auto !important;
  margin-right: 0 !important;
  border-right: 1px solid #ececec;
  border-left: none;
}

/* убираем «хвостик»-треугольник, чтобы не создавал видимый отступ */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu::before{
  display: none !important;
}

/* сохраняем «мостик» для стабильного hover, но делаем его невидимым и без зазора */
.top-catal > li.dropdown > .dropdown-menu .subdir::after{
  right: -1px;                /* вплотную к карточке */
  width: 2px;                 /* узкий, чтобы не было щели */
  background: transparent;
}
/******************************************************
 *  Стрелочки для пунктов, у которых есть подменю
 ******************************************************/

/* базовый стиль стрелки */
.top-catal > li.dropdown > .dropdown-menu .subdir {
  position: relative;
}

/* тёмно-серая стрелочка вправо */
.top-catal > li.dropdown > .dropdown-menu .subdir::before {
  content: "›"; /* можно заменить на ▸ или ► */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #666;
  transition: transform 0.2s ease, color 0.2s ease;
  pointer-events: none;
}

/* при наведении — чуть подсвечивается и сдвигается */
.top-catal > li.dropdown > .dropdown-menu .subdir:hover::before {
  color: #e57200; /* фирменный оранжевый при hover */
  transform: translateY(-50%) translateX(2px);
}

/* стрелка влево для правых пунктов (переворот) */
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir::before {
  content: "‹"; /* можно ▸ ▹  изменяй символ под вкус */
  right: auto;
  left: 10px;
  transform: translateY(-50%);
}
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir:hover::before {
  transform: translateY(-50%) translateX(-2px);
}
/******************************************************
 * Стрелочки остаются справа, даже при открытии влево
 ******************************************************/
.top-catal > li.dropdown > .dropdown-menu .subdir::before {
  content: "›"; /* Стрелочка вправо */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #666;
  transition: transform 0.2s ease, color 0.2s ease;
  pointer-events: none;
}

/* Убираем старое правило, где стрелка прыгала налево */
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir::before {
  left: auto !important;
  right: 10px !important;
  transform: translateY(-50%);
}

/* Эффект при наведении */
.top-catal > li.dropdown > .dropdown-menu .subdir:hover::before {
  color: #e57200;
  transform: translateY(-50%) translateX(2px);
}
/******************************************************
 * ФИНАЛ: стрелки всегда справа и всегда вправо (›)
 ******************************************************/

/* Единый стиль стрелки для всех */
.top-catal > li.dropdown > .dropdown-menu .subdir::before {
  content: "›";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #666;
  transition: transform 0.2s ease, color 0.2s ease;
  pointer-events: none;
}

/* При наведении — лёгкий сдвиг и подсветка */
.top-catal > li.dropdown > .dropdown-menu .subdir:hover::before {
  color: #e57200; /* фирменный оранжевый */
  transform: translateY(-50%) translateX(2px);
}

/* Отменяем для «левых» колонок всё старое поведение */
.top-catal > li.dropdown:nth-last-child(-n+3) > .dropdown-menu .subdir::before {
  content: "›" !important;
  left: auto !important;
  right: 10px !important;
  transform: translateY(-50%) !important;
}
/* --- ОША: сам дропдаун остаётся сдвинутым влево, но подменю открываются вправо --- */

/* для раздела /catalog/osha/ */
.top-catal > li.dropdown:has(> a[href*="/catalog/osha/"]) > .dropdown-menu {
  left: auto !important;
  right: 0 !important; /* сам блок прижат к правому краю меню */
}

/* но внутренние подменю у пунктов снова вправо */
.top-catal > li.dropdown:has(> a[href*="/catalog/osha/"])
  > .dropdown-menu .subdir > .submenu {
  left: 100% !important;            /* вылетают вправо от строки */
  right: auto !important;
  border-left: 1px solid #e9e9e9 !important;
  border-right: none !important;
}

/* хвостик стрелочки возвращаем тоже вправо */
.top-catal > li.dropdown:has(> a[href*="/catalog/osha/"])
  > .dropdown-menu .subdir > .submenu::before {
  left: -6px !important;
  right: auto !important;
  transform: rotate(45deg) !important;
  border-left: 1px solid #ececec !important;
  border-top: 1px solid #ececec !important;
  border-right: none !important;
  border-bottom: none !important;
}
/* Скругление общей «простынки» меню (первый уровень) */
.top-catal > li.dropdown > .dropdown-menu {
  border-radius: 3px !important;
  overflow: hidden;        /* чтобы скругление реально обрезало фон внутри */
}

/* Скругление карточки-подменю (второй уровень) */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  border-radius: 3px !important;
}

/* Если используешь «треугольник» у карточки — убери, он визуально ломает углы */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu::before {
  display: none !important;
}

/* На всякий случай — если Bootstrap переопределяет .dropdown-menu */
.top-catal .dropdown-menu {
  border-radius: 3px !important;
}
/* 🔸 Убираем технические переносы и пустые блоки */
.top-catal > li.dropdown > .dropdown-menu .clearleft {
  display: none !important;
}

/* 🔸 Сбрасываем все отступы и поля у элементов списка */
.top-catal > li.dropdown > .dropdown-menu > li.subdir {
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px solid #e3e3e3 !important;
}
.top-catal > li.dropdown > .dropdown-menu > li.subdir:first-of-type {
  border-top: none !important;
}

/* 🔸 Контейнер названия и картинки — в одну линию, без внутренних зазоров */
.top-catal .titlesubmenu {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 6px 14px !important;
  background: #fff !important;
  min-height: auto !important;
}

/* 🔸 Убираем отступы внутри вложенных Bootstrap-колонок */
.top-catal .titlesubmenu > div[class*="col-"] {
  margin: 0 !important;
  padding: 0 !important;
}

/* 🔸 Фиксируем размер картинки и убираем внешние поля */
.top-catal .pictmenu {
  width: 55px !important;
  margin: 0 !important;
}

/* 🔸 Текст — вровень, без вертикальных зазоров */
.top-catal .secttextmenu {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
}

/* 🔸 Hover-эффект (по желанию) */
.top-catal .dropdown-menu > li.subdir:hover {
  background: #f9f9f9 !important;
}
/* ========= ДЕЛАЕМ ШРИФТ ТОЛЩЕ У НАЗВАНИЙ С КАРТИНКАМИ ========= */
.top-catal .dropdown-menu .titlesubmenu .secttextmenu a {
  font-size: 15px !important;     /* размер шрифта */
  line-height: 1.2 !important;
  font-weight: 500 !important;    /* ← вот это отвечает за толщину */
  color: #222 !important;         /* чуть темнее для контраста */
}
/* Только для выпадающего меню — обычный текст */
.top-catal .dropdown-menu li a {
  text-transform: none !important; /* оставляем регистр как в названии */
}
/* Стрелки у пунктов левой колонки (только там, где есть подменю — .subdir) */
.top-catal .dropdown-menu > li.subdir .titlesubmenu {
  position: relative !important;
  padding-right: 26px !important; /* место под стрелку */
  overflow: visible !important;
  z-index: 2; /* чтобы стрелку не перекрывало подменю справа */
}

.top-catal .dropdown-menu > li.subdir .titlesubmenu::after {
  content: "›";                        /* сама стрелка */
  position: absolute;
  right: 10px;                         /* отступ справа */
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
  color: #666;
  pointer-events: none;
  transition: transform .2s ease, color .2s ease;
  z-index: 3;                          /* поверх всего внутри строки */
}

/* Ховер-состояние */
.top-catal .dropdown-menu > li.subdir:hover .titlesubmenu::after {
  color: #e57200;                      /* фирменный оранжевый */
  transform: translateY(-50%) translateX(2px);
}

/* На всякий — снимаем обрезание у строки, если где-то стоит */
.top-catal .dropdown-menu > li.subdir {
  overflow: visible !important;
}
/* Базовое состояние пункта с картинкой */
.top-catal > li.dropdown > .dropdown-menu li.subdir {
  background: #fff;                 /* базовый фон */
  transition: background-color .2s; /* плавность */
}

/* Подсветка строки при наведении — ЖЕЛЕЗНО срабатывает */
.top-catal > li.dropdown > .dropdown-menu li.subdir:hover,
.top-catal > li.dropdown.open > .dropdown-menu li.subdir:hover {
  background: #f2f2f2 !important;   /* светло-серый фон */
}

/* Если внутри есть обёртка, которая перекрывает фон — подсветим и её */
.top-catal > li.dropdown > .dropdown-menu li.subdir:hover .titlesubmenu,
.top-catal > li.dropdown > .dropdown-menu li.subdir:hover .secttextmenu,
.top-catal > li.dropdown > .dropdown-menu li.subdir:hover .pictmenu {
  background: transparent !important; /* пусть фон берётся с li */
}

/* На всякий случай: убираем собственные фоны внутренних блоков,
   чтобы не перекрывали серый при hover */
.top-catal > li.dropdown > .dropdown-menu li.subdir .titlesubmenu,
.top-catal > li.dropdown > .dropdown-menu li.subdir .secttextmenu,
.top-catal > li.dropdown > .dropdown-menu li.subdir .pictmenu {
  background: transparent;
}
/* ===== Подсветка при наведении — ВСЕ уровни меню ===== */

/* Второй уровень (уже есть, но оставляем для надёжности) */
.top-catal > li.dropdown > .dropdown-menu li.subdir:hover {
  background-color: #f2f2f2 !important;
  transition: background-color 0.2s ease;
}

/* Третий (и дальше) уровни — те, что выпадают сбоку */
.top-catal > li.dropdown > .dropdown-menu li.subdir > .dropdown-menu li:hover,
.top-catal > li.dropdown > .dropdown-menu .submenu li:hover,
.top-catal > li.dropdown.open > .dropdown-menu li:hover {
  background-color: #f2f2f2 !important;  /* светло-серый фон */
  transition: background-color 0.2s ease;
}

/* Чтобы текст и иконки не залипали при hover */
.top-catal > li.dropdown > .dropdown-menu li:hover > a {
  background-color: transparent !important;
  color: inherit !important;
}

/*----------------------------------------------------*/
/* 🔧 ФИНАЛЬНЫЙ ФИКС: убираем внутренний правый отступ у карточек подменю */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  padding-right: 0 !important;
  padding-left: 0 !important;
  min-width: auto !important;
  width: auto !important;
}

/* чтобы список тянулся на всю ширину карточки */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* пункты внутри — без внутренних «запасов» */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li {
  padding: 8px 12px !important;
  margin: 0 !important;
}

/* ссылки полностью заполняют строку */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li > a {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
}
/* 🔧 Возвращаем горизонтальную компоновку внутри карточки */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul {
  display: flex !important;
  flex-direction: column !important;   /* вертикальный список пунктов */
  gap: 0 !important;                   /* без лишних промежутков */
  margin: 0 !important;
  padding: 0 !important;
}

/* Вся карточка не должна схлопываться */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu {
  display: block !important;
  width: max-content !important;       /* ширина по контенту */
  min-width: 320px !important;         /* минимальная ширина карточки */
  background: #fff !important;
  padding: 0 !important;
  border: 1px solid #e6e6e6 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Каждый пункт списка — аккуратная строка */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 8px 12px !important;
  border-bottom: 1px solid #f2f2f2 !important;
  white-space: nowrap !important;
}

/* Последний пункт без линии */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li:last-child {
  border-bottom: none !important;
}
/* 🔸 Делаем плашки в меню чуть выше и визуально «толще» */
.top-catal > li.dropdown > .dropdown-menu > li.subdir .titlesubmenu {
  padding-top: 10px !important;   /* было 5–6px */
  padding-bottom: 10px !important;
}

/* Пункты во втором уровне (карточка справа) — тоже повыше */
.top-catal > li.dropdown > .dropdown-menu .subdir > .submenu > ul > li {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Дополнительно немного увеличим межстрочный интервал текста */
.top-catal .dropdown-menu a {
  line-height: 1.35 !important;
}

/* Чтобы всё оставалось выровненным по центру по вертикали */
.top-catal .dropdown-menu .titlesubmenu {
  align-items: center !important;
}
@media (max-width: 768px) {
  .navbar-nav .open .dropdown-menu {
    position: relative !important;
    background: #ffffff !important; /* белая подложка, чтобы текст не терялся */
    z-index: 999 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin: 0 !important;
    padding: 10px 15px !important;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    color: #333 !important;
    padding: 8px 0 !important;
    display: block;
  }
}
/* СДВИГ ПОЧТЫ В СТОРОНУ */
.top-icon.top-order {
  margin-left: -20px; /* подбери значение визуально, 10–40px обычно достаточно */
}
/* Меньше размер иконок мессенджеров в шапке */
.top-icon.top-form img {
  width: 26px !important;  /* было ~35–40px */
  height: 26px !important;
  margin-left: 6px;
  transition: transform 0.2s ease;
  vertical-align: middle;
}
.top-icon.top-form img:hover {
  transform: scale(1.1);
}
/* ДЛЯ СТРАНИЦЫ КОНТАКТЫ */
.email-copy-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.email-label {
  font-weight: 500;
  color: #333;
}

.email-copy-block a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.email-copy-block a:hover {
  text-decoration: underline;
}

.copy-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

.copy-btn svg {
  width: 15px;
  height: 15px;
  stroke: #d71c24;
  transition: stroke 0.2s ease;
}

.copy-btn:hover svg {
  stroke: #a31218;
  transform: scale(1.1);
}
/*НОВАЯ*/
.email-copy-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.email-label {
  font-weight: 500;
  color: #333;
}

.email-copy-block a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.email-copy-block a:hover {
  text-decoration: underline;
}

.copy-btn {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

.copy-btn svg {
  width: 15px;
  height: 15px;
  stroke: #d71c24;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.copy-btn:hover svg {
  stroke: #a31218;
  transform: scale(1.1);
}

/* когда успешно скопировано — подсветка зелёным */
.copy-btn.copied svg {
  stroke: #ed902d;
  transform: scale(1.3);
}

/* всплывающая подсказка */
.copy-btn .tooltip {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  z-index: 5;
}

/* активируем тултип при копировании */
.copy-btn.copied .tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
/* ---- шапка: копирование e-mail ---- */
.header-email-copy{
  display:inline-flex; align-items:center; gap:6px; white-space:nowrap;
}
.header-email-copy a{
  font-weight:600; color:#000; text-decoration:none;
}
.header-email-copy a:hover{ text-decoration:underline; }

.header-copy-btn{
  position:relative; background:transparent; border:none; padding:0; margin:0;
  width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center;
  cursor:pointer; transition:transform .18s ease;
}
.header-copy-btn svg{ width:13px; height:13px; stroke:#d71c24; transition:stroke .25s, transform .25s; }
.header-copy-btn:hover svg{ stroke:#a31218; transform:scale(1.08); }

/* зелёная подсветка и пульс после успешного копирования */
.header-copy-btn.copied svg{ stroke:#ed7e2c !important; transform:scale(1.2); }

/* плашка "Скопировано!" под иконкой */
.header-copy-btn .header-tooltip{
  position:absolute; top:125%; left:50%; transform:translateX(-50%) scale(.9);
  background:#333; color:#fff; padding:4px 8px; border-radius:4px; font-size:12px;
  opacity:0; pointer-events:none; transition:opacity .25s, transform .18s; white-space:nowrap; z-index:20;
}
.header-copy-btn.copied .header-tooltip{ opacity:1; transform:translateX(-50%) scale(1); }

/* (по желанию) чуть уменьшить иконки мессенджеров, чтобы всё влазило */
.top-icon.top-form img{ width:24px !important; height:24px !important; margin-left:6px; vertical-align:middle; transition:transform .2s; }
.top-icon.top-form img:hover{ transform:scale(1.1); }

/* ПРАВКИ ДИЗАЙНА ДЛЯ ВАРИАЦИЙ */
.product-item-detail-buy-button span,
.product-item-detail-buy-button {
    font-family: "Arial", sans-serif;        /* строгий современный шрифт */
    font-weight: 600 !important;             /* полужирный, но не жирный */
    font-size: 15px !important;              /* компактный современный размер */
    letter-spacing: 0.3px !important;        /* лёгкая аккуратная разрядка */
    text-transform: none !important;         /* не делаем капсом, выглядит дороже */
    color: #a30000 !important;               /* тёмно-красный под стиль сайта */
}
.product-item-detail-buy-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 6px 18px !important;   /* можно подрегулировать */
    line-height: 1.2 !important;
}
.blog-categories-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 25px 0 35px 0;
}

/* Основной стиль кнопки */
.blog-cat-item {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    color: #2b2b2b;
    text-decoration: none;
    background: #fff;

    border-radius: 10px;
    border: 1px solid rgba(200, 200, 200, 0.55);

    box-shadow: 
        0 2px 4px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.5);

    transition: all 0.25s ease;
}

/* Hover — при наведении */
.blog-cat-item:hover {
    background: #fff7f0;      /* Очень лёгкий оранжевый фон */
    border-color: #ff7a00;    /* Оранжевая рамка */
    color: #ff7a00;           /* Оранжевый текст */
    transform: none;          /* Без подъёма */
    box-shadow: none;         /* Без подсветки */
}

.blog-cat-item {
    padding: 6px 14px;
    font-size: 13.5px;
}
.blog-cat-item {
    margin: 0 12px 14px 0;
}
/* ПОЗРАВЛЕНИЯ СВЕРХУ САЙТА */
.site-notice {
  width: 100%;
  background: linear-gradient(90deg, #fffaf0, #ffffff);
  border-bottom: 1px solid #f0e6d8;
  font-size: 14px;
  color: #444;
}

.site-notice__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-notice__icon {
  font-size: 16px;
  opacity: 0.8;
}

.site-notice__text b {
  color: #d47c00;
  font-weight: 600;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
  .site-notice {
    font-size: 13px;
  }

  .site-notice__inner {
    padding: 8px 12px;
  }
}
.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #FFA500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.doc-download:hover {
    color: #000;
    text-decoration: none;
}
/* Цена перестаёт быть поверх картинки и становится под названием */
.product-item .product-item-info-container.product-item-price-container{
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  text-align: left !important;
  margin-top: 8px;
  padding: 0 !important;
  background: none !important;
}
.product-item .product-item-title{
  margin-bottom: 2px !important;
}

.product-item .product-item-title + *{
  margin-bottom: 2px !important;
}

.product-item .product-item-info-container.product-item-price-container{
  margin-top: 4px !important;
}
.product-item .product-item-container{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  overflow: hidden;
}
.product-item .product-item-image-wrapper{
  background: #fafafa;
}
/* Цена не поверх картинки */
.product-item .product-item-info-container.product-item-price-container{
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  z-index: auto !important;

  margin-top: 8px !important;
  padding: 10px 14px 12px !important;

  /* Визуально прикрепляем */
  border-top: 1px solid rgba(0,0,0,.06);
  background: rgba(0,0,0,.02);
}
/* Уменьшаем расстояние под названием товара */
.product-item .product-item-title{
  margin-bottom: 4px !important;
}
/* Убираем лишний отступ под характеристикой (200 Вт) */
.product-item .product-item-title + *{
  margin-bottom: 4px !important;
}
.product-item .product-item-info-container.product-item-price-container{
  margin-top: 4px !important;      /* было больше — поднимаем */
  padding-top: 6px !important;
}
/* Воздух снизу карточки */
.product-item{
  padding-bottom: 26px;   /* можешь увеличить до 32px, если хочется */
}
/* Цена — строго от левого края карточки */
.product-item .product-item-info-container.product-item-price-container{
  text-align: left !important;
  padding-left: 0 !important;
}
/* Карточка категории */
.catalog-card {
  display: block;
  margin-bottom: 30px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Картинка */
.catalog-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hover-эффект */
.catalog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

/* Некликабельная карточка */
.catalog-card--disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

/* Мобилка */
@media (max-width: 767px) {
  .catalog-card {
    margin-bottom: 20px;
  }

  /* На тачах hover почти не нужен — можно ослабить */
  .catalog-card:hover {
    transform: none;
    box-shadow: none;
  }
}
/* Отступ между блоками */
.catalog-categories {
  margin-bottom: 40px;
}

/* Баннеры */
.banner-card {
  display: block;
  border-radius: 6px;
  overflow: hidden;
}

.banner-card img {
  width: 100%;
  height: auto;
  display: block;
}
.advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f3f3f3;
  padding: 30px 20px;
}

.advantages__item {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  text-align: center;
}

.advantages__icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.advantages__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.advantages__text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* Адаптация под мобилу */
@media (max-width: 768px) {
  .advantages {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {

  /* Центрируем весь блок количества */
  .product-item-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Центрируем + / - / input */
  .product-item-amount-field-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Центрируем цену и "шт" */
  .product-item-amount-description-container {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 767px) {

  /* 1) Контейнер цены делаем flex и центрируем содержимое */
  .product-item .product-item-info-container.product-item-price-container{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* 2) Все внутренние элементы цены убираем из float и центрируем */
  .product-item .product-item-info-container.product-item-price-container *{
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
  }

  /* 3) На всякий — если внутри есть блок с ценой */
  .product-item .product-item-info-container.product-item-price-container > *{
    display: inline-block !important;
  }
}
/*ДЛЯ КАРУСЕЛИ*/
/* ======================================================
   КАРУСЕЛЬ БЛАГОДАРСТВЕННЫХ ПИСЕМ
   Строгий B2B / производственный стиль
====================================================== */

.thanks-carousel{
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
}

/* ---------- КНОПКИ УПРАВЛЕНИЯ (СТРОГИЕ) ---------- */

.thanks-controls{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 50;
}

.thanks-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;

  width: 32px;
  height: 56px;

  border: 1px solid #cfcfcf;
  background: #ffffff;
  color: #222;

  font-size: 20px;
  line-height: 1;
  cursor: pointer;

  border-radius: 0;     /* принципиально без скруглений */
  box-shadow: none;     /* без «мягкости» */
  user-select: none;
}

.thanks-prev{
  left: 0;
  border-right: none;
}

.thanks-next{
  right: 0;
  border-left: none;
}

.thanks-btn:hover{
  background: #f2f2f2;
}

.thanks-btn:active{
  background: #e6e6e6;
}

/* ---------- ОБЕРТКА БЕЗ РАМКИ ---------- */

.thanks-viewport{
  overflow: hidden;
  border: none;
  background: none;
}

/* ---------- ТРЕК ---------- */

.thanks-track{
  display: flex;
  gap: 16px;
  padding: 12px 44px; /* отступ под кнопки */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.thanks-track::-webkit-scrollbar{
  display: none;
}

/* ---------- КАРТОЧКА ПИСЬМА ---------- */

.thanks-card{
  flex: 0 0 auto;
  width: 260px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 0;           /* строго */
  overflow: hidden;
  cursor: zoom-in;
  scroll-snap-align: start;
}

/* ---------- ИЗОБРАЖЕНИЕ ---------- */

.thanks-img{
  display: block;
  width: 100%;
  height: 340px;
  object-fit: contain;        /* как скан документа */
  background: #ffffff;
}

/* ---------- ПОДПИСЬ ---------- */

.thanks-caption{
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: #111;
  border-top: 1px solid #e6e6e6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- ТОЧКИ ---------- */

.thanks-dots{
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.thanks-dot{
  width: 16px;
  height: 2px;
  background: #cfcfcf;
  border: none;
}

.thanks-dot.is-active{
  background: #8f8f8f;
}

/* ---------- ЛАЙТБОКС ---------- */

.thanks-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.thanks-lightbox.is-open{
  display: flex;
}

.thanks-lightbox-img{
  max-width: 92vw;
  max-height: 90vh;
  background: #fff;
}

.thanks-close{
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* ---------- АДАПТАЦИЯ ---------- */

@media (max-width: 1024px){
  .thanks-card{ width: 230px; }
  .thanks-img{ height: 300px; }
}

@media (max-width: 768px){
  .thanks-btn{
    width: 36px;
    height: 60px;
    font-size: 22px;
  }

  .thanks-track{
    padding: 12px 36px;
  }

  .thanks-card{ width: 200px; }
  .thanks-img{ height: 260px; }
}

@media (max-width: 480px){
  .thanks-card{ width: 170px; }
  .thanks-img{ height: 220px; }
}
/* Центрирование кнопки "В корзину" на мобильной версии */
@media (max-width: 768px) {
    [id$="_basket_actions"] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    [id$="_basket_actions"] .btn,
    [id$="_basket_actions"] button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}
/* Кнопка "В корзину" — компактный B2B */
.bx-catalog-element .btn,
.bx-catalog-element button.btn {
    background-color: #f2f2f2;
    color: #222;
    border-radius: 2px;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 22px;   /* уменьшили */
    min-height: 40px;     /* не выбивается */
    line-height: 1.2;
    box-shadow: none;
    letter-spacing: 0.2px;
}

/* Hover — спокойный */
.bx-catalog-element .btn:hover {
    background-color: #e6e6e6;
    border-color: #bdbdbd;
    color: #000;
}
/* Поднимаем кнопку "В корзину" ближе к цене */
[id$="_basket_actions"] {
    margin-top: -8px;
}
.nom-section {
  margin: 24px 0;
}

.nom-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.nom-list {
  margin: 0;
  padding-left: 18px;
  column-count: 3;
  column-gap: 40px;
}

.nom-list li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 6px;
  line-height: 1.35;
  word-break: break-word;
}

/* Планшет — 2 столбца */
@media (max-width: 1024px) {
  .nom-list {
    column-count: 2;
  }
}

/* Телефон — 1 столбец */
@media (max-width: 768px) {
  .nom-list {
    column-count: 1;
  }
}
/* Настрой цвет под сайт (как кнопка "ЗАКАЗАТЬ") */
  :root { --te-accent:#b02a3a; --te-accent-dark:#8f2130; }

  .stock-dd-te{ margin:14px 0; clear:both; }

  .stock-dd-te > summary{ list-style:none; }
  .stock-dd-te > summary::-webkit-details-marker{ display:none; }

  .stock-dd-te__bar{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:14px 18px;
    border-radius:12px;
    cursor:pointer;
    user-select:none;
    background: linear-gradient(180deg, var(--te-accent), var(--te-accent-dark));
    color:#fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
    transition: transform .12s ease, box-shadow .12s ease;
  }
  .stock-dd-te__bar:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
  }

  .stock-dd-te__left{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    letter-spacing:.2px;
  }

  .stock-dd-te__dot{
    width:10px;
    height:10px;
    border-radius:30%;
     background: #ff8938; /* был зелёный */
    box-shadow: 0 0 0 4px rgba(92,255,122,.18);
    flex:0 0 auto;
  }

  .stock-dd-te__right{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    opacity:.95;
    white-space:nowrap;
  }

  .stock-dd-te__chev{
    display:inline-block;
    font-size:16px;
    line-height:1;
    transform: translateY(-1px);
    transition: transform .18s ease;
  }

  .stock-dd-te[open] .stock-dd-te__chev{
    transform: rotate(180deg);
  }

  .stock-dd-te__content{
    margin-top:12px;
    padding:12px;
    border-radius:5px;
    background:#fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.06);
  }

  /* Чтобы таблица не давала лишние отступы вниз */
  .stock-dd-te__content .table{ margin-bottom:0; }

  /* Мобильная адаптация */
  @media (max-width: 560px){
    .stock-dd-te__bar{ padding:12px 14px; border-radius:10px; }
    .stock-dd-te__right{ display:none; } /* оставим только "В наличии" и стрелку */
    .stock-dd-te__bar::after{
      content:"▾";
      font-size:16px;
      font-weight:700;
      margin-left:auto;
    }
    .stock-dd-te[open] .stock-dd-te__bar::after{ content:"▴"; }
 }
.b2b-banner{
  background:#f2f2f2;
  border:1px solid #e5e5e5;
  border-radius:0;
  padding:12px 14px;
  margin-top:12px;

  color:#333;
  font-size:14px;
  line-height:1.5;

  display:block;
  width:100%;
  clear:both;
}
.custom-osha-block {
    background: #f7f7f7;
    padding: 35px;
    border-radius: 6px;
    margin-top: 30px;
    box-sizing: border-box;
}

.custom-osha-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.custom-osha-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

/* --- ФИКС КНОПКИ --- */

.custom-osha-block .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
}

.custom-osha-block .button-order {
    margin-top: 15px;
    max-width: 260px;       /* ограничиваем ширину */
    width: 100%;            /* чтобы не раздвигала блок */
    box-sizing: border-box;
}

/* чтобы кнопка не выходила за серую рамку */
.custom-osha-block {
    overflow: hidden;
}

/* мобильная адаптация */
@media (max-width: 768px) {
    .custom-osha-block .button-order {
        max-width: 100%;
    }
}
/* ===== ЛЕСТНИЦА СЛОЁВ (оба меню + контент) ===== */

/* Контент (фото/слайдер/карточка) ниже меню */
.bx_item_detail,
.bx_item_detail_slider,
.detail-slider,
.product-detail,
.slider,
.carousel {
  position: relative;
  z-index: 1 !important;
}

/* Второе меню (серое) — выше контента */
.container.hidden-xs.hidden-sm,
.container.hidden-xs.hidden-sm .navbar,
#bs-example-navbar-collapse-2 {
  position: relative;
  z-index: 200 !important;
}

.container.hidden-xs.hidden-sm .dropdown-menu {
  z-index: 250 !important;
}

.container.hidden-xs.hidden-sm .navbar,
.container.hidden-xs.hidden-sm .navbar-collapse {
  overflow: visible !important;
}

/* Верхнее меню — выше второго меню */
.top-pan-menu,
.top-pan-menu .navbar,
#bs-example-navbar-collapse-1 {
  position: relative;
  z-index: 300 !important;
}

/* Выпадашка верхнего меню — самая высокая из меню */
.top-pan-menu .dropdown-menu {
  z-index: 400 !important;
}

.top-pan-menu .navbar,
.top-pan-menu .navbar-collapse {
  overflow: visible !important;
}
.consultation-wrapper {
    background: #f3f4f6; /* светло-серый фон */
    padding: 40px 30px;
    margin: 40px 0;
}

.consultation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.consultation-text h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.consultation-text p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.consultation-button {
    text-align: right;
}

.consultation-button .button-order {
    background: #4c4c4c;
    color: #fff;
    padding: 14px 28px;
    font-size: 15px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.consultation-button .button-order:hover {
    background: #ff8938
}

/* Адаптив */
@media (max-width: 768px) {
    .consultation-content {
        flex-direction: column;
        text-align: center;
    }

    .consultation-button {
        margin-top: 20px;
        text-align: center;
    }
}

.consultation-wrapper .button-order {
    border-radius: 4px !important;
}

/* Сетка */
.simple-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.simple-item img {
    width: 100%;
    display: block;
}

.simple-title {
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
}

.simple-text {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .simple-grid {
        grid-template-columns: 1fr;
    }
}

/* Таблица */
.table-responsive {
    width: 100%;
    overflow-x: visible;
    overflow-y: visible;
}

.table1.table {
    width: 100%;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
}

.table1.table tr {
    display: table-row !important;
}

.table1.table th,
.table1.table td {
    display: table-cell !important;
    padding: 8px 6px;
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    vertical-align: top;
    border: 1px solid #ddd;
}

@media (max-width: 992px) {
    .table1.table th,
    .table1.table td {
        font-size: 13px;
        padding: 6px 5px;
    }
}

@media (max-width: 768px) {
    .table1.table th,
    .table1.table td {
        font-size: 12px;
        padding: 5px 4px;
    }
}

/* Цена */
.product-item .product-item-price-current::after {
    content: " за 1 шт.";
    font-size: 13px;
    color: #888;
    font-weight: 400;
}
/* End */


/* Start:/bitrix/templates/Termo/template_styles.css?177928688353876*/
.product-item-info-container.product-item-price-container {
    text-align: right;
    position: absolute;
    z-index: 500;
    right: 0px;
    bottom: 50px;
    background: #fff;А
    padding: 5px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.vhod {
    float: right;
    text-transform: none;
    padding-left: 35px;
    padding-top: 8px;
}
.bx-soa h2 {
    background: none;
    border: 0;
}
.product-item-detail-price-current {
    margin-top: -5px;
}
.vhod:before {
    content: "\f07a";
    color: #7d8186;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    font-family: 'FontAwesome';
    margin-left: -20px;
    margin-top: -2px;
}
@media  (max-width:767px) {
.vhod {
    background: #ddd;
    padding: 10px;
    margin-right: 16px;
    border-radius: 4px;
    margin-top: 8px;
    padding-left: 30px;
}
.btn.product-item-detail-buy-button.tov-buy {
    /* margin-top: -15px; */
    min-width: 80px;
    height: 35px;
    width: 100%;
    max-width: 100%;
    padding-top: 7px;
}
div.product-item-detail-price-current {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}
}
 #auth-modal div.bx-captcha {
    display: inline-block;
    width: 100%;
    height: 80px;
    margin: 0 5px 5px 0;
    vertical-align: middle;
    overflow: hidden;
}
.product-item-detail-slider-controls-block {
    height: 50px;
    overflow: hidden;
}
a.pricelist.docx {
    background-image: url(/images/docicon.png);
    background-size: 20px;
}
.showmore {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    background: #f2f2f2;
    margin: 14px 0px 11px 0px;
    cursor:pointer;
}
.product-item-detail-slider-controls-block.showphoto {
    height: auto;
}
.model-section-title {
    margin-top: 30px;
    margin-bottom: 20px;
    background: #f5f5f5;
    padding: 10px;
    font-weight: bold;
}
.top-pan-menu input#title-search-input {
    width: 100%;
    /* font-size: 13px; */
    /* padding: 10px; */
}
.top-pan-menu div#title-search{
    width: 150px;
}
div.top-pan-menu .navbar-nav {
    float: left;
    font-size: 11px;
    margin: 0;
}
.product-item-detail-tab-content .h2 {
    margin-top: 0;
}
body nav.navbar-default .navbar-nav>li>a {
    padding-top: 7px;
    color: #333;
    padding-bottom: 7px;
    padding-left: 9px;
    padding-right: 10px;
}
.top-pan-menu .navbar-collapse {
    margin-top: 10px;
}

.top-pan-menu nav.navbar.navbar-default {
    border: none;
    margin: 0;
z-index:200;
}
ul.nav.navbar-nav.top-catal li:last-child {
    border-right: none;
}

.form-bottom {margin-top:50px;}
div .product-item-label-text, div .product-item-label-ring {z-index:90;}
.dialog-wide .modal-body .form input {
    margin-bottom: 0;
}
.modal-dialog.dialog-wide {
    width: 90%;
}

.mark-title {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
}
.mark-copy {
    margin-bottom: 30px;
    text-align: center;
    color: #777;
}
.mark-text {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}
.numbers-block {
    padding-top: 50px;
    margin-top: 10px;
    background: #fafafa;
    padding-bottom: 50px;
    margin-bottom: 10px;
}
.numbers-block p {
    text-align: center;
    font-size: 14px;
    color: #777;
}
.number {
    font-size: 41px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #b62c40;
}
div blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 15px;
    border-left: 5px solid #eee;
}
div .product-item-big-card .product-item-image-wrapper {
    margin-bottom: 10px;
}
.nophoto {
    background: url(/bitrix/templates/.default/components/bitrix/catalog/telemento/bitrix/catalog.section/.default/images/no_photo.png) no-repeat center;
    width: 100%;
    height: 120px;
    border: 1px solid #eee;
}
.catalog-section.bx-red .btn.center-block {
    max-width: 300px;
    margin: 15px auto!important;
}
.top_text_raz {
    margin-bottom: 30px;
}
.contactform_category textarea {
    height: 90px;
}
.inlist div.product-item-title {
    padding: 0px 10px;
}
div .product-item-detail-tab-link {
    height: 40px;
}
div .product-item-detail-tabs-container {
    min-height: 40px;
    margin-top: 40px;
    background: #fff;
    border-bottom: 1px solid #ededed;
}
.product-item.inlist {
    background: #f1f1f1;
    /*min-height: 280px;*/
    /* padding: 10px; */
}
.product-item {
    margin-bottom:16px;
}
div .product-item-detail-tab {
    float: left;
    min-height: 40px; 
}
.sklad-tab a.product-item-detail-tab-link {
    background: #ff8938;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.sklad-tab .product-item-detail-tab-link:hover, .sklad-tab.product-item-detail-tab.active .product-item-detail-tab-link {
    color: #fff;
text-decoration:none;
}
div a.product-item-detail-tab-link {
    color: #5f5f5f;
    padding: 0px 15px;
}
a.bx_catalog_tile_img1 img {
    border: 1px solid #f1f1f1;
}
.product-item-image-original {
    border: 1px solid #f1f1f1;
}
.product-item-label-text.product-item-label-top.product-item-label-right span {
    padding: 15px 10px;
    font-weight: normal;
    background: #ff8b2e;
}
.model .recom-text, .sklad .recom-text {
    border: none;
    overflow: hidden;
    background: none;
    color: #333;
    margin-bottom: 20px;
    height: 66px;
    padding-left: 0;
}
.model img, .sklad img {
    border: 1px solid #f1f0f0;
}
.model .recom:hover .recom-text, .sklad .recom:hover .recom-text {
    background: none;
    color: #333;
text-decoration:none;
}
.top-menu .navbar-collapse {
    padding-left: 0;
}
.top-pan-menu .nav>li {
    /*height: 37px;*/
}
.top-pan-menu .nav>li:hover {
    background: #b62c40;
    color: #333;
}
.btn.product-item-detail-buy-button.tov-buy {
    margin-top: -15px;
    min-width: 80px;
    height: 35px;
    padding-top: 7px;
}
.btn.product-item-detail-buy-button.tov-buy:hover {
    color: #fff;
}
.slogan {
    float: right;
    width: 60%;
    /* margin-top: -75px; */
    margin-left: 0;
    margin-top: 20px;
    font-size: 12px;
    color: #7d8186;
    text-transform: uppercase;
    line-height: 20px;
}
.logo {
    float: left;
}

.top-pan-menu .navbar-collapse {
    padding: 0;
}
.titlesubmenu {
    position: relative;
    z-index: 600;
}
div .top-catal li.dropdown>a {
    height: 50px;
}
.titlesubmenu a {
    z-index: 600;
}
p.pull-left.visible-xs .btn.btn-primary {
    background: #ff8938;
    border-color: #e6936a;
    margin-bottom: 10px;
}
div.top-pan-menu .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 5px;
    text-transform: uppercase;
    color: #333;
}
div .bx-filter .bx-filter-parameters-box-title span {
    color: #777;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #555;
    background-color: #e7e7e7;
    height: 50px;
}
.bx-breadcrumb .bx-breadcrumb-item span {
    color: #777;
}
div .navbar-default .navbar-nav>li>a:focus, div .navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: #ff8b3c;
}
div.menu-sitemap-tree2 ul ul li .item-text.select12 a {
    color: #fff;
}
nav.navbar-default .navbar-nav>li:nth-child(2)>a, nav.navbar-default .navbar-nav>li:nth-child(3)>a, nav.navbar-default .navbar-nav>li:nth-child(6)>a {
    padding-top: 15px;
}
div .navbar-default .navbar-nav>.open>a, div .navbar-default .navbar-nav>.open>a:focus, div .navbar-default .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: #ff8b3c;
}
.top-pan-menu .navbar-inverse .navbar-collapse {
    background: none;
    border: none;
}
.top-pan-menu .navbar-inverse {
    background: none;
    border: none;
}
.top-pan-menu .navbar-inverse {
    background: none;
    border: none;
    min-height: 25px;
    margin-bottom: 0;
}
input#title-search-input {
    padding: 5px;
    background: #f4f4f4 url(/images/lupa-sm.png) no-repeat right 5px center;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
}
div .product-item {
    margin-bottom: 0px;
    padding-top: 0px;
}
form#main-search {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 2px;
    margin-bottom: 2px;
}
.top-pan-menu {
       /* background: linear-gradient(90deg, rgba(255,139,60,1) 0%, rgba(255,139,60,1) 70%, rgba(51,51,51,1) 70%, rgba(51,51,51,1) 100%);*/
    padding: 0;
background:  #eee;
}
.navbar-nav>li>.dropdown-menu {
    padding-top: 20px;
}
.pictmenu {
    padding: 0!important;
}
.col-lg-9.submenu {
    padding: 0;
    margin: 0;
    padding-left: 10px;
}
.submenu {
    margin-left: 25px;
margin-bottom:30px;
margin-top:5px;
}
.submenu ul {
    color: #ff8938;

}
.top-catal .submenu ul {
    padding: 0;
    width: 110%;
    margin-left: 0px; 
    padding-left: 15px;
}
.top-catal span.caret {
    display: none;
}
div .top-catal ul.dropdown-menu a {
    color: #fff;
    padding: 0;
}
div .top-catal li.dropdown {
    max-width: 147px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    margin: auto 0;
    height: 50px;
    vertical-align: middle;
    border-right: 1px solid #fff;
}
div .top-catal .navbar-default .navbar-nav>li>a {
    color: #fff;
}
.top-catal .submenu ul {
    
}
.top-catal .col-lg-12.submenu {
    max-height: 240px;
    overflow: hidden;
    padding-left: 0;
    margin-left: 0;
    margin-top: -70px;
}

.top-catal .col-lg-12.submenu::before {
    content: "";
    height: 80px;
    display: block;
    position: relative;
    width: 110%;
    top: 170px;
    margin-top: 0px;
    background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    transform: matrix(1, 0, 0, -1, 0, 0);
}
.top-catal .col-lg-12.submenu:hover {
    overflow: visible;
    max-height: initial;
margin-top:10px;
}
.top-catal .col-lg-12.submenu:hover::before {
    display:none;
}
.submenu li {

}
div.titlesubmenu a {
    padding: 0;
    vertical-align: middle;
}
ul.dropdown-menu ul li a {
    font-size: 13px;
}

.logo {
    margin-bottom: 15px;
    margin-top: 15px;
    width: 120px;
    margin-left: 0px;
}
div.bx-section-desc h3 {
    border: none;
    background: #fff;
    font-size: 20px;
    padding: 10px;
}
div.bx-section-desc h2 {
    background: #fff;
    padding: 10px;
}
.top-about {
    padding: 10px;
    background: #fff297;
    text-align: center;
    background-size: 60px;
    /* color: #fff; */
}
.inputdata input {
    padding: 7px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
.yout-ref {
    padding-left: 35px;
    padding-top: 5px;
    height: 35px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-right: 7px;
    float: left;
    background: url(/images/yt.png) no-repeat left top;
    background-size: 31px;
}
a.vibercall:active img, a.vibercall:hover img, a.watcall:active img, a.watcall:hover img {
    filter: brightness(1.2);
}
.fb-ref {
    width: 30px;
    height: 29px;
    float: left;
    background: url(/images/fb.png);
    background-size: contain;
    margin-top: 10px;
    margin-right: 10px;
}
.inst-ref {
    width: 30px;
    height: 30px;
    float: left;
    background: url(/images/inst.png);
    background-size: contain;
    margin-top: 10px;
    margin-right: 10px;
}
.top-pan div.row div .tel_top_region.top-icon.top-form {
    margin-top: 17px;
    padding-right: 0;
    margin-right: 0px;
}
div .tel_top_region.top-icon.top-phone .top-info {
    margin-top: 10px;
}
.top-pan div.row div .tel_top_region.top-icon.top-order {
    margin-top: 10px;
}
.top-pan div.row div .tel_top_region {
    margin-top: 20px;
    padding-top: 0px;
    margin-bottom: 7px;
}
.addr {
    background: url(/images/addr1.png) no-repeat top left 3px;
    background-size: 18px;
text-align: left;
    padding-left: 38px;
}
.work {
    background: url(/images/work.png) no-repeat top left;
    background-size: 18px;
    text-align: left;
    padding-left: 38px;
    margin-left: -8px;
    margin-bottom: 5px;
}
.address div {
    float: left;
    margin-right: 20px;
    padding-left: 40px;
}
.videocont {
    background: #353535;
    color: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    /* padding: 10px 0px; */
}
.video-title {
    padding: 10px;
    /* border-radius: 10px; */
}
.modal-body .form input {
    margin-bottom: 40px;
}
.howtp {
    background: #e3e0db;
    /* padding: 20px; */
    padding-top: 50px;
    font-size: 20px;
}
.howtp .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border: 1px solid #fff;
}
.howtp h2 {
    margin-top: 60px;
    margin-left: 15px;
    margin-right: 15px;
    background: #ffb516;
    border: none;
    /* padding: 0; */
    font-weight: bold;
    color: #fff;
}
.howtp p {
    padding: 30px;
}
.tpst p {
    margin-bottom: 50px;
}
.top-info img {
    width: 40px;
    margin-left: 15px;
}
.top-info a:hover, .top-info a:visited {
    text-decoration: none;
}
.banners1 div#carouselExampleIndicators {
    /* margin-top: -10px; */
    top: -45px;
}
.calc1 {
    background: #ddd;
    padding: 20px;
    border-radius: 10px;
}
div#vd_calc {
    background: #ddd;
    padding: 20px;
    border-radius: 10px;
    padding-bottom: 80px;
}
div#vd_calc .input-container {
    margin-bottom: 30px;
}
a#btn-raschet {
    background: #ff8b2e;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
}
.calc1 input[type="button"] {
    background: #ff8b2e;
    border: none;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
}
.formt label {
    display: inline-block;
    max-width: 90%;
    margin-bottom: 5px;
    font-weight: 700;
    padding-left: 5px;
    vertical-align: top;
}
.tp_descript {
    min-height: 60px;
}
.formt select option {
    color: #333;
}
.formt select {
    min-width: 210px;
    color: #888;
}
.formt textarea {
    width: 90%;
    height: 150px;
}
.formt select option:first-child {
    display: none;
    /* font-size: 10px; */
    /* background: #ddd; */
}
.formt .clearleft {
    margin-bottom: 15px;
}
.art-main .product-item-info-container {
    display: none!important;
}
.news-detail-share {
    margin-top: 15px;
}
.art-main .product-item-image-wrapper {
    display: block;
    padding-top: 30%;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
div.bx-red .product-item-label-text span, .bx-red .product-item-label-ring {
    background-color: #b62c40;
}
.product-item-big-card div.product-item-title a {
    font-size: 15px;
}
.top-main-tovar dl.product-item-properties {
    display: none;
}
span.oldprice {
    text-decoration: line-through;
    font-size: 25px;
}
.blockgr {
    padding-top: 50px;
    /* margin-top: 50px; */
    padding-bottom: 50px;
    background: #f5f5f5 url(/images/f1.png);
    /* margin-bottom: 50px; */
    background-size: cover;
}
.blocks h4 {
    border: none;
min-height: 53px;
    background: #c90722;
    font-size: 15px;
    text-shadow: none;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
}
.blocks h3 {
    text-align: center;
    border: none;
    box-shadow: none;
    text-transform: uppercase;
}
.ar li p {
    text-align: left;
}
.ar {
    background: #eee;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.h1-block.slidermain {
    background: url(/images/slider03.jpg) no-repeat top center;
    background-size: cover;
    margin-top: -65px;
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 400px;

}
h2.bounceInLeft.wow {
    background: rgba(255,255,255,0.7);
    font-size: 40px;
    max-width: 800px;
    /* color: #fff; */

}
.h1-block.slidermain p {
    font-size: 25px;
    max-width: 800px;
  /*  background: rgba(255,255,255,0.6);*/
    padding: 10px;

}
h2.bounceInLeft.wow b {
    color: #ac1027;
}
.button-order {
    float: left;
    background: #b62c40;
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
    margin: 0 auto;

}
.logo-foot img {
    width: 40px;
    float: left;
    margin-right: 10px;
}
.main-goods a.bx_catalog_tile_img1 img {
    min-height: 145px;
}
div.tel_top_region {
    font-size: 20px;
    text-align: right;
    padding-right: 20px;
}
.top-main a {
    color: #181818;
}
.top-order .top-main {
    padding-top: 10px;
    font-size: 12px;
    color: #262626;
    font-family: circle;
    text-transform: uppercase;
}
.top-order .top-info a {
    font-size: 14px;
    padding-top: 5px;
    line-height: 25px;
    color: #171717;
    font-family: Circle;
    text-transform: uppercase;
}
.top-main a:focus, .top-main a:hover {
    color: #05a0e6;
    text-decoration: none;
}
.top-phone .top-info a {
    color: #0082be;
    font-size: 12px;
    /* padding-left: 5px; */
    font-family: circle;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
}
.tel_top_region.top-icon.top-order {
    margin-top: 20px;
    font-size: 14px;
    text-align: left;
    padding-left: 30px;
    color: #444;
}
.tel_top_region.top-icon.top-order::before {
    float: left;
    margin-left: -40px;
    content: "\2709";
    font-family: Glyphicons Halflings;
    font-size: 20px;
    color: #ff8938;
    margin-top: 10px;
}
.top-phone .top-main {
    font-family: Circle;
    font-size: 16px;
    font-weight: normal;

}
.tel_top_region.top-icon.top-phone {
    margin-top: 20px;
    padding-left: 40px;
    padding-right: 0px;
    font-size: 16px;
    text-align: left;
    color: #aaa;

}
.tel_top_region.top-icon.top-phone::before {
    float: left;
    margin-left: -40px;
    content: "\e145";
    font-family: Glyphicons Halflings;
    font-size: 25px;
    color: #ff8938;
    margin-top: 0px;
}
.tel_top_region.top-icon.top-phone .top-info {
    font-size: 12px;
    font-family: circle;
    text-transform: uppercase;
    margin-top: 30px;
color: #262626;
}
.tel_top_region.top-icon.top-form {
    margin-top: 30px;
}
.top-pan {
    background: #fff;
    padding-bottom: 30px;
    margin-bottom: -30px;
}

a div.tel_top_region {
    color: #3c414c;
        font-family: Circle;
}
a div.tel_top_region b {

    color: #ef9a0b;
}
a div.tel_top_region span {
    font-size: 18px;

    color: #888888;
}
.al-right {
    text-align: right;
}
.top_mail {

    line-height: 30px;
    /* margin-top: 10px; */
    /* padding-top: 20px; */
}
div a {

    text-decoration: none;
    color: #607d8b;
}
div a:hover {

    text-decoration: underline;
}


/*==================Slider========================*/
img.slider-main {
    margin-top: -50px;
}

/*==================MENU========================*/
div .navbar-nav>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
}
nav.navbar.navbar-default {
background: #eee;
    border-color: #ddd;
    font-family: circle;
    text-transform: uppercase;
z-index: 100;
}
ul.dropdown-menu ul li a {
    color: #b7bdca;
    text-transform: none;
}
nav.navbar-default .navbar-nav>li>a {

    padding-top: 7px;
    color: #333; 
    padding-bottom: 7px;
}
div .navbar-default .navbar-nav>.active>a, div  .navbar-default .navbar-nav>.active>a:focus, div  .navbar-default .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: #ff8b3c;
    border-radius: 2px;
}
/*==================BUTTONS========================*/
.button-second {
    background: #ff8938;
    padding: 15px 10px;
    font-size: 12px;
    text-transform: uppercase;
    /* margin-top: 30px; */
    color: #fff;
border-radius: 10px;
text-align:center;
}
.button-second:hover {
    background: #b62c40;
text-decoration:none;
    color: #fff;
}

a:hover .button-second {
text-decoration:none;
}
a:hover .button-main {
text-decoration:none;
}
.button-main {
    background: #b62c40;
    padding: 15px 10px;
    font-size: 12px;
    text-transform: uppercase;
    /* margin-top: 30px; */
    color: #fff;
border-radius: 10px;
text-align:center;
}
.button-main:hover {
    background: #d6364e;
text-decoration:none;
    color: #fff;
}

/*=========футер=========*/
ul.footer-links li {
    list-style: none;
    margin-top: 5px;
}
.zag1 {
    color: #363939;
    width: 100%;
    padding-bottom: 7px;
    /* margin: 15px; */
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 8px;
    text-align: left;
    /* background: url(/images/str.png) center bottom no-repeat; */
    background-size: 50%;
    border-bottom: 1px solid #f4f4f2;

}
div#footer a {
    color: #333;
}   
div#footer a:hover {
    color: #ffffff;
} 
div#footer-copyright {
    background:  #969696 ;
    color: #fff;
    padding-top: 5px;
}   
div#footer-copyright p {
    text-align: center;
}   
div#footer {
    background: #ddd ;
    padding-top: 40px;
    /* border-top: 10px solid #d0d0d0; */
    padding-bottom: 40px;
    z-index: 100;
    position: relative;
}
.logo-foot {
    color: #fff;
    /* text-align: left; */
}
div.foot2, div.foot3 {
    padding-left: 30px;
    padding-right: 30px;

}
.foot1 .glyphicon-envelope:before {
    content: "\2709";
    position: absolute;
    margin-top: -18px;
}

.foot1 {

}

ul.footer-links {
    margin: 0;
    padding: 0;
}
div.foot3 div.col-lg-6.col-md-6.col-sm-6.col-xs-6 {
    padding: 0;
}
.tel-foot span {
    font-size: 16px;
    margin-right: 15px;
    color: #f2a907;
}
.email-foot span {
    font-size: 25px;
    color: #969696;
    /* position: relative; */
    /* margin-top: 10px; */
}
.email-foot {
    color: #ffffff;
    text-align: left;
    margin-top: 15px;
}
.foot2 span, .foot3 span {
    color: #ff8938;
    padding-right: 10px;
    font-size: 12px;
}
.email-foot a {
    line-height: 40px;
    padding-bottom: 15px;
    margin-top: -10px;
    padding-top: 10px;
}
.logo-foot1 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 2px 2px black;
}

.foot1 img {
    width: 150px;
    margin-bottom: 10px;
}
.clearleft {clear:left;}
.clearright{clear:right;}
.block-consult h3 {
    color: #fff;
    text-align: center;
    border: none;
    margin-bottom: 50px;
}
/*====================CATALOG===========================*/

.bx_catalog_tile .bx_catalog_tile_category_title {
    margin-top: 10px;
    font-size: 25px;
    background: none;
    padding: 0;
    border: none;
}
    /*
.bx_catalog_tile .bx_catalog_tile_category_title {
    margin-top: 10px;
    font-size: 25px;
    padding: 0 15px;
 border-bottom: 0; 
}*/
.bx_catalog_tile_title1 {
    font-size: 14px;
    padding: 5px;
    margin-top: 0;
    background: #b62c40;
    border-left: none;
    border-top: 5px solid #ff8b2e;
    min-height: 30px;
    color: #fff;
    white-space: nowrap; 
    text-overflow: ellipsis;
    overflow: hidden; 
}
.bx_catalog_tile_title1 a {
    color: #fff;
}
a.product-item-image-wrapper {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-top: 53%;
    width: 100%;
    transition: all 300ms ease;
}

div.product-item-detail-slider-controls-image {
    width: 65px;
    height: 37px;
    background-color: #fff;
    position: relative;
    text-align: center;
    display: inline-block;
    outline: 1px solid #c0cfda;
    cursor: pointer;
    overflow: hidden;
}
div.product-item-detail-info-section {
    padding: 0;
}
.tovar-min-price {
    float: left;
    padding: 15px;
    font-size: 20px;
    color: #888;
    /* font-style: italic; */
}
.tovar-min-price b {
    font-size: 35px;
    font-weight: bold;
    padding-left: 10px;
    color: #ff8938;
}
.bottom_pan {
    background: #eee url(/images/f1.png) bottom repeat-y;
    padding-top: 50px;
    padding-bottom: 50px;
}
.tov-buy {
    float: right;
    margin-top: 15px;
    min-width: 150px;
    text-align: center;
    cursor: pointer;
}

.popup_order, .popup_order1, .popup_order3, .popup_order2 {
    cursor:pointer;
}
.tov-buy.button-main.popup_order2 {
    margin-right: 30px;
    background: #ff8938;
}
.tov-buy.button-main.popup_order2:hover {
    background: #ff9a55;
}
a.product-item-detail-tab-link:after {
    background: #ff8938;
}
a.product-item-detail-tab-link {
    color: #5f5f5f;
    padding: 15px;
}
.bx-red div.product-item-detail-slider-controls-image.active {
    outline-color: #ff8938;
}
div.product-item-detail-tab-content h3 {
    /* border: 1px solid; */
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

table.table>tbody>tr>th, table.table>tfoot>tr>th, table.table>thead>tr>th {
    background: #ddd;
    border: 1px solid #fff;
}
table.table>tbody>tr>td, table.table>tfoot>tr>td, table.table>thead>tr>td {
    border: 1px solid #ddd;
}
.product-item-info-container .row {
    margin-bottom: 20px;
    margin-top: 20px;
}
div.product-item-title {
    overflow: unset;
    white-space: unset;
    font-size: 15px;
    /* background: #ddd; */
}
.bx-section-desc {
    padding-top: 40px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-bottom: 40px;
    background: #eee;
}
span.product-item-image-slide {
    border: 1px solid #ddd;
}
.recom-text {
    background: #b62c40;
    color: #fff;
    height: 50px;
    padding: 5px;
    border-left: 5px solid #ff8b2e;
}
.recom:hover .recom-text {
    text-decoration: none;
    background: #ff8b2e;
}
.recom:hover img {
    filter:brightness(1.1);
}
.main-goods {
    padding: 60px 0;
}
.bx_catalog_tile .col-xs-12:hover img {
    filter: brightness(1.1);
}

.bx_catalog_tile .col-xs-12:hover .bx_catalog_tile_title1{
    text-decoration: none;
    background: #ff8b2e;
}
.bx_catalog_tile .col-xs-12:hover .bx_catalog_tile_title1 a{
    text-decoration: none;
    color: #fff;
}
.product-item-properties dd {
    width: 100%;
}
div.bx-filter.bx-red .bx-filter-section {
    background: #f1f1f1;
}
div.bx-filter.bx-red .btn-themes {
    background-color: #b62c40;
    border-color: #af1e33;
    color: #FFF;
}
a.pricelist {
    padding: 10px 0px 10px 30px;
    background: url(/images/pdf.png) no-repeat left center;
    background-size: 25px;
    margin-bottom: 10px;
}
.pricelist_section {
    margin-bottom: 10px;
    margin-top: 10px;
}
div.bx-filter {
    width: 100%;
    min-width: 170px;
    font-family: circle;
    margin-bottom: 20px;
}
.bx_catalog_tile div.col-xs-12 {
    margin-bottom: 15px;
}
.recom {
    margin-bottom: 15px;
}
/*=========поиск=========*/

.search-form{
background: url("/images/search_new.png") no-repeat scroll 0 0 transparent;
      margin-bottom: 8px;
    height: 34px;
    overflow: hidden;
    position: relative;
    width: 222px;
margin-top:10px;
}

#main-search .form-control {
    background: #bac0ce none repeat scroll 0 0;
}

#main-search .search-submit:hover {
  /*  background: url("/images/search-button.png") no-repeat scroll 4px -23px transparent;*/
}

.search-name
{
	text-align:right;
	font-size:11px;
	font-weight:bold;
	color:#3C414C;
	padding-right:30px;
}
#main-search .btn.btn-default {
    font-family: "Glyphicons Halflings"!important;
    color: #3C414C;
    /* font-family: Verdana; */
    font-size: 13px;
    font-weight: normal;
    padding: 8px;
    text-shadow: 0 0 0;
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
    left: -5px;
}

input.search-suggest {
    background: #f1f1f1;
    width: 150px;
    border: 1px solid #e0e0e0;
    margin-right: -30px;
    padding: 10px;
    border-radius: 10px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    color: #777;
}
input.search-suggest:focus {
    background: #eee;
    width: 250px;
    margin-right: -30px;
outline: none;
}

div#title-search {
    float: right;
    width: 300px;
}

/*=============FORM===========================*/
.modal-body input, .modal-body textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #dddddd;
    background: #d2d2d2;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#myModal1 input.button-main {
    padding: 12px;
    margin-top: 20px;
}
h3#myModalLabel {
    border: NONE;
    box-shadow: none;
    color: #25292d;
}
.form-bottom input, .form-bottom textarea {
    width: 100%;
    padding: 21px;
    margin-bottom: 20px;
    border: 1px solid #9e9e9e;
    border-radius: 10px;
}
.form-bottom {
    padding: 60px 0px;
    background: #ffffff url(/images/f8.jpg);
}



.main-about {
    padding: 50px 0;
    background: #eee url(/images/f1.png) bottom repeat-y;
}

.top_block {
    background: url(/images/f1.png) bottom;
    padding: 10px 0px 50px 0px;
    border-bottom: 1px solid #eee;
}
.white_block {
    padding: 50px 0px;
}
a.price div {
    background: #f1f1f1;
    padding: 5px;
}




/*==========================ADAPTIVE============================*/
@media all and (min-width:768px) {
.top-pan-menu nav.navbar-default .navbar-nav>li:nth-child(2)>a, .top-pan-menu nav.navbar-default .navbar-nav>li:nth-child(3)>a, .top-pan-menu nav.navbar-default .navbar-nav>li:nth-child(6)>a {
    padding-top: 7px;
}
.top-pan-menu .navbar-default .navbar-nav>.active>a, 
.top-pan-menu .navbar-default .navbar-nav>.active>a:focus, 
.top-pan-menu .navbar-default .navbar-nav>.active>a:hover {
    color: #ff8938;
    background-color: transparent;
    height: auto;
    font-weight: bold;
}
.top-pan-menu .nav>li:hover {
    background: transparent;
    color: #ff8938;
}
div.top-pan-menu .navbar-default .navbar-nav>li>a:focus, div.top-pan-menu .navbar-default .navbar-nav>li>a:hover {
    color:#ff8938;
    font-weight: bold;
    background-color: transparent;
}
}
@media all and (max-width:1200px) {

.tov-buy.button-main {
    padding: 10px;
    width: 80px;
    min-width: 120px;
}
}
@media all and (max-width:992px) {

.top-pan-menu .nav>li:nth-child(4),
.top-pan-menu .nav>li:nth-child(5),
.top-pan-menu .nav>li:nth-child(6) {
    display: none;
}

div.banners1 div#carouselExampleIndicators {
    top: 0;
}
div.tel_top_region.top-icon.top-phone .top-info, div.tel_top_region.top-icon.top-phone .top-main,
div.tel_top_region.top-icon.top-order .top-info, div.tel_top_region.top-icon.top-order .top-main {
    font-size: 13px;
    /* text-transform: none; */
}

div.top-order .top-info a {
    font-size: 13px;
    padding-top: 5px;
    line-height: 18px;
    color: #0084c5;
    font-family: Circle;
    text-transform: none;
}
a.button-main {
    padding: 15px 5px;
    font-size: 11px;
}
nav.navbar.navbar-default {
    font-size: 10px;
}
}
@media all and (max-width:720px) {
}

/* Small devices (tablets, 768px and up) */

@media (max-width: 768px) {
.top-pan-menu .nav>li:nth-child(4),
.top-pan-menu .nav>li:nth-child(5),
.top-pan-menu .nav>li:nth-child(6) {
    display: block;
}

.top-pan-menu ul.nav.navbar-nav {
    width: 100%;
}
.bx-catalog-element h1 {
    margin-top: 45px;
}
div.foot1 {
padding-left: 30px;
}

.top-pan-menu ul.nav.navbar-nav {
    margin-top: 0px;
}
.top-pan-menu nav.navbar.navbar-default {
    margin-bottom: 0;
    margin-left: -15px;
    margin-right: -15px;
}
.top-pan-menu ul.nav.navbar-nav li {
    border-bottom: 1px solid #ddd;
}
div.top-pan-menu .nav>li:hover {
    background: transparent;
    color: #333;
}
div.top-pan-menu li.cols-menu ul {
    display: none;
}
.top-pan-menu ul.nav.navbar-nav li a {
    padding: 10px;
    padding-left: 12px;
}
.top-pan-menu ul.nav.navbar-nav li ul li a {
    padding: 10px;
    padding-left: 22px;
}
.top-pan-menu .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    color: #777;
    white-space: unset;
}
.top-pan-menu .navbar-nav .open .dropdown-menu {
    position: initial;
    float: none;
    width: auto;
    margin-top: 0;
    padding-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.top-pan-menu div .navbar-default .navbar-nav>.active>a, 
.top-pan-menu div .navbar-default .navbar-nav>.active>a:focus, 
.top-pan-menu div .navbar-default .navbar-nav>.active>a:hover {
    color: #333;
    background-color: transparent;
    border-radius: 0px;
    font-weight:bold;
}
.top-pan-menu nav.navbar.navbar-default {
    font-size: 13px;
}
.top-pan-menu ul.dropdown-menu {
    text-transform: none;
}
.top-pan-menu ul.dropdown-menu li:last-child {
    border: none;
}
.top-pan-menu li.active {
    background: #ddd;
}
.top-pan-menu .logo {
    max-width: 60px;
    margin-top: 8px;
}
.top-pan-menu .navbar-nav {
    margin: 0;
}
.top-pan-menu div#title-search {
    float: none;
    padding-left: 0px;
    width: 100%;
}
.top-pan-menu form#main-search {
    border: none;
    width: 100%;
    margin: 12px 0px;
}
.top-pan-menu input#title-search-input {
    width: 100%;
margin-top: 10px;
    /* font-size: 13px; */
    /* padding: 10px; */
}
.phones-top {
    float: right;
    margin-right: 15px;
}
.phones-top div {
    float: left;
    margin-left: 15px;
}
.phones-top a {
    font-size: 16px;
    color: #333;
}
.phones-top-phone {
    margin-top: 16px;
}
.phones-top-messenger {
    margin-top: 10px;
}
.top-pan-menu .logo {
    max-width: 60px;
    margin-top: 8px;
    margin-bottom: 0;
}
div.bx-breadcrumb {
    margin: 12px;
}
body div h1 {
    font-size: 18px;
    border-left: 5px solid #b62c40;
}
body div h2 {
    border-left-width: 5px;
    font-size: 18px;
}
body div h3 {
    font-size: 16px;
    border-left-width: 5px;
    margin-left: 3px;
    box-shadow: -3px 0px 0px #c90722;
}
body div h4 {
    font-size: 16px;

}
div.banners1 div#carouselExampleIndicators {
    top: 0;
}
.tel_top.col-lg-6.col-md-6.col-sm-12.col-xs-12 {
    background: none;
text-align:right;
    padding-left: 0px!important;
    margin-top: -15px;
    margin-bottom: 10px;
}
  .row-offcanvas {
    position: relative;
    -webkit-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
  }

  .row-offcanvas-right {
    right: 0;
  }

  .row-offcanvas-left {
    left: 0;
  }

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -50%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -50%; /* 6 columns */
position: absolute;
  }

  .row-offcanvas-right.active {
    right: 50%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 50%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 50%; /* 6 columns */}

 .inputfile {width:100%;}

 .inputtext {width:100%;}
  }

@media (max-width: 360px) {
div .banner-header {
    font-size: 20px;
   
}
.tel_top.col-lg-6.col-md-6.col-sm-12.col-xs-12 {
 font-size:14px;
}
div .banner-text {

    font-size: 16px;

}

  .row-offcanvas-right
  .sidebar-offcanvas {
    right: -80%; /* 6 columns */
  }

  .row-offcanvas-left
  .sidebar-offcanvas {
    left: -80%; /* 6 columns */
  }

  .row-offcanvas-right.active {
    right: 80%; /* 6 columns */
  }

  .row-offcanvas-left.active {
    left: 80%; /* 6 columns */
  }

  .sidebar-offcanvas {
    position: absolute;
    top: 0;
    width: 80%; /* 6 columns */
  }

 .inputfile {width:100%;}

 .inputtext {width:100%;}

.dost1 {
    float: left;
    padding-top: 85px;
    text-align: center;
    width: 100%;
}
}
.bx_catalog_tile .col-xs-12 {
    min-height: 200px;
}
#chart .col-lg-3 img {
    margin: 20px 0px;
    border: 1px solid #ddd;
}

.header-line b {
    font-size: 16px;
    text-transform: uppercase;
    color: #313131;
}
a.inv {
    color: #333;
    text-decoration: none;
}
a.inv:hover {
    color: #333;
    text-decoration: none;
    cursor: text;
}
a.inv:visited {
    color: #333;
    text-decoration: none;
    cursor: text;
}
div.bx_catalog_tile {
    margin-bottom: 0px;
}
a.bx_catalog_tile_img1 img {
    /*min-height: 145px;*/
}
p.zagol {
    background: #ff8b2e;
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
}
.news-item {
    margin-bottom: 50px;
    color: #888;
}
.moreRef {
    float: right;
    margin: 10px;
    padding: 0;
    background: none;
    border-radius: 0px;
}
.moreRef a {
    color: #343434;
    text-transform: uppercase;
    font-size: 11px;
    text-decoration: underline;
}
.header-line {
    background: none;
    margin-top: 10px;
    /* border-top: 5px solid #fff; */
    margin-bottom: 10px;
    padding: 0;
    border-left: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
div.news-list img.preview_picture {
    border: 1px solid #eee;
    border-radius: 10px;
}
div.news-list img.preview_picture:hover {
    filter: brightness(1.1);
}

.moreRef:hover {
    color: #ff8938;
}
@media screen and (max-width: 767px) {
  /* скрываем именно ссылку “Нет в наличии” */
  .product-item-button-container > a[id$="_not_avail"] {
    display: none !important;
  }
}

/* Фон на всю ширину страницы */
.cta-bar{
  background:#f3f4f6;          /* светло-серый */
  width:100%;
}

/* Внутренняя раскладка */
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 0;
  flex-wrap:wrap;              /* чтобы на узких экранах элементы переносились */
}

/* Заголовок/текст */
.p-heaer{
  margin:0;
  font-weight:600;
  line-height:1.3;
  font-size:clamp(18px, 2.2vw, 28px);
}

/* Кнопка */
.btn-cta{
  display:inline-block;
  padding:12px 22px;
  border-radius:5px;
  background:#111;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}
.btn-cta:focus-visible{
  outline:2px solid #111;
  outline-offset:3px;
}

/* Мобилки: по центру и на всю ширину кнопка */
@media (max-width:768px){
  .cta-inner{
    text-align:center;
    justify-content:center;
  }
  .btn-cta{
    width:100%;
    max-width:420px;
  }
}
/* Кнопка справа с отступом от правого края */
.cta-inner{
  justify-content:flex-start;        /* элементы в ряд слева направо */
}

.btn-cta{
  margin-left:auto;                   /* уезжает вправо */
  margin-right:clamp(16px, 4vw, 48px);/* и чуть левее от правого края */
  order:initial;                      /* на случай, если раньше ставили order:-1 */
  background:#f37021;                 /* оранжевая */
  color:#fff;
  border-radius:0;                    /* без скруглений */
}

/* На мобильных — без принудительного прижатия к правому краю */
@media (max-width:768px){
  .cta-inner{ justify-content:flex-start; }
  .btn-cta{
    margin-left:0;
    margin-right:0;
    width:100%;
    max-width:420px;
  }
}
/*МОДАЛКА ДЛЯ КГТ*/
.lamp-link{
    color:#0b234f;
    text-decoration:none;
    cursor:pointer;
}
.lamp-link:hover{
    text-decoration:underline;
}

.lamp-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:9999;
}
.lamp-modal.is-open{
    display:block;
}

.lamp-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.lamp-box{
    position:relative;
    max-width:1200px;
    margin:40px auto;
    background:#fff;
    z-index:2;
}

.lamp-close{
    position:absolute;
    top:10px;
    right:10px;
    width:40px;
    height:40px;
    background:#eee;
    text-align:center;
    line-height:40px;
    font-size:26px;
    cursor:pointer;
}

.lamp-content{
    display:flex;
    gap:40px;
    padding:40px;
}

.lamp-left,
.lamp-right{
    width:50%;
}

.lamp-block{
    margin-bottom:20px;
}

.lamp-label{
    font-size:13px;
    font-weight:700;
    color:#666;
    margin-bottom:8px;
}

.lamp-block img{
    border:1px solid #ddd;
    display:block;
}

.lamp-right h3{
    font-size:28px;
    margin:0 0 20px 0;
    color:#0b234f;
    line-height:1.15;
}

.lamp-spec{
    margin-bottom:10px;
    font-size:16px;
    line-height:1.5;
}

.lamp-desc{
    margin-top:20px;
    color:#555;
    font-size:16px;
    line-height:1.6;
}

body.modal-open{
    overflow:hidden;
}

@media (max-width:768px){
    .lamp-box{
        margin:10px;
    }
    .lamp-content{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }
    .lamp-left,
    .lamp-right{
        width:100%;
    }
    .lamp-right h3{
        font-size:22px;
        padding-right:40px;
    }
}
.lamp-left {
    width: 46%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Карточка */
.lamp-block {
    background: #fafafa;
    border: 1px solid #e6e6e6;
    padding: 16px;
}

/* Заголовок */
.lamp-label {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Картинки */
.lamp-block img {
    width: 100%;
    height: 180px; /* фикс высота */
    object-fit: contain;
    background: #fff;
    display: block;
}
.img-zoom {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.img-zoom.active {
    display: flex;
}

.img-zoom img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.img-zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}
.lamp-box {
    max-width: 900px; /* было 1200 */
}
.lamp-left {
    width: 40%;
}

.lamp-right {
    width: 60%;
}
@media (max-width: 768px) {

.table1 thead {
    display: none;
}

.table1,
.table1 tbody,
.table1 tr,
.table1 td {
    display: block;
    width: 100%;
}

.table1 tr {
    margin-bottom: 10px;
    padding: 0;
    border: none;
    background: transparent;
}

.table1 td {
    padding: 6px 8px;
    text-align: left;
    border: none;
    position: relative;
}

/* Подписи к значениям */
.table1 td:nth-child(1):before { content: "Модель"; font-weight: 600; display: block; color: #777; }
.table1 td:nth-child(2):before { content: "Длина, мм"; font-weight: 600; display: block; color: #777; }
.table1 td:nth-child(3):before { content: "Ширина, мм"; font-weight: 600; display: block; color: #777; }
.table1 td:nth-child(4):before { content: "Мощность, кВт"; font-weight: 600; display: block; color: #777; }
.table1 td:nth-child(5):before { content: "Напряжение, В"; font-weight: 600; display: block; color: #777; }

}
/* Адаптив таблицы */
@media (max-width:768px){

table.table1.table{
    width:100%;
    display:table;
    table-layout:fixed;
}

table.table1.table th,
table.table1.table td{
    padding:8px;
    font-size:13px;
    word-break:break-word;
    white-space:normal;
}

table.table1.table th:nth-child(1),
table.table1.table td:nth-child(1){
    width:55%;
}

table.table1.table th:nth-child(2),
table.table1.table td:nth-child(2){
    width:45%;
}

}
@media (max-width:768px){

table.table1.table td:before,
table.table1.table th:before{
    content:none !important;
    display:none !important;
}

table.table1.table{
    width:100% !important;
    display:table !important;
    table-layout:fixed;
}

table.table1.table thead{
    display:table-header-group !important;
}

table.table1.table tbody{
    display:table-row-group !important;
}

table.table1.table tr{
    display:table-row !important;
}

table.table1.table th,
table.table1.table td{
    display:table-cell !important;
    width:auto !important;
    padding:8px !important;
    font-size:13px;
    white-space:normal !important;
    word-break:break-word;
}

}
/*ГЛАВНАЯ РЕДАКТИРОВАНИЕ*/
.te-about-new {
  margin: 40px 0;
  font-family: inherit;
}

.te-about-new__head {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 26px;
}

.te-about-new__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  background: #ac1027;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.te-about-new__head h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  color: #202020;
  font-weight: 700;
}

.te-about-new__head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

.te-about-new__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.te-about-new__photo {
  background: #f4f4f4;
  padding: 14px;
}

.te-about-new__photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.te-about-new__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.te-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  padding: 22px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

.te-card b {
  display: block;
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.2;
  color: #222;
}

.te-card span {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  color: #555;
}

.te-card--accent {
  background: #ac1027;
  border-color: #ac1027;
}

.te-card--accent b,
.te-card--accent span {
  color: #fff;
}

.te-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.te-about-new__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  border-top: 1px solid #e5e5e5;
  background: #fff;
}

.te-num,
.te-about-new__action {
  padding: 22px;
  border-right: 1px solid #e5e5e5;
}

.te-num b {
  display: block;
  margin-bottom: 7px;
  font-size: 28px;
  line-height: 1;
  color: #ac1027;
}

.te-num span {
  font-size: 14px;
  color: #555;
}

.te-about-new__action {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: none;
}

.te-about-new__action a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  background: #f1f1f1;
  border: 1px solid #d8d8d8;
  color: #222 !important;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}

.te-about-new__action a:hover {
  background: #ac1027;
  border-color: #ac1027;
  color: #fff !important;
}

@media (max-width: 950px) {
  .te-about-new__head,
  .te-about-new__grid {
    grid-template-columns: 1fr;
  }

  .te-about-new__head h1 {
    font-size: 30px;
  }

  .te-about-new__bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .te-about-new__cards,
  .te-about-new__bottom {
    grid-template-columns: 1fr;
  }

  .te-about-new__head h1 {
    font-size: 25px;
  }

  .te-about-new__photo img {
    min-height: auto;
  }

  .te-card {
    min-height: auto;
  }

  .te-num,
  .te-about-new__action {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
  }
}
.te-about-new__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  height: 100%;
}

.te-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  padding: 26px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

.te-card b {
  display: block;
  margin-bottom: 18px;
  font-size: 19px;
  line-height: 1.25;
  color: #222;
}

.te-card span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}
.te-about-new__photo {
  background: #f4f4f4;
  padding: 12px;
  height: 100%;
}

.te-about-new__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.te-card--accent {
  background: #ac1027;
  border-color: #ac1027;
}

.te-card--accent b,
.te-card--accent span {
  color: #fff;
}
/*ПРОИЗВОДСТВО*/
.te-engineering {
  margin: 35px 0;
  color: #242424;
}

.te-engineering * {
  box-sizing: border-box;
}

/* ===== Верхний заголовок ===== */

.te-eng-head {
  width: 100%;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.te-eng-head__title {
  width: 100%;
  position: relative;
}

.te-eng-head__title span {
  display: block;
  margin-bottom: 14px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #ac1027;
}

.te-eng-head h1 {
  margin: 0;

  width: 100%;
  max-width: 1400px;

  font-size: 34px;
  line-height: 1.08;
  font-weight: 700;

  color: #1f1f1f;
  text-transform: uppercase;

  border-left: 6px solid #ac1027;
  padding-left: 22px;
}

/* скрываем старый текст справа если остался */

.te-eng-head__text {
  display: none;
}

/* ===== Фото + панель ===== */

.te-eng-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.te-eng-photo {
  position: relative;
  overflow: hidden;
 
}

.te-eng-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;

  object-fit: cover;
  display: block;
}

/* ===== Правая панель ===== */

.te-eng-panel {
  padding: 30px;
  background: #f6f6f6;
}

.te-eng-panel h2 {
  margin: 0 0 20px;

  font-size: 26px;
  line-height: 1.2;

  color: #222;
}

.te-eng-list {
  display: grid;
  gap: 12px;
}

.te-eng-list div {
  padding: 16px 18px;

  background: #fff;
  border-left: 3px solid #ac1027;
}

.te-eng-list b {
  display: block;
  margin-bottom: 6px;

  font-size: 16px;
  color: #222;
}

.te-eng-list p {
  margin: 0;

  font-size: 14px;
  line-height: 1.55;

  color: #555;
}

/* ===== Кнопки ===== */

.te-eng-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin-top: 22px;
}

.te-eng-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 0 22px;

  background: #ac1027;
  color: #fff !important;

  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  transition: 0.2s;
}

.te-eng-btn:hover {
  background: #a82338;
}

.te-eng-btn--white {
  background: #fff;
  border: 1px solid #d5d5d5;

  color: #222 !important;
}

.te-eng-btn--white:hover {
  background: #222;
  border-color: #222;

  color: #fff !important;
}

/* ===== Цифры ===== */

.te-eng-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 1px;
  margin-top: 22px;

  background: #e1e1e1;
}

.te-eng-numbers div {
  padding: 20px;
  background: #fff;
}

.te-eng-numbers b {
  display: block;
  margin-bottom: 6px;

  font-size: 26px;
  line-height: 1;

  color: #ac1027;
}

.te-eng-numbers span {
  display: block;

  font-size: 13px;
  line-height: 1.35;

  color: #555;
}

/* ===== Видео блок ===== */

.te-eng-video-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  gap: 22px;
  align-items: stretch;

  margin-top: 34px;
}

.te-eng-video-text {
  padding: 28px;
  background: #f6f6f6;
}

.te-eng-video-text h2 {
  margin: 0 0 14px;

  font-size: 26px;
  line-height: 1.2;
}

.te-eng-video-text p {
  margin: 0;

  font-size: 15px;
  line-height: 1.7;

  color: #444;
}

.te-eng-video iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;

  display: block;

  border: none;
  background: #f3f3f3;
}

/* ===== Заголовок карточек ===== */

.te-eng-section {
  margin: 38px 0 22px;
}

.te-eng-section h2 {
  margin: 0 0 8px;

  font-size: 30px;
  line-height: 1.2;
}

.te-eng-section p {
  margin: 0;
  max-width: 760px;

  font-size: 16px;
  line-height: 1.55;

  color: #555;
}

/* ===== Карточки продукции ===== */

.te-eng-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.te-eng-product {
  display: flex;
  flex-direction: column;

  min-height: 100%;

  background: #fff;
  border: 1px solid #e2e2e2;

  color: inherit;
  text-decoration: none;

  overflow: hidden;
  transition: 0.2s;
}

.te-eng-product:hover {
  border-color: #ac1027;

  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.te-eng-product img {
  width: 100%;
  height: 185px;

  object-fit: cover;
  display: block;

  background: #f3f3f3;
}

.te-eng-product div {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding: 18px;
}

.te-eng-product span {
  display: inline-block;
  width: fit-content;

  margin-bottom: 10px;
  padding: 4px 9px;

  background: #f4f4f4;
  color: #ac1027;

  font-size: 12px;
  font-weight: 700;
}

.te-eng-product h3 {
  margin: 0 0 9px;

  font-size: 18px;
  line-height: 1.25;

  color: #222;
}

.te-eng-product p {
  margin: 0;

  font-size: 14px;
  line-height: 1.5;

  color: #555;
}

/* ===== Адаптив ===== */

@media (max-width: 1000px) {

  .te-eng-layout,
  .te-eng-video-block {
    grid-template-columns: 1fr;
  }

  .te-eng-numbers,
  .te-eng-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .te-eng-head h1 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {

  .te-eng-head {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .te-eng-head h1 {
    font-size: 24px;
    line-height: 1.12;

    padding-left: 16px;
    border-left-width: 4px;
  }

  .te-eng-panel,
  .te-eng-video-text {
    padding: 22px 18px;
  }

  .te-eng-photo img {
    min-height: 260px;
  }

  .te-eng-numbers,
  .te-eng-products {
    grid-template-columns: 1fr;
  }

  .te-eng-product img {
    height: 200px;
  }
}
@media (max-width: 600px) {

  .te-card span {
    display: none !important;
  }

  .te-card {
    min-height: auto !important;
    padding: 14px 16px !important;
  }

  .te-card b {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

}
.product-item-label-small span {
    background: #ac1027 !important;
}
/* End */


/* Start:/images/bootstrap-3.3.6-dist/css/bootstrap.min.css?1525076162122964*/
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(/images/bootstrap-3.3.6-dist/css/../fonts/glyphicons-halflings-regular.eot);src:url(/images/bootstrap-3.3.6-dist/css/../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(/images/bootstrap-3.3.6-dist/css/../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(/images/bootstrap-3.3.6-dist/css/../fonts/glyphicons-halflings-regular.woff) format('woff'),url(/images/bootstrap-3.3.6-dist/css/../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(/images/bootstrap-3.3.6-dist/css/../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */

@media (max-width: 767px){.offcanvas-stop-scrolling{height:100%;overflow:hidden}.navbar-default .navbar-offcanvas{background-color:#f8f8f8}.navbar-inverse .navbar-offcanvas{background-color:#222}.navbar-offcanvas{position:fixed;width:100%;max-width:250px;height:100%;left:-250px;top:0;padding-left:15px;padding-right:15px;z-index:999;overflow:scroll;-webkit-overflow-scrolling:touch;transition:all .15s ease-in}.navbar-offcanvas.in{box-shadow:0 0 20px rgba(0,0,0,0.3)}.navbar-offcanvas.navbar-offcanvas-fade{opacity:0}.navbar-offcanvas.navbar-offcanvas-fade.in{opacity:1}.navbar-offcanvas.offcanvas-transform.in{-webkit-transform:translateX(250px);transform:translateX(250px)}.navbar-offcanvas.offcanvas-position.in{left:0}.navbar-offcanvas.navbar-offcanvas-right{left:auto;right:-250px}.navbar-offcanvas.navbar-offcanvas-right.offcanvas-transform.in{-webkit-transform:translateX(-250px);transform:translateX(-250px)}.navbar-offcanvas.navbar-offcanvas-right.offcanvas-position.in{left:auto;right:0}.navbar-offcanvas .dropdown.open .caret{border-top:0;border-bottom:4px solid}.navbar-offcanvas .dropdown-menu{position:relative;width:100%;border:inherit;box-shadow:none;transition:height .15s ease-in}.navbar-offcanvas .dropdown-menu.shown{display:block;margin-bottom:10px}}.offcanvas-toggle .icon-bar{background:#000;transition:all .25s ease-in-out}.offcanvas-toggle.is-open .icon-bar:nth-child(1){-webkit-transform:rotate(45deg) translate(5px, 4px);transform:rotate(45deg) translate(5px, 4px)}.offcanvas-toggle.is-open .icon-bar:nth-child(2){opacity:0}.offcanvas-toggle.is-open .icon-bar:nth-child(3){-webkit-transform:rotate(-45deg) translate(4px, -4px);transform:rotate(-45deg) translate(4px, -4px)}

/* End */
/* /bitrix/templates/.default/auth/css/modal.min.css?14793383385588 */
/* /bitrix/templates/.default/auth/css/form.min.css?147933833812350 */
/* /bitrix/templates/.default/auth/css/form.password.min.css?1479338338431 */
/* /bitrix/templates/.default/auth/css/button.min.css?16746500767653 */
/* /bitrix/templates/.default/auth/auth.css?14793383365163 */
/* /bitrix/templates/.default/components/bitrix/menu/telemento/style.css?177563641910356 */
/* /bitrix/templates/.default/components/bitrix/search.title/infrared/style.css?17599892124252 */
/* /bitrix/templates/.default/components/bitrix/menu/topcatalog/style.css?177746171111195 */
/* /bitrix/templates/.default/components/bitrix/form/telemento_question/bitrix/form.result.new/.default/style.css?1684568894420 */
/* /bitrix/templates/.default/components/bitrix/form/telemento_tovar/bitrix/form.result.new/.default/style.css?17606070661780 */
/* /bitrix/templates/.default/components/bitrix/form/telemento1/bitrix/form.result.new/.default/style.css?1524147126666 */
/* /bitrix/components/niges/cookiesaccept/templates/.default/style.css?17271638872729 */
/* /bitrix/templates/Termo/styles.css?1779286883112008 */
/* /bitrix/templates/Termo/template_styles.css?177928688353876 */
/* /images/bootstrap-3.3.6-dist/css/bootstrap.min.css?1525076162122964 */
