

/* Start:/local/templates/rospotreb/css/core.css?17345896831581*/
/*!
 * jQuery UI CSS Framework 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)"; /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* End */


/* Start:/local/templates/rospotreb/css/ajax-progress.module.css?17345896831027*/
/**
 * @file
 * Throbber.
 */

.ajax-progress {
  display: inline-block;
  padding: 1px 5px 2px 5px;
}
[dir="rtl"] .ajax-progress {
  float: right;
}
.ajax-progress-throbber .throbber {
  display: inline;
  padding: 1px 6px 2px;
  background: transparent url(/local/templates/rospotreb/css/../../../../misc/throbber-active.gif) no-repeat 0 center;
}
.ajax-progress-throbber .message {
  display: inline;
  padding: 1px 5px 2px;
}
tr .ajax-progress-throbber .throbber {
  margin: 0 2px;
}
.ajax-progress-bar {
  width: 16em;
}

/* Full screen throbber */
.ajax-progress-fullscreen {
  position: fixed;
  z-index: 1000;
  top: 48.5%;
  /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
  left: 49%; /* LTR */
  width: 24px;
  height: 24px;
  padding: 4px;
  opacity: 0.9;
  border-radius: 7px;
  background-color: #232323;
  background-image: url(/local/templates/rospotreb/css/../../../../misc/loading-small.gif);
  background-repeat: no-repeat;
  background-position: center center;
}
[dir="rtl"] .ajax-progress-fullscreen {
  right: 49%;
  left: auto;
}

/* End */


/* Start:/local/templates/rospotreb/css/align.module.css?1734589683484*/
/**
 * @file
 * Alignment classes for text and block level elements.
 */

.text-align-left {
  text-align: left;
}
.text-align-right {
  text-align: right;
}
.text-align-center {
  text-align: center;
}
.text-align-justify {
  text-align: justify;
}

/**
 * Alignment classes for block level elements (images, videos, blockquotes, etc.)
 */
.align-left {
  float: left;
}
.align-right {
  float: right;
}
.align-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* End */


/* Start:/local/templates/rospotreb/css/autocomplete-loading.module.css?1734589683603*/
/**
 * @file
 * Visual styles for animated throbber.
 *
 * @see autocomplete.js
 */

.js input.form-autocomplete {
  background-image: url(/local/templates/rospotreb/css/../../../../misc/throbber-inactive.png);
  background-repeat: no-repeat;
  background-position: 100% center; /* LTR */
}
.js[dir="rtl"] input.form-autocomplete {
  background-position: 0% center;
}
.js input.form-autocomplete.ui-autocomplete-loading {
  background-image: url(/local/templates/rospotreb/css/../../../../misc/throbber-active.gif);
  background-position: 100% center; /* LTR */
}
.js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
  background-position: 0% center;
}

/* End */


/* Start:/local/templates/rospotreb/css/fieldgroup.module.css?173458968395*/
/**
 * @file
 * Fieldgroup border reset.
 */

.fieldgroup {
  padding: 0;
  border-width: 0;
}

/* End */


/* Start:/local/templates/rospotreb/css/container-inline.module.css?1734589683275*/
/**
 * @file
 * Inline items.
 */

.container-inline div,
.container-inline label {
  display: inline-block;
}
/* Details contents always need to be rendered as block. */
.container-inline .details-wrapper {
  display: block;
}
.container-inline .hidden {
  display: none;
}

/* End */


/* Start:/local/templates/rospotreb/css/clearfix.module.css?1734589683306*/
/**
 * @file
 * Float clearing.
 *
 * Based on the micro clearfix hack by Nicolas Gallagher, with the :before
 * pseudo selector removed to allow normal top margin collapse.
 *
 * @see http://nicolasgallagher.com/micro-clearfix-hack
 */

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

/* End */


/* Start:/local/templates/rospotreb/css/details.module.css?1734589683127*/
/**
 * @file
 * Collapsible details.
 *
 * @see collapse.js
 */

.js details:not([open]) .details-wrapper {
  display: none;
}

/* End */


/* Start:/local/templates/rospotreb/css/hidden.module.css?17345896831359*/
/**
 * @file
 * Utility classes to hide elements in different ways.
 */

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be collapsible details that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen readers.
 *
 * Used for information required for screen reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

/**
 * The .focusable class extends the .visually-hidden class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  position: static !important;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
}

/**
 * Hide visually and from screen readers, but maintain layout.
 */
.invisible {
  visibility: hidden;
}

/* End */


/* Start:/local/templates/rospotreb/css/item-list.module.css?1734589683285*/
/**
 * @file
 * Styles for item list.
 */

.item-list__comma-list,
.item-list__comma-list li {
  display: inline;
}
.item-list__comma-list {
  margin: 0;
  padding: 0;
}
.item-list__comma-list li:after {
  content: ", ";
}
.item-list__comma-list li:last-child:after {
  content: "";
}

/* End */


/* Start:/local/templates/rospotreb/css/js.module.css?1734589683402*/
/**
 * @file
 * Utility classes to assist with JavaScript functionality.
 */

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
.js .js-hide {
  display: none;
}

/**
 * For anything you want to show on page load only when JS is enabled.
 */
.js-show {
  display: none;
}
.js .js-show {
  display: block;
}

/* End */


/* Start:/local/templates/rospotreb/css/nowrap.module.css?173458968396*/
/**
 * @file
 * Utility class to prevent text wrapping.
 */

.nowrap {
  white-space: nowrap;
}

/* End */


/* Start:/local/templates/rospotreb/css/position-container.module.css?173458968395*/
/*
 * @file
 * Contain positioned elements.
 */

.position-container {
  position: relative;
}

/* End */


/* Start:/local/templates/rospotreb/css/progress.module.css?1734589683825*/
/**
 * @file
 * Progress behavior.
 *
 * @see progress.js
 */

.progress {
  position: relative;
}
.progress__track {
  min-width: 100px;
  max-width: 100%;
  height: 16px;
  margin-top: 5px;
  border: 1px solid;
  background-color: #fff;
}
.progress__bar {
  width: 3%;
  min-width: 3%;
  max-width: 100%;
  height: 16px;
  background-color: #000;
}
.progress__description,
.progress__percentage {
  overflow: hidden;
  margin-top: 0.2em;
  color: #555;
  font-size: 0.875em;
}
.progress__description {
  float: left; /* LTR */
}
[dir="rtl"] .progress__description {
  float: right;
}
.progress__percentage {
  float: right; /* LTR */
}
[dir="rtl"] .progress__percentage {
  float: left;
}
.progress--small .progress__track {
  height: 7px;
}
.progress--small .progress__bar {
  height: 7px;
  background-size: 20px 20px;
}

/* End */


/* Start:/local/templates/rospotreb/css/reset-appearance.module.css?1734589683274*/
/*
 * @file
 * Utility class to remove browser styles, especially for button.
 */

.reset-appearance {
  margin: 0;
  padding: 0;
  border: 0 none;
  background: transparent;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* End */


/* Start:/local/templates/rospotreb/css/resize.module.css?1734589683270*/
/**
 * @file
 * Resizable textareas.
 */

.resize-none {
  resize: none;
}
.resize-vertical {
  min-height: 2em;
  resize: vertical;
}
.resize-horizontal {
  max-width: 100%;
  resize: horizontal;
}
.resize-both {
  max-width: 100%;
  min-height: 2em;
  resize: both;
}

/* End */


/* Start:/local/templates/rospotreb/css/sticky-header.module.css?1734589683163*/
/**
 * @file
 * Table header behavior.
 *
 * @see tableheader.js
 */

table.sticky-header {
  z-index: 500;
  top: 0;
  margin-top: 0;
  background-color: #fff;
}

/* End */


/* Start:/local/templates/rospotreb/css/system-status-counter.css?1734589683761*/
/**
 * @file
 * Styles for the system status counter component.
 */

.system-status-counter__status-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
.system-status-counter__status-icon:before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center 2px;
  background-size: 16px;
}

.system-status-counter__status-icon--error:before {
  background-image: url(/local/templates/rospotreb/css/../../../../misc/icons/e32700/error.svg);
}
.system-status-counter__status-icon--warning:before {
  background-image: url(/local/templates/rospotreb/css/../../../../misc/icons/e29700/warning.svg);
}
.system-status-counter__status-icon--checked:before {
  background-image: url(/local/templates/rospotreb/css/../../../../misc/icons/73b355/check.svg);
}

/* End */


/* Start:/local/templates/rospotreb/css/system-status-report-counters.css?1734589683557*/
/**
 * @file
 * Styles for the system status report counters.
 */

.system-status-report-counters__item {
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.5em 0;
  text-align: center;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.063);
}

@media screen and (min-width: 60em) {
  .system-status-report-counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .system-status-report-counters__item--half-width {
    width: 49%;
  }
  .system-status-report-counters__item--third-width {
    width: 33%;
  }
}

/* End */


/* Start:/local/templates/rospotreb/css/system-status-report-general-info.css?1734589683255*/
/**
 * @file
 * Default styles for the System Status general info.
 */

