/* --- Первым делом шрифты --------------------------------------------------------------------- */
@font-face{font-family:RT Fonts;
  src:url("../fonts/BasisGrotesquePro-Light-Web.eot");
  src:url("../fonts/BasisGrotesquePro-Light-Web.eot?#iefix") format("embedded-opentype"),	/* IE8+, знак ? позволяет обойти баг в обработчике значения src */
  url("../fonts/BasisGrotesquePro-Light-Web.woff2") format("woff2"),
  url("../fonts/BasisGrotesquePro-Light-Web.woff") format("woff"),												/* все современные браузеры, IE9+ */
  url("../fonts/BasisGrotesquePro-Light-Web.ttf") format("ttf");													/* все современные браузеры */
  font-style:normal;
  font-weight:200}
@font-face{font-family:RT Fonts;
  src:url("../fonts/BasisGrotesquePro-Light-Web.eot");
  src:url("../fonts/BasisGrotesquePro-Light-Web.eot?#iefix") format("embedded-opentype"),
  url("../fonts/BasisGrotesquePro-Light-Web.woff2") format("woff2"),
  url("../fonts/BasisGrotesquePro-Light-Web.woff") format("woff"),
  url("../fonts/BasisGrotesquePro-Light-Web.ttf") format("ttf");
  font-style:normal;
  font-weight:300}
@font-face{font-family:RT Fonts;
  src:url("../fonts/BasisGrotesquePro-Regular-Web.eot");
  src:url("../fonts/BasisGrotesquePro-Regular-Web.eot?#iefix") format("embedded-opentype"),
  url("../fonts/BasisGrotesquePro-Regular-Web.woff2") format("woff2"),
  url("../fonts/BasisGrotesquePro-Regular-Web.woff") format("woff"),
  url("../fonts/BasisGrotesquePro-Regular-Web.ttf") format("ttf");
  font-style:normal;
  font-weight:400}
@font-face{font-family:RT Fonts;
  src:url("../fonts/BasisGrotesquePro-Medium-Web.eot");
  src:url("../fonts/BasisGrotesquePro-Medium-Web.eot?#iefix") format("embedded-opentype"),
  url("../fonts/BasisGrotesquePro-Medium-Web.woff2") format("woff2"),
  url("../fonts/BasisGrotesquePro-Medium-Web.woff") format("woff"),
  url("../fonts/BasisGrotesquePro-Medium-Web.ttf") format("ttf");
  font-style:normal;
  font-weight:500}
@font-face{font-family:RT Fonts;
  src:url("../fonts/BasisGrotesquePro-Bold-Web.eot");
  src:url("../fonts/BasisGrotesquePro-Bold-Web.eot?#iefix") format("embedded-opentype"),
  url("../fonts/BasisGrotesquePro-Bold-Web.woff2") format("woff2"),
  url("../fonts/BasisGrotesquePro-Bold-Web.woff") format("woff"),
  url("../fonts/BasisGrotesquePro-Bold-Web.ttf") format("ttf");
  font-style:normal;
  font-weight:600}
@font-face{font-family:RT Fonts;
  src:url("../fonts/BasisGrotesquePro-Bold-Web.eot");
  src:url("../fonts/BasisGrotesquePro-Bold-Web.eot?#iefix") format("embedded-opentype"),
  url("../fonts/BasisGrotesquePro-Bold-Web.woff2") format("woff2"),
  url("../fonts/BasisGrotesquePro-Bold-Web.woff") format("woff"),
  url("../fonts/BasisGrotesquePro-Bold-Web.ttf") format("ttf");
  font-style:normal;
  font-weight:800}
