

/* Start:/local/templates/.default/auth/css/modal.min.css?16886445145588*/
/* ========================================================================
   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:/local/templates/.default/auth/css/form.min.css?168864451411844*/
.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;
}
.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:/local/templates/.default/auth/css/form.password.min.css?16886445141047*/
/*! 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 }
.uk-icon-eye-slash:before {content: "\f070";}.uk-icon-eye:before {content: "\f06e";}
[class*='uk-icon-'] {
    font-family: FontAwesome;
    /* 1 */
    display: inline-block;
    /* 2 */
    font-weight: normal;
    font-style: normal;
    /* 4 */
    line-height: 1;
    /* 5 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 6 */
[class*='uk-icon-'],
[class*='uk-icon-']:hover,
[class*='uk-icon-']:focus {
    text-decoration: none;
}
.auth-form-modal input[type=text],
.auth-form-modal input[type=password]{
    font-variant: normal !important;
}

/* End */


/* Start:/local/templates/.default/auth/css/button.min.css?16886445147702*/
/* ========================================================================
   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;
	background-origin: border-box;
}
.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 {
	color: #fff;
    background-color: #00a9db;
    border-bottom: 3px solid #008db7;
}
/* Hover */
.uk-button-primary:hover,
.uk-button-primary:focus {
	margin-top: 1px;
    background-color: #008db7;
    border-bottom: 1px solid #008db7;
	color: #fff;
}
/* Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
	background-color: #008abf;
	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: #82bb42;
	color: #fff;
	background-image: -webkit-linear-gradient(top, #9fd256, #6fac34);
	background-image: linear-gradient(to bottom, #9fd256, #6fac34);
	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-success:hover,
.uk-button-success:focus {
	background-color: #8fce48;
	color: #fff;
	background-image: none;
}
/* Active */
.uk-button-success:active,
.uk-button-success.uk-active {
	background-color: #76b430;
	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;
}
/* 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:/local/templates/.default/auth/auth.css?16886445145109*/
/***************************************************
                   #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("/local/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(/local/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:2000 !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:/local/templates/lednex/css/font-awesome.css?168864451536683*/
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.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;
}

/* End */


/* Start:/local/templates/lednex/css/modal.css?16886445153210*/
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.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: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 6px 7px 0;
}
.modal-header .close {
  cursor: pointer;
  font-size: 40px;
  line-height: 18px;
  float: right;
}
.modal-title {
  margin: 0;
  line-height: 53px;
  font-family: "Roboto", sans-serif;
  font-size: 31px;
  display: block;
  text-align: center;
  font-weight: 100;
  padding: 0 30px;
}
.modal-body {
  position: relative;
  padding: 15px;
  padding-bottom: 20px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.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;
}
.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: 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;
}


@media (min-width: 768px) {
  .modal-dialog {
    width: 500px;
    margin: 150px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
/* End */


/* Start:/local/templates/lednex/css/tooltip.css?16886445152366*/
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    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;
}
/* End */


/* Start:/local/templates/lednex/css/main.min.css?1688644515172255*/
@font-face {
    font-family: "STRoboto";
    font-weight: 100;
    font-style: normal;
    src: url("/local/templates/lednex/css/../fonts/RobotoLight/RobotoLight.eot");
    src: url("/local/templates/lednex/css/../fonts/RobotoLight/RobotoLight.eot?#iefix") format("embedded-opentype"), url("/local/templates/lednex/css/../fonts/RobotoLight/RobotoLight.woff") format("woff"), url("/local/templates/lednex/css/../fonts/RobotoLight/RobotoLight.ttf") format("truetype");
}

@font-face {
    font-family: "STRoboto";
    font-weight: normal;
    font-style: normal;
    src: url("/local/templates/lednex/css/../fonts/RobotoRegular/RobotoRegular.eot");
    src: url("/local/templates/lednex/css/../fonts/RobotoRegular/RobotoRegular.eot?#iefix") format("embedded-opentype"), url("/local/templates/lednex/css/../fonts/RobotoRegular/RobotoRegular.woff") format("woff"), url("/local/templates/lednex/css/../fonts/RobotoRegular/RobotoRegular.ttf") format("truetype");
}

@font-face {
    font-family: "STRoboto";
    font-weight: 500;
    font-style: normal;
    src: url("/local/templates/lednex/css/../fonts/RobotoMedium/RobotoMedium.eot");
    src: url("/local/templates/lednex/css/../fonts/RobotoMedium/RobotoMedium.eot?#iefix") format("embedded-opentype"), url("/local/templates/lednex/css/../fonts/RobotoMedium/RobotoMedium.woff") format("woff"), url("/local/templates/lednex/css/../fonts/RobotoMedium/RobotoMedium.ttf") format("truetype");
}

@font-face {
    font-family: "STRoboto";
    font-weight: bold;
    font-style: normal;
    src: url("/local/templates/lednex/css/../fonts/RobotoBold/RobotoBold.eot");
    src: url("/local/templates/lednex/css/../fonts/RobotoBold/RobotoBold.eot?#iefix") format("embedded-opentype"), url("/local/templates/lednex/css/../fonts/RobotoBold/RobotoBold.woff") format("woff"), url("/local/templates/lednex/css/../fonts/RobotoBold/RobotoBold.ttf") format("truetype");
}

@font-face {
    font-family: "FontAwesome";
    font-weight: normal;
    font-style: normal;
    src: url("/local/templates/lednex/css/../fonts/FontAwesome/fontawesome-webfont.eot");
    src: url("/local/templates/lednex/css/../fonts/FontAwesome/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("/local/templates/lednex/css/../fonts/FontAwesome/fontawesome-webfont.woff") format("woff"), url("/local/templates/lednex/css/../fonts/FontAwesome/fontawesome-webfont.ttf") format("truetype");
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

.modal-header {
    border: none !important;
}

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: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

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 {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
    -webkit-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-appearance: textfield;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}

body {
    line-height: 1.42857143;
    background-color: #fff;
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover, a:focus {
    color: #23527c;
    text-decoration: underline;
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition:  all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    -webkit-border-radius: 50%;
    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;
    margin: -1px;
    padding: 0;
    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;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -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-left: 15px;
    padding-right: 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;
    }
}

.clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after {
    content: " ";
    display: table;
}

.clearfix:after, .container:after, .container-fluid:after, .row:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: 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-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important;
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-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;
    }

    th.visible-xs, td.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;
    }

    th.visible-sm, td.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;
    }

    th.visible-md, td.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;
    }

    th.visible-lg, td.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;
    }

    th.visible-print, td.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;
    }
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: 0.14285714em;
    text-align: center;
}