.system-status-general-info__item {
  margin-top: 1em;
  padding: 0 1em 1em;
  border: 1px solid #ccc;
}

.system-status-general-info__item-title {
  border-bottom: 1px solid #ccc;
}

/* End */


/* Start:/local/templates/rospotreb/css/tabledrag.module.css?17345896832054*/
/**
 * @file
 * Table drag behavior.
 *
 * @see tabledrag.js
 */

body.drag {
  cursor: move;
}
tr.region-title {
  font-weight: bold;
}
tr.region-message {
  color: #999;
}
tr.region-populated {
  display: none;
}
tr.add-new .tabledrag-changed {
  display: none;
}
.draggable a.tabledrag-handle {
  float: left; /* LTR */
  overflow: hidden;
  height: 1.7em;
  margin-left: -1em; /* LTR */
  cursor: move;
  text-decoration: none;
}
[dir="rtl"] .draggable a.tabledrag-handle {
  float: right;
  margin-right: -1em;
  margin-left: 0;
}
a.tabledrag-handle:hover {
  text-decoration: none;
}
a.tabledrag-handle .handle {
  width: 14px;
  height: 14px;
  margin: -0.4em 0.5em 0;
  padding: 0.42em 0.5em;
  background: #787878;
  -webkit-mask: url(/local/templates/rospotreb/css/../../../../misc/icons/787878/move.svg) no-repeat 6px 7px;
  mask: url(/local/templates/rospotreb/css/../../../../misc/icons/787878/move.svg) no-repeat 6px 7px;
}
a.tabledrag-handle:hover .handle,
a.tabledrag-handle:focus .handle {
  background: #000;
}

@media (forced-colors: active) {
  a.tabledrag-handle .handle,
  a.tabledrag-handle:hover .handle,
  a.tabledrag-handle:focus .handle {
    background: canvastext;
  }
}
.touchevents .draggable td {
  padding: 0 10px;
}
.touchevents .draggable .menu-item__link {
  display: inline-block;
  padding: 10px 0;
}
.touchevents a.tabledrag-handle {
  width: 40px;
  height: 44px;
}
.touchevents a.tabledrag-handle .handle {
  height: 21px;
  background-position: 40% 19px; /* LTR */
}
[dir="rtl"] .touch a.tabledrag-handle .handle {
  background-position: right 40% top 19px;
}
.touchevents .draggable.drag a.tabledrag-handle .handle {
  background-position: 50% -32px;
}
.tabledrag-toggle-weight-wrapper {
  text-align: right; /* LTR */
}
[dir="rtl"] .tabledrag-toggle-weight-wrapper {
  text-align: left;
}
.indentation {
  float: left; /* LTR */
  width: 20px;
  height: 1.7em;
  margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
  padding: 0.42em 0 0.42em 0.6em; /* LTR */
}
[dir="rtl"] .indentation {
  float: right;
  margin: -0.4em -0.4em -0.4em 0.2em;
  padding: 0.42em 0.6em 0.42em 0;
}

/* End */


/* Start:/local/templates/rospotreb/css/tablesort.module.css?1734589683365*/
/**
 * @file
 * Table sort indicator.
 *
 * @see tablesort-indicator.html.twig
 */

.tablesort {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: 100%;
}
.tablesort--asc {
  background-image: url(/local/templates/rospotreb/css/../../../../misc/icons/787878/twistie-down.svg);
}
.tablesort--desc {
  background-image: url(/local/templates/rospotreb/css/../../../../misc/icons/787878/twistie-up.svg);
}

/* End */


/* Start:/local/templates/rospotreb/css/tree-child.module.css?1734589683466*/
/**
 * @file
 * Visual styles for a nested tree child.
 */

div.tree-child {
  background: url(/local/templates/rospotreb/css/../../../../misc/tree.png) no-repeat 11px center; /* LTR */
}
div.tree-child-last {
  background: url(/local/templates/rospotreb/css/../../../../misc/tree-bottom.png) no-repeat 11px center; /* LTR */
}
[dir="rtl"] div.tree-child,
[dir="rtl"] div.tree-child-last {
  background-position: -65px center;
}
div.tree-child-horizontal {
  background: url(/local/templates/rospotreb/css/../../../../misc/tree.png) no-repeat -11px center;
}

/* End */


/* Start:/local/templates/rospotreb/css/views.module.css?1734589683434*/
/* table style column align */
.views-align-left {
  text-align: left;
}
.views-align-right {
  text-align: right;
}
.views-align-center {
  text-align: center;
}
/* Grid style column align. */
.views-view-grid .views-col {
  float: left;
}
.views-view-grid .views-row {
  float: left;
  clear: both;
  width: 100%;
}
/* Provide some space between display links. */
.views-display-link + .views-display-link {
  margin-left: 0.5em;
}

/* End */


/* Start:/local/templates/rospotreb/css/theme.css?173458968318128*/
/*!
 * jQuery UI CSS Framework 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */


/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
	font-size: 1em/*{fsDefault}*/;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5/*{borderColorDefault}*/;
}
.ui-widget-content {
	border: 1px solid #dddddd/*{borderColorContent}*/;
	background: #ffffff/*{bgColorContent}*/ /*{bgImgUrlContent}*/ /*{bgContentXPos}*/ /*{bgContentYPos}*/ /*{bgContentRepeat}*/;
	color: #333333/*{fcContent}*/;
}
.ui-widget-content a {
	color: #333333/*{fcContent}*/;
}
.ui-widget-header {
	border: 1px solid #dddddd/*{borderColorHeader}*/;
	background: #e9e9e9/*{bgColorHeader}*/ /*{bgImgUrlHeader}*/ /*{bgHeaderXPos}*/ /*{bgHeaderYPos}*/ /*{bgHeaderRepeat}*/;
	color: #333333/*{fcHeader}*/;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333/*{fcHeader}*/;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5/*{borderColorDefault}*/;
	background: #f6f6f6/*{bgColorDefault}*/ /*{bgImgUrlDefault}*/ /*{bgDefaultXPos}*/ /*{bgDefaultYPos}*/ /*{bgDefaultRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #454545/*{fcDefault}*/;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545/*{fcDefault}*/;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #cccccc/*{borderColorHover}*/;
	background: #ededed/*{bgColorHover}*/ /*{bgImgUrlHover}*/ /*{bgHoverXPos}*/ /*{bgHoverYPos}*/ /*{bgHoverRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #2b2b2b/*{fcHover}*/;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #2b2b2b/*{fcHover}*/;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff/*{borderColorActive}*/;
	background: #007fff/*{bgColorActive}*/ /*{bgImgUrlActive}*/ /*{bgActiveXPos}*/ /*{bgActiveYPos}*/ /*{bgActiveRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #ffffff/*{fcActive}*/;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff/*{borderColorActive}*/;
	background-color: #ffffff/*{fcActive}*/;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff/*{fcActive}*/;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e/*{borderColorHighlight}*/;
	background: #fffa90/*{bgColorHighlight}*/ /*{bgImgUrlHighlight}*/ /*{bgHighlightXPos}*/ /*{bgHighlightYPos}*/ /*{bgHighlightRepeat}*/;
	color: #777620/*{fcHighlight}*/;
}
.ui-state-checked {
	border: 1px solid #dad55e/*{borderColorHighlight}*/;
	background: #fffa90/*{bgColorHighlight}*/;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620/*{fcHighlight}*/;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899/*{borderColorError}*/;
	background: #fddfdf/*{bgColorError}*/ /*{bgImgUrlError}*/ /*{bgErrorXPos}*/ /*{bgErrorYPos}*/ /*{bgErrorRepeat}*/;
	color: #5f3f3f/*{fcError}*/;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f/*{fcError}*/;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f/*{fcError}*/;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	-ms-filter: "alpha(opacity=70)"; /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("/local/templates/rospotreb/css/images/ui-icons_444444_256x240.png")/*{iconsContent}*/;
}
.ui-widget-header .ui-icon {
	background-image: url("/local/templates/rospotreb/css/images/ui-icons_444444_256x240.png")/*{iconsHeader}*/;
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url("/local/templates/rospotreb/css/images/ui-icons_555555_256x240.png")/*{iconsHover}*/;
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url("/local/templates/rospotreb/css/images/ui-icons_ffffff_256x240.png")/*{iconsActive}*/;
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url("/local/templates/rospotreb/css/images/ui-icons_777620_256x240.png")/*{iconsHighlight}*/;
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("/local/templates/rospotreb/css/images/ui-icons_cc0000_256x240.png")/*{iconsError}*/;
}
.ui-button .ui-icon {
	background-image: url("/local/templates/rospotreb/css/images/ui-icons_777777_256x240.png")/*{iconsDefault}*/;
}

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
	background-image: none;
}
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px/*{cornerRadius}*/;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa/*{bgColorOverlay}*/ /*{bgImgUrlOverlay}*/ /*{bgOverlayXPos}*/ /*{bgOverlayYPos}*/ /*{bgOverlayRepeat}*/;
	opacity: .3/*{opacityOverlay}*/;
	-ms-filter: "alpha(opacity=30)"/*{opacityFilterOverlay}*/; /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
	box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
}