/* --- Основное тело страницы ------------------------------------------------------------------ */
body {
  position: absolute;												/* */
  width: 100%;															/* Ширина 100% */
  height: 100%;															/* Высота 100%*/
  top: 0;																		/* Отступ от верхнего края */
  left: 0;																	/* */
  margin: 0;																/* */
  padding: 0;																/* */
  background: #F0F0F0;											/* */
  background: rgba(240, 240, 240, 1);				/* IE Fallback */
  background-size: auto;										/* */
  overflow-x: hidden;												/* Прокрутка по горизонтали скрыта*/
  overflow-y: scroll;												/* Прокрутка по вертикали */
  -webkit-font-smoothing: antialiased;			/* Сглаживание шрифтов в Safari */
  -moz-osx-font-smoothing: grayscale;				/* Сглаживание шрифтов в FireFox */
  font-family: 'RT Fonts', serif;
}
button:active, button:focus { 		  				/* Убираем рамку с кнопки в момент нажатия */
  outline: none;
}
button::-moz-focus-inner { 		  				/* Убираем рамку с кнопки в момент нажатия */
  border: 0;
}
/* --- Основное меню --------------------------------------------------------------------------- */
.menu_container {
  height: 90px;
  top: 0;							  				/* Отступ от верхнего края окна */
  left: 0;												/* Отступ от левого края окна */
  overflow: hidden;
  background: #FFFFFF;
  text-decoration: none;				/* Текст не украшен подчеркиваниями, зачеркиваниями и прочей лабудой */
}
.menu {
  height: 30px;
  background: #1C2840;						/* Заполняем синим */
}
.menu ul {
  position: relative;
  margin: 0;
  cursor: pointer;
}
.menu ul:last-child {
  float: right;
}
.menu ul li {
  float: left;
  list-style: none;					/* Удаляем маркер в элементах списка */
}
.menu ul li div {
  display: block;
  height: 30px;
  padding:0 20px;
  color: #ffffff;
  line-height: 30px;
  font-family: 'RT Fonts', serif;				/* Задаем кастомные шрифты */
  font-size: 14px;								/* Рамер текста 14 (весь размер меню 10 + 14 + 10) */
  font-weight: 300;								/* Ширина шрифта */
}
.menu ul li:hover div {
  color: #666F84;
}
.menu ul li div.selected_menu {
  color: #666F84;
}
.menu ul ul {
  width: 100%;
  height: 60px;
  position: absolute;
  left:0;
  margin-left: 8%;
  filter: alpha(opacity=0);
  display: none;
  background: #ffffff;
}
.sub_menu.visible_menu {
  display: block;
  margin-left: 0;
  opacity: 1;
}
.menu .visible_menu li div {
  height: 60px;
  padding: 0 20px;
  /*text-transform: capitalize;*/ /* Заглавные буквы каждого слова */
  line-height: 60px;
  color: #2d2d2d;
  font-size: 100%;
  font-weight: 500;
  background: #ffffff;
}
.menu ul li:hover ul li div {
  color: #2d2d2d;
}
.menu ul li ul li:hover div {
  color: #666f84;
}
.menu_right {
  height:30px;
  background: #1C2840;						/* Заполняем синим */
}
.menu_right ul {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.menu_right ul li {
  float:left;
  list-style: none;					/* Удаляем маркер в элементах списка */
}
/* --- Содержимое страницы --------------------------------------------------------------------- */
.bodyContent {
  margin: 5px 5px 100px;											/* Сдвинуть, иначе наедет на info */
}
.bodyAddons {
  margin: 5px 5px;
}
.filterBox {
  margin: 5px;								/* Отступ со всех сторон (между) блока(ами) */
  text-align: left;							/* Выравнивание текста */
  background: #ffffff;						/* Цвет фона таблицы */
  border-collapse: collapse;			/* Линия между ячейками таблицы отображается только одна */
  border-radius: 10px;							/* Радиус скругления */
  box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);		/* Тень */
  padding: 10px 3px;
}
.filter_element {
  max-width: 160px;
  width: 160px;
  /*max-width: 200px;*/
  display: inline-block;
}
.rt_header_h3 {
  margin: 0 0 0 5px;
}
/* --- Вкладки --------------------------------------------------------------------------------- */
.rt-tabs-navigation {
  display: inline-flex;
  position: relative;
  flex-direction: row;
  max-width: 100%;
  scrollbar-width: none;
  margin: 0 5px 18px 5px;
  z-index: 0;
}
.rt-tabs-navigation:after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  height: 2px;
  left: 0;
  width: 100%;
  background-color: #979799;
  z-index: 0;
}
.rt-tabs-item {
  box-sizing: border-box;
  text-align: inherit;
  border: none;
  outline: none;
  padding-bottom: 12px;
  position: relative;
  z-index: 1;
}
.rt-tabs-item:before {
  content: "";
  height: 2px;
  text-shadow: 0 0 0;
  border-bottom: 2px solid transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  z-index: 1;
}
.rt-tabs-item:hover:before {
  width: 100%;
  border-bottom-color: #7700FF;;
}
.rt-tabs-item-active:before {
  content: "";
  height: 2px;
  text-shadow: 0 0 0;
  border-bottom: 2px solid transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom-color: #7700FF;
  z-index: 1;
}
.rt-tabs-item + .rt-tabs-item {
  margin-left: 15px;
}
.rt-tabs-item-name {
  color: inherit;
  background-color: transparent;
  border-width: 0;
  outline: none;
  padding: 0;
  /*padding-bottom: 0px;*/
  font-size: 18px;
  font-weight: 400;
  font-family: "RT Fonts", serif;
  line-height: 1.5;
}
/* --- Таблица отчета -------------------------------------------------------------------------- */
.arrowHor {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.reportBox {
  margin: 5px;								/* Отступ со всех сторон (между) блока(ами) */
  text-align: center;							/* Выравнивание текста */
  background: #ffffff;						/* Цвет фона таблицы */
  border-collapse: collapse;			/* Линия между ячейками таблицы отображается только одна */
  border-radius: 10px;							/* Радиус скругления */
  box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);		/* Тень */
  padding: 10px 3px;
}
.mainTab {
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}
.mainTab th {
  font-family: 'RT Fonts', serif;
  font-size: 14px;					/* Размер шрифта таблицы */
  font-weight: 300;
  color: rgba(16, 24, 40, 0.5);
  border-bottom: 2px solid rgba(16, 24, 40, 0.5);		/* Граница ячеки (подчеркивание) */
}
.mainTab td {
  font-family: 'RT Fonts', serif;
  font-size: 16px;					/* Размер шрифта таблицы */
  color: #2d2d2d;
  border: 0;
  padding: 3px;
  text-overflow: ellipsis;
  overflow: hidden;
  border-bottom: 2px solid rgba(16, 24, 40, 0.1);
}
.mainTab .button2 {
  display:flex;
  padding:3px;
  margin:0;
  border:0;
  background-color:#FFFFFF;
  overflow:hidden;
}
.subTab {
  text-align: left;
  width: 95%;
}
.mainTab .subTab td {
  color: #7700ff;
  font-weight: 300;
}
.mainTab .subTab td:nth-child(1) {
  width: 92px;
}
.mainTab .subTab td:nth-child(2) {
  width: 138px;
}
.filterButton {
  cursor: pointer;
}
.tab_string {
  cursor: pointer;
}
.yellow_fill {
  background: #FFD800;						/* Цвет фона */
}
.red_fill {
  background: #FFA0A7;						/* Цвет фона */
}
.grey_fill {
  background: rgba(0, 0, 0, .16);			/* Цвет фона */
}
.green_fill {
  background: #81EBD6;						/* Цвет фона */
}
/* --------------------------------------------------------------------------------------------- */
.help_box {
  /*width: 480px;*/
  margin: 5px;								/* Отступ со всех сторон (между) блока(ами) */
  vertical-align: top;
  text-align: justify;							/* Выравнивание текста */
  padding: 10px;
  display: inline-block;
  background: #ffffff;						/* Цвет фона */
  border-collapse: collapse;			/* Линия между ячейками таблицы отображается только одна */
  border-radius: 10px;							/* Радиус скругления */
  box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);		/* Тень */
}
.help_box p {
  text-indent: 1em;
}
.about_box {
  width: 480px;
  margin: 5px;								/* Отступ со всех сторон (между) блока(ами) */
  vertical-align: top;
  text-align: center;							/* Выравнивание текста */
  padding: 10px;
  display: inline-block;
  background: #ffffff;						/* Цвет фона */
  border-collapse: collapse;			/* Линия между ячейками таблицы отображается только одна */
  border-radius: 10px;							/* Радиус скругления */
  box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);		/* Тень */
}
/* --------------------------------------------------------------------------------------------- */
.obj_box {
  /*width: 480px;*/
  margin: 5px;								/* Отступ со всех сторон (между) блока(ами) */
  vertical-align: top;
  text-align: center;							/* Выравнивание текста */
  display: inline-block;
  background: #ffffff;						/* Цвет фона */
  border-collapse: collapse;			/* Линия между ячейками таблицы отображается только одна */
  border-radius: 10px;							/* Радиус скругления */
  box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);		/* Тень */
}
.obj_box_mobile {
  width: 330px;
}
.obj_box .rt_element {
  display: inline-block;
  width: 30%;
  vertical-align: top;
}
.obj_box .rt_element .rt_disable {
  display: inline-block;
  width: 95%;
}
/* --------------------------------------------------------------------------------------------- */
.auth_box {
  text-align: center;							/* Выравнивание текста */
  background: #ffffff;						/* Цвет фона */
  border-collapse: collapse;			/* Линия между ячейками таблицы отображается только одна */
  border-radius: 10px;							/* Радиус скругления */
  box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16);		/* Тень */
  width: 280px;
  padding: 20px;
  margin: auto;
}
.red_text {
  text-align: center;							/* Выравнивание текста */
  color: #bc104b;						/* Цвет фона */
  font-family: 'RT Fonts', serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}