.fa-li.fa-lg {
    left: -1.85714286em;
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eeeeee;
    -webkit-border-radius: .1em;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa.fa-pull-left {
    margin-right: .3em;
}

.fa.fa-pull-right {
    margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
    content: "\f000";
}

.fa-music:before {
    content: "\f001";
}

.fa-search:before {
    content: "\f002";
}

.fa-envelope-o:before {
    content: "\f003";
}

.fa-heart:before {
    content: "\f004";
}

.fa-star:before {
    content: "\f005";
}

.fa-star-o:before {
    content: "\f006";
}

.fa-user:before {
    content: "\f007";
}

.fa-film:before {
    content: "\f008";
}

.fa-th-large:before {
    content: "\f009";
}

.fa-th:before {
    content: "\f00a";
}

.fa-th-list:before {
    content: "\f00b";
}

.fa-check:before {
    content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d";
}

.fa-search-plus:before {
    content: "\f00e";
}

.fa-search-minus:before {
    content: "\f010";
}

.fa-power-off:before {
    content: "\f011";
}

.fa-signal:before {
    content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013";
}

.fa-trash-o:before {
    content: "\f014";
}

.fa-home:before {
    content: "\f015";
}

.fa-file-o:before {
    content: "\f016";
}

.fa-clock-o:before {
    content: "\f017";
}

.fa-road:before {
    content: "\f018";
}

.fa-download:before {
    content: "\f019";
}

.fa-arrow-circle-o-down:before {
    content: "\f01a";
}

.fa-arrow-circle-o-up:before {
    content: "\f01b";
}

.fa-inbox:before {
    content: "\f01c";
}

.fa-play-circle-o:before {
    content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e";
}

.fa-refresh:before {
    content: "\f021";
}

.fa-list-alt:before {
    content: "\f022";
}

.fa-lock:before {
    content: "\f023";
}

.fa-flag:before {
    content: "\f024";
}

.fa-headphones:before {
    content: "\f025";
}

.fa-volume-off:before {
    content: "\f026";
}

.fa-volume-down:before {
    content: "\f027";
}

.fa-volume-up:before {
    content: "\f028";
}

.fa-qrcode:before {
    content: "\f029";
}

.fa-barcode:before {
    content: "\f02a";
}

.fa-tag:before {
    content: "\f02b";
}

.fa-tags:before {
    content: "\f02c";
}

.fa-book:before {
    content: "\f02d";
}

.fa-bookmark:before {
    content: "\f02e";
}

.fa-print:before {
    content: "\f02f";
}

.fa-camera:before {
    content: "\f030";
}

.fa-font:before {
    content: "\f031";
}

.fa-bold:before {
    content: "\f032";
}

.fa-italic:before {
    content: "\f033";
}

.fa-text-height:before {
    content: "\f034";
}

.fa-text-width:before {
    content: "\f035";
}

.fa-align-left:before {
    content: "\f036";
}

.fa-align-center:before {
    content: "\f037";
}

.fa-align-right:before {
    content: "\f038";
}

.fa-align-justify:before {
    content: "\f039";
}

.fa-list:before {
    content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b";
}

.fa-indent:before {
    content: "\f03c";
}

.fa-video-camera:before {
    content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e";
}

.fa-pencil:before {
    content: "\f040";
}

.fa-map-marker:before {
    content: "\f041";
}

.fa-adjust:before {
    content: "\f042";
}

.fa-tint:before {
    content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
}

.fa-share-square-o:before {
    content: "\f045";
}

.fa-check-square-o:before {
    content: "\f046";
}

.fa-arrows:before {
    content: "\f047";
}

.fa-step-backward:before {
    content: "\f048";
}

.fa-fast-backward:before {
    content: "\f049";
}

.fa-backward:before {
    content: "\f04a";
}

.fa-play:before {
    content: "\f04b";
}

.fa-pause:before {
    content: "\f04c";
}

.fa-stop:before {
    content: "\f04d";
}

.fa-forward:before {
    content: "\f04e";
}

.fa-fast-forward:before {
    content: "\f050";
}

.fa-step-forward:before {
    content: "\f051";
}

.fa-eject:before {
    content: "\f052";
}

.fa-chevron-left:before {
    content: "\f053";
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-plus-circle:before {
    content: "\f055";
}

.fa-minus-circle:before {
    content: "\f056";
}

.fa-times-circle:before {
    content: "\f057";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-question-circle:before {
    content: "\f059";
}

.fa-info-circle:before {
    content: "\f05a";
}

.fa-crosshairs:before {
    content: "\f05b";
}

.fa-times-circle-o:before {
    content: "\f05c";
}

.fa-check-circle-o:before {
    content: "\f05d";
}

.fa-ban:before {
    content: "\f05e";
}

.fa-arrow-left:before {
    content: "\f060";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-arrow-up:before {
    content: "\f062";
}

.fa-arrow-down:before {
    content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064";
}

.fa-expand:before {
    content: "\f065";
}

.fa-compress:before {
    content: "\f066";
}

.fa-plus:before {
    content: "\f067";
}

.fa-minus:before {
    content: "\f068";
}

.fa-asterisk:before {
    content: "\f069";
}

.fa-exclamation-circle:before {
    content: "\f06a";
}

.fa-gift:before {
    content: "\f06b";
}

.fa-leaf:before {
    content: "\f06c";
}

.fa-fire:before {
    content: "\f06d";
}

.fa-eye:before {
    content: "\f06e";
}

.fa-eye-slash:before {
    content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071";
}

.fa-plane:before {
    content: "\f072";
}

.fa-calendar:before {
    content: "\f073";
}

.fa-random:before {
    content: "\f074";
}

.fa-comment:before {
    content: "\f075";
}

.fa-magnet:before {
    content: "\f076";
}

.fa-chevron-up:before {
    content: "\f077";
}

.fa-chevron-down:before {
    content: "\f078";
}

.fa-retweet:before {
    content: "\f079";
}

.fa-shopping-cart:before {
    content: "\f07a";
}

.fa-folder:before {
    content: "\f07b";
}

.fa-folder-open:before {
    content: "\f07c";
}

.fa-arrows-v:before {
    content: "\f07d";
}

.fa-arrows-h:before {
    content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080";
}

.fa-twitter-square:before {
    content: "\f081";
}

.fa-facebook-square:before {
    content: "\f082";
}

.fa-camera-retro:before {
    content: "\f083";
}

.fa-key:before {
    content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085";
}

.fa-comments:before {
    content: "\f086";
}

.fa-thumbs-o-up:before {
    content: "\f087";
}

.fa-thumbs-o-down:before {
    content: "\f088";
}

.fa-star-half:before {
    content: "\f089";
}

.fa-heart-o:before {
    content: "\f08a";
}

.fa-sign-out:before {
    content: "\f08b";
}

.fa-linkedin-square:before {
    content: "\f08c";
}

.fa-thumb-tack:before {
    content: "\f08d";
}

.fa-external-link:before {
    content: "\f08e";
}

.fa-sign-in:before {
    content: "\f090";
}

.fa-trophy:before {
    content: "\f091";
}

.fa-github-square:before {
    content: "\f092";
}

.fa-upload:before {
    content: "\f093";
}

.fa-lemon-o:before {
    content: "\f094";
}

.fa-phone:before {
    content: "\f095";
}

.fa-square-o:before {
    content: "\f096";
}

.fa-bookmark-o:before {
    content: "\f097";
}

.fa-phone-square:before {
    content: "\f098";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a";
}

.fa-github:before {
    content: "\f09b";
}

.fa-unlock:before {
    content: "\f09c";
}

.fa-credit-card:before {
    content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e";
}

.fa-hdd-o:before {
    content: "\f0a0";
}

.fa-bullhorn:before {
    content: "\f0a1";
}

.fa-bell:before {
    content: "\f0f3";
}

.fa-certificate:before {
    content: "\f0a3";
}

.fa-hand-o-right:before {
    content: "\f0a4";
}

.fa-hand-o-left:before {
    content: "\f0a5";
}

.fa-hand-o-up:before {
    content: "\f0a6";
}

.fa-hand-o-down:before {
    content: "\f0a7";
}

.fa-arrow-circle-left:before {
    content: "\f0a8";
}

.fa-arrow-circle-right:before {
    content: "\f0a9";
}

.fa-arrow-circle-up:before {
    content: "\f0aa";
}

.fa-arrow-circle-down:before {
    content: "\f0ab";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-wrench:before {
    content: "\f0ad";
}

.fa-tasks:before {
    content: "\f0ae";
}

.fa-filter:before {
    content: "\f0b0";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-arrows-alt:before {
    content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1";
}

.fa-cloud:before {
    content: "\f0c2";
}

.fa-flask:before {
    content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5";
}

.fa-paperclip:before {
    content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7";
}

.fa-square:before {
    content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9";
}

.fa-list-ul:before {
    content: "\f0ca";
}

.fa-list-ol:before {
    content: "\f0cb";
}

.fa-strikethrough:before {
    content: "\f0cc";
}

.fa-underline:before {
    content: "\f0cd";
}

.fa-table:before {
    content: "\f0ce";
}

.fa-magic:before {
    content: "\f0d0";
}

.fa-truck:before {
    content: "\f0d1";
}

.fa-pinterest:before {
    content: "\f0d2";
}

.fa-pinterest-square:before {
    content: "\f0d3";
}

.fa-google-plus-square:before {
    content: "\f0d4";
}

.fa-google-plus:before {
    content: "\f0d5";
}

.fa-money:before {
    content: "\f0d6";
}

.fa-caret-down:before {
    content: "\f0d7";
}

.fa-caret-up:before {
    content: "\f0d8";
}

.fa-caret-left:before {
    content: "\f0d9";
}

.fa-caret-right:before {
    content: "\f0da";
}

.fa-columns:before {
    content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-linkedin:before {
    content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4";
}

.fa-comment-o:before {
    content: "\f0e5";
}

.fa-comments-o:before {
    content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7";
}

.fa-sitemap:before {
    content: "\f0e8";
}

.fa-umbrella:before {
    content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea";
}

.fa-lightbulb-o:before {
    content: "\f0eb";
}

.fa-exchange:before {
    content: "\f0ec";
}

.fa-cloud-download:before {
    content: "\f0ed";
}

.fa-cloud-upload:before {
    content: "\f0ee";
}

.fa-user-md:before {
    content: "\f0f0";
}

.fa-stethoscope:before {
    content: "\f0f1";
}

.fa-suitcase:before {
    content: "\f0f2";
}

.fa-bell-o:before {
    content: "\f0a2";
}

.fa-coffee:before {
    content: "\f0f4";
}

.fa-cutlery:before {
    content: "\f0f5";
}

.fa-file-text-o:before {
    content: "\f0f6";
}

.fa-building-o:before {
    content: "\f0f7";
}

.fa-hospital-o:before {
    content: "\f0f8";
}

.fa-ambulance:before {
    content: "\f0f9";
}

.fa-medkit:before {
    content: "\f0fa";
}

.fa-fighter-jet:before {
    content: "\f0fb";
}

.fa-beer:before {
    content: "\f0fc";
}

.fa-h-square:before {
    content: "\f0fd";
}

.fa-plus-square:before {
    content: "\f0fe";
}

.fa-angle-double-left:before {
    content: "\f100";
}

.fa-angle-double-right:before {
    content: "\f101";
}

.fa-angle-double-up:before {
    content: "\f102";
}

.fa-angle-double-down:before {
    content: "\f103";
}

.fa-angle-left:before {
    content: "\f104";
}

.fa-angle-right:before {
    content: "\f105";
}

.fa-angle-up:before {
    content: "\f106";
}

.fa-angle-down:before {
    content: "\f107";
}

.fa-desktop:before {
    content: "\f108";
}

.fa-laptop:before {
    content: "\f109";
}

.fa-tablet:before {
    content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b";
}

.fa-circle-o:before {
    content: "\f10c";
}

.fa-quote-left:before {
    content: "\f10d";
}

.fa-quote-right:before {
    content: "\f10e";
}

.fa-spinner:before {
    content: "\f110";
}

.fa-circle:before {
    content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112";
}

.fa-github-alt:before {
    content: "\f113";
}

.fa-folder-o:before {
    content: "\f114";
}

.fa-folder-open-o:before {
    content: "\f115";
}

.fa-smile-o:before {
    content: "\f118";
}

.fa-frown-o:before {
    content: "\f119";
}

.fa-meh-o:before {
    content: "\f11a";
}

.fa-gamepad:before {
    content: "\f11b";
}

.fa-keyboard-o:before {
    content: "\f11c";
}

.fa-flag-o:before {
    content: "\f11d";
}

.fa-flag-checkered:before {
    content: "\f11e";
}

.fa-terminal:before {
    content: "\f120";
}

.fa-code:before {
    content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123";
}

.fa-location-arrow:before {
    content: "\f124";
}

.fa-crop:before {
    content: "\f125";
}

.fa-code-fork:before {
    content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127";
}

.fa-question:before {
    content: "\f128";
}

.fa-info:before {
    content: "\f129";
}

.fa-exclamation:before {
    content: "\f12a";
}

.fa-superscript:before {
    content: "\f12b";
}

.fa-subscript:before {
    content: "\f12c";
}

.fa-eraser:before {
    content: "\f12d";
}

.fa-puzzle-piece:before {
    content: "\f12e";
}

.fa-microphone:before {
    content: "\f130";
}

.fa-microphone-slash:before {
    content: "\f131";
}

.fa-shield:before {
    content: "\f132";
}

.fa-calendar-o:before {
    content: "\f133";
}

.fa-fire-extinguisher:before {
    content: "\f134";
}

.fa-rocket:before {
    content: "\f135";
}

.fa-maxcdn:before {
    content: "\f136";
}

.fa-chevron-circle-left:before {
    content: "\f137";
}

.fa-chevron-circle-right:before {
    content: "\f138";
}

.fa-chevron-circle-up:before {
    content: "\f139";
}

.fa-chevron-circle-down:before {
    content: "\f13a";
}

.fa-html5:before {
    content: "\f13b";
}

.fa-css3:before {
    content: "\f13c";
}

.fa-anchor:before {
    content: "\f13d";
}

.fa-unlock-alt:before {
    content: "\f13e";
}

.fa-bullseye:before {
    content: "\f140";
}

.fa-ellipsis-h:before {
    content: "\f141";
}

.fa-ellipsis-v:before {
    content: "\f142";
}

.fa-rss-square:before {
    content: "\f143";
}

.fa-play-circle:before {
    content: "\f144";
}

.fa-ticket:before {
    content: "\f145";
}

.fa-minus-square:before {
    content: "\f146";
}

.fa-minus-square-o:before {
    content: "\f147";
}

.fa-level-up:before {
    content: "\f148";
}

.fa-level-down:before {
    content: "\f149";
}

.fa-check-square:before {
    content: "\f14a";
}

.fa-pencil-square:before {
    content: "\f14b";
}

.fa-external-link-square:before {
    content: "\f14c";
}

.fa-share-square:before {
    content: "\f14d";
}

.fa-compass:before {
    content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153";
}

.fa-gbp:before {
    content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158";
}

.fa-won:before,
.fa-krw:before {
    content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a";
}

.fa-file:before {
    content: "\f15b";
}

.fa-file-text:before {
    content: "\f15c";
}

.fa-sort-alpha-asc:before {
    content: "\f15d";
}

.fa-sort-alpha-desc:before {
    content: "\f15e";
}

.fa-sort-amount-asc:before {
    content: "\f160";
}

.fa-sort-amount-desc:before {
    content: "\f161";
}

.fa-sort-numeric-asc:before {
    content: "\f162";
}

.fa-sort-numeric-desc:before {
    content: "\f163";
}

.fa-thumbs-up:before {
    content: "\f164";
}

.fa-thumbs-down:before {
    content: "\f165";
}

.fa-youtube-square:before {
    content: "\f166";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-xing:before {
    content: "\f168";
}

.fa-xing-square:before {
    content: "\f169";
}

.fa-youtube-play:before {
    content: "\f16a";
}

.fa-dropbox:before {
    content: "\f16b";
}

.fa-stack-overflow:before {
    content: "\f16c";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-flickr:before {
    content: "\f16e";
}

.fa-adn:before {
    content: "\f170";
}

.fa-bitbucket:before {
    content: "\f171";
}

.fa-bitbucket-square:before {
    content: "\f172";
}

.fa-tumblr:before {
    content: "\f173";
}

.fa-tumblr-square:before {
    content: "\f174";
}

.fa-long-arrow-down:before {
    content: "\f175";
}

.fa-long-arrow-up:before {
    content: "\f176";
}

.fa-long-arrow-left:before {
    content: "\f177";
}

.fa-long-arrow-right:before {
    content: "\f178";
}

.fa-apple:before {
    content: "\f179";
}

.fa-windows:before {
    content: "\f17a";
}

.fa-android:before {
    content: "\f17b";
}

.fa-linux:before {
    content: "\f17c";
}

.fa-dribbble:before {
    content: "\f17d";
}

.fa-skype:before {
    content: "\f17e";
}

.fa-foursquare:before {
    content: "\f180";
}

.fa-trello:before {
    content: "\f181";
}

.fa-female:before {
    content: "\f182";
}

.fa-male:before {
    content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184";
}

.fa-sun-o:before {
    content: "\f185";
}

.fa-moon-o:before {
    content: "\f186";
}

.fa-archive:before {
    content: "\f187";
}

.fa-bug:before {
    content: "\f188";
}

.fa-vk:before {
    content: "\f189";
}

.fa-weibo:before {
    content: "\f18a";
}

.fa-renren:before {
    content: "\f18b";
}

.fa-pagelines:before {
    content: "\f18c";
}

.fa-stack-exchange:before {
    content: "\f18d";
}

.fa-arrow-circle-o-right:before {
    content: "\f18e";
}

.fa-arrow-circle-o-left:before {
    content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191";
}

.fa-dot-circle-o:before {
    content: "\f192";
}

.fa-wheelchair:before {
    content: "\f193";
}

.fa-vimeo-square:before {
    content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195";
}

.fa-plus-square-o:before {
    content: "\f196";
}

.fa-space-shuttle:before {
    content: "\f197";
}

.fa-slack:before {
    content: "\f198";
}

.fa-envelope-square:before {
    content: "\f199";
}

.fa-wordpress:before {
    content: "\f19a";
}

.fa-openid:before {
    content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d";
}

.fa-yahoo:before {
    content: "\f19e";
}

.fa-google:before {
    content: "\f1a0";
}

.fa-reddit:before {
    content: "\f1a1";
}

.fa-reddit-square:before {
    content: "\f1a2";
}

.fa-stumbleupon-circle:before {
    content: "\f1a3";
}

.fa-stumbleupon:before {
    content: "\f1a4";
}

.fa-delicious:before {
    content: "\f1a5";
}

.fa-digg:before {
    content: "\f1a6";
}

.fa-pied-piper-pp:before {
    content: "\f1a7";
}

.fa-pied-piper-alt:before {
    content: "\f1a8";
}

.fa-drupal:before {
    content: "\f1a9";
}

.fa-joomla:before {
    content: "\f1aa";
}

.fa-language:before {
    content: "\f1ab";
}

.fa-fax:before {
    content: "\f1ac";
}

.fa-building:before {
    content: "\f1ad";
}

.fa-child:before {
    content: "\f1ae";
}

.fa-paw:before {
    content: "\f1b0";
}

.fa-spoon:before {
    content: "\f1b1";
}

.fa-cube:before {
    content: "\f1b2";
}

.fa-cubes:before {
    content: "\f1b3";
}

.fa-behance:before {
    content: "\f1b4";
}

.fa-behance-square:before {
    content: "\f1b5";
}

.fa-steam:before {
    content: "\f1b6";
}

.fa-steam-square:before {
    content: "\f1b7";
}

.fa-recycle:before {
    content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba";
}

.fa-tree:before {
    content: "\f1bb";
}

.fa-spotify:before {
    content: "\f1bc";
}

.fa-deviantart:before {
    content: "\f1bd";
}

.fa-soundcloud:before {
    content: "\f1be";
}

.fa-database:before {
    content: "\f1c0";
}

.fa-file-pdf-o:before {
    content: "\f1c1";
}

.fa-file-word-o:before {
    content: "\f1c2";
}

.fa-file-excel-o:before {
    content: "\f1c3";
}

.fa-file-powerpoint-o:before {
    content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8";
}

.fa-file-code-o:before {
    content: "\f1c9";
}

.fa-vine:before {
    content: "\f1ca";
}

.fa-codepen:before {
    content: "\f1cb";
}

.fa-jsfiddle:before {
    content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd";
}

.fa-circle-o-notch:before {
    content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1";
}

.fa-git-square:before {
    content: "\f1d2";
}

.fa-git:before {
    content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4";
}

.fa-tencent-weibo:before {
    content: "\f1d5";
}

.fa-qq:before {
    content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
}

.fa-history:before {
    content: "\f1da";
}

.fa-circle-thin:before {
    content: "\f1db";
}

.fa-header:before {
    content: "\f1dc";
}

.fa-paragraph:before {
    content: "\f1dd";
}

.fa-sliders:before {
    content: "\f1de";
}

.fa-share-alt:before {
    content: "\f1e0";
}

.fa-share-alt-square:before {
    content: "\f1e1";
}

.fa-bomb:before {
    content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3";
}

.fa-tty:before {
    content: "\f1e4";
}

.fa-binoculars:before {
    content: "\f1e5";
}

.fa-plug:before {
    content: "\f1e6";
}

.fa-slideshare:before {
    content: "\f1e7";
}

.fa-twitch:before {
    content: "\f1e8";
}

.fa-yelp:before {
    content: "\f1e9";
}

.fa-newspaper-o:before {
    content: "\f1ea";
}

.fa-wifi:before {
    content: "\f1eb";
}

.fa-calculator:before {
    content: "\f1ec";
}

.fa-paypal:before {
    content: "\f1ed";
}

.fa-google-wallet:before {
    content: "\f1ee";
}

.fa-cc-visa:before {
    content: "\f1f0";
}

.fa-cc-mastercard:before {
    content: "\f1f1";
}

.fa-cc-discover:before {
    content: "\f1f2";
}

.fa-cc-amex:before {
    content: "\f1f3";
}

.fa-cc-paypal:before {
    content: "\f1f4";
}

.fa-cc-stripe:before {
    content: "\f1f5";
}

.fa-bell-slash:before {
    content: "\f1f6";
}

.fa-bell-slash-o:before {
    content: "\f1f7";
}

.fa-trash:before {
    content: "\f1f8";
}

.fa-copyright:before {
    content: "\f1f9";
}

.fa-at:before {
    content: "\f1fa";
}

.fa-eyedropper:before {
    content: "\f1fb";
}

.fa-paint-brush:before {
    content: "\f1fc";
}

.fa-birthday-cake:before {
    content: "\f1fd";
}

.fa-area-chart:before {
    content: "\f1fe";
}

.fa-pie-chart:before {
    content: "\f200";
}

.fa-line-chart:before {
    content: "\f201";
}

.fa-lastfm:before {
    content: "\f202";
}

.fa-lastfm-square:before {
    content: "\f203";
}

.fa-toggle-off:before {
    content: "\f204";
}

.fa-toggle-on:before {
    content: "\f205";
}

.fa-bicycle:before {
    content: "\f206";
}

.fa-bus:before {
    content: "\f207";
}

.fa-ioxhost:before {
    content: "\f208";
}

.fa-angellist:before {
    content: "\f209";
}

.fa-cc:before {
    content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b";
}

.fa-meanpath:before {
    content: "\f20c";
}

.fa-buysellads:before {
    content: "\f20d";
}

.fa-connectdevelop:before {
    content: "\f20e";
}

.fa-dashcube:before {
    content: "\f210";
}

.fa-forumbee:before {
    content: "\f211";
}

.fa-leanpub:before {
    content: "\f212";
}

.fa-sellsy:before {
    content: "\f213";
}

.fa-shirtsinbulk:before {
    content: "\f214";
}

.fa-simplybuilt:before {
    content: "\f215";
}

.fa-skyatlas:before {
    content: "\f216";
}

.fa-cart-plus:before {
    content: "\f217";
}

.fa-cart-arrow-down:before {
    content: "\f218";
}

.fa-diamond:before {
    content: "\f219";
}

.fa-ship:before {
    content: "\f21a";
}

.fa-user-secret:before {
    content: "\f21b";
}

.fa-motorcycle:before {
    content: "\f21c";
}

.fa-street-view:before {
    content: "\f21d";
}

.fa-heartbeat:before {
    content: "\f21e";
}

.fa-venus:before {
    content: "\f221";
}

.fa-mars:before {
    content: "\f222";
}

.fa-mercury:before {
    content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224";
}

.fa-transgender-alt:before {
    content: "\f225";
}

.fa-venus-double:before {
    content: "\f226";
}

.fa-mars-double:before {
    content: "\f227";
}

.fa-venus-mars:before {
    content: "\f228";
}

.fa-mars-stroke:before {
    content: "\f229";
}

.fa-mars-stroke-v:before {
    content: "\f22a";
}

.fa-mars-stroke-h:before {
    content: "\f22b";
}

.fa-neuter:before {
    content: "\f22c";
}

.fa-genderless:before {
    content: "\f22d";
}

.fa-facebook-official:before {
    content: "\f230";
}

.fa-pinterest-p:before {
    content: "\f231";
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-server:before {
    content: "\f233";
}

.fa-user-plus:before {
    content: "\f234";
}

.fa-user-times:before {
    content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236";
}

.fa-viacoin:before {
    content: "\f237";
}

.fa-train:before {
    content: "\f238";
}

.fa-subway:before {
    content: "\f239";
}

.fa-medium:before {
    content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b";
}

.fa-optin-monster:before {
    content: "\f23c";
}

.fa-opencart:before {
    content: "\f23d";
}

.fa-expeditedssl:before {
    content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244";
}

.fa-mouse-pointer:before {
    content: "\f245";
}

.fa-i-cursor:before {
    content: "\f246";
}

.fa-object-group:before {
    content: "\f247";
}

.fa-object-ungroup:before {
    content: "\f248";
}

.fa-sticky-note:before {
    content: "\f249";
}

.fa-sticky-note-o:before {
    content: "\f24a";
}

.fa-cc-jcb:before {
    content: "\f24b";
}

.fa-cc-diners-club:before {
    content: "\f24c";
}

.fa-clone:before {
    content: "\f24d";
}

.fa-balance-scale:before {
    content: "\f24e";
}

.fa-hourglass-o:before {
    content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253";
}

.fa-hourglass:before {
    content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256";
}

.fa-hand-scissors-o:before {
    content: "\f257";
}

.fa-hand-lizard-o:before {
    content: "\f258";
}

.fa-hand-spock-o:before {
    content: "\f259";
}

.fa-hand-pointer-o:before {
    content: "\f25a";
}

.fa-hand-peace-o:before {
    content: "\f25b";
}

.fa-trademark:before {
    content: "\f25c";
}

.fa-registered:before {
    content: "\f25d";
}

.fa-creative-commons:before {
    content: "\f25e";
}

.fa-gg:before {
    content: "\f260";
}

.fa-gg-circle:before {
    content: "\f261";
}

.fa-tripadvisor:before {
    content: "\f262";
}

.fa-odnoklassniki:before {
    content: "\f263";
}

.fa-odnoklassniki-square:before {
    content: "\f264";
}

.fa-get-pocket:before {
    content: "\f265";
}

.fa-wikipedia-w:before {
    content: "\f266";
}

.fa-safari:before {
    content: "\f267";
}

.fa-chrome:before {
    content: "\f268";
}

.fa-firefox:before {
    content: "\f269";
}

.fa-opera:before {
    content: "\f26a";
}

.fa-internet-explorer:before {
    content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c";
}

.fa-contao:before {
    content: "\f26d";
}

.fa-500px:before {
    content: "\f26e";
}

.fa-amazon:before {
    content: "\f270";
}

.fa-calendar-plus-o:before {
    content: "\f271";
}

.fa-calendar-minus-o:before {
    content: "\f272";
}

.fa-calendar-times-o:before {
    content: "\f273";
}

.fa-calendar-check-o:before {
    content: "\f274";
}

.fa-industry:before {
    content: "\f275";
}

.fa-map-pin:before {
    content: "\f276";
}

.fa-map-signs:before {
    content: "\f277";
}

.fa-map-o:before {
    content: "\f278";
}

.fa-map:before {
    content: "\f279";
}

.fa-commenting:before {
    content: "\f27a";
}

.fa-commenting-o:before {
    content: "\f27b";
}

.fa-houzz:before {
    content: "\f27c";
}

.fa-vimeo:before {
    content: "\f27d";
}

.fa-black-tie:before {
    content: "\f27e";
}

.fa-fonticons:before {
    content: "\f280";
}

.fa-reddit-alien:before {
    content: "\f281";
}

.fa-edge:before {
    content: "\f282";
}

.fa-credit-card-alt:before {
    content: "\f283";
}

.fa-codiepie:before {
    content: "\f284";
}

.fa-modx:before {
    content: "\f285";
}

.fa-fort-awesome:before {
    content: "\f286";
}

.fa-usb:before {
    content: "\f287";
}

.fa-product-hunt:before {
    content: "\f288";
}

.fa-mixcloud:before {
    content: "\f289";
}

.fa-scribd:before {
    content: "\f28a";
}

.fa-pause-circle:before {
    content: "\f28b";
}

.fa-pause-circle-o:before {
    content: "\f28c";
}

.fa-stop-circle:before {
    content: "\f28d";
}

.fa-stop-circle-o:before {
    content: "\f28e";
}

.fa-shopping-bag:before {
    content: "\f290";
}

.fa-shopping-basket:before {
    content: "\f291";
}

.fa-hashtag:before {
    content: "\f292";
}

.fa-bluetooth:before {
    content: "\f293";
}

.fa-bluetooth-b:before {
    content: "\f294";
}

.fa-percent:before {
    content: "\f295";
}

.fa-gitlab:before {
    content: "\f296";
}

.fa-wpbeginner:before {
    content: "\f297";
}

.fa-wpforms:before {
    content: "\f298";
}

.fa-envira:before {
    content: "\f299";
}

.fa-universal-access:before {
    content: "\f29a";
}

.fa-wheelchair-alt:before {
    content: "\f29b";
}

.fa-question-circle-o:before {
    content: "\f29c";
}

.fa-blind:before {
    content: "\f29d";
}

.fa-audio-description:before {
    content: "\f29e";
}

.fa-volume-control-phone:before {
    content: "\f2a0";
}

.fa-braille:before {
    content: "\f2a1";
}

.fa-assistive-listening-systems:before {
    content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4";
}

.fa-glide:before {
    content: "\f2a5";
}

.fa-glide-g:before {
    content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7";
}

.fa-low-vision:before {
    content: "\f2a8";
}

.fa-viadeo:before {
    content: "\f2a9";
}

.fa-viadeo-square:before {
    content: "\f2aa";
}

.fa-snapchat:before {
    content: "\f2ab";
}

.fa-snapchat-ghost:before {
    content: "\f2ac";
}

.fa-snapchat-square:before {
    content: "\f2ad";
}

.fa-pied-piper:before {
    content: "\f2ae";
}

.fa-first-order:before {
    content: "\f2b0";
}

.fa-yoast:before {
    content: "\f2b1";
}

.fa-themeisle:before {
    content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4";
}

.fa-handshake-o:before {
    content: "\f2b5";
}

.fa-envelope-open:before {
    content: "\f2b6";
}

.fa-envelope-open-o:before {
    content: "\f2b7";
}

.fa-linode:before {
    content: "\f2b8";
}

.fa-address-book:before {
    content: "\f2b9";
}

.fa-address-book-o:before {
    content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "\f2bc";
}

.fa-user-circle:before {
    content: "\f2bd";
}

.fa-user-circle-o:before {
    content: "\f2be";
}

.fa-user-o:before {
    content: "\f2c0";
}

.fa-id-badge:before {
    content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3";
}

.fa-quora:before {
    content: "\f2c4";
}

.fa-free-code-camp:before {
    content: "\f2c5";
}

.fa-telegram:before {
    content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb";
}

.fa-shower:before {
    content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "\f2cd";
}

.fa-podcast:before {
    content: "\f2ce";
}

.fa-window-maximize:before {
    content: "\f2d0";
}

.fa-window-minimize:before {
    content: "\f2d1";
}

.fa-window-restore:before {
    content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4";
}

.fa-bandcamp:before {
    content: "\f2d5";
}

.fa-grav:before {
    content: "\f2d6";
}

.fa-etsy:before {
    content: "\f2d7";
}

.fa-imdb:before {
    content: "\f2d8";
}

.fa-ravelry:before {
    content: "\f2d9";
}

.fa-eercast:before {
    content: "\f2da";
}

.fa-microchip:before {
    content: "\f2db";
}

.fa-snowflake-o:before {
    content: "\f2dc";
}

.fa-superpowers:before {
    content: "\f2dd";
}

.fa-wpexplorer:before {
    content: "\f2de";
}

.fa-meetup:before {
    content: "\f2e0";
}

.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;
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    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;
    -webkit-border-radius: 4px;
    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;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition:  all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-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: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.modal-header {
    padding: 6px 7px 0;
}

.modal-header .close {
    cursor: pointer;
    font-size: 44px;
    line-height: 18px;
    float: right;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.modal-title {
    margin: 0;
    line-height: 53px;
    font-family: "Roboto", sans-serif;
    font-size: 31px;
    display: block;
    text-align: center;
    font-weight: 100;
    padding: 0 30px;
}

.modal-body {
    position: relative;
    padding: 15px;
    padding-bottom: 20px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}

.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;
}

.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table;
}

.clearfix:after,
.modal-header:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: 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;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 700px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

/*.container {*/
    /*width: 1170px !important;*/
/*}*/

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

header,
nav,
section,
article,
aside,
footer {
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-webkit-input-placeholder {
    color: #666;
    opacity: .5;
    font-weight: 100;
}

*::-moz-placeholder {
    color: #666;
    opacity: .5;
    font-weight: 100;
}

*:focus::-webkit-input-placeholder {
    color: transparent !important;
}

*:focus::-moz-placeholder {
    color: transparent !important;
}

*:focus:-ms-input-placeholder {
    color: transparent !important;
}

*:focus::placeholder {
    color: transparent !important;
}

*:focus {
    outline: none !important;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
    color: #666;
}

body input:required:valid,
body textarea:required:valid {
    color: #666;
}

a, a:hover {
    text-decoration: none !important;
    color: #555;
}

body {
    font-size: 15px;
    min-width: 320px;
    font-weight: 400;
    position: relative;
    line-height: 1.75;
    font-family: "STRoboto", sans-serif;
    color: #555;
    font-variant: small-caps !important;
    overflow-x: hidden;
    opacity: 1;
    background-color: #f8f8f8;
    padding-bottom: 10px;
}

body .calc-fix {
    background: #fff;
    padding-left: 2px;
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 599;
    border-radius: 8px;
    -o-border-radius: 8px;
    -moz-border-radius: 8px;
    text-align: center;
}
body .calc-fix a {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}
body .calc-fix i {
    padding-left: 6px;
    font-size: 35px;
    color: #cd3d7a;
    padding: 0;
    margin: 0;
    line-height: 1;
}
body .calc-fix p {
    font-size: 14px;
    padding: 0;
    margin: 0;
    line-height: 1;
}

button,
input[type=submit],
a.callme,
.buy.to-basket {
    -webkit-transition:  all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

#top {
    background-color: #fff;
    width: 100%;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
    position: relative;
    z-index: 500;;
}

.header {
    padding-bottom: 10px;
}

.header .head-top .link, .header .head-top .rezhim, .header .head-top .city {
    font-size: 12px;
    height: 20px;
    margin-top: 12px;
}

.header .head-top .city {
    text-align: right;
}

.header .head-top .city a {
    text-decoration: none;
    border: 0;
}

.header .head-top .city .fa {
    color: #00a94c;
    margin-right: 9px;
}

.header .head-top .link .fa {
    display: inline-block;
    width: 20px;
}

.header .head-top .link .enter {
    margin-left: 40px;
}

.header .head-top .link .enter .fa {
    color: #cd3d7a;
    width: 21px;
}

.header .head-top .link .registration {
    margin-left: 37px;
}

.header .head-top .link .registration .fa {
    color: #00a9db;
}

.header .head-top .rezhim {
    text-align: right;
}

.header .head-top .rezhim .big {
    font-size: 13px;
}

.header .head-top .rezhim .strong {
    font-weight: 500;
}

.header .head-top .rezhim .fa {
    color: #00a94c;
    display: inline-block;
    margin-right: 11px;
}

.header .head-center {
    height: 88px;
}

.header .head-center .logo #logo {
    margin-top: -5px;
}

.header .head-center .search form {
    display: block;
    position: relative;
    padding-top: 38px;
    margin-left: 39px;
    width: 475px;
}

.header .head-center .search form input[type=text] {
    width: 475px;
    line-height: 33px;
    height: 37px;
    border: 1px solid #866ab3;
    color: #866ab3;
    padding-left: 40px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RUQ1QzMyNUQzOEM4MTFFNzlBQzg5RTVFRUU4M0U5N0YiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RUQ1QzMyNUUzOEM4MTFFNzlBQzg5RTVFRUU4M0U5N0YiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFRDVDMzI1QjM4QzgxMUU3OUFDODlFNUVFRTgzRTk3RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFRDVDMzI1QzM4QzgxMUU3OUFDODlFNUVFRTgzRTk3RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PtCzp7EAAAEXSURBVHjanFTRDYIwEK2EBXAEHEFHwBFgBD9cACYwuIIjyKefOoKOICPYEfQueZjXs0jCS15KubvX6/XaxWF/cQYlWAgzoRfehB0YRUrfGnQVro1PRuIqWEE8QELOz4iIhWZ5h39U6EpGXa0RLoULjA1lkQvPMaGSMlHnjfBIgR7zLf0rEBcI7WiuAf3Ith6w86EEQlyX00SNTqZegRAXzk8IeXOagdCoMYLRRRPsfcBuQojtNyvE+65xvDHksA/orFBHWWVouJq2kWHOjdjHhJxpe3VuhS/hG2Nr6pPj349Qj0Z8TNSoN2VorRCLVSgkd/ZwWVemKb9iaWTVv88F7p2jwuvoEzcPjcksT918DC+CXrHmI8AALWdBziPMYNkAAAAASUVORK5CYII=") 9px center no-repeat;
}

.header .head-center .search form input[type=submit] {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 75px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    background-color: #866ab3;
    color: #fff;
    border: none;
}

.header .head-center .search form input[type=submit]:hover {
    background-color: #6a4b9b;
}

.header .head-center .cart {
    text-align: center;
    padding: 0;
    padding-top: 33px;
}

.header .head-center .cart .icon {
    display: inline-block;
    width: 43px;
    height: 39px;
    padding-left: 9px;
    padding-top: 2px;
    margin-right: 3px;
    background: url(/local/templates/lednex/css/../img/icon-cart-top.png) center no-repeat;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.header .head-center .cart .text {
    color: #00a94c;
    font-size: 12px;
}

.header .head-center .phones {
    padding-bottom: 10px;
}

.header .head-center .phones .wrapper {
    text-align: right;
}

.header .head-center .phones .fa {
    color: #cd3d7a;
    padding-right: 10px;
}

.header .head-center .phones span {
    width: 100%;
    display: block;
    text-align: right;
}

.header .head-center .phones .one {
    font-size: 24px;
    line-height: 24px;
    font-weight: 100;
}

.header .head-center .phones .two {
    font-size: 18px;
    line-height: 18px;
    font-weight: 100;
}

.header .head-center .phones .mini {
    font-size: 10px;
    line-height: 16px;
    padding-bottom: 8px;
}

.header .head-bottom {
    height: 52px;
}

.header .head-bottom .menu-top .menu {
    padding: 0;
    margin: 0;
    padding-top: 5px;
}

.header .head-bottom .menu-top .menu li {
    list-style: none;
    display: inline-block;
}

.header .head-bottom .menu-top .menu li:first-child a {
    margin-left: 0;
}

.header .head-bottom .menu-top .menu li:last-child a {
    margin-right: 0;
}

.header .head-bottom .menu-top .menu li a {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-transition:  all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0 11px;
}

.header .head-bottom .menu-top .menu li:nth-child(1):hover a,
.header .head-bottom .menu-top .menu li:nth-child(1) a.selected {
    border-bottom: 1px solid #cd3d7a;
}

.header .head-bottom .menu-top .menu li:nth-child(2):hover a,
.header .head-bottom .menu-top .menu li:nth-child(2) a.selected {
    border-bottom: 1px solid #866ab3;
}

.header .head-bottom .menu-top .menu li:nth-child(3):hover a,
.header .head-bottom .menu-top .menu li:nth-child(3) a.selected {
    border-bottom: 1px solid #00a9db;
}

.header .head-bottom .menu-top .menu li:nth-child(4):hover a,
.header .head-bottom .menu-top .menu li:nth-child(4) a.selected {
    border-bottom: 1px solid #00a94c;
}

.header .head-bottom .menu-top .menu li:nth-child(5):hover a,
.header .head-bottom .menu-top .menu li:nth-child(5) a.selected {
    border-bottom: 1px solid #cd3d7a;
}

.header .head-bottom .menu-top .menu li:nth-child(6):hover a,
.header .head-bottom .menu-top .menu li:nth-child(6) a.selected {
    border-bottom: 1px solid #866ab3;
}

.header .head-bottom .menu-top .menu li:nth-child(7):hover a,
.header .head-bottom .menu-top .menu li:nth-child(7) a.selected {
    border-bottom: 1px solid #00a9db;
}

.header .head-bottom .menu-top .menu li:nth-child(8):hover a,
.header .head-bottom .menu-top .menu li:nth-child(8) a.selected {
    border-bottom: 1px solid #00a94c;
}

.header .head-bottom .menu-top .menu li:nth-child(9):hover a,
.header .head-bottom .menu-top .menu li:nth-child(9) a.selected {
    border-bottom: 1px solid #cd3d7a;
}

.header .head-bottom .menu-top .menu li:nth-child(10):hover a,
.header .head-bottom .menu-top .menu li:nth-child(10) a.selected {
    border-bottom: 1px solid #866ab3;
}

.header .head-bottom .callme-top {
    text-align: right;
}

.header .head-bottom .callme-top .callme {
    font-size: 15px;
    display: inline-block;
    line-height: 30px;
    padding: 0 12px;
    background-color: #00a9db;
    border-bottom: 3px solid #008db7;
    color: #fff;
}

.header .head-bottom .callme-top .callme:hover {
    margin-top: 2px;
    background-color: #008db7;
    border-bottom: 1px solid #008db7;
}

#center {
    background-color: #f8f8f8;
    /*padding-bottom: 30px;*/
}

.wrapper-menu .menu {
    background-color: #fff;
    padding-top: 23px;
    margin-left: -15px;
    border-bottom: 2px solid #e6e6e6;
}

.wrapper-menu .menu .head {
    height: 46px;
    line-height: 46px;
    background-color: #00a94c;
    padding-left: 15px;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
}

.wrapper-menu .menu .head .burger {
    float: right;
    width: 23px;
    height: 3px;
    background-color: #fff;
    margin-right: 15px;
    margin-top: 22px;
    position: relative;
}

.wrapper-menu .menu .head .burger:after, .wrapper-menu .menu .head .burger:before {
    content: "";
    display: block;
    width: 23px;
    height: 3px;
    background-color: #fff;
    -webkit-transition:  all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.wrapper-menu .menu .head .burger:before {
    position: absolute;
    top: -6px;
}

.wrapper-menu .menu .head .burger:after {
    position: absolute;
    bottom: -6px;
}

.wrapper-menu .menu ul#main-menu {
    display: block;
    padding: 0;
    margin: 0;
}

.wrapper-menu .menu ul#main-menu > li.group {
    padding: 0;
    margin: 0;
    list-style: none;
    height: 42px;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
}

.wrapper-menu .menu ul#main-menu > li.group:hover {
    border-bottom: 1px solid #00a9db;
    background-color: #fcfeff;
}

.wrapper-menu .menu ul#main-menu > li.group:hover:after {
    border-left: 8px solid #00a9db;
}

.wrapper-menu .menu ul#main-menu > li.group.childs-groups:after {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    border: 8px solid transparent;
    border-left: 8px solid #e6e6e6;
}

.wrapper-menu .menu ul#main-menu > li.group:hover .subgroup {
    display: block;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup {
    display: none;
    width: 600px;
    padding: 15px 30px 15px;
    position: absolute;
    font-size: 12px;
    top: -1px;
    right: -600px;
    z-index: 99;
    background-color: #fcfeff;
    border: 1px solid #e6e6e6;
    border-left: 1px solid #00a9db;
    border-bottom: 3px solid #00a9db;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup:before {
    content: "";
    display: block;
    width: 1px;
    height: 42px;
    background-color: #fff;
    position: absolute;
    top: -1px;
    left: -1px;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup .left {
    float: left;
    width: 49%;
    border-right: 1px solid #e6e6e6;
    padding-right: 20px;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup .right {
    float: right;
    width: 50%;
    padding-left: 20px;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup a {
    line-height: 16px;
    display: inline-block;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup div > a {
    margin-bottom: 8px;
    text-decoration: underline !important;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup div > a:hover {
    font-weight: 500;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup ul {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    margin-top: -6px;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup ul li {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 15px;
    line-height: 15px !important;
    position: relative;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup ul li a {
    font-size: 11px;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup ul li a:hover {
    font-weight: 500;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup ul li:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 6px;
    border: 3px solid transparent;
    border-left: 3px solid #777;
}

.wrapper-menu .menu ul#main-menu > li.group .subgroup ul li:hover:after {
    border-left: 3px solid #00a9db;
}

.wrapper-menu .menu ul#main-menu > li.group img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 7px;
    left: 15px;
    border: 1px solid rgba(230, 230, 230, .4)
}

.wrapper-menu .menu ul#main-menu > li.group > a {
    height: 42px;
    width: 100%;
    display: inline-block;
}

.wrapper-menu .menu ul#main-menu > li.group > a:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    font-size: 0;
}

.wrapper-menu .menu ul#main-menu > li.group > a span {
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 58px;
    padding-right: 45px;
    line-height: 15px;
}

.inner #wrapper-content {
    padding-top: 0;
}
#wrapper-catalog .catalog{
    padding-left: 0px;
    padding-right: 0px;
}
.wrapper-content {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 22px;
    background-color: #fff;
}

.wrapper-content .breadcrumbs {
    font-size: 12px;
}

.wrapper-content .breadcrumbs .fa {
    color: #cd3d7a;
    font-size: 16px;
}

.wrapper-content .breadcrumbs a {
    border-bottom: 1px solid #00a9db;
}

.wrapper-content .breadcrumbs a:hover {
    border-bottom: 0;
}

.wrapper-content .content h1 {
    margin: 0;
    padding-top: 20px;
    font-size: 24px;
    font-weight: normal;
    margin: 0 15px;
    line-height: 26px;
    margin-bottom: 10px;
}

.wrapper-content .groups .group {
    height: 63px;
    border: 1px solid #e6e6e6;
    margin-bottom: 15px;
}

.wrapper-content .groups .group:hover {
    border: 1px solid #00a9db;
}

.wrapper-content .groups .group a {
    font-size: 12px;
    line-height: 14px;
    display: block;
    width: 100%;
    min-height: 100%;
    height: 63px;
    padding: 5px;
}

.wrapper-content .groups .group a:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    font-size: 0;
}

.wrapper-content .groups .group img {
    display: block;
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 15px;
    border: 1px solid rgba(230, 230, 230, .3);
}

.wrapper-content .groups .group span {
    display: inline-block;
    width: 170px;
    vertical-align: middle;
    font-weight: 600;
}

.wrapper-content .products-head {
    background-color: #866ab3;
    color: #fff;
    font-size: 12px;
    line-height: 28px;
    margin-bottom: 15px;
}

.wrapper-content .products-head a {
    color: #fff;
    text-decoration: underline !important;
    white-space: nowrap;
}

.wrapper-content .products-head .sort-one, .wrapper-content .products-head .sort-twoo {
    display: none;
    position: absolute;
    top: 21px;
    left: 0;
    z-index: 10;
    background: #866ab3;
    margin: 0;
    padding: 5px 15px 5px 10px;
    list-style: none;
}

.wrapper-content .products-head .sort-one li, .wrapper-content .products-head .sort-twoo li {
    margin: 0;
    padding: 0;
    line-height: 20px;
}

.wrapper-content .products-head .sort-one-acc, .wrapper-content .products-head .sort-twoo-acc {
    display: inline-block;
    padding-right: 15px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAYAAAB8ZH1oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDA4NThCREEzOTQyMTFFNzg2Rjk4QUJGNzc2NTc5QkMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDA4NThCREIzOTQyMTFFNzg2Rjk4QUJGNzc2NTc5QkMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MDg1OEJEODM5NDIxMUU3ODZGOThBQkY3NzY1NzlCQyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MDg1OEJEOTM5NDIxMUU3ODZGOThBQkY3NzY1NzlCQyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ph/WICoAAABZSURBVHjaYvj//78xEN8F4m9A/AkNfwfiK0CsxQAkQNgRiN/8xwSPgNgUpAamEIStgPgFkqL7QKwHk0dWCMJ2QPwBiJ9BnQSXYwSrRgVWQPwdiM8jCwIEGAB4xJD+8cFhwAAAAABJRU5ErkJggg==") right center no-repeat;
    position: relative;
    cursor: pointer;
}

.wrapper-content .products-head .sort-one-acc {
    margin-right: 15px;
}

.wrapper-content .products-head .burger, .wrapper-content .products-head .table {
    margin-top: 5px;
    display: block;
    float: right;
    width: 20px;
    height: 18px;
}

.wrapper-content .products-head .burger:hover, .wrapper-content .products-head .burger.active, .wrapper-content .products-head .table:hover, .wrapper-content .products-head .table.active {
    opacity: 1;
}

.wrapper-content .products-head .burger {
    margin-right: 15px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjZEMUNERkIzOTQyMTFFN0JGN0FCQjA3N0VFQzk4NDIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjZEMUNERkMzOTQyMTFFN0JGN0FCQjA3N0VFQzk4NDIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGNkQxQ0RGOTM5NDIxMUU3QkY3QUJCMDc3RUVDOTg0MiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGNkQxQ0RGQTM5NDIxMUU3QkY3QUJCMDc3RUVDOTg0MiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvGqwQgAAAA2SURBVHjaYvzx48d/BioCJgYqA6obyPj/P8THP3/+pMggdnZ2GrlwNFJGI2U0UkYjBRsACDAAceIhsf7oye0AAAAASUVORK5CYII=");
}

.wrapper-content .products-head .table {
    opacity: .7;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkIwODhDMzkzOTQzMTFFNzk1NUZGQjVCQjRBQTlFRkQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkIwODhDM0EzOTQzMTFFNzk1NUZGQjVCQjRBQTlFRkQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCQjA4OEMzNzM5NDMxMUU3OTU1RkZCNUJCNEFBOUVGRCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCQjA4OEMzODM5NDMxMUU3OTU1RkZCNUJCNEFBOUVGRCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pug3zUgAAAAzSURBVHjaYvwPBAyYgBGIsYkTBEwMVAZUN5AF6j0GHN4eHC4cjZTRSBmNlNFIwQAAAQYAqUkLL/HYt+sAAAAASUVORK5CYII=");
}

.wrapper-content .wrapper-products .product {
    border: 1px solid #e6e6e6;
    border-bottom: 3px solid #e6e6e6;
    margin-bottom: 15px;
}

.wrapper-content .wrapper-products .product .head {
    height: auto;
    padding-bottom: 5px;
    position: relative;
}

.wrapper-content .wrapper-products .product .head .h5,
.wrapper-content .wrapper-products .product .head .name-title {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: normal;
    line-height: 18px;
    padding-top: 11px;
    position: relative;
    display: block;
}

.wrapper-content .wrapper-products .product .head .h5:before,
.wrapper-content .wrapper-products .product .head .name-title:before {
    content: "";
    display: block;
    width: 185px;
    height: 1px;
    background-color: #e6e6e6;
    position: absolute;
    bottom: -7px;
    left: -15px;
}

.wrapper-content .wrapper-products .product .head .sticker {
    position: absolute;
    line-height: 28px;
    bottom: -29px;
    left: -20px;
    color: #fff;
}
.card-product .left .sticker{
    color: #fff;
    margin-left: -35px;
}
.wrapper-content .wrapper-products .product .head .sticker span,
.card-product .left .sticker span{
    display: block;
    float: left;
    padding: 0 10px;
    line-height: 28px;
    font-size: 13px;
}

.wrapper-content .wrapper-products .product .head .sticker .pink,
.card-product .left .sticker .pink {
    background-color: #cd3d7a;
}

.wrapper-content .wrapper-products .product .head .sticker .purple,
.card-product .left .sticker .purple{
    background-color: #866ab3;
}

.wrapper-content .wrapper-products .product .head .sticker .blue,
.card-product .left .sticker .blue{
    background-color: #00a9db
}

.wrapper-content .wrapper-products .product .head .sticker .yellow,
.card-product .left .sticker .yellow{
    border: 1px solid #e6e6e6;
    line-height: 26px;
    color: #555;
    background: url(/local/templates/lednex/css/../img/icon-ali.png) 117px 3px no-repeat #e9e9e9;
    padding-right: 40px;
}

.wrapper-content .wrapper-products .product .body .left .articul {
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: 5px;
}

.wrapper-content .wrapper-products .product .body .left .articul.top {
    margin-top: 30px;
}

.wrapper-content .wrapper-products .product .body .left .articul span {
    color: #00a9db;
}

.wrapper-content .wrapper-products .product .body .left .minitext {
    font-size: 12px;
    line-height: 18px;
    padding-bottom: 45px;
    position: relative;
}

.wrapper-content .wrapper-products .product .body .left .minitext b, .wrapper-content .wrapper-products .product .body .left .minitext strong {
    font-weight: 500;
}

.wrapper-content .wrapper-products .product .body .left .minitext a {
    display: inline;
}

.wrapper-content .wrapper-products .product .body .left .minitext a .img {
    width: 102px;
    height: 102px;
    margin: 0 15px 5px 0;
    border: 1px solid #e6e6e6;
    position: relative;
    float: left;
}

.wrapper-content .wrapper-products .product .body .left .minitext a .img:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    font-size: 0;
}

.wrapper-content .wrapper-products .product .body .left .minitext a .img img {
    display: inline-block;
    vertical-align: middle;
}

.wrapper-content .wrapper-products .product .body .left .minitext a .img .view-fast {
    position: absolute;
    top: 26px;
    left: 0;
    display: none;
    width: 100%;
    min-width: 100%;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: #00a9db;
    line-height: 13px;
    padding: 10px 0;
    opacity: .9;
}

.wrapper-content .wrapper-products .product .body .left .minitext a .img:hover {
    border: 1px solid #00a9db;
}

.wrapper-content .wrapper-products .product .body .left .minitext a .img:hover .view-fast {
    display: block;
}

.wrapper-content .wrapper-products .product .body .left .minitext .view-all {
    position: absolute;
    bottom: 12px;
    right: 0;
    line-height: 20px;
    padding: 0 8px;
    background-color: #00a94c;
    color: #fff;
    font-weight: 500;
}

.wrapper-content .wrapper-products .product .body .left .minitext .view-all:hover {
    background-color: #007f39;
}

.wrapper-content .wrapper-products .product .body .right {
    background-color: #e5f6fb;
    padding-top: 3px;
    margin-bottom: 10px;
}

.wrapper-content .wrapper-products .product .body .right .offer .property {
    margin-top: 4px;
    font-size: 12px;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .name {
    /*padding-bottom: 4px;*/
    display: inline-block;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color {
    margin: 0 5px;
    height: 17px;
    display: inline-block;
    position: relative;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color > div {
    margin-bottom: -3px;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color .white, .wrapper-content .wrapper-products .product .body .right .offer .property .color .green, .wrapper-content .wrapper-products .product .body .right .offer .property .color .blue, .wrapper-content .wrapper-products .product .body .right .offer .property .color .pink {
    width: 15px;
    height: 15px;
    border: 1px solid #bababa;
    display: inline-block;
    margin-right: 5px;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color .white.active, .wrapper-content .wrapper-products .product .body .right .offer .property .color .green.active, .wrapper-content .wrapper-products .product .body .right .offer .property .color .blue.active, .wrapper-content .wrapper-products .product .body .right .offer .property .color .pink.active {
    width: 20px;
    height: 20px;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color .white:hover, .wrapper-content .wrapper-products .product .body .right .offer .property .color .green:hover, .wrapper-content .wrapper-products .product .body .right .offer .property .color .blue:hover, .wrapper-content .wrapper-products .product .body .right .offer .property .color .pink:hover {
    border: 1px solid #00a9db;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color .tooltip {
    /*top: 5px !important;*/
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color .white {
    background-color: #fff;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color .green {
    background-color: #00a94c;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color .blue {
    background-color: #00a9db;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .color .pink {
    background-color: #cd3d7a;
}

.wrapper-content .wrapper-products .product .body .right .offer .property .hint {
    text-align: right;
    font-size: 11px;
    margin-top: 3px;
    line-height: 18px;
    padding-right: 18px;
}

.wrapper-content .wrapper-products .product .body .right .offer .price {
    text-align: center;
    margin-bottom: 5px;
}

.wrapper-content .wrapper-products .product .body .right .offer .price span {
    font-size: 22px;
    font-weight: 700;
}

.wrapper-content .wrapper-products .product .body .right .offer .quantity {
    text-align: center;
    padding-bottom: 15px;
}

.wrapper-content .wrapper-products .product .body .right .offer .quantity a {
    width: 28px;
    height: 28px;
    display: inline-block;
    border: 1px solid #e6e6e6;
    vertical-align: top;
    position: relative;
    background-color: #fff;
    cursor: pointer;
}

.wrapper-content .wrapper-products .product .body .right .offer .quantity .pluse:before {
    content: "";
    width: 15px;
    height: 3px;
    background-color: #888;
    position: absolute;
    top: 12px;
    left: 6px;
}

.wrapper-content .wrapper-products .product .body .right .offer .quantity .pluse:after {
    content: "";
    width: 3px;
    height: 15px;
    background-color: #888;
    position: absolute;
    top: 6px;
    left: 12px;
}

.wrapper-content .wrapper-products .product .body .right .offer .quantity .pluse:hover:before, .wrapper-content .wrapper-products .product .body .right .offer .quantity .pluse:hover:after {
    background-color: #000;
}

.wrapper-content .wrapper-products .product .body .right .offer .quantity .minus:before {
    content: "";
    width: 15px;
    height: 3px;
    background-color: #888;
    position: absolute;
    top: 12px;
    left: 6px;
}

.wrapper-content .wrapper-products .product .body .right .offer .quantity .minus:hover:before {
    background-color: #000;
}

.wrapper-content .wrapper-products .product .body .right .offer .quantity input[type=text] {
    width: 47px;
    height: 28px;
    display: inline-block;
    border: 1px solid #e6e6e6;
    vertical-align: top;
    text-align: center;
    line-height: 28px;
    font-size: 16px;
}

.wrapper-content .wrapper-products .product .body .right .offer .wrapper-buy {
    text-align: center;
    margin-bottom: 8px;
}

.wrapper-content .wrapper-products .product .body .right .offer .wrapper-buy .buy {
    display: inline-block;
    width: 109px;
    color: #fff;
    line-height: 32px;
    background-color: #00a9db;
    text-align: center;
    border-bottom: 3px solid #008db7;
    cursor: pointer;
}

.wrapper-content .wrapper-products .product .body .right .offer .wrapper-buy .buy:hover {
    margin-top: 2px;
    background-color: #008db7;
    border-bottom: 1px solid #008db7;
}

.wrapper-content .wrapper-products .product .body .right .offer .wrapper-buy .buy .fa {
    font-size: 20px;
}

.wrapper-content .wrapper-products .product .body .right .offer .availability {
    text-align: center;
    font-size: 12px;
    margin-bottom: 8px;
}

.wrapper-content .wrapper-products .product .body .right .offer .availability span {
    font-weight: 500;
}

.wrapper-content .wrapper-products .product .body .right .offer .other-link {
    margin-bottom: 12px;
}

.wrapper-content .wrapper-products .product .body .right .offer .other-link div {
    line-height: 18px;
    padding-left: 20px;
}

.wrapper-content .wrapper-products .product .body .right .offer .other-link div span {
    font-size: 10px;
    display: inline-block;
    line-height: 12px;
    border-bottom: 1px solid #00a9db;
    cursor: pointer;
}

.wrapper-content .wrapper-products .product .body .right .offer .other-link div span:hover {
    border: none;
}

.wrapper-content .wrapper-products .product .body .right .offer .other-link div.compare {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAALCAYAAACksgdhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjQ2NDk4NzUzOUFBMTFFN0E1M0FCNDJGOUE0OENGNTIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjQ2NDk4NzYzOUFBMTFFN0E1M0FCNDJGOUE0OENGNTIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGNDY0OTg3MzM5QUExMUU3QTUzQUI0MkY5QTQ4Q0Y1MiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGNDY0OTg3NDM5QUExMUU3QTUzQUI0MkY5QTQ4Q0Y1MiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsuOAqsAAAEZSURBVHjaZJI/S0JhFIfvVXFTg1Bo0MUEqU1QaFBotw+guItIDlKBDWIgBA4uIermIM2B7YKLW99AiLAQnBRcJLk9B86Nqx54+L3vuefPj3uvaVmW4Yzn8ruJtOEGRlCtdbJ7RaY0URjl3AI3+OEapnAFY1jDDh4YMPNocxDS4AU796lNKfiFrdbNTNse2x6RFQxgAgn4gAzcwoYtL1Lr0oZz5Azi4IMkhFVlegRi1EnNv5U7aKg98V1F5zrwHmnqghpUXCQvOXxTuIAv8U8upg0XyJL8D8iQDbm4bHqCAJc33Xqi1nJQh9ODZ1GPes4Y+zFWDenrd8ZEfHaN4+gdqDO69sctcCnaSfy/Ov6QPFLSa59nwz8BBgDaOV4G+dy08gAAAABJRU5ErkJggg==") 0 5px no-repeat;
}

.wrapper-content .wrapper-products .product .body .right .offer .other-link div.favorites {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTdENTBBMUQzOUFCMTFFNzgzMEJBODQ3RjQwQUUxNDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTdENTBBMUUzOUFCMTFFNzgzMEJBODQ3RjQwQUUxNDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5N0Q1MEExQjM5QUIxMUU3ODMwQkE4NDdGNDBBRTE0NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5N0Q1MEExQzM5QUIxMUU3ODMwQkE4NDdGNDBBRTE0NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp1ZpIYAAADFSURBVHjaYvz//z8DOjhnVz0VSP03OtSagy7HiK4BqJgZSL2EcsWBmv4iyzMxYAJrIBaGYmt0SWwa/HCwIU46a1t1HUhLIolxAzELlP0HiL8iyT0H2TAXiHmAmB+KWZAUsCCJg9TMBXsa6FF7IGc5mk3I4DkQRwID4CA8lICaxIDUNahnkcFbINYCKn6F7mlWLIoZoGKs2ELJH4n9Goox5JA1BEDpY0BsBMXH0ORQNMgDcS8QOwDd+wSEQWyomDxMEUCAAQAZSzX32b/3GgAAAABJRU5ErkJggg==") 0 5px no-repeat;
}

.wrapper-products .product .body .right .offer .other-link div.compare.add,
.wrapper-content .wrapper-products .product .body .right .offer .other-link div.favorites.add {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkMxMjNEN0UwNEQwRTExRTc5NjExODg1QTZENjFDMUExIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkMxMjNEN0UxNEQwRTExRTc5NjExODg1QTZENjFDMUExIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzEyM0Q3REU0RDBFMTFFNzk2MTE4ODVBNkQ2MUMxQTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzEyM0Q3REY0RDBFMTFFNzk2MTE4ODVBNkQ2MUMxQTEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7cDfl5AAABFElEQVR42nTSy0oCYRjG8elDEpQ20Q1YIB02rcKNmwhXWXYQisCraFW30DWIEEGLdmZtKmpjLjp5CWJGB7G8Avu/8Ax8DM4Hv2EO3/POyzsz8Zw/GgVB0EcBr0H8msINVhyHNmZwhmxMIIWaBfBuoTVcYwFXmB8TOMc2uig6tbaPO8zh0gumFSiihw28OT0cYgf3CtaRU0sW+AgDtjnhtfGnFi6wigdMooNdvIQbXaT/X1QwUMDWIZ78TdFQEieY9u4dq+WxoaTGvocvrOMWyxrObDRkrZxqGD8ooaECTU3TrjNhyL5DFWUFNtFSsb4KPCpoU804nRzg29vgr/DN9sYla9VpvJ8adzPmN7KCWyq4+C/AANYSPG7jvJi3AAAAAElFTkSuQmCC') 0 5px no-repeat;
}

.wrapper-content .wrapper-products .product .wrapper-related {
    padding-top: 2px;
    border-top: 1px solid #e6e6e6;
    font-size: 12px;
}

.wrapper-content .wrapper-products .product .wrapper-related .related {
    margin-top: 3px;
    margin-bottom: 8px;
}

.wrapper-content .wrapper-products .product .wrapper-related .related .img {
    width: 52px;
    height: 52px;
    border: 1px solid #e6e6e6;
    display: inline-block;
    margin-right: 8px;
}

.wrapper-content .wrapper-products .product .wrapper-related .related .img:hover {
    border: 1px solid #00a9db;
}

.wrapper-content .wrapper-products .product .wrapper-related .related .img img {
    width: 50px;
    height: 50px;
}
.wrapper-content .wrapper-filter {
    padding-right: 0px;
}
.wrapper-content .wrapper-filter .filter,
.wrapper-content .wrapper-filter .banner {
    border: 1px solid #e6e6e6;
    border-top: 0;
    /*display: none;*/
}

.wrapper-content .wrapper-filter .banner {
    width: 250px;
    height: auto;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    text-align: center;
    margin-top: 5px;
}

.wrapper-content .wrapper-filter .filter .head {
    height: 46px;
    line-height: 46px;
    background-color: #cd3d7a;
    padding-right: 15px;
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
    text-align: right;
    position: relative;
}

.wrapper-content .wrapper-filter .filter .head i {
    color: #fff;
    font-size: 18px;
    width: 15px;
    height: 18px;
    position: absolute;
    top: 15px;
    left: 15px;
}

#wrapper-content, .rndm-content, .tabs__content {
    font-size: 14px;
    font-variant: normal;
    line-height: 19px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.tabs__content {
    font-size: 14px;
    line-height: 1.4;
}
#wrapper-content h2, .rndm-content h2, .tabs__content h2 {
    margin: 0;
    padding: 10px 0px 10px 10px;
    font-size: 22px;
    font-weight: normal;
}

#wrapper-content a {
    border-bottom: 1px solid #00a9db;
}

#wrapper-content a:hover {
    border: none;
}

#wrapper-content .text-content {
    position: relative;
    width: 800px;
}

.main-product .body .left .articul {
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: 5px;
}

.main-product .body .left .articul span {
    color: #00a9db;
}

.main-product .body .left .minitext {
    font-size: 13px;
    line-height: 18px;
    padding-bottom: 10px;
    position: relative;
}

.main-product .body .left .minitext b, .main-product .body .left .minitext strong {
    font-weight: 500;
}

.main-product .body .left .minitext a {
    display: inline;
}

.main-product .body .left .minitext a .img {
    width: 152px;
    height: 152px;
    margin: 0 10px 10px 0;
    border: 1px solid #e6e6e6;
    position: relative;
    float: left;
}

.main-product .body .left .minitext a .img:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    font-size: 0;
}

.main-product .body .left .minitext a .img img {
    display: inline-block;
    vertical-align: middle;
}

.main-product .body .left .minitext a .img .view-fast {
    height: 60px;
    position: absolute;
    top: 46px;
    left: 0;
    display: none;
    width: 100%;
    min-width: 100%;
    color: #fff;
    font-size: 11px;
    text-align: center;
    line-height: 11px;
    padding: 10px 0;
    opacity: .8;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAdCAYAAAC5UQwxAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjI1MDRBRkQzQUZGMTFFNzkxRkVDODZFNTA0QThDODkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjI1MDRBRkUzQUZGMTFFNzkxRkVDODZFNTA0QThDODkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMjUwNEFGQjNBRkYxMUU3OTFGRUM4NkU1MDRBOEM4OSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMjUwNEFGQzNBRkYxMUU3OTFGRUM4NkU1MDRBOEM4OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkBIB8EAAAF2SURBVHjatFeLkYQgDGWda8AWaIEWbMEWuBK4EmzBK+EswS3BLcEtwSuBw5sww7BJCK6+mTfr8vGRAEm8ee+VAG2ggeffwIc6il2QoA4cAlePYw50gS3zjhdijS0ISbGB8CFBE7j4Y5gl1uaWbf49LCXR9M9CuGsAy9O9tWARZWlR0BGr1QUX9YRXHCeIuRJzTRxjkH3fEM+QghZZYYcM5vp65B0WE2ySCx2xX+p75XWekGBgsIGY4HQwhkwSQcW480d4FeIB6ZA+1KVc/DwdH4HPQJ20xefPrH2G369svx7ZvIinVNAkE7BJ1KEyEsEGmdwfcKeGeSnuUsFdzFYKDsgiJy4fYnGxz06YI/Kfq4mnijnSvpDnNHN1jCRbOGLyCn0d0IIQl8pGaQIe/XkYpSXGpaJcnlsrSgtDZJ0XUSVIsGNWDaxJxZYn6KKoqinxhKREh6sEOVHTqGvwDcG/qvI+29L97qqb8NviHWiIs/9p7E+AAQDRrUPIIyu5xQAAAABJRU5ErkJggg==") center no-repeat #00a9db;
}

.main-product .body .left .minitext a .img:hover {
    border: 1px solid #00a9db;
}

.main-product .body .left .minitext a .img:hover .view-fast {
    display: block;
}

.card-product .left .text-preview {
    padding-left: 165px;
    min-height: 160px;
}

.main-product .body .left .minitext .view-all {
    position: absolute;
    bottom: 15px;
    right: 0;
    line-height: 20px;
    padding: 0 8px;
    background-color: #00a94c;
    color: #fff;
}

.main-product .body .left .minitext .view-all:hover {
    background-color: #007f39;
}

.main-product .body .left .wrapper-otherfoto {
    padding-top: 15px;
    border-top: 1px solid #e6e6e6;
    font-size: 12px;
}

.main-product .body .left .wrapper-otherfoto .otherfoto {
    margin-top: 3px;
    margin-bottom: 8px;
    height: 90px;
    overflow: hidden;
}

.main-product .body .left .wrapper-otherfoto .otherfoto .img {
    width: 87px;
    height: 87px;
    border: 1px solid #e6e6e6;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    text-align: center;
}

.main-product .body .left .wrapper-otherfoto .otherfoto .img:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    font-size: 0;
}

.main-product .body .left .wrapper-otherfoto .otherfoto .img img {
    display: inline-block;
    vertical-align: middle;
}

.main-product .body .left .wrapper-otherfoto .otherfoto .img .view-fast {
    height: 40px;
    position: absolute;
    top: 23px;
    left: 0;
    display: none;
    width: 100%;
    min-width: 100%;
    color: #fff;
    font-size: 11px;
    text-align: center;
    line-height: 11px;
    padding: 10px 0;
    opacity: .8;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAdCAYAAAC5UQwxAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjI1MDRBRkQzQUZGMTFFNzkxRkVDODZFNTA0QThDODkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjI1MDRBRkUzQUZGMTFFNzkxRkVDODZFNTA0QThDODkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMjUwNEFGQjNBRkYxMUU3OTFGRUM4NkU1MDRBOEM4OSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMjUwNEFGQzNBRkYxMUU3OTFGRUM4NkU1MDRBOEM4OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkBIB8EAAAF2SURBVHjatFeLkYQgDGWda8AWaIEWbMEWuBK4EmzBK+EswS3BLcEtwSuBw5sww7BJCK6+mTfr8vGRAEm8ee+VAG2ggeffwIc6il2QoA4cAlePYw50gS3zjhdijS0ISbGB8CFBE7j4Y5gl1uaWbf49LCXR9M9CuGsAy9O9tWARZWlR0BGr1QUX9YRXHCeIuRJzTRxjkH3fEM+QghZZYYcM5vp65B0WE2ySCx2xX+p75XWekGBgsIGY4HQwhkwSQcW480d4FeIB6ZA+1KVc/DwdH4HPQJ20xefPrH2G369svx7ZvIinVNAkE7BJ1KEyEsEGmdwfcKeGeSnuUsFdzFYKDsgiJy4fYnGxz06YI/Kfq4mnijnSvpDnNHN1jCRbOGLyCn0d0IIQl8pGaQIe/XkYpSXGpaJcnlsrSgtDZJ0XUSVIsGNWDaxJxZYn6KKoqinxhKREh6sEOVHTqGvwDcG/qvI+29L97qqb8NviHWiIs/9p7E+AAQDRrUPIIyu5xQAAAABJRU5ErkJggg==") center no-repeat #00a9db;
}

.main-product .body .left .wrapper-otherfoto .otherfoto .img:hover {
    border: 1px solid #00a9db;
}

.main-product .body .left .wrapper-otherfoto .otherfoto .img:hover .view-fast {
    display: block;
}

.main-product .body .right {
    background-color: #e5f6fb;
    padding-top: 3px;
    margin-bottom: 10px;
    margin-right: -1px;
    float: right;
}

.main-product .body .right .offer .property {
    margin-top: 4px;
    /*    font-size: 12px;*/
    min-height: 340px;
}

.main-product .body .right .offer .property .name {
    /*padding-bottom: 4px;*/
    display: inline-block;
}

.main-product .body .right .offer .property .color {
    margin: 0 5px;
    height: 20px;
    display: inline-block
}

.main-product .body .right .offer .property .color .white, .main-product .body .right .offer .property .color .green, .main-product .body .right .offer .property .color .blue, .main-product .body .right .offer .property .color .pink {
    width: 15px;
    height: 15px;
    border: 1px solid #bababa;
    display: inline-block;
    margin-right: 5px;
}

.main-product .body .right .offer .property .color .white.active, .main-product .body .right .offer .property .color .green.active, .main-product .body .right .offer .property .color .blue.active, .main-product .body .right .offer .property .color .pink.active {
    width: 20px;
    height: 20px;
}

.main-product .body .right .offer .property .color .white:hover, .main-product .body .right .offer .property .color .green:hover, .main-product .body .right .offer .property .color .blue:hover, .main-product .body .right .offer .property .color .pink:hover {
    border: 1px solid #00a9db;
}

.main-product .body .right .offer .property .color .tooltip {
    top: -20px !important;
}

.main-product .body .right .offer .property .color .white {
    background-color: #fff;
}

.main-product .body .right .offer .property .color .green {
    background-color: #00a94c;
}

.main-product .body .right .offer .property .color .blue {
    background-color: #00a9db;
}

.main-product .body .right .offer .property .color .pink {
    background-color: #cd3d7a;
}

.main-product .body .right .offer .property .hint {
    text-align: center;
    font-size: 11px;
    /*margin-top: 3px;*/
    line-height: 18px;
}

.main-product .body .right .offer .price {
    text-align: center;
    margin-bottom: 5px;
}

.main-product .body .right .offer .price span {
    font-size: 24px;
    font-weight: 700;
}

.main-product .body .right .offer .quantity {
    text-align: center;
    padding-bottom: 15px;
}

.main-product .body .right .offer .quantity a {
    width: 28px;
    height: 28px;
    display: inline-block;
    border: 1px solid #e6e6e6;
    vertical-align: top;
    position: relative;
    background-color: #fff;
    cursor: pointer;
}

.main-product .body .right .offer .quantity .pluse:before {
    content: "";
    width: 15px;
    height: 3px;
    background-color: #888;
    position: absolute;
    top: 12px;
    left: 6px;
}

.main-product .body .right .offer .quantity .pluse:after {
    content: "";
    width: 3px;
    height: 15px;
    background-color: #888;
    position: absolute;
    top: 6px;
    left: 12px;
}

.main-product .body .right .offer .quantity .pluse:hover:before, .main-product .body .right .offer .quantity .pluse:hover:after {
    background-color: #000;
}

.main-product .body .right .offer .quantity .minus:before {
    content: "";
    width: 15px;
    height: 3px;
    background-color: #888;
    position: absolute;
    top: 12px;
    left: 6px;
}

.main-product .body .right .offer .quantity .minus:hover:before {
    background-color: #000;
}

.main-product .body .right .offer .quantity input[type=text] {
    width: 47px;
    height: 28px;
    display: inline-block;
    border: 1px solid #e6e6e6;
    vertical-align: top;
    text-align: center;
    line-height: 28px;
    font-size: 16px;
}

.main-product .body .right .offer .wrapper-buy {
    text-align: center;
    margin-bottom: 8px;
}

.main-product .body .right .offer .wrapper-buy .buy {
    display: inline-block;
    width: 109px;
    color: #fff;
    line-height: 32px;
    background-color: #00a9db;
    text-align: center;
    border-bottom: 3px solid #008db7;
    cursor: pointer;
}

.main-product .body .right .offer .wrapper-buy .buy:hover {
    margin-top: 2px;
    background-color: #008db7;
    border-bottom: 1px solid #008db7;
}

.main-product .body .right .offer .wrapper-buy .buy .fa {
    font-size: 20px;
}

.main-product .body .right .offer .availability {
    text-align: center;
    font-size: 12px;
    margin-bottom: 8px;
}

.main-product .body .right .offer .availability span {
    font-weight: 500;
}

.main-product .body .right .offer .other-link {
    margin-bottom: 12px;
    text-align: center;
}

.main-product .body .right .offer .other-link > div {
    line-height: 18px;
}

.main-product .body .right .offer .other-link > div > div {
    display: inline-block;
    line-height: 18px;
    padding-left: 20px;
}

.main-product .body .right .offer .other-link > div > div.compare {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAALCAYAAACksgdhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjQ2NDk4NzUzOUFBMTFFN0E1M0FCNDJGOUE0OENGNTIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjQ2NDk4NzYzOUFBMTFFN0E1M0FCNDJGOUE0OENGNTIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGNDY0OTg3MzM5QUExMUU3QTUzQUI0MkY5QTQ4Q0Y1MiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGNDY0OTg3NDM5QUExMUU3QTUzQUI0MkY5QTQ4Q0Y1MiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsuOAqsAAAEZSURBVHjaZJI/S0JhFIfvVXFTg1Bo0MUEqU1QaFBotw+guItIDlKBDWIgBA4uIermIM2B7YKLW99AiLAQnBRcJLk9B86Nqx54+L3vuefPj3uvaVmW4Yzn8ruJtOEGRlCtdbJ7RaY0URjl3AI3+OEapnAFY1jDDh4YMPNocxDS4AU796lNKfiFrdbNTNse2x6RFQxgAgn4gAzcwoYtL1Lr0oZz5Azi4IMkhFVlegRi1EnNv5U7aKg98V1F5zrwHmnqghpUXCQvOXxTuIAv8U8upg0XyJL8D8iQDbm4bHqCAJc33Xqi1nJQh9ODZ1GPes4Y+zFWDenrd8ZEfHaN4+gdqDO69sctcCnaSfy/Ov6QPFLSa59nwz8BBgDaOV4G+dy08gAAAABJRU5ErkJggg==") 0 5px no-repeat;
}

.main-product .body .right .offer .other-link > div > div.favorites {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTdENTBBMUQzOUFCMTFFNzgzMEJBODQ3RjQwQUUxNDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTdENTBBMUUzOUFCMTFFNzgzMEJBODQ3RjQwQUUxNDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5N0Q1MEExQjM5QUIxMUU3ODMwQkE4NDdGNDBBRTE0NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5N0Q1MEExQzM5QUIxMUU3ODMwQkE4NDdGNDBBRTE0NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp1ZpIYAAADFSURBVHjaYvz//z8DOjhnVz0VSP03OtSagy7HiK4BqJgZSL2EcsWBmv4iyzMxYAJrIBaGYmt0SWwa/HCwIU46a1t1HUhLIolxAzELlP0HiL8iyT0H2TAXiHmAmB+KWZAUsCCJg9TMBXsa6FF7IGc5mk3I4DkQRwID4CA8lICaxIDUNahnkcFbINYCKn6F7mlWLIoZoGKs2ELJH4n9Goox5JA1BEDpY0BsBMXH0ORQNMgDcS8QOwDd+wSEQWyomDxMEUCAAQAZSzX32b/3GgAAAABJRU5ErkJggg==") 0 5px no-repeat;
}

.main-product .body .right .offer .other-link > div > div.cheaper {
    padding-top: 5px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAYAAAD0f5bSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Mzc0NjNGREEzQjAxMTFFN0EyNTBBQzYwNkE0MDJENEIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Mzc0NjNGREIzQjAxMTFFN0EyNTBBQzYwNkE0MDJENEIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNzQ2M0ZEODNCMDExMUU3QTI1MEFDNjA2QTQwMkQ0QiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNzQ2M0ZEOTNCMDExMUU3QTI1MEFDNjA2QTQwMkQ0QiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrEhSyMAAADOSURBVHjanJLbDcIwDEWdqAtkhXaEMAL88QsjlBFghHYEugEwQhmBjEBX6Aq1pRvkWkFCXOlIedjxK45ueyoogBms5M2+ZUbmrRhx/lGl1memK0TcAln3OpJ2mJgj0zA75onzDnbkuKaANHINGzgemAccXkzEfeORb1DpyGt3kKMndd9KTXWhGaIBEKJk1Z7KkjpOJrVV96Yvc7rCOJq7ySMFO8CE9iZzLnaDx6Kn3yR2s1PfqDRcrUt+vLKvYD5RzS1hXrmT5P75sIsAAwBL5zO82FwgSwAAAABJRU5ErkJggg==") 0 7px no-repeat;
}

.main-product .body .right .offer .other-link > div > div.cheaper span {
    font-size: 14px;
}

.main-product .body .right .offer .other-link div span {
    font-size: 10px;
    display: inline-block;
    line-height: 12px;
    border-bottom: 1px solid #00a9db;
    cursor: pointer;
}

.main-product .body .right .offer .other-link div span:hover {
    border: none;
}

.main-product .body .right .offer .other-link div.compare {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAALCAYAAACksgdhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjQ2NDk4NzUzOUFBMTFFN0E1M0FCNDJGOUE0OENGNTIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjQ2NDk4NzYzOUFBMTFFN0E1M0FCNDJGOUE0OENGNTIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGNDY0OTg3MzM5QUExMUU3QTUzQUI0MkY5QTQ4Q0Y1MiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGNDY0OTg3NDM5QUExMUU3QTUzQUI0MkY5QTQ4Q0Y1MiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsuOAqsAAAEZSURBVHjaZJI/S0JhFIfvVXFTg1Bo0MUEqU1QaFBotw+guItIDlKBDWIgBA4uIermIM2B7YKLW99AiLAQnBRcJLk9B86Nqx54+L3vuefPj3uvaVmW4Yzn8ruJtOEGRlCtdbJ7RaY0URjl3AI3+OEapnAFY1jDDh4YMPNocxDS4AU796lNKfiFrdbNTNse2x6RFQxgAgn4gAzcwoYtL1Lr0oZz5Azi4IMkhFVlegRi1EnNv5U7aKg98V1F5zrwHmnqghpUXCQvOXxTuIAv8U8upg0XyJL8D8iQDbm4bHqCAJc33Xqi1nJQh9ODZ1GPes4Y+zFWDenrd8ZEfHaN4+gdqDO69sctcCnaSfy/Ov6QPFLSa59nwz8BBgDaOV4G+dy08gAAAABJRU5ErkJggg==") 0 5px no-repeat;
}

.main-product .body .right .offer .other-link div.favorites {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTdENTBBMUQzOUFCMTFFNzgzMEJBODQ3RjQwQUUxNDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTdENTBBMUUzOUFCMTFFNzgzMEJBODQ3RjQwQUUxNDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5N0Q1MEExQjM5QUIxMUU3ODMwQkE4NDdGNDBBRTE0NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5N0Q1MEExQzM5QUIxMUU3ODMwQkE4NDdGNDBBRTE0NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp1ZpIYAAADFSURBVHjaYvz//z8DOjhnVz0VSP03OtSagy7HiK4BqJgZSL2EcsWBmv4iyzMxYAJrIBaGYmt0SWwa/HCwIU46a1t1HUhLIolxAzELlP0HiL8iyT0H2TAXiHmAmB+KWZAUsCCJg9TMBXsa6FF7IGc5mk3I4DkQRwID4CA8lICaxIDUNahnkcFbINYCKn6F7mlWLIoZoGKs2ELJH4n9Goox5JA1BEDpY0BsBMXH0ORQNMgDcS8QOwDd+wSEQWyomDxMEUCAAQAZSzX32b/3GgAAAABJRU5ErkJggg==") 0 5px no-repeat;
}

.main-product .body .right .offer .other-link div.compare.add,
.main-product .body .right .offer .other-link div.favorites.add {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkMxMjNEN0UwNEQwRTExRTc5NjExODg1QTZENjFDMUExIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkMxMjNEN0UxNEQwRTExRTc5NjExODg1QTZENjFDMUExIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzEyM0Q3REU0RDBFMTFFNzk2MTE4ODVBNkQ2MUMxQTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzEyM0Q3REY0RDBFMTFFNzk2MTE4ODVBNkQ2MUMxQTEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7cDfl5AAABFElEQVR42nTSy0oCYRjG8elDEpQ20Q1YIB02rcKNmwhXWXYQisCraFW30DWIEEGLdmZtKmpjLjp5CWJGB7G8Avu/8Ax8DM4Hv2EO3/POyzsz8Zw/GgVB0EcBr0H8msINVhyHNmZwhmxMIIWaBfBuoTVcYwFXmB8TOMc2uig6tbaPO8zh0gumFSiihw28OT0cYgf3CtaRU0sW+AgDtjnhtfGnFi6wigdMooNdvIQbXaT/X1QwUMDWIZ78TdFQEieY9u4dq+WxoaTGvocvrOMWyxrObDRkrZxqGD8ooaECTU3TrjNhyL5DFWUFNtFSsb4KPCpoU804nRzg29vgr/DN9sYla9VpvJ8adzPmN7KCWyq4+C/AANYSPG7jvJi3AAAAAElFTkSuQmCC') 0 5px no-repeat;
}

.main-product .body .right .offer .call-now {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 10px;
    text-align: center;
    color: #866ab3;
}

.main-product .body .right .offer .call-now .big {
    font-size: 12px;
    color: #cd3d7a;
}

.main-product .body .right .offer .call-now .mini {
    font-size: 8px;
}

.main-product .body .wrapper-description {
    margin-bottom: 10px;
}

.main-product .body .wrapper-description .description {
    margin-top: 0px;
    margin-bottom: 15px;
    padding-right: 0;
}

.main-product .body .wrapper-description .description ul.tabs__caption {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    font-size: 0;
}

.main-product .body .wrapper-description .description ul.tabs__caption > li {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
    border: 1px solid #e6e6e6;
    margin-left: -1px;
    vertical-align: bottom;
    background-color: #f9f9f9;
    cursor: pointer;
}

.main-product .body .wrapper-description .description ul.tabs__caption > li:first-child {
    margin: 0;
}

.main-product .body .wrapper-description .description ul.tabs__caption > li span {
    font-size: 12px;
    line-height: 30px;
    padding: 0 10px;
}

.main-product .body .wrapper-description .description ul.tabs__caption > li.active {
    background-color: #fff;
    border-bottom: 0;
}

.main-product .body .wrapper-description .description ul.tabs__caption > li.active span {
    font-size: 13px;
    line-height: 35px;
    font-weight: 500;
}

.main-product .body .wrapper-description .tabs__content {
    position: relative;
    z-index: 1;
    padding: 15px 15px;
    margin-top: -1px;
    border: 1px solid #e6e6e6;
    display: none;
}

.main-product .body .wrapper-description .tabs__content.carcs {
    padding: 15px;
}

.main-product .body .wrapper-description .tabs__content.active {
    display: block;
}

.main-product .body .wrapper-description .tabs__content .characteristics {
    width: 100%;
}

.main-product .body .wrapper-description .tabs__content .characteristics tr {
    width: 100%;
}

.main-product .body .wrapper-description .tabs__content .characteristics tr:nth-child(odd) {
    background-color: #f3f3f3;
}

.main-product .body .wrapper-description .tabs__content .characteristics tr:nth-child(odd) > td:nth-child(1) {
    width: 40%;
    border-right: 1px solid #fff;
}

.main-product .body .wrapper-description .tabs__content .characteristics tr td {
    padding: 0 15px;
    line-height: 25px;
}

.main-product .body .wrapper-description .wrapper-related {
    padding-top: 2px;
    border-top: 1px solid #e6e6e6;
    font-size: 12px;
}

.main-product .body .wrapper-description .wrapper-related h6 {
    font-size: 18px;
    margin: 0;
    padding: 6px 0 6px 10px;
    font-weight: 300;
}

.main-product .body .wrapper-description .wrapper-related .related {
    margin-top: 3px;
    margin-bottom: 8px;
}

.main-product .body .wrapper-description .wrapper-related .related .img {
    width: 87px;
    height: 87px;
    border: 1px solid #e6e6e6;
    display: inline-block;
    margin-right: 8px;
}

.main-product .body .wrapper-description .wrapper-related .related .img img {
    width: 85px;
    height: 85px;
}

.main-product .body .wrapper-description .wrapper-related .related .img:hover {
    border: 1px solid #00a9db;
}

.footer {
    background-color: #fff;
}

.footer .container {
    padding-bottom: 15px;
    padding-top: 20px;
}

.footer .container .text-copiright {
    padding-top: 10px;
    font-size: 11px;
    line-height: 14px;
}

.footer .container .bottom-menu ul {
    margin: 0;
    padding: 0;
    padding-top: 6px;
}

.footer .container .bottom-menu ul li {
    list-style: none;
    line-height: 20px;
}

.footer .container .bottom-menu ul li a {
    text-transform: none;
    font-size: 12px;
    line-height: 20px;
}

.footer .container .bottom-menu ul li a:hover,
.footer .container .bottom-menu ul li a.selected {
    border-bottom: 1px solid #555;
}

.footer .container .callme-bottom {
    padding-top: 30px;
    text-align: right;
}

.footer .container .callme-bottom .callme {
    font-size: 15px;
    display: inline-block;
    line-height: 30px;
    padding: 0 10px;
    background-color: #00a9db;
    border-bottom: 3px solid #008db7;
    color: #fff;
}

.footer .container .callme-bottom .callme:hover {
    margin-top: 2px;
    background-color: #008db7;
    border-bottom: 1px solid #008db7;
}

.footer .container .phones {
    padding-top: 5px;
}

.footer .container .phones .wrapper {
    text-align: right;
}

.footer .container .phones .fa {
    color: #cd3d7a;
    padding-right: 10px;
}

.footer .container .phones span {
    width: 100%;
    display: block;
    text-align: right;
}

.footer .container .phones .one {
    font-size: 24px;
    line-height: 24px;
    font-weight: 100;
}

.footer .container .phones .two {
    font-size: 18px;
    line-height: 18px;
    font-weight: 100;
}

.footer .container .phones .mini {
    font-size: 10px;
    line-height: 16px;
    padding-bottom: 8px;
}

.bottom_fixed {
    position: fixed;
    left: 50%;
    bottom: 0;
    margin-left: -585px;
    background-color: #fff;
    font-size: 13px !important;
    border-top: 1px solid #e6e6e6;
    z-index: 11;
}

.bottom_fixed .row {
    height: 25px;
}

.bottom_fixed p {
    margin: 0;
    padding: 0;
}

.modal-header .close {
    color: #cd3d7a;
}

.wrapper-to-top .to-top {
    width: 25px;
    height: 25px;
    float: right;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.wrapper-to-top .to-top.active {
    animation: bgmove3 1s ease-in;
}

.wrapper-to-top .to-top .square1,
.wrapper-to-top .to-top .square2 {
    width: 25px;
    height: 25px;
    border: 2px solid #cd3d7a;
    border-bottom: 0;
    border-right: 0;
    position: absolute;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 0;
}

.wrapper-to-top .to-top .square1 {
    top: 15px;
}

.wrapper-to-top .to-top .square2 {
    top: 8px;
}

.wrapper-to-top .to-top .square1.active {
    animation: move1 1s infinite ease-in;
}

.wrapper-to-top .to-top .square2.active {
    animation: move2 1s infinite ease-in;
}

.bottom_compare.add .text-compare {
    animation: bgmove1 1s ease-in;
    display: inline-block;
}

.bottom_cart.add .text-cart {
    animation: bgmove2 1s ease-in;
    display: inline-block;
}

.bottom_fav .text-favotites {
    padding-left: 45px;
    padding-right: 25px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTdENTBBMUQzOUFCMTFFNzgzMEJBODQ3RjQwQUUxNDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTdENTBBMUUzOUFCMTFFNzgzMEJBODQ3RjQwQUUxNDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5N0Q1MEExQjM5QUIxMUU3ODMwQkE4NDdGNDBBRTE0NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5N0Q1MEExQzM5QUIxMUU3ODMwQkE4NDdGNDBBRTE0NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp1ZpIYAAADFSURBVHjaYvz//z8DOjhnVz0VSP03OtSagy7HiK4BqJgZSL2EcsWBmv4iyzMxYAJrIBaGYmt0SWwa/HCwIU46a1t1HUhLIolxAzELlP0HiL8iyT0H2TAXiHmAmB+KWZAUsCCJg9TMBXsa6FF7IGc5mk3I4DkQRwID4CA8lICaxIDUNahnkcFbINYCKn6F7mlWLIoZoGKs2ELJH4n9Goox5JA1BEDpY0BsBMXH0ORQNMgDcS8QOwDd+wSEQWyomDxMEUCAAQAZSzX32b/3GgAAAABJRU5ErkJggg==") 25px 5px no-repeat;
    line-height: 25px;
    position: relative;
}

.bottom_fav.add .text-favotites {
    animation: bgmove4 1s ease-in;
    display: inline-block;
}

.bottom_fav .text-favotites.active p {
    cursor: pointer;
}

.bottom_fav .text-favotites .block-favotite {
    width: 100%;
    min-width: 100%;
    display: none;
    background: #fff;
    padding: 5px 10px 15px 10px;
    border: 1px solid #e6e6e6;
    border-top: 3px solid #e6e6e6;
    border-bottom: 0;
    margin-left: -15px;
    font-size: 12px !important;
}

.bottom_fav .text-favotites .block-favotite table {
    width: 100%;
    min-width: 100%;
}

.uds {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    animation: uds 25s infinite ease-in;
    cursor: pointer;
}
.api-typo {
    display: block;
    padding: 10px;
    font-size: 12px;
    line-height: 1.25;
    margin: 20px 15px 30px 0;
    background: #f2f2f2;
    color: #454d5d;
    border: 1px solid rgba(69, 77, 93, 0.5);
}
.card-product .wrapper-related h6 {
    margin: 0;
    padding: 10px 0;
    font-size: 14px;
}

.card-product .wrapper-related {
    padding-top: 2px;
    border-top: 1px solid #e6e6e6;
    font-size: 12px;
}

.card-product .wrapper-related .related {
    margin-top: 3px;
    margin-bottom: 8px;
}

.card-product .wrapper-related .related .img {
    width: 52px;
    height: 52px;
    border: 1px solid #e6e6e6;
    display: inline-block;
    margin-right: 8px;
}

.card-product .related .img:hover {
    border: 1px solid #00a9db;
}

.card-product .related .img img {
    width: 50px;
    height: 50px;
}

.ul-adress {
    list-style-type: none;
}

@keyframes uds {
    from {
        -o-transform: rotate3d(0, 1, 0, 0deg);
        -ms-transform: rotate3d(0, 1, 0, 0deg);
        -moz-transform: rotate3d(0, 1, 0, 0deg);
        -webkit-transform: rotate3d(1, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    12% {
        -o-transform: rotate3d(0, 1, 0, 0deg);
        -ms-transform: rotate3d(0, 1, 0, 0deg);
        -moz-transform: rotate3d(0, 1, 0, 0deg);
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    14% {
        -o-transform: rotate3d(0, 1, 0, 180deg);
        -ms-transform: rotate3d(0, 1, 0, 180deg);
        -moz-transform: rotate3d(0, 1, 0, 180deg);
        -webkit-transform: rotate3d(0, 1, 0, 180deg);
        transform: rotate3d(0, 1, 0, 180deg);
    }
    16% {
        -o-transform: rotate3d(0, 1, 0, 0deg);
        -ms-transform: rotate3d(0, 1, 0, 0deg);
        -moz-transform: rotate3d(0, 1, 0, 0deg);
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    17% {
        -o-transform: rotate3d(0, 1, 0, -40deg);
        -ms-transform: rotate3d(0, 1, 0, -40deg);
        -moz-transform: rotate3d(0, 1, 0, -40deg);
        -webkit-transform: rotate3d(0, 1, 0, -40deg);
        transform: rotate3d(0, 1, 0, -70deg);
    }
    18% {
        -o-transform: rotate3d(0, 1, 0, 0deg);
        -ms-transform: rotate3d(0, 1, 0, 0deg);
        -moz-transform: rotate3d(0, 1, 0, 0deg);
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    19% {
        -o-transform: rotate3d(0, 1, 0, 40deg);
        -ms-transform: rotate3d(0, 1, 0, 40deg);
        -moz-transform: rotate3d(0, 1, 0, 40deg);
        -webkit-transform: rotate3d(0, 1, 0, 40deg);
        transform: rotate3d(0, 1, 0, 40deg);
    }
    20% {
        -o-transform: rotate3d(0, 1, 0, 0deg);
        -ms-transform: rotate3d(0, 1, 0, 0deg);
        -moz-transform: rotate3d(0, 1, 0, 0deg);
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    21% {
        -o-transform: rotate3d(0, 1, 0, -20deg);
        -ms-transform: rotate3d(0, 1, 0, -20deg);
        -moz-transform: rotate3d(0, 1, 0, -20deg);
        -webkit-transform: rotate3d(0, 1, 0, -20deg);
        transform: rotate3d(0, 1, 0, -20deg);
    }
    22% {
        -o-transform: rotate3d(0, 1, 0, 0deg);
        -ms-transform: rotate3d(0, 1, 0, 0deg);
        -moz-transform: rotate3d(0, 1, 0, 0deg);
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    23% {
        -o-transform: rotate3d(0, 1, 0, 10deg);
        -ms-transform: rotate3d(0, 1, 0, 10deg);
        -moz-transform: rotate3d(0, 1, 0, 10deg);
        -webkit-transform: rotate3d(0, 1, 0, 10deg);
        transform: rotate3d(0, 1, 0, 10deg);
    }
    24% {
        -o-transform: rotate3d(0, 1, 0, 0deg);
        -ms-transform: rotate3d(0, 1, 0, 0deg);
        -moz-transform: rotate3d(0, 1, 0, 0deg);
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    to {
        -o-transform: rotate3d(0, 1, 0, 0deg);
        -ms-transform: rotate3d(0, 1, 0, 0deg);
        -moz-transform: rotate3d(0, 1, 0, 0deg);
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes move1 {
    from {
        top: 15px;
    }
    75% {
        top: 17px;
    }
    to {
        top: 15px;
    }
}

@keyframes move2 {
    from {
        top: 8px;
    }
    70% {
        top: 10px;
    }
    to {
        top: 8px;
    }
}

@keyframes bgmove1 {
    from {
        background-color: #fff;
    }
    15% {
        color: #fff;
    }
    20% {
        background-color: #008db7;
        color: #fff !important;
    }
    to {
        background-color: #fff;
    }
}

@keyframes bgmove2 {
    from {
        background-color: #fff;
    }
    15% {
        color: #fff;
    }
    20% {
        background-color: #866ab3;
        color: #fff !important;
    }
    to {
        background-color: #fff;
    }
}

@keyframes bgmove3 {
    from {
        background-color: #fff;
    }
    15% {
        color: #fff;
    }
    20% {
        background-color: rgba(205, 61, 122, .3);
        color: #fff !important;
    }
    to {
        background-color: #fff;
    }
}

@keyframes bgmove4 {
    from {
        background-color: #fff;
    }
    15% {
        color: #fff;
    }
    20% {
        background-color: #00a94c;
        color: #fff !important;
    }
    to {
        background-color: #fff;
    }
}

.block-compare a,
.bottom_fav .text-favotites .block-favotite a {
    border-bottom: 1px solid #008db7;
}

.block-compare a:hover,
.bottom_fav .text-favotites .block-favotite a:hover {
    border: 0;
}

#сheaperModal,
#callmeModal {
    background: rgba(0, 0, 0, .5);
}

#сheaperModal table, #callmeModal table {
    width: 100%;
}

#сheaperModal table tr, #callmeModal table tr {
    vertical-align: top;
}

#сheaperModal .modal-dialog,
#callmeModal .modal-dialog {
    width: 400px;
    margin: 80px auto;
    padding-left: 20px;
    padding-right: 20px;
}

#сheaperModal input[type=text],
#callmeModal input[type=text] {
    margin-bottom: 10px;
    width: 100%;
    font-size: 13px;
    padding: 0 10px;
    line-height: 30px;
}

#сheaperModal input[type=submit],
#callmeModal input[type=submit] {
    display: block;
    width: 150px;
    border: 0;
    color: #fff;
    line-height: 32px;
    background-color: #00a9db;
    text-align: center;
    border-bottom: 3px solid #008db7;
    cursor: pointer;
    margin: 0 auto;
}

#сheaperModal input[type=submit]:hover,
#callmeModal input[type=submit]:hover {
    margin-top: 2px;
    background-color: #008db7;
    border-bottom: 1px solid #008db7;
}

#сheaperModal .capcha,
#callmeModal .capcha {
    margin-bottom: 3px;
}

#сheaperModal p,
#callmeModal p {
    line-height: 15px !important;
    margin-top: 0;
}

#callmeModal .modal-header .title,
#сheaperModal .modal-header .title{
    font-size: 20px;
}

a.characters,
.characters-prew {
    font-size: 12px;
    display: inline-block;
    padding: 0 10px;
    padding-right: 30px;
    line-height: 25px;
    position: relative;
    text-decoration: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #00a9db!important;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,169,219,0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,169,219,0.3);
    box-shadow: 0px 0px 10px 0px rgba(0,169,219,0.3);
    margin: 0 auto;
}

a.characters{
    margin-bottom: 5px;
}
a.characters-prew {
    padding-left: 30px;
    margin-top: 5px;
}
a.characters-prew:hover,
a.characters:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
a.characters-prew .fa{
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 23px;
    color: #cd3d7a;
}
a.characters .fa{
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 23px;
    color: #cd3d7a;
}

body font.errortext {
    font-size: 10px !important;
    line-height: 15px !important;
    color: #cd3d7a !important;
}

body font.notetext {
    color: #008db7;
    font-weight: 500;
}

.bx_ordercart .bx_ordercart_order_table_container .bx_ordercart_itemtitle a {
    font-weight: normal !important;
}

.oferta {
    padding-top: 5px;
    padding-bottom: 2px;
    text-align: center;
    font-size: 11px;
}

.confidential{
    border-bottom: 1px dotted!important;
}
.confidential:hover{
    border-bottom: 1px solid!important;
}
.confidential-td {
    padding-top: 10px;
    font-size: 11px;
}
.lednex-main {
    padding: 0 15px;
}
#btn-filter {
    display: none;
    -webkit-transition:  all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
    .header .head-center .search form {
        width: 420px;
        margin-left: 0;
    }
    .header .head-center .search form input[type=text] {
        width: 420px;
    }
    .header .head-bottom .callme-top .callme {
        font-size: 12px;
        padding: 0 6px;
    }
    .header .head-bottom .menu-top .menu li a {
        font-size: 13px;
        margin: 0 8px;
    }
    .header .head-bottom .menu-top .menu {
        padding-top: 12px;
    }
    .wrapper-menu .menu ul#main-menu > li.group img {
        top: 6px;
        left: 7px;
    }
    .wrapper-menu .menu ul#main-menu > li.group > a span {
        font-size: 12px;
        line-height: 13px;
        padding-left: 47px;
        padding-right: 30px;
    }
    .bottom_fixed {
        margin-left: -486px;
    }
    .bottom_fav .text-favotites {
        padding-left: 20px;
        padding-right: 20px;
        background-position-x: 3px;
    }
    .bottom_compare .text-compare {
        padding-left: 15px;
        padding-right: 20px;
        background-position-x: 0px;
        text-align: center;
    }
    .footer .container .callme-bottom .callme {
        font-size: 13px;
        padding: 0px 4px;
    }
    .wrapper-content .groups .category-catalog .group {
        border-top: 0;
        margin-bottom: 0px;
        height: 50px;
        padding: 0;
        overflow: hidden;
    }
    .wrapper-content .groups  .category-catalog .group:hover {
        border-top: 0;
    }
    .wrapper-content .groups> .category-catalog.col-md-12:first-child .group {
        border-top: 1px solid #e6e6e6;
    }
    .wrapper-content .groups .category-catalog .group a {
        height: 50px;
        padding: 0;
    }
    #wrapper-content .text-content {
        position: relative;
        width: 650px;
    }
    #wrapper-content .text-content img{
        width: 100%;
        height: auto;
    }
    #wrapper-content .text-content,
    .wrapper-content .wrapper-products .product .body .left .minitext .prew-txt {
        word-wrap: break-word;
    }
    .wrapper-menu .menu {
        padding-top: 0px;
    }
    .wrapper-content .wrapper-filter{
        padding-left: 15px;
        padding-right: 0px;
    }
    .footer .bottom-menu .left,
    .footer .bottom-menu .right {
        padding-left: 0;
        padding-right: 0;
    }
    .wrapper-content .groups {
        padding-bottom: 15px;
    }
    .wrapper-content .groups .category-catalog .group span {
        width: auto;
        display: inline;
        border-bottom: 1px dotted #000;
    }
    .uds {
        bottom: 20px;
        left: 5px;
        height: 50px;
        width: 50px;
    }
    #game-logo-round {
        height: 50px!important;
        width: 50px!important;
    }
    .wrapper-content .content h1 {
        padding-top: 15px;
    }
    #wrapper-catalog .groups {
        margin-top: 5px;
    }
    .wrapper-content .wrapper-filter .banner {
        width: 100%;
    }
    .wrapper-content .wrapper-filter .banner img {
        width: 100%;
        height: auto;
    }
    .main-product .body .wrapper-description .description {
        padding-left: 0;
        padding-right: 0;
    }
    .main-product .body .right .offer .call-now {
        font-size: 11px;
        line-height: 15px;
    }
    #kombox-filter {
        max-width: 250px;
        padding: 0px 5px 15px 5px;
    }
    #kombox-filter .kombox-filter-property-body a.kombox-values-other-show:after,
    #kombox-filter .kombox-filter-property-body a.kombox-values-other-hide:after {
        width: 125px;
    }
}
/* Medium Devices, Desktops */
@media only screen and (max-width: 991px) {
    #center .wrapper-content .resp-img img{
        width: 100%;
        height: auto;
    }
    .header .logo {
        padding-left: 0;
        padding-right: 0;
    }
    .header .head-top .link .enter {
        margin-left: 0px;
        padding: 3px 8px;
        border: 1px solid #cd3d7a;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .header .head-top .link .registration {
        margin-left: 10px;
        padding: 3px 8px;
        border: 1px solid #00a9db;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        -o-border-radius: 5px;
    }

    .header .head-top .link, .header .head-top .rezhim, .header .head-top .city {
        height: 28px;
    }

    .head-center div#title-search {
        margin-left: 0;
    }

    .header .head-center .search form,
    .header .head-center .search form input[type=text] {
        width: 100%;
    }

    .header .head-center .phones .one {
        font-size: 18px;
    }

    .header .head-center .phones .mini {
        padding-bottom: 0;
    }

    .header .head-center .phones {
        padding-top: 0;
    }

    .header .head-center {
        position: relative;
    }

    .header .head-center .cart {
        position: absolute;
        top: -30px;
        left: 266px;
        padding-top: 0;
    }

    .header .head-top .link {
        padding-left: 0;
        padding-right: 0;
    }

    .header .head-bottom .menu-top .menu li a {
        margin: 0 4px;
    }

    .header .head-bottom .callme-top {
        display: none;
    }

    .wrapper-menu .menu ul#main-menu {
        display: none;
        -webkit-box-shadow: 0px 10px 20px 2px rgba(0,0,0,0.5);
        -moz-box-shadow: 0px 10px 20px 2px rgba(0,0,0,0.5);
        box-shadow: 0px 10px 20px 2px rgba(0,0,0,0.5);
    }

    .wrapper-menu .menu ul#main-menu > li.group.childs-groups:after {
        position: relative;
        top: 0;
        right: 0;
        border: 0;
    }

    .wrapper-menu .menu ul#main-menu > li.group:hover {
        border-bottom: 1px solid #e6e6e6;
    }

    .wrapper-menu .menu ul#main-menu > li.group:hover:after {
        border-left: 0;
    }

    .wrapper-menu .menu ul#main-menu > li.group {
        height: 45px;
    }

    .wrapper-menu .menu ul#main-menu > li.group > a span {
        font-size: 15px;
        margin-left: 70px;
        padding: 0;
        border-bottom: 1px dotted #555;
    }

    .wrapper-menu .menu ul#main-menu > li.group:hover .subgroup {
        display: none;
    }

    .wrapper-menu .menu .head .burger {
        width: 35px;
    }

    .wrapper-menu .menu .head .burger.click {
        background-color: transparent;
    }
    .wrapper-menu .menu .head .burger:after, .wrapper-menu .menu .head .burger:before {
        width: 35px;
    }
    .wrapper-menu .menu .head .burger:before {
        top: -8px;
    }
    .wrapper-menu .menu .head .burger:after {
        bottom: -8px;
    }
    .wrapper-menu .menu .head .burger.click:after {
        position: absolute;
        bottom: 0;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .wrapper-menu .menu .head .burger.click:before {
        position: absolute;
        top: 0;
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .wrapper-menu .menu {
        padding-top: 0;
        margin-left: -15px;
        margin-right: -15px;
        border-bottom: 0;
    }
    .wrapper-menu .menu .head .name {
        border-bottom: 1px dotted #fff;
    }
    #center .row.wrapper-center {
        position: relative;
    }

    #center .row.wrapper-center .wrapper-menu {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
    }

    #center .row.wrapper-center .wrapper-content {
        padding-top: 65px;
    }
    .wrapper-content .wrapper-products .product .wrapper-related {
        display: none;
    }

    #kombox-filter {
        max-width: 220px;
    }
    .main-product .body .right .offer .property .hint {
        display: inline-block;
    }
    .wrapper-content .products-head .burger,
    .wrapper-content .products-head .table {
        display: none;
    }

    .wrapper-content .groups .main-catalog .group a {
        height: 50px;
        padding: 0;
    }

    .wrapper-content .groups .main-catalog .group {
        height: 50px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .main-product .body .wrapper-description .wrapper-related .related .img {
        width: 67px;
        height: 67px;
    }

    .main-product .body .wrapper-description .wrapper-related .related .img img {
        width: 65px;
        height: 65px;
    }

    .footer .container {
        padding-bottom: 22px;
    }

    .bottom_fixed .text-cart {
        padding-left: 20px;
        padding-right: 5px;
        -ms-background-position-x: 0px;
        background-position-x: 0px;
    }

    .footer .bottom-menu .left, .footer .bottom-menu .right {
        padding-left: 15px;
    }

    .footer .container .callme-bottom,
    .footer .container .phones {
        display: none;
    }

    .footer {
        margin-top: 20px;
    }

    .oferta {
        background-color: #f8f8f8;
        padding-top: 10px;
        padding-bottom: 0px;
        text-align: center;
        font-size: 9px;
        padding-left: 0px;
        padding-right: 0px;
        line-height: 9px;
    }

    .footer .container .bottom-menu {
        padding-bottom: 10px;
    }

    .footer .container .bottom-menu ul {
        padding-top: 0;
    }

    .bottom_fixed {
        margin-left: -375px;
        font-size: 11px !important;
    }

    .bottom_fixed .bottom_fav,
    .bottom_fixed .bottom_fav .text-favotites,
    .bottom_fixed .bottom_compare,
    .bottom_fixed .bottom_compare .text-compare,
    .bottom_fixed .bottom_cart,
    .bottom_fixed .bottom_cart .text-cart {
        padding-right: 0;
    }

    .help-mistake {
        display: none;
    }
    .bx_ordercart .bx_ordercart_order_pay_right,
    .bx_ordercart .bx_ordercart_order_pay_left {
        float: none;
        width: 100%;
    }
.   uds {
        z-index: 2;
    }
}
/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
    body .calc-fix {
        position: fixed;
        top: auto;
        bottom: 30px;
        left: 0;
        transform: translateY(0);
        z-index: 599;
    }
    body .calc-fix i {
        font-size: 30px;
        color: #cd3d7a;
    }
    .karusel-wripper,
    .karusel-wripper .slide-img {
        height: auto;
    }
    .slick-next,
    .slick-prev {
        display: none!important;
    }
    .bottom_fixed{
        display: none;
    }
    .header .head-top .link,
    .header .logo {
        padding-left: 15px;
    }
    .header .head-top .link, .header .head-top .city {
        margin-top: 10px;
    }
    .header .head-top .city .wrapper-city {
        position: relative;
        padding-top: 5px;
    }
    .header .head-top .city .wrapper-city .wrapGeoIpReaspekt span{
        position: absolute;
        top: 25px;
        right: 0;
        width: 250px;
        border-bottom: 0;
    }
    .header .head-top .city .wrapper-city .wrapGeoIpReaspekt .wrapQuestionReaspekt {
        left: -100px!important;
    }
    .header .head-center {
        margin-top: 5px;
    }
    .header .head-center .logo #logo {
        margin-top: 0px;
        height: 80px;
    }
    .header .head-center .logo #logo img{
        width: 100%;
        max-width: 144px;
        min-width: 120px;
        height: auto;
    }
    div#title-search {
        margin-left: 0px!important;
    }
    .header .head-center .search {
        height: 80px;
    }
    .header .head-center .search form {
        display: block;
        position: relative;
        padding-top: 45px;
        margin-left: 0px;
        width: 100%;
    }
    .header .head-center .search form input[type=text] {
        width: 100%;
        line-height: 33px;
        height: 30px;
        border: 1px solid #866ab3;
        color: #866ab3;
        padding-left: 37px;
        padding-right: 65px;
        font-size: 11px;
    }
    .header .head-center .search form input[type=submit] {
        position: absolute;
        bottom: 2px;
        right: 2px;
        width: 60px;
        height: 26px;
        line-height: 26px;
        text-align: center;
        background-color: #866ab3;
        color: #fff;
        border: none;
    }
    .header .head-center .phones {
        padding-top: 7px;
    }
    .header .head-center .phones .mini {
        display: none;
    }
    .header .head-center .phones .mini.eight {
        display: block;
        font-size: 8px!important;
        line-height: 16px;
        margin-top: -11px;
        margin-left: 75px;
        padding-bottom: 0px;
    }
    .header .head-center .phones .wrapper {
        text-align: left;
    }
    .header .head-center .phones span {
        display: block;
        text-align: center;
        width: auto;
        padding-bottom: 5px;
        font-size: 18px!important;
    }
    .header .head-center .cart {
        position: relative;
        top: 0px;
        left: 0px;
        padding-top: 0;
        text-align: left;
        padding: 0;
        padding-top: 4px;
    }
    .header .head-center .cart a {
        height: 100%;
        display: block;
        width: 100%;
    }
    .head-bottom {
        position: static;
    }
    .menu-top .wrapper-menu-top{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        background: #fff;
        padding: 40px 80px;
        overflow: hidden;
    }
    .header .head-bottom .menu-top .menu li{
        display: block;
    }
    .header .head-bottom .menu-top .menu li:first-child a,
    .header .head-bottom .menu-top .menu li a{
        width: 100%;
        margin: 0;
        text-align: center;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        display: block;
    }
    .header .head-bottom .menu-top .menu li a.selected,
    .header .head-bottom .menu-top .menu li a,
    .header .head-bottom .menu-top .menu li:first-child a {
        display: inline;
    }
    .header .head-bottom .menu-top .menu li {
        text-align: center;
    }
    .menu-top .hb-menu-top {
        position: absolute;
        width: 50px;
        height: 50px;
        top: -52px;
        left: 40px;
        border: 2px solid #866ab3;
        border-radius: 50%;
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
        -o-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
    }
    .menu-top .hb-menu-top .burger{
        display: block;
        background-color: #866ab3;
        width: 32px;
        height: 3px;
        position: absolute;
        top: 15px;
        left: 7px;
    }
    .menu-top .hb-menu-top .burger:after,
    .menu-top .hb-menu-top .burger:before {
        content: "";
        dispaly: block;
        position: absolute;
        left: 0;
        top: 8px;
        width: 32px;
        height: 3px;
        background-color: #866ab3;
    }
    .menu-top .hb-menu-top .burger:before{
        top: 16px;
        background-color: #866ab3;
    }
    .callme-top {
        display: none;
    }
    .menu-top .exit-menu-top {
        position: absolute;
        right: 30px;
        top: 20px;
        width:35px;
        height: 35px;
        cursor: pointer;
    }
    .menu-top .exit-menu-top:after,
    .menu-top .exit-menu-top:before {
        content: "";
        dispaly: block;
        position: absolute;
        right: 0;
        top: 17px;
        width: 35px;
        height: 2px;
        background-color: #555;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .menu-top .exit-menu-top:before {
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #center {
        background-color: #fff;
    }
    .wrapper-content .groups .group img {
        width: 40px;
        height: 40px;
        border: none;
    }
    .wrapper-content .groups .group span {
        width: auto;
        display: inline;
        vertical-align: baseline;
        font-size: 14px;
        border-bottom: 1px dotted #555;
    }
    .wrapper-content .groups .group a {
        padding: 0;
        height: 40px
    }
    .wrapper-content .groups .group {
        height: 42px;
        overflow: hidden;
        border: 0;
        border-bottom: 1px solid #e6e6e6;
        margin-bottom: 0px;
    }
    .wrapper-content .groups .group:hover {
        border: 0;
        border-bottom: 1px solid #e6e6e6;
    }
    #wrapper-catalog .groups {
        margin-top: 0;
    }
    .wrapper-content .wrapper-filter .banner {
        display: none;
    }
    .wrapper-content .content h1 {
        font-size: 20px;
        padding-bottom: 10px
    }
    .wrapper-content .products-head {
        margin-bottom: 10px;
    }
    .wrapper-content .wrapper-products .product .body .right{
        margin-bottom: 0px;
        padding-left: 135px;
    }
    .wrapper-content .wrapper-products .product .body .right .offer .other-link,
    .wrapper-content .wrapper-products .product .body .right .offer .quantity,
    .wrapper-content .wrapper-products .product .body .right .offer .wrapper-buy {
        display: none;
    }
    .wrapper-content .wrapper-products .product .body .left .minitext a .img:hover .view-fast {
        display: none;
    }
    .wrapper-content .wrapper-products .product .body .left .minitext a .img:hover {
        border: 1px solid #e6e6e6;
    }
    .wrapper-content .wrapper-products .product .body .right .offer .price span {
        line-height: 30px;
    }
    .wrapper-content .wrapper-products .product .body .right .offer .price,
    .wrapper-content .wrapper-products .product .body .right .offer .availability {
        width: 50%;
        float: right;
    }
    .wrapper-content .wrapper-products .product .body .right .offer .price{
        margin-bottom: 0px;
        height: 30px;
    }
    .wrapper-content .wrapper-products .product .body .right .offer .availability {
        font-size: 10px;
        margin-bottom: 0px;
    }
    .wrapper-content .wrapper-products .product .body .right .price-table {
        width: 50%;
        float: left;
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .wrapper-content .wrapper-products .product .body .right .offer .property .hint {
        display: inline-block;
    }
    .wrapper-content .wrapper-products .product .body .right .offer .price s {
        display: none;
    }
    .wrapper-content .wrapper-products .product .body .left .minitext .view-all {
        line-height: 30px;
        padding: 0 18px;
        border-radius: 10px;
    }
    #wrapper-content .text-content {
        position: relative;
        width: auto;
    }
    .footer .container {
        padding-bottom: 0px;
    }
    #wrapper-catalog {
        position: relative;
        overflow: hidden;
    }
    #wrapper-catalog .wrapper-filter {
        position: absolute;
        top: 0;
        right: -550px;
        max-width: 320px;
        padding-left: 0;
        -webkit-box-shadow: -5px 5px 20px 0px rgba(0,0,0,0.3);
        -moz-box-shadow: -5px 5px 20px 0px rgba(0,0,0,0.3);
        box-shadow: -5px 5px 20px 0px rgba(0,0,0,0.3);
    }
    .wrapper-content .wrapper-filter .filter {
        border: 0;
    }
    #kombox-filter {
        max-width: 320px;
    }
    .uds {
        display: none;
    }
    #kombox-filter {
        padding-top: 15px;
    }
    #btn-filter {
        display: block;
        height: 25px;
        width: 150px;
        text-align: center;
        line-height: 25px;
        background-color: #cd3d7a;
        color: #fff;
        position: fixed;
        margin-top: 70px;
        top: 50%;
        right: -63px;
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        z-index: 2;
    }
    #kombox-filter .lvl1 {
        margin-top: 0;
    }
    .wrapper-content .wrapper-filter .filter .head {
        margin-bottom: 0;
    }
    .ul-adress {
        padding: 0;
        width: 150px;
    }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 630px) {
    .main-product .body .left,
    .main-product .body .right{
        width: 100%;
    }
    .main-product .body .right .offer .other-link > div > div.compare,
    .main-product .body .right .offer .other-link > div > div.favorites {
        display: none;
    }

    .main-product .body .right .offer .quantity,
    .main-product .body .right .offer .wrapper-buy,
    .main-product .body .right .offer .price-table,
    .main-product .body .right .offer .availability,
    .main-product .body .right .offer .other-link{
        float: left;
        width: 50%;
    }
    .main-product .body .right .offer .call-now {
        width: 100%;
    }
    .main-product .body .right .offer .property {
        min-height: 180px;
    }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
    .menu-top .hb-menu-top {
        left: 30px;
    }
    .wrapper-content .wrapper-products .product .body .right{
        padding-left: 15px;
    }
    .wrapper-content .wrapper-products .product .body .left .minitext .view-all {
        line-height: 25px;
        padding: 0 15px;
        border-radius: 8px;
    }

    #wrapper-catalog .wrapper-filter {
        right: -550px;
        width: 100%;
        max-width: 100%;
    }
    .wrapper-content .wrapper-filter .filter {
    }
    #kombox-filter {
        width: 100%;
        max-width: 100%;
    }
    .wrapper-menu .menu ul#main-menu > li.group > a span {
        display: inline;
    }
    .wrapper-menu .menu ul#main-menu > li.group {
        overflow: hidden;
    }
}
@media only screen and (max-width: 390px) {
    .header .head-center .logo #logo img {
        margin-top: 10px;
    }
    .footer .container .bottom-menu {
        padding-left: 0!important;
    }
    .header .head-center .cart .text {
        font-size: 11px;
    }
    .menu-top .hb-menu-top {
        left: 15px;
    }
    .main-product .body .right .offer .quantity,
    .main-product .body .right .offer .wrapper-buy,
    .main-product .body .right .offer .price-table,
    .main-product .body .right .offer .availability,
    .main-product .body .right .offer .other-link{
        float: none;
        width: 100%;
    }
}
@media only screen and (max-width: 350px) {
    .wrapGeoIpReaspekt {
        width: 80px;
    }
    .header .head-top .city .fa {
        margin-right: 4px;
    }
    .header .head-top .city .wrapper-city .wrapGeoIpReaspekt span{
        width: 170px;
        font-size: 11px;
    }
    .header .head-center .cart {
        margin-left: -5px;
    }
    .header .head-top .link .registration {
        margin-left: 0px;
        padding: 3px 4px;
    }
    .menu-top .hb-menu-top {
        left: 15px;
    }
    .header .head-center .cart .text {
        font-size: 9px;
    }
}
/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
    body {
        min-width: 320px;
    }
    .container {
        width: 320px !important;
    }
    .wrapper-content .wrapper-products .product .body .left .minitext .prew-txt {
        line-height: 14px;
    }
    .footer .container .logo img{
        width: 100%;
        height: auto;
    }
}