/* End */


/* Start:/local/templates/rospotreb/css/visually_impaired_module.css?1734589683757*/
.vi-special-block-image {
  background-image: url(/local/templates/rospotreb/css/../images/special.png) !important;
  background-color: transparent !important;
  background-repeat: no-repeat;
  display: block;
  width: 200px;
  height: 67px;
  border: 0 !important;
  cursor: pointer;
  margin: 0 auto;
  font-size: 0 !important;
}

.vi-normal-block-image {
  background-image: url(/local/templates/rospotreb/css/../images/normal.png) !important;
  background-color: transparent !important;
  background-repeat: no-repeat;
  width: 185px;
  height: 72px;
  display: block;
  margin: 0 auto;
  border: 0 !important;
  cursor: pointer;
  font-size: 0 !important;
}

.vi-special-block-text,
.vi-normal-block-text {
  background-color: transparent !important;
  border: 0 !important;
  background-image: none !important;
}

/* End */


/* Start:/local/templates/rospotreb/css/reset.css?17345896832667*/

/* ---------- Overall Specifications ---------- */

body {
  line-height: 1.5;
  font-size: 87.5%;
  word-wrap: break-word;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: "Verdana", "Tahoma", sans-serif;
}
a:link,
a:visited {
  text-decoration: underline;
  color: #005DB7;
}
a:hover,
a:active,
a:focus {
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.0em 0 0.5em;
  font-weight: inherit;
}
h1, h2, h3, h4, h5, h6, strong {
  font-weight: bold;
}
h1, h2, h3 {
  margin: 1em 0;
}
h1 {
  font-size: 1.357em;
  color: #000;
}
h2 {
  font-size: 1.143em;
}
p {
  margin: 0 0 1.2em;
}
del {
  text-decoration: line-through;
}
tr.odd {
  background-color: #dddddd;
}
img {
  height: auto;
  max-width: 100%;
  outline: 0;
}
code,
pre,
kbd,
samp,
var {
  padding: 0 0.4em;
  font-size: 0.857em;
  font-family: Menlo, Consolas, "Andale Mono", "Lucida Console", "Nimbus Mono L", "DejaVu Sans Mono", monospace, "Courier New";
}
code {
  background-color: #f2f2f2;
  background-color: rgba(40, 40, 0, 0.06);
}
pre code,
pre kbd,
pre samp,
pre var,
kbd kbd,
kbd samp,
code var {
  font-size: 100%;
  background-color: transparent;
}
pre code,
pre samp,
pre var {
  padding: 0;
}
.description code {
  font-size: 1em;
}
kbd {
  background-color: #f2f2f2;
  border: 1px outset #575757;
  margin: 0 3px;
  color: #666;
  display: inline-block;
  padding: 0 6px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
pre {
  background-color: #f2f2f2;
  background-color: rgba(40, 40, 0, 0.06);
  margin: 10px 0;
  overflow: hidden;
  padding: 15px;
  white-space: pre-wrap;
}
/* ------------------ Table Styles ------------------ */
table {
  border-spacing: 0;
  font-size: 0.857em;
  margin: 10px 0;
  width: 100%;
  border-collapse:collapse;
}
table table {
  font-size: 1em;
}
#footer-wrapper table {
  font-size: 1em;
}
table tr th {
  background: #757575;
  background: rgba(0, 0, 0, 0.51);
  border-bottom-style: none;
}
table tr th,
table tr th a,
table tr th a:hover {
  color: #FFF;
  font-weight: bold;
}
table tbody tr th {
  vertical-align: top;
}
tr td,
tr th {
  padding: 4px 9px;
  border: 1px solid #D3D3D3;
  text-align: left; /* LTR */
  vertical-align: middle;
}
#footer-wrapper tr td,
#footer-wrapper tr th {
  border-color: #555;
  border-color: rgba(255, 255, 255, 0.18);
}
tr.odd {
  background: none;
}
tr,
tr.even {
  background: none;
}

#node-2189 tr {
  background: none;
}

table ul.links {
  margin: 0;
  padding: 0;
  font-size: 1em;
}
table ul.links li {
  padding: 0 1em 0 0;
}
table#buttons td,
table#table-all td,
table#buttons tbody,
table#table-all tbody{
  border: none;
}
/* End */


/* Start:/local/templates/rospotreb/css/style.css?173520480439110*/
.layout-container {
  background: #fff url(/local/templates/rospotreb/css/../images/back2.jpg) top left no-repeat;
  padding: 0 40px;
}

header {
  min-height: 220px;
  width: 100%;
  clear: both;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}