/* --------------------------------------------------------------------------------------------- */
.rt_button_red {
  width: 110px;
  height: 34px;
  border: none;
  color: #ffffff;
  background: #ff4f12;
  border-radius: 5px;
  font-family: 'RT Fonts', serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
.rt_button_red_mobile {
  width: 70px;
}
.rt_button_red:hover {
  box-shadow: 0 2px  5px rgba(0,0,0,0.5);
}
/* --------------------------------------------------------------------------------------------- */
.rt_element {
  position: relative;
  text-align: left;
  color: rgba(16,24,40,0.5);
  font-weight: 400;
  padding: 10px 6px 10px 0;
  pointer-events: none;
}
.rt_element_padding {
  padding: 10px 3px;
}
.rt_element div:nth-of-type(1) {
  text-align: left;
  font-size: 14px;
  line-height: 19px;
}
.rt_element input {
  display: inline-block;
  width: 100%;
  line-height: 21px;
  text-align: left;
  font-family: 'RT Fonts', serif;
  font-size: 16px;
  color: #101828;
  pointer-events: auto;
  border: 2px rgba(16,24,40,0.5);
  border-bottom-style: solid;
  outline: none;
}
.rt_element input:focus {
  border-color: rgba(120, 0, 255, 0.9);
}
.rt_element textarea {
  display: inline-block;
  width: 100%;
  line-height: 21px;
  text-align: left;
  font-family: 'RT Fonts', serif;
  font-size: 16px;
  color: #101828;
  pointer-events: auto;
  height: 67px;
  resize: none;
  border: solid 2px rgba(16,24,40,0.5);
}
.rt_element textarea:focus {
  border-color: rgba(120, 0, 255, 0.9);
}
.rt_element table {
  border-collapse: initial;
  border-spacing: 10px;
}
.rt_element ul {
  width: 100%;
  line-height: 21px;
  text-align: left;
  font-family: 'RT Fonts', serif;
  font-size: 16px;
  color: #101828;
  background: #ffffff;
  pointer-events: auto;
  border: 0;
  cursor: pointer;
  list-style: none;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 84px;
  isolation: isolate;
  position: absolute;
  padding: 0;
  z-index: 1;
  margin: 0;
}
.rt_element.rt_list {
  width: 45%;
}
.rt_element.rt_list ul {
  width: 100%;
  line-height: 21px;
  text-align: left;
  font-family: 'RT Fonts', serif;
  font-size: 16px;
  color: #101828;
  background: #ffffff;
  pointer-events: auto;
  border: 0;
  cursor: pointer;
  list-style: none;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 210px;
  isolation: unset;
  position: unset;
  padding: 0;
  z-index: 1;
  margin: 0;
}
.rt_element ul li:hover {
  background: #7800ff;
  color: #ffffff;
}
.rt_element div:nth-of-type(2) {
  text-align: left;
  font-size: 12px;
  line-height: 16px;
}
.rt_element tr:nth-child(3n+1) {
  text-align: left;
  font-size: 16px;
  line-height: 21px;
  color: #101828;
  padding: 10px 0 0 0;
  pointer-events: auto;
}
.rt_element tr:nth-child(3n+2) {
  text-align: left;
  font-size: 12px;
  line-height: 17px;
  color: rgba(16,24,40,0.5);
  padding: 10px 0 0 0;
}
.rt_element tr:nth-child(3n+3) {
  text-align: left;
  font-size: 16px;
  line-height: 21px;
  color: rgba(16,24,40,0.5);
  padding: 0 0 10px 0;
  word-wrap: break-word;
  /*overflow-wrap: break-word;*/
  overflow-wrap: anywhere;
  word-break: break-all;
}
.rt_element tr img {
  padding: 0 1px;
}
.rt_disable input {
  border-color: rgba(16,24,40,0.5);
  border-bottom-style: dashed;
  pointer-events: none;
}
.rt_disable textarea {
  border: dashed 2px rgba(16,24,40,0.5);
  pointer-events: none;
}
.rt_element.half {
  width: 15%;
}
.rt_switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 21px;
  pointer-events: auto;
}
.rt_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.rt_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(16,24,40,0.2);
  border-radius: 21px;
  -webkit-transition: .4s;
  transition: .4s;
}
.rt_slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 3px;
  background-color: rgba(16,24,40,0.5);
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}
.rt_switch input:checked + .rt_slider {
  background-color: rgba(119,0,255,0.2);
}
.rt_switch input:checked + .rt_slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
  background-color: #7700ff;
}
.rt_checkbox {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 3px;
  flex-shrink: 0;
  flex-grow: 0;
  border: solid 2px rgba(16,24,40,0.5);
  border-radius: 0.25em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.rt_switch input:checked + .rt_checkbox {
  border: solid 2px #7700ff;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%237700ff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.rt_file_bar{
  display: inline-flex
}
.rt_file_bar label{
  position: relative;
  overflow: hidden;
  margin: 10px 3px;
}
.rt_file_bar span{
  display: block;
  padding: 8px;
}
.rt_file_bar div{
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  color: rgba(16,24,40,0.5);
  margin: 0 3px;
  width: 110px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.rt_file_bar input[type="file"]{
  display: none;
}
.rt_auto_fill input{
  /*padding: 0 30px 0 0;*/
  /*width: -moz-available;*/
  /*width: 427px;*/
}
.rt_auto_fill label{
  position: absolute;
  top: 30px;
  right: 6px;
  pointer-events: all;
}
.rt_auto_fill svg{
  stroke: #888c94;
  stroke-width: 68;
  fill: #888c94;
  fill-opacity: 0;
  stroke-linejoin: round;
}
.rt_auto_fill svg circle{
  fill-opacity: 100%;
}
.rt_auto_fill svg:hover{
  fill: #ff4f12;
  stroke: #ff4f12;
}
.ie_size {
  min-height: 210px;
}
.rt_header_h4{
  width: 93%;
  display: inline-flex;
}
/* --- Информация внизу страницы --------------------------------------------------------------- */
.bodyInfo {
  margin: 5px;											/* Сдвинуть, иначе наедет на менюшку */
  position: fixed;
  bottom: 0;
  font-family: 'RT Fonts', serif;
  display: none;
  opacity: 1;
  transition: opacity 1s, visibility 0s;
}
.bodyInfo.hiddenInfo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 3s, visibility 0s 3s;
}
#infoMsg {
  display: inline-block;
  width: 100%;
}
#infoMsg svg {
  fill: rgba(131,72,252,0.1);
}
#infoMsg svg text {
  fill: #101828;
}
#errorMsg {
  display: inline-block;
  width: 100%;
}
#errorMsg svg {
  fill: #bc104e;
}
#errorMsg svg text {
  fill: #ffffff;
}
#okMsg {
  display: inline-block;
  width: 100%;
}
#okMsg svg {
  fill: #3bbc9e;
}
#okMsg svg text {
  fill: #ffffff;
}