/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
    .wrapper-menu .menu ul#main-menu {
        display: block!important;
    }
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
}

/* End */


/* Start:/local/templates/lednex/components/bitrix/search.title/seach_form/style.css?16886445141547*/
div#title-search {
	margin-left: 39px;
}
div.title-search-result {
	border:1px solid #866ab3;
	display:none;
	overflow:hidden;
	z-index:999;
	/*width: 398px!important;*/
	padding: 10px 0;
	background-color:#fff;
	margin-top: -3px;
}

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

table.title-search-result td {
	color:black;
	font-weight:normal;
	/*padding-top:1px;*/
	/*padding-bottom:1px;*/
	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 {
	font-size: 12px;
	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:#cd3d7a;
	font-weight:normal;
}

table.title-search-result tr.title-search-selected td {
	background-color:rgba(0, 169, 219, .3);
}

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;
	font-size: 13px
}

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

/* End */


/* Start:/local/templates/lednex/components/bitrix/sale.basket.basket.line/topcart/style.min.css?16886445143567*/
.bx-basket-block{font-size:12px;padding-bottom:5px;white-space:nowrap;position:relative;padding-left:20px}.bx-basket-block>.fa{color:#97a1ab;width:12px;position:absolute;left:0;top:3px}.bx-basket-block a{color:#039be5;border-bottom:1px dashed;margin-right:10px}.bx-basket-block a:hover{text-decoration:none;border-bottom-color:transparent}@media(min-width:768px){.bx-basket-fixed{width:200px;position:fixed;z-index:998;background:#fff;padding-top:10px;border:1px solid #f0f0f0;box-shadow:0 7px 10px rgba(0,0,0,0.15);border-radius:1px;overflow:hidden}.bx-basket-fixed.top{top:10px}.bx-basket-fixed.right{right:10px}.bx-basket-fixed.bottom{bottom:10px}.bx-basket-fixed.left{left:10px}.bx-basket-fixed.bx-max-height{top:10px;bottom:10px}}@media(max-width:767px){.bx-basket-fixed{position:fixed;z-index:998;background:#fff;padding-top:10px;border:1px solid #f0f0f0;box-shadow:0 7px 10px rgba(0,0,0,0.15);border-radius:1px;overflow:hidden;bottom:0;left:0;right:0}.bx-basket-item-list{display:none}}.bx-basket-fixed .bx-basket-block{margin-left:10px}.bx-basket-item-list{position:relative;padding-bottom:20px;border-top:1px solid #f7f7f7;overflow:hidden}.bx-opener .bx-basket-item-list{padding-bottom:75px}.bx-max-height .bx-basket-item-list{position:absolute;bottom:0;left:0;right:0}.bx-closed .bx-basket-item-list{height:20px;overflow:hidden}.bx-basket-item-list-action{cursor:pointer;background:#f7f7f7;position:absolute;bottom:0;right:0;left:0;z-index:120;height:20px;line-height:14px;vertical-align:middle;text-align:center;font-size:12px;color:#4f4f4f;padding:3px 0}.bx-basket-item-list-button-container{text-align:center;position:absolute;bottom:20px;border-top:1px solid #f7f7f7;padding:10px 0;background:#fff;left:0;right:0}.bx-basket-item-list-button-container a.btn{color:#ddd;text-decoration:none}.bx-basket-item-list-button-container a.btn:hover,.bx-basket-item-list-button-container a.btn:active{color:#fff}.bx-basket-item-list-container{overflow-y:auto;max-height:100%}.bx-basket-item-list-item{padding-top:15px;position:relative;padding-right:10px;padding-left:10px;margin-bottom:15px;border-bottom:1px solid #f7f7f7}.bx-basket-item-list-container .bx-basket-item-list-item:last-child{border-bottom:0;margin-bottom:0}.bx-basket-item-list-item-status{font-weight:bold;padding:3px;background:#ebebeb;margin:0 10px 20px;line-height:16px;font-size:13px;border-radius:3px;text-align:center;white-space:normal}.bx-basket-item-list-item-img{text-align:center;position:relative;padding-bottom:5px}.bx-basket-item-list-item-img img{max-width:90px;height:auto;border:1px solid #e6e6e6}.bx-basket-item-list-item-name{padding-bottom:5px}.bx-basket-item-list-item-name a{font-size:13px;color:#3f3f3f;text-decoration:none;white-space:normal;line-height:16px}.bx-basket-item-list-item-remove{position:absolute;right:10px;top:-7px;width:20px;height:20px;cursor:pointer;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAAJFBMVEX///8yMjI6Ojpvb29wcHCEhISHh4eIiIiqqqqtra2wsLCxsbE3yvJ6AAAAAXRSTlMAQObYZgAAACxJREFUCNcFwYEBgCAMA7BYUMb2/78m9sXdJtfNMHkzcJ4DlS9FpXXKavT6ARdgANGqCJ38AAAAAElFTkSuQmCC) no-repeat center;opacity:.5}.bx-basket-item-list-item-remove:hover{opacity:.7}.bx-basket-item-list-item-price-block{padding-bottom:5px;font-size:12px}.bx-basket-item-list-item-price{display:inline-block;margin-right:5px}.bx-basket-item-list-item-price-old{display:inline-block;margin-right:5px;text-decoration:line-through;color:#b0b0b0}.bx_cart_login_top .bx-hdr-profile a{text-decoration:none}.bx_cart_login_top .bx-hdr-profile{line-height:1.44em}
/* End */


/* Start:/local/templates/lednex/components/api/typo/help_mistake/style.css?16886445145792*/
.api-typo-modal-active body{ overflow: hidden !important; }
.api-typo-modal{
	color: #000;
	display: none;
	opacity: 0;
	filter: alpha(opacity=0);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2000;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: rgba(0, 0, 0, 0.3);
	-webkit-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear;
	touch-action: cross-slide-y pinch-zoom double-tap-zoom;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.api-typo-modal *{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.api-typo-modal.api-typo-open{ }
.api-typo-modal .api-typo-modal-dialog{
	position: relative;
	margin: 30px auto;
	width: 450px;
	max-width: 100%;
	max-width: calc(100% - 20px);
	background: #fff;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	-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;
}
/* Phone landscape and smaller */
@media (max-width: 767px){
	.api-typo-modal .api-typo-modal-dialog{
		width: auto;
		margin: 10px auto;
	}
}
.api-typo-open .api-typo-modal-dialog{
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.api-typo-modal .api-typo-close{
	position: absolute;
	right: 15px;
	top: 15px;
}
.api-typo-modal .api-typo-close::-moz-focus-inner{ border: 0; padding: 0; }
.api-typo-modal .api-typo-close{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box;
	-webkit-appearance: none;
}
.api-typo-modal .api-typo-close:after{
	display: block;
	width: 14px;
	height: 14px;
	content: url("/local/templates/lednex/components/api/typo/help_mistake/images/close.svg");
}
.api-typo-modal .api-typo-close:hover,
.api-typo-modal .api-typo-close:focus{
	opacity: 1;
	filter: alpha(opacity=100);
	outline: none;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}
/* component template info */
.api-typo{
	display: block;
	padding: 10px;
	font-size: 12px;
	line-height: 1.25;
	margin: 20px 15px 30px 0;
	background: #f2f2f2;
	color: #454d5d;
	border: 1px solid rgba(69, 77, 93, 0.5);
}
.api-typo-modal .api-header{
	padding: 15px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.api-typo-modal .api-title{
	font-size: 19px;
	font-weight: 400;
}
.api-typo-modal .api-content{
	padding: 20px;
}
.api-typo-modal .api-content input[type="text"]{
	width: 100%;
	height: 36px;
	line-height: 36px;
	font-family: inherit;
	font-size: inherit;
	border: 1px solid #c0c0be;
	padding: 0 10px;
}
.api-typo-modal .api-content input[type="text"]:focus{
	border: 1px solid #999;
}
.api-typo-modal .api-content input[type="text"][readonly]{
	background-color: #fafafa;
	color: #999;
	border: 1px solid #ddd;
	box-shadow: none;
	text-shadow: none;
}
.api-typo-modal .api-form .api-fields{
	margin-bottom: 10px;
}
/*---------- .api-buttons ----------*/
.api-typo-modal .api-buttons{
	text-align: right;
}
.api-typo-modal .api-buttons button::-moz-focus-inner{
	border: 0;
	padding: 0;
}
.api-typo-modal .api-buttons button{
	-webkit-appearance: none;
	margin: 0;
	font: inherit;
	font-size: inherit;
	overflow: visible;
	color: #000;
	text-transform: none;
	display: inline-block;
	box-sizing: border-box;
	padding: 0 12px;
	background: #fff;
	vertical-align: middle;
	line-height: 28px;
	min-height: 30px;
	text-decoration: none;
	text-align: center;
	border: 1px solid #ccc;
	outline: none;
	transition: border-color .1s ease-out 0s;
}
.api-typo-modal .api-buttons button:not(:disabled){
	cursor: pointer;
}
.api-typo-modal .api-buttons button:active{
	color: #000;
	background-color: #eee;
}
.api-typo-modal .api-buttons .api-button-send{
	color: #fff;
	background-color: #00a9db;
	border: none;
	border-bottom: 2px solid #008db7;
}
.api-typo-modal .api-buttons .api-button-send:hover{
	color: #fff;
	background-color: #00a9db;
	border-top: 2px solid #fff;
	border-bottom: 0;
}
.api-typo-modal .api-buttons .api-button-send:focus{
	color: #000;
	/*background-color: #ffd633;*/
}
.api-typo-modal .api-buttons .api-button-send:disabled{
	background: #e7e7e7;
	color: #999;
	border-color: #ddd;
	box-shadow: none;
	text-shadow: none;
}
/*---------- .api-alert ----------*/
.api-typo-modal .api-alert{ }
.api-typo-modal .api-alert span{
	background: url("/local/templates/lednex/components/api/typo/help_mistake/images/alert.png") -36px 0;
	width: 36px;
	height: 36px;
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -18px;
}
.api-typo-modal .api-alert-danger{ background-color: #f2dede; border-color: #ebcccc; color: #a94442; }
.api-typo-modal .api-alert-danger span{ background-position: 0 0; }
.api-typo-modal .api-alert-warning{ background-color: #fcf8e3; border-color: #faf2cc; color: #8a6d3b; }
.api-typo-modal .api-alert-warning span{ background-position: -72px 0; }
.api-typo-modal .api-alert-success{
	background: #fcfcfb;
	padding: 25px 15px;
	color: #000;
	text-align: center;
}
.api-typo-modal .api-alert-success span{
	background: transparent url("/local/templates/lednex/components/api/typo/help_mistake/images/success.svg") no-repeat scroll 0 0 / contain;
	height: 80px;
	width: 80px;
	margin: 0 0 20px;
	display: inline-block;
	position: relative;
	top: auto;
	left: auto;
}
.api-typo-modal .api-alert-title{
	display: block;
	margin: 0;
	font-size: 26px;
	line-height: 32px;
}
.api-typo-modal .api-alert-success .api-alert-desc{ margin: 15px 0 0 }
/* End */


/* Start:/local/templates/lednex/components/bitrix/catalog.compare.list/compare_block/style.css?16886445142116*/
.text-compare {
	padding-left: 45px;
	padding-right: 25px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAALCAYAAACksgdhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjQ2NDk4NzUzOUFBMTFFN0E1M0FCNDJGOUE0OENGNTIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjQ2NDk4NzYzOUFBMTFFN0E1M0FCNDJGOUE0OENGNTIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGNDY0OTg3MzM5QUExMUU3QTUzQUI0MkY5QTQ4Q0Y1MiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGNDY0OTg3NDM5QUExMUU3QTUzQUI0MkY5QTQ4Q0Y1MiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsuOAqsAAAEZSURBVHjaZJI/S0JhFIfvVXFTg1Bo0MUEqU1QaFBotw+guItIDlKBDWIgBA4uIermIM2B7YKLW99AiLAQnBRcJLk9B86Nqx54+L3vuefPj3uvaVmW4Yzn8ruJtOEGRlCtdbJ7RaY0URjl3AI3+OEapnAFY1jDDh4YMPNocxDS4AU796lNKfiFrdbNTNse2x6RFQxgAgn4gAzcwoYtL1Lr0oZz5Azi4IMkhFVlegRi1EnNv5U7aKg98V1F5zrwHmnqghpUXCQvOXxTuIAv8U8upg0XyJL8D8iQDbm4bHqCAJc33Xqi1nJQh9ODZ1GPes4Y+zFWDenrd8ZEfHaN4+gdqDO69sctcCnaSfy/Ov6QPFLSa59nwz8BBgDaOV4G+dy08gAAAABJRU5ErkJggg==) 25px 7px no-repeat;
	line-height: 25px;
	position: relative;
}
.text-compare.active p{
	cursor: pointer;
}
.block-compare{
	width: 100%;
	min-width: 100%;
	display: none;
	background: #fff;
    padding: 5px 10px 15px 10px;
	border: 1px solid #e6e6e6;
    border-top: 3px solid #e6e6e6;
    border-bottom: 0;
	margin-left: -15px;
    font-size: 12px!important;
}
.block-compare table{
	width: 100%;
	min-width: 100%;
}
/* End */


/* Start:/local/templates/lednex/components/bitrix/sale.basket.basket.small/bottom_basket/style.css?16886445141788*/
.text-cart {
	padding-left: 48px;
	padding-right: 25px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAYAAAC5tzfZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEE1OTRGN0E1MDVEMTFFN0IzNThFOEY0RDI2OEE4MEUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEE1OTRGNzk1MDVEMTFFN0IzNThFOEY0RDI2OEE4MEUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQTJENzdBQjM4Q0UxMUU3OEEzRjlDQTJFRTU0RkVBQSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQTJENzdBQzM4Q0UxMUU3OEEzRjlDQTJFRTU0RkVBQSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjzseZoAAAE7SURBVHjajNE9S8NAHAbw55KmL0iLBrRWKEUER3XTxaV+A3XUwU0cnP0EgoL6AdRPoJODuNRZiIhugoODOPmKbS1tc3c+VxN6voAe+ZFc/nku9yJwMHMCoJ8KtECnsJtsAP4E6uWdTtdzXAiGeqPyEo3RMbndlGIvBWSGAB3ynm+YUFwtUwW/NgZV+/NRi1bCqjyYVyR+hhxeqbhTc6zKE73hH80OmcDrnwktXXt6dXqm0rfPqnQLrS6h2wF6SoEdMut5oRu6oCs6p2u6A7caUgLJLOzQOD3S3JdpqqZAbtSrTK5JqZUznPbDeMsXaZV8OqOEtQaOntNI54scoYrBqSNTHIhCs7RLm53pxE3wBGSzD+/3+4fTG8vzwdae+VOSpXUqRoteoVZ3ejzU7IgDL7PNzShAhbUPAQYAoKNbovhYnhsAAAAASUVORK5CYII=') 25px 6px no-repeat;
	line-height: 25px;
}
/* End */


/* Start:/local/templates/lednex/components/bitrix/sale.basket.basket.line/bottomcart/style.min.css?16886445143567*/
.bx-basket-block{font-size:12px;padding-bottom:5px;white-space:nowrap;position:relative;padding-left:20px}.bx-basket-block>.fa{color:#97a1ab;width:12px;position:absolute;left:0;top:3px}.bx-basket-block a{color:#039be5;border-bottom:1px dashed;margin-right:10px}.bx-basket-block a:hover{text-decoration:none;border-bottom-color:transparent}@media(min-width:768px){.bx-basket-fixed{width:200px;position:fixed;z-index:998;background:#fff;padding-top:10px;border:1px solid #f0f0f0;box-shadow:0 7px 10px rgba(0,0,0,0.15);border-radius:1px;overflow:hidden}.bx-basket-fixed.top{top:10px}.bx-basket-fixed.right{right:10px}.bx-basket-fixed.bottom{bottom:10px}.bx-basket-fixed.left{left:10px}.bx-basket-fixed.bx-max-height{top:10px;bottom:10px}}@media(max-width:767px){.bx-basket-fixed{position:fixed;z-index:998;background:#fff;padding-top:10px;border:1px solid #f0f0f0;box-shadow:0 7px 10px rgba(0,0,0,0.15);border-radius:1px;overflow:hidden;bottom:0;left:0;right:0}.bx-basket-item-list{display:none}}.bx-basket-fixed .bx-basket-block{margin-left:10px}.bx-basket-item-list{position:relative;padding-bottom:20px;border-top:1px solid #f7f7f7;overflow:hidden}.bx-opener .bx-basket-item-list{padding-bottom:75px}.bx-max-height .bx-basket-item-list{position:absolute;bottom:0;left:0;right:0}.bx-closed .bx-basket-item-list{height:20px;overflow:hidden}.bx-basket-item-list-action{cursor:pointer;background:#f7f7f7;position:absolute;bottom:0;right:0;left:0;z-index:120;height:20px;line-height:14px;vertical-align:middle;text-align:center;font-size:12px;color:#4f4f4f;padding:3px 0}.bx-basket-item-list-button-container{text-align:center;position:absolute;bottom:20px;border-top:1px solid #f7f7f7;padding:10px 0;background:#fff;left:0;right:0}.bx-basket-item-list-button-container a.btn{color:#ddd;text-decoration:none}.bx-basket-item-list-button-container a.btn:hover,.bx-basket-item-list-button-container a.btn:active{color:#fff}.bx-basket-item-list-container{overflow-y:auto;max-height:100%}.bx-basket-item-list-item{padding-top:15px;position:relative;padding-right:10px;padding-left:10px;margin-bottom:15px;border-bottom:1px solid #f7f7f7}.bx-basket-item-list-container .bx-basket-item-list-item:last-child{border-bottom:0;margin-bottom:0}.bx-basket-item-list-item-status{font-weight:bold;padding:3px;background:#ebebeb;margin:0 10px 20px;line-height:16px;font-size:13px;border-radius:3px;text-align:center;white-space:normal}.bx-basket-item-list-item-img{text-align:center;position:relative;padding-bottom:5px}.bx-basket-item-list-item-img img{max-width:90px;height:auto;border:1px solid #e6e6e6}.bx-basket-item-list-item-name{padding-bottom:5px}.bx-basket-item-list-item-name a{font-size:13px;color:#3f3f3f;text-decoration:none;white-space:normal;line-height:16px}.bx-basket-item-list-item-remove{position:absolute;right:10px;top:-7px;width:20px;height:20px;cursor:pointer;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAAJFBMVEX///8yMjI6Ojpvb29wcHCEhISHh4eIiIiqqqqtra2wsLCxsbE3yvJ6AAAAAXRSTlMAQObYZgAAACxJREFUCNcFwYEBgCAMA7BYUMb2/78m9sXdJtfNMHkzcJ4DlS9FpXXKavT6ARdgANGqCJ38AAAAAElFTkSuQmCC) no-repeat center;opacity:.5}.bx-basket-item-list-item-remove:hover{opacity:.7}.bx-basket-item-list-item-price-block{padding-bottom:5px;font-size:12px}.bx-basket-item-list-item-price{display:inline-block;margin-right:5px}.bx-basket-item-list-item-price-old{display:inline-block;margin-right:5px;text-decoration:line-through;color:#b0b0b0}.bx_cart_login_top .bx-hdr-profile a{text-decoration:none}.bx_cart_login_top .bx-hdr-profile{line-height:1.44em}
/* End */


/* Start:/local/css/reaspekt/reaspekt.geobase/style.css?1688644515974*/
.ReaspektPopupOverlay {
	height: 100%;
    left: 0;
    opacity: 0.6;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
	background-color: #000;
	filter: alpha(opacity=60); 	/*Filter for IE*/
}
#ReaspektPopupBody {
    position: absolute !important;
    padding: 30px 50px;
    left: 0;
    top: 0;
    /*width: 500px;
    min-height: 100%;
    height: 1000px;*/
    z-index: 510;
    background-color: #fff;
	box-shadow: 0px 0px 15px #000000;
    box-sizing: border-box;
}
#ReaspektPopupBody .ReaspektClosePosition {
	position: relative;
}

#ReaspektPopupBody #ReaspektCloseBtn {
	position: absolute;
	right: -40px;
    top: -20px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	background:url("/local/css/reaspekt/reaspekt.geobase/images/close-button-sprite.png") no-repeat top;
}

#ReaspektPopupBody #ReaspektCloseBtn:hover {
	background: url("/local/css/reaspekt/reaspekt.geobase/images/close-button-sprite.png") no-repeat 0 -24px;
}

#ReaspektPopupContainer {
	max-width: 900px;
}
/* End */
/* /local/templates/.default/auth/css/modal.min.css?16886445145588 */
/* /local/templates/.default/auth/css/form.min.css?168864451411844 */
/* /local/templates/.default/auth/css/form.password.min.css?16886445141047 */
/* /local/templates/.default/auth/css/button.min.css?16886445147702 */
/* /local/templates/.default/auth/auth.css?16886445145109 */
/* /local/templates/lednex/css/font-awesome.css?168864451536683 */
/* /local/templates/lednex/css/modal.css?16886445153210 */
/* /local/templates/lednex/css/tooltip.css?16886445152366 */
/* /local/templates/lednex/css/main.min.css?1688644515172255 */
/* /local/templates/lednex/components/bitrix/search.title/seach_form/style.css?16886445141547 */
/* /local/templates/lednex/components/bitrix/sale.basket.basket.line/topcart/style.min.css?16886445143567 */
/* /local/templates/lednex/components/api/typo/help_mistake/style.css?16886445145792 */
/* /local/templates/lednex/components/bitrix/catalog.compare.list/compare_block/style.css?16886445142116 */
/* /local/templates/lednex/components/bitrix/sale.basket.basket.small/bottom_basket/style.css?16886445141788 */
/* /local/templates/lednex/components/bitrix/sale.basket.basket.line/bottomcart/style.min.css?16886445143567 */
/* /local/css/reaspekt/reaspekt.geobase/style.css?1688644515974 */