.block header {
  min-height: auto;
}
.block-logo {
  flex: 0 0 500px;
  margin: 0 auto;
  max-width: 500px;
  width: 500px;
  text-align: center;
  height: 100px;
}
.menu-burger {
  display: none;
}
.menu--account {
  min-width: 200px;
  position: absolute;
  right: 45px;
  top: 20px;
}
.menu--account .menu {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu--account .menu li {}
.menu--account .menu li a {}
.menu--account .menu li a:hover {}
.visually-impaired-module-special {
  position: absolute;
  right: 0;
  top: 18px;
  display: flex;
}
.vi-special-block-image {
  background: url('/local/templates/rospotreb/css/../images/but-disab.gif') no-repeat 50% !important;
  height: 27px;
  width: 27px;
  padding: 0;
}
.search-block-form {
  position: absolute;
  right: 0;
  top: 50px;
}
.search-block-form form {
  display: flex;
}
.search-block-form form .form-item-keys {
  float: left;
  width: 154px;
  height: 20px;
  padding: 0;
  margin: 0;
  margin-right:10px;
  background: url('/local/templates/rospotreb/css/../images/input-search2.gif') no-repeat top left;
}
.search-block-form form .form-item-keys input {
  background: none;
  border: none;
  color: #000;
  height: 22px;
  line-height: 14px;
  padding: 0;
  text-indent: 10px;
  width: 118px;
  margin: 0;
  margin-left: 25px;
  font-size: 11px;
  outline: none;
  padding-top: 2px;
  padding-bottom: 4px;
}
.search-block-form form .form-actions {}
.search-block-form form .form-actions input {
  height: 18px;
  line-height: 18px;
  float: left;
  background: url(/local/templates/rospotreb/css/../images/but-search.gif) no-repeat center;
  border: 0;
  color: transparent;
  padding: 0 2px 0 2px;
  margin: 2px 0 0 13px;
  border-radius: 0;
}

main {
  display: flex;
  justify-content: space-between;
}
main aside {
  width: 275px;
}
main .layout-content {
  width: calc(100% - 590px);
}

.messages-list {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 0;
  list-style: none;
}
.messages {
  box-sizing: border-box;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1.5rem 1.5rem 2rem calc(1.5rem - 0.3125rem);
  color: #fff;
  border-width: 0 0 0 5px;
  border-style: solid;
  border-color: #353641;
  border-radius: 2px;
  background-color: #353641;
}
.messages--status {
  border-color: #42a877;
}
.messages__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.breadcrumbs {
}
.breadcrumbs nav {}
.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.breadcrumbs nav ol li {
  padding: 0 23px 0 0;
  position: relative;
}
.breadcrumbs nav ol li:after {
  color: #000;
  content: '/';
  position: absolute;
  right: 10px;
  top: 2px;
}
.breadcrumbs nav ol li:last-child:after {
  content: none;
}
.breadcrumbs nav ol li span,
.breadcrumbs nav ol li a {
  color: #005DB7;
  font-size: 10px;
  line-height: 10px;
}
.breadcrumbs nav ol li span {
  color: #000;
}
.breadcrumbs nav ol li span:hover,
.breadcrumbs nav ol li a:hover {}

.primary-local-tasks {
}
.primary-local-tasks .primary-tabs {
  display: flex;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.primary-local-tasks .primary-tabs li {
  padding: 0 10px;
}
.primary-local-tasks .primary-tabs li:first-child {
  padding: 0 10px 0 0;
}
.primary-local-tasks .primary-tabs li a {
  border-bottom: 1px solid #2a6093;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  display: block;
  padding: 0 10px;
  text-decoration: none;
}
.primary-local-tasks .primary-tabs li a.is-active {
  border: 1px solid #2a6093;
  border-radius: 5px 5px 0 0;
}
.primary-local-tasks .primary-tabs li a:hover {}

.menu--main {}
.menu--main .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu--main .menu li {
  border-top: 1px solid #D4D4D4;
  margin-left: 3px;
  padding: 15px 0;
}
.menu--main .menu li a,
.menu--main .menu li > span {
  color: #EE2200;
  cursor: pointer;
  display: block;
  font-size: 9pt;
  font-style: normal;
  font-weight: bold;
  max-width: 205px;
  text-decoration: none;
  text-transform: uppercase;
}
.menu--main .menu li > span:hover,
.menu--main .menu li.active > span,
.menu--main .menu li a:hover,
.menu--main .menu li a.is-active {
}
.menu--main .menu li.active > span,
.menu--main .menu li a.is-active {
  background: #EE2200;
  border-radius: 10px;
  color: #fff;
  padding: 15px;
}
.menu--main .menu li.active > span:hover,
.menu--main .menu li a.is-active:hover {
  padding: 15px;
}
.menu--main .menu li ul {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu--main .menu li.active > ul {
  display: block;
}
.menu--main .menu li ul li {
  border: none;
  margin: 5px 0 5px 20px;
  padding: 2px;
}
.menu--main .menu li ul li a {
  text-transform: inherit;
}
.menu--main .menu li ul li.active-trail > a,
.menu--main .menu li ul li a.is-active {
  background: none;
  color: #898686;
  padding: 0;
}
.menu--main .menu li ul li a:hover,
.menu--main .menu li ul li a.is-active:hover {
  background: none;
  color: #898686;
  padding: 0;
}

.menu--main .menu li img {
    padding: 0 10px 0 0;
}

.block-authentification {
  margin: 20px 0 40px;
}
.block-authentification h2 {}
.block-authentification form {}
.block-authentification .form-item {
  margin: 0 0 15px;
}
.block-authentification .form-item label {
  display: block;
  margin: 0 0 5px;
}
.block-authentification .form-item input {
  width: calc(100% - 10px);
}
.block-authentification .form-actions {
  text-align: center;
}
.block-authentification .form-actions input {
  margin: 0 auto;
}
.block-authentification ul {}
.block-authentification ul li {}
.block-authentification ul li a {}

.align-left {
  margin: 0 10px 10px 0;
}
.align-right {
  margin: 0 0 10px 10px;
}

.views-row {
  margin: 0 0 20px;
}
.views-row .views-field-title a {
  color: #005DB7;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: underline;
}
.views-row .views-field-title a:hover {
}
.views-row .views-field-field-teaser {

}
.views-row .views-field-created {
  color: #4F4F4F;
  font-size: 12px;
  line-height: 1.4;
}

.pager {}
.pager ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pager ul li {
  padding: 0.5em;
}
.pager ul li:hover,
.pager ul li.is-active {
  background: #E1E1E1;
}
.pager ul li.is-active {}
.pager ul li.pager__item--ellipsis:hover {
  background: none;
  cursor: inherit;
}
.pager ul li a {
  color: #005DB7;
  display: block;
  text-decoration: underline;
}
.pager ul li:hover a,
.pager ul li.is-active a {
  color: #5B5B5B;
  text-decoration: none;
}

.custom-block-image:not(:last-child) {
  margin: 0 0 20px;
}

footer {
  border-top: 1px solid #D4D4D4;
  display: flex;
  justify-content: space-between;
  margin: 0 0 10px;
}
footer .block {
  flex: 0 0 30%;
  margin: 40px 0 0;
}
footer .block-footer_contacts {
  /*text-align: center;*/
}
footer .block-yandex_metrika {
  /*text-align: right;*/
}

footer .block p {
  color: #909090;
  font-size: 10px;
  margin: 1em 0 0 1.2em;
  max-width: 80%;
}
footer .block-footer_contacts p {
  color: #565656;
  font-size: 11px;
  line-height: 2.5;
  margin: 0;
}

.to-top {
  padding: 0;
  height: 40px;
  width: 53px;
  float: right;
  background: url(/local/templates/rospotreb/css/../images/to_top.png) no-repeat;
  text-indent: -999em;
}

@media only screen and (max-width: 991px) {
  .layout-container {
    position: relative;
  }
  header {
    justify-content: space-between;
    margin: 0 0 20px;
  }
  .block-logo {
    display: block;
    flex: 0 0 100%;
    justify-content: center;
    margin: 0 auto 20px;
    max-width: 100%;
    width: 100%;
    max-height: 250px;
  }
  #hotline {
      display: none;
  }
  .menu-burger {
    align-items: center;
    display: flex;
  }
  .menu-burger .field {
    cursor: pointer;
  }
  .menu-burger .field span {
    background: #EE2200;
    display: block;
    height: 3px;
    margin: 0 0 3px;
    width: 20px;
  }
  .menu-burger .field span:last-child {
    margin: 0;
  }
  .menu-burger .field:hover span {}

  .menu--account {
    display: none;
  }
  .visually-impaired-module-special,
  .search-block-form {
    align-items: center;
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    margin-left: 20px;
  }
  .visually-impaired-module-special {
    order: 6;
    margin-top: 70px;
  }

  main {
    flex-direction: column;
  }
  main aside {
    width: 100%;
  }

  .layout-sidebar-first {
    background: #fff;
    border-right: 2px solid #EE2200;
    height: calc(100% - 54px);
    left: -85%;
    opacity: 0;
    overflow: auto;
    padding: 54px 20px 0;
    position: fixed;
    top: 0;
    transition: .3s;
    visibility: hidden;
    width: 80%;
    z-index: 9999;
  }
  .layout-sidebar-first.opened {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .close-main-menu {
    background: #EE2200 url('/local/templates/rospotreb/css/../images/close.png') no-repeat center;
    background-size: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 14px;
    padding: 2px;
    position: absolute;
    right: 15px;
    top: 20px;
    width: 14px;
  }

  main .layout-content {
    margin: 40px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .layout-container {
    padding: 0 15px;
  }
  .menu--account {

  }
  .search-block-form {
  }
}


/* Region header blocks. */
.region-header .block {
  font-size: 0.857em;
  margin: 0 10px;
  padding: 0;
}
.region-header .block .content {
  margin: 0;
  padding: 0;
}
.region-header .block ul {
  margin: 0;
  padding: 0;
}
.region-header .block li {
  list-style: none;
  padding: 0;
}
.region-header .form-text {
  background: #fefefe;
  background: rgba(255, 255, 255, 0.7);
  border-color: #ccc;
  border-color: rgba(255, 255, 255, 0.3);
  margin-right: 2px; /* LTR */
  width: 120px;
}
.region-header .form-text:hover,
.region-header .form-text:focus,
.region-header .form-text:active {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
}
.region-header .form-required {
  color: #eee;
  color: rgba(255, 255, 255, 0.7);
}
/* Region header block menus. */
.region-header .block-menu {
  border: 1px solid;
  border-color: #eee;
  border-color: rgba(255, 255, 255, 0.2);
  padding: 0;
  width: 208px;
}
.region-header .block-menu li a {
  display: block;
  border-bottom: 1px solid;
  border-bottom-color: #eee;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  padding: 3px 7px;
}
.region-header .block-menu li a:hover,
.region-header .block-menu li a:focus,
.region-header .block-menu li a:active {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
}
.region-header .block-menu li.last a {
  border-bottom: 0;
}
/* User Login block in the header region */
.region-header #block-user-login {
  width: auto;
}
.region-header #block-user-login .content {
  margin-top: 2px;
}
.region-header #block-user-login .form-item {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}
.region-header #block-user-login div.item-list,
.region-header #block-user-login div.description {
  font-size: 0.916em;
  margin: 0;
}
.region-header #block-user-login div.item-list {
  clear: both;
}
.region-header #block-user-login div.description {
  display: inline;
}
.region-header #block-user-login .item-list ul {
  padding: 0;
  line-height: 1;
}
.region-header #block-user-login .item-list li {
  list-style: none;
  float: left; /* LTR */
  padding: 3px 0 1px;
}
.region-header #block-user-login .item-list li.last {
  padding-left: 0.5em; /* LTR */
}
.region-header #block-user-login ul.openid-links li.last {
  padding-left: 0; /* LTR */
}
.region-header #user-login-form li.openid-link a,
.region-header #user-login li.openid-link a {
  padding-left: 20px; /* LTR */
}
.region-header #block-user-login .form-actions {
  margin: 4px 0 0;
  padding: 0;
  clear: both;
}
.region-header #block-user-login input.form-submit {
  border: 1px solid;
  border-color: #ccc;
  border-color: rgba(255, 255, 255, 0.5);
  background: #eee;
  background: rgba(255, 255, 255, 0.7);
  margin: 4px 0;
  padding: 3px 8px;
}
.region-header #block-user-login input.form-submit:hover,
.region-header #block-user-login input.form-submit:focus {
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
}
/* Search block in region header. */
.region-header #block-search-form {
  width: 240px;
  clear:both;
  overflow: hidden;
}
.region-header #block-search-form .form-text {
  width: 154px;
}
/* Language switcher block in region header. */
.region-header .block-locale ul li {
  display: inline;
  padding: 0 0.5em;
}

/* ------------------- Help ------------------- */

.region-help {
  border: 1px solid #d3d7d9;
  padding: 0 1.5em;
  margin-bottom: 30px;
}

/* ----------------- Content ------------------ */

.content {
  margin-top: 10px;
  padding-right: 60px;
}
h1#page-title {
  font-size: 2em;
  line-height: 1;
}
#content h2 {
  font-size: 1.6em;
  line-height: 1.4;
  font-weight: bold;
}
.node .content {
  font-size: 1.071em;
}
.node-teaser .content {
  font-size: 1em;
}
.node-teaser h2 {
  margin-top: 0;
  padding-top: 0.5em;
}
.node-teaser h2 a {
  color: #181818;
}
.node-teaser {
  border-bottom: 1px solid #d3d7d9;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.node-sticky {
  background: #f9f9f9;
  background: rgba(0, 0, 0, 0.024);
  border: 1px solid #d3d7d9;
  padding: 0 15px 15px;
}
.node-full {
  background: none;
  border: none;
  padding: 0;
}
.node-teaser .content {
  clear: none;
  line-height: 1.6;
}
.meta {
  font-size: 0.857em;
  color: #68696b;
  margin-bottom: -5px;
}
.submitted .user-picture img {
  float: left; /* LTR */
  height: 20px;
  margin: 1px 5px 0 0; /* LTR */
}
.field-type-taxonomy-term-reference {
  margin: 0 0 1.2em;
}
.field-type-taxonomy-term-reference .field-label {
  font-weight: normal;
  margin: 0;
  padding-right: 5px; /* LTR */
}
.field-type-taxonomy-term-reference .field-label,
.field-type-taxonomy-term-reference ul.links {
  font-size: 0.8em;
}
.node-teaser .field-type-taxonomy-term-reference .field-label,
.node-teaser .field-type-taxonomy-term-reference ul.links {
  font-size: 0.821em;
}
.field-type-taxonomy-term-reference ul.links {
  padding: 0;
  margin: 0;
  list-style: none;
}
.field-type-taxonomy-term-reference ul.links li {
  float: left; /* LTR */
  padding: 0 1em 0 0; /* LTR */
  white-space: nowrap;
}
.link-wrapper {
  text-align: right;
}
.field-type-image img,
.user-picture img {
  margin: 0 0 1em;
}
ul.links {
  color: #68696b;
  font-size: 0.821em;
}
.node-unpublished {
  margin: -20px -15px 0;
  padding: 20px 15px 0;
}
.node-unpublished .comment-text .comment-arrow {
  border-left: 1px solid #fff4f4;
  border-right: 1px solid #fff4f4;
}

/* ------------------ Sidebar ----------------- */
.sidebar .section {
  padding-top: 10px;
}
.sidebar h2 {
  margin: 0 0 0.5em;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 5px;
  text-shadow: 0 1px 0 #fff;
  font-size: 1.071em;
  line-height: 1.2;
}
.sidebar .block .content {
  font-size: 0.914em;
  line-height: 1.4;
}
.sidebar tbody {
  border: none;
}
.sidebar tr.even,
.sidebar tr.odd {
  background: none;
  border-bottom: 1px solid #d6d6d6;
}

/* ------------------ Footer ------------------ */

#footer-wrapper {
  color: #c0c0c0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.857em;
}
#footer-wrapper a {
  color: #fcfcfc;
  color: rgba(255, 255, 255, 0.8);
}
#footer-wrapper a:hover,
#footer-wrapper a:focus {
  color: #fefefe;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}
#footer-wrapper .block {
  margin: 20px 0;
  border: 1px solid #444;
  border-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
}
#footer-columns .block-menu,
#footer .block {
  margin: 0;
  padding: 0;
  border: none;
}
#footer .block {
  margin: 0.5em 0;
}
#footer .block .content {
  padding: 0.5em 0;
  margin-top: 0;
}
#footer .block h2 {
  margin: 0;
}
#footer-columns h2 {
  border-bottom: 1px solid #555;
  border-color: rgba(255, 255, 255, 0.15);
  font-size: 1em;
  margin-bottom: 0;
  padding-bottom: 3px;
  text-transform: uppercase;
}
#footer-columns .content {
  margin-top: 0;
  line-height: 1.2;
}
#footer-columns p {
  margin-top: 1em;
}
#footer-columns .content ul {
  list-style: none;
  padding-left: 0; /* LTR */
  margin-left: 0;
}
#footer-columns .content li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer-columns .content li a {
  display: block;
  border-bottom: 1px solid #555;
  border-color: rgba(255, 255, 255, 0.15);
  line-height: 1.2;
  padding: 0.8em 2px 0.8em 20px; /* LTR */
  text-indent: -15px;
}
#footer-columns .content li a:hover,
#footer-columns .content li a:focus {
  background-color: #1f1f21;
  background-color: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}
#footer {
  letter-spacing: 0.2px;
  margin-top: 30px;
  border-top: 1px solid #555;
  border-color: rgba(255, 255, 255, 0.15);
}
#footer .region {
  margin-top: 20px;
}
#footer .block {
  clear: both;
}
#footer ul,
#footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer li a {
  float: left; /* LTR */
  padding: 0 12px;
  display: block;
  border-right: 1px solid #555; /* LTR */
  border-color: rgba(255, 255, 255, 0.15);
}
#footer li.first a {
  padding-left: 0; /* LTR */
}
#footer li.last a {
  padding-right: 0; /* LTR */
  border-right: none; /* LTR */
}
#footer-wrapper tr.odd {
  background-color: transparent;
}
#footer-wrapper tr.even {
  background-color: #2c2c2c;
  background-color: rgba(0, 0, 0, 0.15);
}

/* --------------- System Tabs  --------------- */

.tabs {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 20px;
}
.tabs ul.primary {
  padding: 0 3px;
  margin: 0;
  overflow: hidden;
  border: none;
  background: transparent url(/local/templates/rospotreb/css/../images/tabs-border.png) repeat-x left bottom;
}
.tabs ul.primary li {
  display: block;
  float: left; /* LTR */
  vertical-align: bottom;
  margin: 0 5px 0 0; /* LTR */
}
.tabs ul.primary li.active a {
  border-bottom: 1px solid #ffffff;
}
.tabs ul.primary li a {
  color: #000;
  background-color: #ededed;
  height: 1.8em;
  line-height: 1.9;
  display: block;
  font-size: 0.929em;
  float: left; /* not LTR */
  padding: 0 10px 3px;
  margin: 0;
  text-shadow: 0 1px 0 #fff;
  -moz-border-radius-topleft: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-border-radius-topright: 6px;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
}
.tabs ul.primary li.active a {
  background-color: #ffffff;
}
.tabs ul.secondary {
  border-bottom: none;
  padding: 0.5em 0;
}
.tabs ul.secondary li {
  display: block;
  float: left; /* LTR */
}
.tabs ul.secondary li:last-child {
  border-right: none; /* LTR */
}
.tabs ul.secondary li:first-child {
  padding-left: 0; /* LTR */
}
.tabs ul.secondary li a {
  padding: 0.25em 0.5em;
}
.tabs ul.secondary li a.active {
  background: #f2f2f2;
  border-bottom: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
ul.action-links {
  list-style: none;
  margin: 5px;
  padding: 0.5em 1em;
}
ul.action-links li {
  display: inline-block;
  margin-left: 10px;
}
ul.action-links li a {
  padding-left: 15px;
  background: url(/local/templates/rospotreb/css/../images/add.png) no-repeat left center;
  margin: 0 10px 0 0;
}

/* -------------- Password Meter  ------------- */

.confirm-parent,
.password-parent {
  width: 34em;
}
.password-parent,
div.form-item div.password-suggestions {
  position: relative;
}
.password-strength-text,
.password-strength-title,
div.password-confirm {
  font-size: 0.82em;
}
.password-strength-text {
  margin-top: 0.2em;
}
div.password-confirm {
  margin-top: 2.2em;
  width: 20.73em;
}

/* ---------------- Buttons    ---------------- */

input.form-submit,
a.button {
  background: #fff url(/local/templates/rospotreb/css/../images/buttons.png) 0 0 repeat-x;
  border: 1px solid #e4e4e4;
  border-bottom: 1px solid #b4b4b4;
  border-left-color: #d2d2d2;
  border-right-color: #d2d2d2;
  color: #3a3a3a;
  cursor: pointer;
  font-size: 0.929em;
  font-weight: normal;
  text-align: center;
  margin-bottom: 1em;
  margin-right: 0.6em; /* LTR */
  padding: 4px 17px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}
a.button:link,
a.button:visited,
a.button:hover,
a.button:focus,
a.button:active {
  text-decoration: none;
  color: #5a5a5a;
}


/* --------------- Search Results ---------------- */
ol.search-results {
  padding-left: 0;
}
.search-results li {
  border-bottom: 1px solid #d3d7d9;
  padding-bottom: 0.4285em;
  margin-bottom: 0.5em;
}
.search-results li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1em;
}
.search-results .search-snippet-info {
  padding-left: 0;
}

/* -------------- Shortcut Links -------------- */

.shortcut-wrapper {
  margin: 2.2em 0 1.1em 0; /* Same as usual h1#page-title margin. */
}
.shortcut-wrapper h1#page-title {
  float: left; /* LTR */
  margin: 0;
}
div.add-or-remove-shortcuts {
  padding-top: 0.9em;
}
.overlay div.add-or-remove-shortcuts {
  padding-top: 0.8em;
}

/* ---------- Admin-specific Theming ---------- */

.page-admin #content img {
  margin-right: 15px; /* LTR */
}
.page-admin #content .simpletest-image img {
  margin: 0;
}
.page-admin-structure-block-demo .block-region {
  background: #ffff66;
  border: 1px dotted #9f9e00;
  color: #000;
  font: 90% "Lucida Grande", "Lucida Sans Unicode", sans-serif;
  margin: 5px;
  padding: 5px;
  text-align: center;
  text-shadow: none;
}
.page-admin-structure-block-demo #featured .block-region {
  font-size: 0.55em;
}
.page-admin-structure-block-demo #header .block-region {
  width: 500px;
}
.page-admin #admin-dblog img {
  margin: 0 5px;
}
/* Fix spacing when Seven is used in the overlay. */
#system-theme-settings fieldset {
  padding: 0;
}
#system-theme-settings fieldset .fieldset-legend {
  margin-top: 0;
}
/* Configuration. */
div.admin .right,
div.admin .left {
  width: 49%;
  margin: 0;
}
div.admin-panel {
  background: #fbfbfb;
  border: 1px solid #ccc;
  margin: 10px 0;
  padding: 0 5px 5px;
}
div.admin-panel h3 {
  margin: 16px 7px;
}
div.admin-panel dt {
  border-top: 1px solid #ccc;
  padding: 7px 0 0;
}
div.admin-panel dd {
  margin: 0 0 10px;
}
div.admin-panel .description {
  margin: 0 0 14px 7px;
}







/***********************************/
#navig img.but {
  margin-right: 10px;
  /* margin-bottom: 13px; */
  float: left;
}
#navig .but1 {
  margin: 9px 0 0 0;
}

#block-block-1 {
  clear: both;
  overflow: hidden;
  margin: 30px 0 0;
}
#hotline a {
  text-decoration: none;
}
#hotline img {
  float: left;
  margin: 0 10px 0 0;
}
#hotline span {
  display: block;
}
span.ob3 {
  color: #EE2200;
  font-weight: bold;
}
#block-search-form #edit-actions{
  float: left;
  width: 50px;
}
#main{
  margin-top: 60px;
}
#sidebar-first .section{
  padding: 0;
}
#sidebar-first .section #block-system-main-menu .content,
#sidebar-first .section #block-system-main-menu .content>ul{
  margin-top: 0;
}
#sidebar-first .section #block-system-main-menu .content>ul{
  padding: 0 0 0 0;
}
#sidebar-first .section #block-system-main-menu .content>ul li{
  background: none;
  list-style: none;
}
#sidebar-first .section #block-system-main-menu .content>ul li a{
  color: #EE2200;
  font-weight: bold;
  font-style: normal;
  font-size: 10px;
}

#sidebar-first .section #block-system-main-menu .content ul li li a{
  color: #990000;
  padding: 0 0 10px 0;
}
#sidebar-first .section #block-system-main-menu .content>ul li a:hover{
  text-decoration:none;
}
#sidebar-first .section #block-system-main-menu .content>ul ul{
  padding-left: 5px;
  padding-top: 6px;
}

#sidebar-first .section #block-system-main-menu .content>ul>li{
  border-top: 1px solid #D4D4D4;
  padding: 13px 0;
  margin-left: 3px;
  /*border-top: 1px solid #fff;*/
}
/*#sidebar-first .section #block-system-main-menu .content>ul>li.first{
	border-top:1px solid transparent;
}*/

#sidebar-first .section #block-system-main-menu .content>ul>li.last{
  border-bottom:1px solid #d4d4d4;
}
#sidebar-first .section #block-system-main-menu .content>ul>li>a{
  font-weight: bold;
  font-size: 9pt;
  width: 205px;
  display: block;
  text-decoration:inherit;
}
#sidebar-first .section #block-system-main-menu .content>ul>li>a.active-trail{
  background: #EE2200;
  color: #fff;
  font-style: normal;
  padding: 15px 17px;
  border-radius: 10px;
}
#sidebar-first .section #block-system-main-menu .content>ul>li>ul{
  padding-left: 25px;
  width: 224px;
  line-height: 1;
}
#sidebar-first .section #block-system-main-menu .content ul li li{
  list-style-image: url(/local/templates/rospotreb/css/../images/submenu1.gif);
  padding-left: 5px;
  padding-top: 12px;
  margin: 0 0 15px 4px;
}
#sidebar-first .section #block-system-main-menu .content>ul>li>ul>li>a{
  color: #BD0001;
  font-size: 8pt;
  text-decoration:inherit;
}
#sidebar-first .section #block-system-main-menu .content>ul>li>ul>li>ul{
  padding-left: 5px;
  padding-top: 6px;
}
#sidebar-first .section #block-system-main-menu .content>ul>li>ul>li>ul>li{
  list-style-image: url(/local/templates/rospotreb/css/../images/submenu2.gif);
}
#sidebar-first .section #block-system-main-menu .content>ul>li>ul>li>ul>li>a{
  color: #990000;
  font-size: 10px;
}
#sidebar-first .section #block-system-main-menu .content ul li a.active-trail.active {
  color:#fff;
}
#sidebar-first .section #block-system-main-menu .content ul li li a.active-trail.active {
  color:#898686;
}
.region-sidebar-first #user-login-form{
  margin-left: 2px;
}
.region-sidebar-first #user-login-form .form-item{
  float: left;
  width: 153px;
  height: 20px;
  padding: 0;
  margin: 0;
  margin-bottom: 8px;
}
.region-sidebar-first #user-login-form .form-text{
  border: 1px solid #989898;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding: 0 2px 0 4px;
  font-size: 10px;
  width: 145px;
  height: 16px;
  border-radius: 5px;
}
.region-sidebar-first #user-login-form label{
  display:none;
}
.region-sidebar-first #user-login-form .item-list,
.front h1#page-title{
  display:none;
}
.region-sidebar-first #user-login-form .form-submit{
  margin: 4px 0 0 8px;
  background: url(/local/templates/rospotreb/css/../images/but-enter.gif) no-repeat;
  height:18px;
}
#block-block-18 .red{
  width: 238px;
  height: 125px;
  padding-top: 13px;
  padding-left: 10px;
  background: #990000;
  border-radius: 12px;
}
#block-block-18 .red .yellow{
  background: url(/local/templates/rospotreb/css/../images/right_yellow.png) no-repeat 0 0;
  display: block;
  width: 196px;
  height: 121px;
}
#block-block-18 .red .white{
  width: 125px;
  display: block;
  padding-left: 93px;
  padding-right: 0;
  padding-top: 9px;
  color: #fff;
  font-size: 11px;
  position: absolute;
}
#block-block-18 .red .white a{
  color: #fff;
  text-decoration: underline;
}
#block-block-18 .red .white a:hover{
  text-decoration:none;
}

a.type-file {
  display: inline-block;
  margin-left: 20px;
  width: 23px;
  height: 20px;
}
a.doc {
  background: url(/local/templates/rospotreb/css/../images/doc-doc.gif) no-repeat 1px 4px;
}

a.xls {
  background: url('/local/templates/rospotreb/css/../images/doc-xls.gif') no-repeat 1px 4px;
}

a.zip,
a.rar {
  background: url('/local/templates/rospotreb/css/../images/doc-rar.gif') no-repeat 1px 4px;
}

a.pdf {
  background: url(/local/templates/rospotreb/css/../images/doc-pdf.gif) no-repeat 1px 4px;
}

a.rtf,
a.etc,
a.ocx {
  background: url(/local/templates/rospotreb/css/../images/doc-any.gif) no-repeat 1px 4px;
}
.banner1{
  display: block;
  background: url('/local/templates/rospotreb/css/../images/opros.png') no-repeat 0 0;
  width: 246px;
  height: 77px;
  margin-top: 31px;
}
.banner2{
  display: block;
  width: 109px;
  height: 86px;
  margin: 12px 0 0 62px;
}
.banner3{
  display: block;
  background: url('/local/templates/rospotreb/css/../images/logo-rpn.gif') no-repeat 0 0;
  width: 186px;
  height: 50px;
  margin: 0 0 0 61px;
}
.banner4{
  display:block;
  background: url('/local/templates/rospotreb/css/../images/logo-fcgsen1.gif') no-repeat 0 0;
  width:186px;
  height:50px;
  margin: -2px 0 0 61px;
}
.banner5{
  display:block;
  background: url('/local/templates/rospotreb/css/../images/logo-crc.gif') no-repeat 0 0;
  width:186px;
  height:50px;
  margin: -5px 0 0 61px;
}
.banner6{
  display: block;
  width: 187px;
  height: 50px;
  margin: -5px 0 0 61px;
}
.banner7{
  display: block;
  width: 186px;
  height: 50px;
  margin: 19px 0 0 62px;
}
.region-footer-firstcolumn{
  width: 30%;
  margin-right: 0;
  float: left;
  padding: 0;
}
#footer-columns>div>div.block{
  padding: 0;
  margin: 0;
}
.region-footer-secondcolumn{
  width: 30%;
  float: left;
  margin-left: 8%;
}
.region-footer-thirdcolumn{
  width: 20%;
  float: right;
  text-align: right;
}
#footer-columns>div p,
#footer-columns>div a{
  font-size: 10px;
  color: #909090;
}
#footer-columns>div a:hover{
  text-decoration:underline;
  color: #909090;
}
#footer-wrapper{
  margin: 0 67px 0;
  padding-bottom: 0;
  border-top: 1px solid #D4D4D4;
  padding-top: 28px;
}
.cit-date{
  font-size: 11px;
  color: #8C8C8C;
  margin-bottom: 2px;
}
.cit-date a{
  font-size: 11px;
  color: #000000;
  text-decoration:underline;
}
.view .views-row {
  margin-bottom: 22px;
  overflow: hidden;
}
.views-field-field-photo-news {
  width: 70px;
  height: 70px;
  float: left;
  margin: 0 10px 10px 0;
}
.view .title {
  margin-bottom: 4px;
}
.view .title a{
  text-decoration: underline;
  color: #005DB7;
}
div.end-line {
  background: #D4D4D4;
  height: 1px;
  clear: both;
  line-height: 1;
  font-size: 0;
  width: 184px;
  margin-left: 0;
  margin-top: 40px;
  margin-bottom: 20px;
}
#triptych {
  margin: 0 4%;
  width: auto;
}
#triptych .region{
  width:30%;
}
#triptych .region .block-views{
  background:url(/local/templates/rospotreb/css/../images/vline.gif) no-repeat top left;
  padding-left: 10px;
  min-height: 275px;
}
#triptych .block h2 a{
  font-weight:bold;
  font-size: 15px;
  color: #000;
  text-decoration:inherit;
}
#triptych .block-views .views-row .title a{
  text-decoration:none;
  font-size:11px;
  font-weight:normal;
}
#triptych .block-views .views-row .title{
  line-height:1;
}
.region-triptych-middle{
  margin:20px 30px;
}
.region-triptych-first, .region-triptych-last{
  margin: 20px 0 30px;
}

#sidebar-first #block-user-login{
  overflow:hidden;
  margin-bottom:50px;
  width: 270px;
}
#sidebar-first .region-sidebar-first #block-system-main-menu{
  margin-bottom:70px;
}
#footer-wrapper #block-block-5 .content p, #footer-wrapper #block-block-5 .content p a{
  font-size: 11px;
  line-height: 2.5;
  color: #565656;
  margin: 0;
}
#footer-wrapper #block-block-5 .content p a{
  text-decoration:underline;
}
#block-search-form .form-submit {
  background:url(/local/templates/rospotreb/css/../images/but-search.gif) no-repeat;
  border:none;
  color: transparent;
  cursor: pointer;
}
#breadcrumb .breadcrumb a {
  color:#005DB7;
  font-size: 10px;
  text-decoration: underline;
  line-height: 10px;
}

#main-wrapper #content  .section h1{
  font-weight: bold;
  font-size: 22px;
}
#main-wrapper #content  .section .region-content .block .content{
  font-size: 14px;
  line-height:1.4;
  color:#4F4F4F;
  padding-right: 0;
}
#block-system-main .meta{
  display:none;
}

.aui-legend {
  border-bottom: 1px solid #CCC;
  display: block;
  width: 90%;
  color: #000;
  font-size: 120%;
  font-weight: bold;
}

.webform-client-form-8086 .form-item {
  clear: both;
  margin: 0 0 10px;
  overflow: hidden;
}
.webform-client-form .form-item label {
  display: block;
  float: none;
  text-align: left;
  margin: 0;
  font-weight: bold;
  color: #4f4f4f;
  font-size: 14px;
}
.webform-client-form-8086 .form-item label {
  float: left;
}

.webform-client-form .form-actions .webform-submit{
  background: #fff url(/local/templates/rospotreb/css/../images/buttons.png) 0 0 repeat-x;
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  padding: 5px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid;
  border-color: #C8C9CA #9E9E9E #9E9E9E #C8C9CA;
  color: #34404F;
  font-weight: bold;
  text-shadow: 1px 1px #FFF;
}
.webform-client-form .form-actions .webform-submit:hover{
  background: #B9CED9 url(/local/templates/rospotreb/css/../images/state_hover_bg.png) repeat-x 0 0;
  border-color: #627782;
  color: #369;
}

.section .webform-client-form .form-item input,
.section .webform-client-form .form-item textarea,
.webform-client-form .form-item select{
  width: 400px;
}
.webform-client-form.webform-client-form-8086 .form-item input[type="radio"]{
  width: 25px;
  float: left;
}

.webform-client-form .form-item .form-textarea-wrapper,
.webform-client-form .form-item select,
.section .webform-client-form .form-item textarea {
  width: 403px;
}

#main-wrapper #content  .section .region-content .block{
  margin-bottom:60px;
}
.webform-client-form #edit-submitted-obratitsya-v-etom-zhe-pisme-po-drugomu-voprosu .form-item,
.webform-client-form #edit-submitted-obratitsya-v-etom-zhe-pisme-po-drugomu-voprosu .form-item label{
  border:none;
}
#sidebar-first #block-system-main-menu .content{
  padding: 0;
  margin-top: 0;
}
.webform-client-form .description {
  font-size:14px;
}
.webform-client-form .form-type-checkbox .option {
  display:none;
}
#content .region .field-item a{
  line-height: 2;
}
#content .region .view-content p a {
  font-size: 12px;
  font-weight: normal;
}
.front #content .region .view-content .title a {
  font-size: 14px;
  font-weight: bold;
}

/*Р”Р»СЏ СЃР»РµРїС‹С…*/
.huge #page-wrapper *{
  /*font-size:24px!important;*/
  color:#000;
}
.huge .content *{
  font-size:30px;
}
.huge #block-system-main .view-content .title a{
  font-size:34px!important;
  font-weight:bold!important;
}
.huge #block-system-main .view-content .cit-date a,
.huge #block-system-main .view-content .cit-date{
  font-size:26px!important;
}
.huge #sidebar-first .menu li a{
  color:#000!important;
}
.huge #triptych .block-views .views-row .title a {
  font-weight:bold;
  font-size:24px;
}
.huge #page-wrapper .region{
  font-size:14px!important;
}
.huge #sidebar-first .section #block-system-main-menu .content>ul>li>a {
  font-size:22px;
}
.huge #sidebar-first .section #block-system-main-menu .content .menu .dhtml-menu a,
.huge #main-wrapper #content .section .region-content .block .content span{
  font-size:24px !important;
}
.huge #footer-wrapper *,
.huge #footer-wrapper #block-block-5 .content p,
.huge #footer-wrapper #block-block-5 .content p a
{
  font-size:20px;
}
.huge #triptych .block h2 a {
  font-size: 28px;
}
/*.huge .cit-date {
  font-size: 16px;
}*/
.huge #block-block-1 .content .but1 {
  margin-bottom: 12px;
}
.huge #block-search-form #edit-actions input {
  margin: -6px 0 0 -21px;
}
.huge #block-block-1 #hotline #ob3, .huge #block-block-1 #hotline #ob3 span {
  font-size: 26px;
  color:#000;
}
.huge #main-wrapper #content .section h1 {
  font-size: 28px;
}
.huge #page-wrapper #sidebar-second #block-block-18 .red,
.huge #page-wrapper #sidebar-second #block-block-18 .banner2,
.huge #page-wrapper #sidebar-second #block-block-18 .banner3,
.huge #page-wrapper #sidebar-second #block-block-18 .banner4,
.huge #page-wrapper #sidebar-second #block-block-18 .banner5,
.huge #page-wrapper #sidebar-second #block-block-18 .banner6,
.huge #page-wrapper #sidebar-second #block-block-18 .banner7  {
  display:none;
}
#content .region #block-system-main .content .link-wrapper{
  text-align:left;
}
#content .region #block-system-main .content .link-wrapper .print_html{
  font-size: 11px;
}
.print_html a{
  background:url(/local/templates/rospotreb/css/../images/icon-print2.gif) no-repeat left center;
  padding-left: 25px;
}
.node_to_word_link a{
  background:url(/local/templates/rospotreb/css/../images/icon-doc2.gif) no-repeat left center;
  padding-left: 25px;
}
.page-node-859 table table tr td {
  text-align:center;
}
.page-node-2038 #node-2038 ul.menu{
  display:block !important;
}
.not-logged-in.node-type-poll #content .tabs,
.node-poll>.link-wrapper,
.node_to_word_txt_link,
.page-taxonomy-term .breadcrumb>.last{
  display:none !important;
}

.huge #block-user-login, .huge #block-block-8{
  display:none;
}

#content .view-list-documents .element-invisible {
  display: inherit;
  height: auto;
  position: inherit !important;
  color: #4F4F4F;
  font-family: "Verdana", "Tahoma", sans-serif;
  font-size: 8pt;
  font-weight: bold;
  width: 185px;
  border-top: 1px solid #D4D4D4;
  padding: 20px 0 10px 0;
}

.view-list-documents .item-list .pager {
  text-align: left;
}

.item-list .pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: 0.5em;
  margin: 0 0 0.25em 0;
}

.item-list .pager li.last,
.item-list .pager li.first {
  display: none;
}

.item-list .pager li.pager-current {
  background-color: #E1E1E1;
  padding: 7px;
  color: #5B5B5B;
  display: inline;
}
.hidden_result{
  display:none;
}
.hidden_result.show{
  display:block;
}
.hidden_result h2>a{
  display:none;
}

.aui-helper-hidden-accessible,
.aui-overlay-hidden,
.aui-overlaycontext-hidden,
.aui-overlaymask-hidden,
.aui-calendar-hidden,
.aui-datepicker-hidden,
.aui-colorpicker-hidden,
.aui-tooltip-hidden,
.aui-image-viewer-hidden,
.aui-image-gallery-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
}

.view-block-front .views-field-title a {
  font-size: 11px;
}

.webform-submission-info-text div:nth-child(4) {
  display: none;
}

button.gray {
  width: 203px;
  height: 100px;
  background: #D4D4D4 url('/local/templates/rospotreb/css/../images/header_bg.png') repeat-x 0 0;
  border: 1px solid;
  border-color: #C8C9CA #9E9E9E #9E9E9E #C8C9CA;
  color: #34404F;
  font-weight: bold;
  text-shadow: 1px 1px #FFF;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
}

button.gray:hover {
  background: #B9CED9 url('/local/templates/rospotreb/css/../images/state_hover_bg.png') repeat-x 0 0;
  border-color: #627782;
  color: #369;
}

#block-views-exp-list-documents-page-1 {
  background-color: #DFDFDF;
  padding: 10px 30px;
  border-radius: 10px;
}
#block-views-exp-list-documents-page-1 h2 {
  font-weight: bold;
  font-size: 18px;
  color: #484362;
}

#block-views-exp-list-documents-page-1 .views-exposed-widget {
  float: none;
  padding: 0 0 20px 0;
}

#block-views-exp-list-documents-page-1 .views-exposed-widget label {
  width: 140px;
  text-align: right;
  float: left;
  margin: 0 10px 0 0;
}

#block-views-exp-list-documents-page-1 .views-exposed-widget .views-widget {
  overflow: hidden;
}

#block-views-exp-list-documents-page-1 .views-exposed-widget .views-widget select {

}

#block-views-exp-list-documents-page-1 .views-exposed-widget .description {
  display: none;
}

#block-views-exp-list-documents-page-1 #edit-created-wrapper .form-item {
  width: 85px;
  float: left;
  margin: 0 10px 0 0;
}

#block-views-exp-list-documents-page-1 #edit-created-wrapper .form-item-created-min {
  width: 55px;
}

#block-views-exp-list-documents-page-1 #edit-created-wrapper .form-item label {
  float: left;
  width: 20px;
  text-align: left;
  margin: 0;
  line-height: 2;
}

#block-views-exp-list-documents-page-1 #edit-created-wrapper .form-item input {
  width: 50px;
}

#webform-client-form-6570  .form-item label {
  display: contents;
}
#webform-client-form-6570  .form-item input {
  width: 25px;
}

.pagination {
    margin-bottom: 20px;
}

.pagination a {
    padding: 5px;
    font-size: 12px;
}

.pagination a.active {
    background-color: #E1E1E1;
    color: #5B5B5B;
    text-decoration: none;
}
/* End */


/* Start:/local/templates/rospotreb/css/node.css?1734589683871*/
.field-paragraphs {
  margin: 0 0 40px;
}
.paragraph-spoiler {
  margin: 0 0 10px;
}
.field-field-spoiler-title  {
  background: #508ec1;
  border-radius: 8px;
  text-shadow: 0 -1px 1px rgb(0 0 0 / 25%);
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.6);
  -webkit-box-shadow: 0 0 5px rgb(0 0 0 / 60%);
  box-shadow: 0 0 5px rgb(0 0 0 / 60%);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  padding: 2px 10px 2px 24px;
}
.field-field-spoiler-body  {
  background: #FFFDDD;
  border: 1px #ccc solid;
  border-radius: 7px;
  display: none;
  overflow: hidden;
  padding: 10px;
}

.field-download-document {
  background: #f5f5f5 url(/local/templates/rospotreb/css/../images/download.png) no-repeat 0 0;
  border: 1px solid #d3d3d3;
  margin: 0 0 15px;
  padding: 15px 10px 15px 60px;
  text-align: center;
}
.field-download-document a {
  text-decoration: none;
}
/* End */


/* Start:/local/templates/rospotreb/css/footer-index-blocks.css?1734589683703*/
.footer-index-blocks{
    display: flex;
    flex-wrap: wrap;
}
.footer-index-blocks .footer-index-blocks--row{
    flex-grow: 1;
    width: 30%;
    padding: 20px 20px;
}
.footer-index-blocks .footer-index-blocks--row a{
    display: block;
    font-size: 12px;
    line-height: 1.4;
}

.footer-index-blocks .footer-index-blocks--row h3 a {
    font-size: 1em; 
    color: #222;
    font-weight: bold;
    text-decoration: none;
}

.footer-index-blocks .footer-index-blocks--row span{
    color: #4F4F4F;
    font-size: 12px;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .footer-index-blocks .footer-index-blocks--row{
        width: 100%;
    }
}
/* End */


/* Start:/local/templates/rospotreb/css/hotline.css?1734589683499*/
#hotline {
    margin-top: 90px;
    position: absolute;
    right: 0;
    width: 240px;
    top: 50px;
}
#hotline #ob1 {
    float: left;
    left: 26px;
    position: absolute;
    top: 0;
}
#hotline #ob3 {
    color: #E20;
    font-size: 12px;
    font-weight: none;
    left: 26px;
    padding: 0;
    position: absolute;
    top: 8px;
    width: 230px;
}
#ob3 a {
    color: #E20;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    #hotline{
        display: none;
    }
}
/* End */


/* Start:/local/templates/rospotreb/css/huge_version.css?1734589683393*/
.huge_version .layout-container {
    background: 0;
}

.huge_version #ob3 a {
    font-size: 14pt;
}

.huge_version h1 {
    font-size: 20pt;
}

.huge_version a {
    font-size: 15pt !important;
    color: black !important;
}

.huge_version p, .huge_version span {
    font-size: 15pt !important;
    color: black !important;
}

.huge_version #hotline #ob3 {
    font-size: 26px !important;
}
/* End */


/* Start:/bitrix/components/bitrix/breadcrumb/templates/.default/style.min.css?1734589685467*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px;white-space:normal}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0}
/* End */


/* Start:/local/templates/rospotreb/components/bitrix/news.list/sidebarlinks/style.css?173458968352*/
.layout-sidebar-second--banner {
    width: 180px;
}
/* End */
/* /local/templates/rospotreb/css/core.css?17345896831581 */
/* /local/templates/rospotreb/css/ajax-progress.module.css?17345896831027 */
/* /local/templates/rospotreb/css/align.module.css?1734589683484 */
/* /local/templates/rospotreb/css/autocomplete-loading.module.css?1734589683603 */
/* /local/templates/rospotreb/css/fieldgroup.module.css?173458968395 */
/* /local/templates/rospotreb/css/container-inline.module.css?1734589683275 */
/* /local/templates/rospotreb/css/clearfix.module.css?1734589683306 */
/* /local/templates/rospotreb/css/details.module.css?1734589683127 */
/* /local/templates/rospotreb/css/hidden.module.css?17345896831359 */
/* /local/templates/rospotreb/css/item-list.module.css?1734589683285 */
/* /local/templates/rospotreb/css/js.module.css?1734589683402 */
/* /local/templates/rospotreb/css/nowrap.module.css?173458968396 */
/* /local/templates/rospotreb/css/position-container.module.css?173458968395 */
/* /local/templates/rospotreb/css/progress.module.css?1734589683825 */
/* /local/templates/rospotreb/css/reset-appearance.module.css?1734589683274 */
/* /local/templates/rospotreb/css/resize.module.css?1734589683270 */
/* /local/templates/rospotreb/css/sticky-header.module.css?1734589683163 */
/* /local/templates/rospotreb/css/system-status-counter.css?1734589683761 */
/* /local/templates/rospotreb/css/system-status-report-counters.css?1734589683557 */
/* /local/templates/rospotreb/css/system-status-report-general-info.css?1734589683255 */
/* /local/templates/rospotreb/css/tabledrag.module.css?17345896832054 */
/* /local/templates/rospotreb/css/tablesort.module.css?1734589683365 */
/* /local/templates/rospotreb/css/tree-child.module.css?1734589683466 */
/* /local/templates/rospotreb/css/views.module.css?1734589683434 */
/* /local/templates/rospotreb/css/theme.css?173458968318128 */
/* /local/templates/rospotreb/css/visually_impaired_module.css?1734589683757 */
/* /local/templates/rospotreb/css/reset.css?17345896832667 */
/* /local/templates/rospotreb/css/style.css?173520480439110 */
/* /local/templates/rospotreb/css/node.css?1734589683871 */
/* /local/templates/rospotreb/css/footer-index-blocks.css?1734589683703 */
/* /local/templates/rospotreb/css/hotline.css?1734589683499 */
/* /local/templates/rospotreb/css/huge_version.css?1734589683393 */
/* /bitrix/components/bitrix/breadcrumb/templates/.default/style.min.css?1734589685467 */
/* /local/templates/rospotreb/components/bitrix/news.list/sidebarlinks/style.css?173458968352 */
