/**
 * UI для приложения Мои Документы
 * Автор: Александр Ерко <erkoam@mail.ru>
 * Сайт автора: cms-admin.ru
 */

/** ----------------------------------------------------------------------------------------------------------------- **
 * ОБЩИЕ ЭЛЕМЕНТЫ
 * ------------------------------------------------------------------------------------------------------------------ */
html, body{
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}
body{
  background-color: #f3ebe0;
  font-family: 'Fira Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
}
h1, h2, h3, h4, h5, h6{
  margin: 0;
}
.content{
  min-height: calc(100vh - 60px);
}
.is-clipped {
  overflow: hidden !important;
}
.hidden{
  display: none;
}
.autocomplete .autocomplete-show,
.autocomplete.open .autocomplete-hide{
  display: none;
}
.autocomplete.open .autocomplete-show{
  display: block;
}
.text-overflow{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bg-blue{
  background-color: #9ccbca;
}
.bg-green{
  background-color: #73c482;
}
.bg-yellow{
  background-color: #f09c20;
}
.bg-red{
  background-color: #e9715c;
}
.text-blue{
  color: #9ccbca;
}
.text-green{
  color: #73c482;
}
.text-yellow{
  color: #f09c20;
}
.text-red{
  color: #e9715c;
}
.text-up{
  text-transform: uppercase;
}
.separate-dashed{
  position: relative;
  width: 100%;
  height: 40px;
}
.separate-dashed::before{
  position: absolute;
  top: 50%;
  left: -15px;
  right: -15px;
  height: 1px;
  border-top: 1px dashed #dad2d0;
  content: "";
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * ЭЛЕМЕНТ: КНОПКИ
 * ------------------------------------------------------------------------------------------------------------------ */
.btn{
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
  min-width: 32px;
  border-radius: 4px;
  border: 0 none;
  cursor: pointer;
  background-color: #ffffff;
  color: #331e20;
}
.btn + .btn{
  margin-left: 10px;
}
.btn-lg{
  padding: 0 12px;
  height: 48px;
  min-width: 48px;
  font-size: 24px;
  border-radius: 6px;
}
.btn-xs{
  padding: 0 6px;
  height: 24px;
  min-width: 24px;
  font-size: 14px;
  border-radius: 2px;
}
.btn i{
  margin: 0 auto;
}
.btn-inverse{
  background-color: #331e20;
  color: #ffffff;
}
.btn-dark{
  background-color: #927972;
  color: #ffffff;
}
.btn-black{
  background-color: #472a2c;
  color: #ffffff;
}
.btn-success{
  background-color: #73c482;
  color: #ffffff;
}
.btn-warning{
  background-color: #f09c20;
  color: #ffffff;
}
.btn-danger{
  background-color: #e9715c;
  color: #ffffff;
  transition: background-color 0.5s ease;
}
.btn-danger.btn-static{
  background-color: #e44d33;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger.active {
  background-color: #e44d33;
  color: #ffffff;
}

.btn .icon{
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
}
.btn span + .icon{
  margin-right: 0;
  margin-left: 10px;
}

.btn-group{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.btn-group .btn{
  flex-grow: 1;
}
.btn-group .btn:first-child{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group .btn:last-child{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.file-btn, .file-btn:visited, .file-btn:hover{
  width: 100%;
  padding: 0;
  display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
  background-color: #ffffff;
  border: 1px solid #dad2d0;
  border-radius: 3px;
  height: 60px;
  transition: border-color 0.5s ease;
}
.file-btn:focus,
.file-btn:active{
  border-color: #777777;
}
.file-btn + .file-btn{
  margin-top: 30px;
}
.file-btn__icon{
  display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  width: 58px;
  height: 58px;
  border-right: 1px solid #dad2d0;
  -webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../images/file.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 48px;
  font-size: 24px;
  line-height: 1;
  transition: border-color 0.5s ease;
}
.file-btn__icon.no-file{
  background: none;
  font-size: 48px;
}
.file-btn:focus .file-btn__icon,
.file-btn:active .file-btn__icon{
  border-color: #777777;
}
.file-success .file-btn__icon{
  color: #73c482;
}
.file-warning .file-btn__icon{
  color: #f09c20;
}
.file-danger .file-btn__icon{
  color: #e44d33;
}
.file-info .file-btn__icon{
  color: #566181;
}
.file-primary .file-btn__icon{
  color: #9ccbca;
}
.file-btn__text{
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #454545;
  text-align: left;
}
/* DROP BUTTONS */
.drop-buttons{
  position: relative;
  display: flex;
  float: none;
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  line-height: 20px;
  color: #454545;
  padding: 0;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.drop-buttons__title{
  width: 100%;
  height: 100%;
  padding: 9px 40px 9px 20px;
  cursor: pointer;
}
.drop-buttons__title:after{
  position: absolute;
  top: 50%;
  right: 15px;
}
.drop-buttons__list{
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.open .drop-buttons__list{
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.drop-buttons__list-option{
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  color: #000000;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.drop-buttons__list-option:hover,
.drop-buttons__list-option.selected{
  background-color: #f6f6f6;
}
.drop-buttons__list-option.selected{
  font-weight: 700;
}
/* INPUT GROUP */
.input-group{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.input-group .drop-buttons:first-child{
  border-radius: 20px 0 0 20px;
}
.input-group .drop-buttons:last-child{
  border-radius: 0 20px 20px 0;
  border-left: 0;
}
.drop-buttons__title:after{
  color: #ffffff;
}
.input-group .input{
  border-left: 0 none;
  border-radius: 0;
}
.input-group .input.search{
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 300px;
  padding-left: 40px;
  background: url('../images/input-search.jpg') no-repeat 10px 10px #ffffff;
}
.input-group button,
.input-group .button{
  display: flex;
  align-items: center;
  border: 1px solid #dad2d0;
  border-right-color: #ababab;
  border-left: 0;
  background-color: #dad2d0;
  padding: 0 15px;
  height: 40px;
  white-space: nowrap;
}
.input-group button.is-small,
.input-group .button.is-small{
  height: 32px;
  padding: 0 12px;
}
.input-group .button a{
  color: #000;
}
.input-group button.sort,
.input-group .button.sort{
  position: relative;
  padding-right: 35px;
}
.input-group button.sort::after,
.input-group .button.sort::after{
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 20px;
  margin-top: -10px;
  line-height: 20px;
  font-family: "Ionicons";
  font-size: 20px;
  content: "\f3d4";
}
.input-group button.sort.desc::after,
.input-group .button.sort.desc::after{
  content: "\f3d7";
}
.input-group button.asc,
.input-group button.desc,
.input-group button.filter.active,
.input-group .button[class*="active"]{
  background-color: #6e4c43;
  border-color: #6e4c43;
  color: #ffffff;
}
.input-group .button[class*="active"] a{
  color: #ffffff;
}
.input-group button:first-child,
.input-group .button:first-child{
  border-right: 0 none;
  border-radius: 20px 0 0 20px;
}
.input-group button.is-small:first-child,
.input-group .button.is-small:first-child{
  border-right: 0 none;
  border-radius: 16px 0 0 16px;
}
.input-group button:last-child,
.input-group .button:last-child{
  border-right: 0 none;
  border-radius: 0 20px 20px 0;
}
.input-group button.is-small:last-child,
.input-group .button.is-small:last-child{
  border-right: 0 none;
  border-radius: 0 16px 16px 0;
}
.input-group:last-child button:first-child,
.input-group:last-child .button:first-child{
  border-radius: 20px 0 0 20px;
}
/* BACK TO TOP BUTTON */
.btn-scroll{
  position: fixed;
  right: 12px;
  bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e9715c;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.btn-scroll + .btn-scroll{
  bottom: 12px;
}
.btn-scroll.is-visible{
  visibility: visible;
  opacity: 1;
}
.btn-scroll.fade-out{
  opacity: .5;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * ЭЛЕМЕНТ: ЧЕКБОКСЫ и РАДИО
 * ------------------------------------------------------------------------------------------------------------------ */
.checkbox::after,
.radio::after{
  content: '';
  display: table;
  clear: both;
}
.checkbox input + span,
.radio input + span {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background-color: #dad2d0;
  color: #ffffff;
  width: 1.3em;
  height: 1.3em;
  float: left;
  margin-right: .5em;
  cursor: pointer;
}
.radio label input[type="radio"]:checked + span,
.checkbox label input[type="checkbox"]:checked + span{
  background-color: #e9715c;
}
.checkbox input + span > .ion,
.radio input + span > .ion{
  position: absolute;
  font-size: .8em;
  line-height: 0;
  top: 50%;
  left: 20%;
  font-size: 2em;
  color: #ffffff;
}
.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
  display: none;
}
.checkbox label input[type="checkbox"]:checked + span > .ion,
.radio label input[type="radio"]:checked + span > .ion {
  transform: scale(1) rotateZ(0deg);
  opacity: 1;
}
.checkbox label input[type="checkbox"]:disabled + span,
.radio label input[type="radio"]:disabled + span {
  opacity: .5;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * ЭЛЕМЕНТ: НАБОР ПОЛЕЙ
 * ------------------------------------------------------------------------------------------------------------------ */
.fieldset{
  position: relative;
  width: 100%;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 35px 15px 20px;
  border: 1px solid #dad2d0;
  background-color: #ffffff;
  border-radius: 6px;
}
.fieldset .legend{
  position: absolute;
  top: -15px;
  left: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  padding: 0 20px;
  border: 1px solid #dad2d0;
  border-radius: 15px;
  background-color: #ffffff;
  font-weight: normal;
}
.fieldset .legend button{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 10px 0 0;
  background-color: transparent;
  border: 0 none;
}
.fieldset .legend .ion{
  font-size: 20px;
  color: #e9715c;
}
.fieldset .legend span{
  font-size: 16px;
  font-weight: 400;
  color: #6b4d42;
}
.fieldset .legend button span{
  font-size: 14px;
}
.fieldset .legend .ion + span{
  margin-left: 10px;
  vertical-align: middle;
}
.fieldset ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.fieldset ul li{
  position: relative;
  line-height: 20px;
  padding-left: 16px;
  color: #927972;
}
.fieldset ul li + li{
  margin-top: 10px;
}
.fieldset ul li::before{
  position: absolute;
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e9715c;
  content: '';
}
.fieldset ul li span{
  color: #454545;
  font-weight: 600;
  margin-right: 10px;
}
.fieldset ul li span:last-child{
  margin-right: 0;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * ЭЛЕМЕНТ: ДОКУМЕНТ
 * ------------------------------------------------------------------------------------------------------------------ */
.document{
  width: 100%;
  padding: 50px 20px;
  background-color: #f2f2f2;
  border: 1px solid #dad2d0;
  border-radius: 4px;
  font-family: 'Times New Roman', 'Trebuchet MS', serif;
  color: #000000;
}
.document-inner{
  width: 1024px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 5rem 5rem 5rem 7rem;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * ЭЛЕМЕНТ: КОМБОБОКС
 * ------------------------------------------------------------------------------------------------------------------ */
.combobox{
  position: relative;
}
.combobox datalist{
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: НАВИГАЦИЯ
 * ------------------------------------------------------------------------------------------------------------------ */
.navbar{
  width: 100%;
  height: 40px;
  padding: 5px .5rem;
  background-color: #472a2c;
}
.navbar .row-flex{
  margin-right: -.5rem;
  margin-left: -.5rem;
}
.navbar .row-flex .col-flex{
  padding-right: .5rem;
  padding-left: .5rem;
}
.navbar .is-square,
.navbar .is-fixed{
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.navbar .btn{
  height: 30px;
}
.navbar .btn i{
  font-size: 20px;
}
.navbar .is-square .btn{
  height: 30px;
  width: 30px;
  text-align: center;
}
.navbar .is-square .btn i{
  font-size: 24px;
}
.navbar .is-fixed .btn{
  padding: 0 10px;
}

.navbar-search{
  position: relative;
  width: auto;
  height: 30px;
}
.navbar-search__main{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 30px;
  overflow: hidden;
  border-radius: 4px;
}
.navbar-search__main input{
  display: block;
  width: 180px;
  height: 100%;
  padding: 5px 15px;
  line-height: 20px;
  border: 0 none;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  background-color: #927972;
  color: #fff;
  transition: background-color 0.5s ease;
}
.navbar-search__main input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.navbar-search__main input::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.navbar-search__main input:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.navbar-search__main input:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
.navbar-search__main input:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #927972;
}
.navbar-search__main input:focus::-moz-placeholder { /* Firefox 19+ */
  color: #927972;
}
.navbar-search__main input:focus:-ms-input-placeholder { /* IE 10+ */
  color: #927972;
}
.navbar-search__main input:focus:-moz-placeholder { /* Firefox 18- */
  color: #927972;
}

.navbar-search__main input:focus,
.navbar-search__main input.is-inputting{
  background-color: #fff;
  color: #000;
}
.navbar-search__main .icon{
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 30px;
  height: 30px;
  background-color: #927972;
  border: 0 none;
  color: #fff;
  line-height: 30px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.navbar-search__main .btn{
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 30px;
  height: 100%;
  line-height: 30px;
  font-size: 20px;
  background-color: #927972;
  border: 0 none;
  border-left: 0;
  border-radius: 0 4px 4px 0;
  text-align: center;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.navbar-search__main input:focus + .icon,
.navbar-search__main input.is-inputting + .icon,
.navbar-search__main input:focus + .icon + .btn,
.navbar-search__main input.is-inputting + .icon + .btn{
  background-color: #fff;
  color: #331e1f;
}
.navbar-drop{
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 5px;
  min-width: 480px;
  max-width: 640px;
  z-index: 100;
}
.navbar-drop__header,
.fixbar-header{
  width: 100%;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #d6d6d6;
}
.navbar-drop__header .close,
.fixbar-header .close{
  display: block;
  cursor: pointer;
  line-height: 1;
  font-size: 20px;
  color: #e9715c;
}
.navbar-drop.form-content{
  padding: 10px;
}
.navbar-drop.form-content .has-addons .icon{
  top: 0;
}
.navbar-drop.form-content label{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 20px;
  padding-bottom: 20px;
  margin: 0;
}

.navbar-noty .btn{
  position: relative;
}
.navbar-noty .btn .counter{
  position: absolute;
  top: -4px;
  left: 100%;
  margin-left: -50%;
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  width: auto;
  padding: 0 6px;
  border-radius: 8px;
  background-color: #e9715c;
  color: #fff;
  text-align: center;
}

.fixbar{
  position: fixed;
  top: 40px;
  bottom: 0;
  right: 0;
  width: 270px;
  padding: 10px;
  background-color: #ffffff;
  border-left: 1px solid #d6d6d6;
}
.fixbar-header button{
  padding: 0;
  background-color: transparent;
  border: 0 none;
}

.navbar .nav-item{
  position: relative;
}
.navbar-sub{
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  display: none;
  padding: 10px;
  background-color: #6e4c43;
  text-align: left;
  border-radius: 0 0 4px 4px;
  z-index: 999;
}
.open > .navbar-sub{
  display: block;
}
.navbar-sub ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.navbar .menu{
  position: relative;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 20px;
}
.navbar .menu::before{
  position: absolute;
  top: 0;
  left: 10px;
  width: 1px;
  height: 100%;
  background-color: #331e1f;
  content: "";
}
.navbar .menu .btn-burger{
  background-color: transparent;
  line-height: 1;
  padding: 0;
  color: #dad2d0;
  transition: color 0.5s ease;
}
.navbar .menu .btn-burger i{
  font-size: 28px;
}
.navbar .menu.open .btn-burger{
  color: #e9715c;
}
.navbar .menu .btn-burger .is-opened,
.navbar .menu.open .btn-burger .is-closed{
  display: none;
}
.navbar .menu .btn-burger .is-closed,
.navbar .menu.open .btn-burger .is-opened{
  display: block;
}
.navbar .menu-container{
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 5px;
  height: auto;
  z-index: 999;
}
.navbar .open .menu-container{
  display: block;
}
.navbar .menu-container ul{
  position: relative;
  display: block;
  width: 200px;
  margin: 0;
  padding: 5px 0;
  background-color: #6e4c43;
  border: 1px solid #472a2c;
  border-radius: 4px;
  list-style-type: none;
}
.navbar .menu-container ul li,
.navbar-sub ul li{
  display: block;
  width: 100%;
  padding: 3px 10px;
  white-space: nowrap;
  text-align: left;
}
.navbar-sub ul li{
  padding: 3px 0;
}
.navbar .menu-container ul li a,
.navbar .menu-container ul li span,
.navbar-sub ul a{
  border-radius: 2px;
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  color: #ffffff;
  text-transform: none;
  background-color: transparent;
  transition: color 0.5s ease, background-color 0.5s ease;
}
.navbar .menu-container ul li:hover > a,
.navbar .menu-container ul li.active > a,
.navbar-sub ul li > a:hover {
  background-color: #ffffff;
  color: #4a2015;
}
.navbar .menu-container ul li span[data-toggle="dropdown"]{
  cursor: pointer;
}
.navbar .menu-container ul li ul{
  display: none;
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 100%;
  width: 220px;
  border-radius: 4px 0 0 4px;
}
.navbar .menu-container ul li:hover ul{
  display: block;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ПУТЬ ПО САЙТУ
 * ------------------------------------------------------------------------------------------------------------------ */
.breadcrumb{
  min-height: 80px;
  margin-bottom: 30px;
}
.modal .breadcrumb{
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}
.breadcrumb .container{
  position: relative;
}
.modal .breadcrumb .container{
  width: 100%;
  padding: 0;
}
.breadcrumb .container::before{
  position: absolute;
  display: block;
  left: 15px;
  right: 15px;
  bottom: 13px;
  width: auto;
  height: 4px;
  border-radius: 2px;
  background-color: #dad2d0;
  content: '';
}
.breadcrumb-item{
  position: relative;
  padding-bottom: 30px;
  padding-left: 24px;
  line-height: 50px;
  font-size: 18px;
  font-weight: 500;
  color: #454545;
}
.breadcrumb-item.active,
.breadcrumb-item.complete{
  padding-left: 0;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}
.breadcrumb-item::after{
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  bottom: 3px;
  left: 24px;
  background-color: #dad2d0;
  color: #dad2d0;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  font-family: "Ionicons";
  font-size: 14px;
  font-weight: normal;
  content: "\f383";
}
.breadcrumb-item.active::after,
.breadcrumb-item.complete::after{
  background-color: #e44d33;
  color: #ffffff;
}
.breadcrumb-item.active::before,
.breadcrumb-item.complete::before{
  position: absolute;
  left: 0;
  bottom: 13px;
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background-color: #e44d33;
  content: '';
}
.col-flex + .col-flex .breadcrumb-item.active::before{
  left: -32px;
  width: 64px;
}
.col-flex:last-child .breadcrumb-item.active::before{
  right: 0;
  width: auto;
}
.breadcrumb-item.complete::before{
  width: 100%;
}
.col-flex + .col-flex .breadcrumb-item.complete::before{
  left: -32px;
  right: 0;
  width: auto;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ПАГИНАЦИЯ
 * ------------------------------------------------------------------------------------------------------------------ */
.pagination{
  width: 100%;
  margin-top: 30px;
}
.pagination ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pagination ul li{
  display: block;
  height: 40px;
  min-width: 40px;
  border: 1px solid #dad2d0;
  border-right: 0;
  background-color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 20px;
  color: #777777;
}
.pagination ul li.active{
  background-color: #f2f2f2;
  color: #000000;
}
.pagination ul li:first-child{
  border-radius: 4px 0 0 4px;
}
.pagination ul li:last-child{
  border-radius: 0 4px 4px 0;
  border-right: 1px solid #dad2d0;
}
.pagination ul li:first-child:last-child{
  border-radius: 4px;
}
.pagination ul li a,
.pagination ul li span{
  display: block;
  padding: 9px;
}
.pagination ul li a{
  color: #777777;
}
.pagination ul li span{
  color: #000000;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: МОДАЛЬНОЕ ОКНО
 * ------------------------------------------------------------------------------------------------------------------ */
.modal-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(74, 32, 20, 0.85);
}
.modal-light .modal-background{
  background-color: rgba(243, 235, 224, 0.85);
}
.modal-content,
.modal-card {
  margin: 0 20px;
  max-height: calc(100vh - 160px);
  overflow: auto;
  position: relative;
  width: 100%;
}
.modal-card.modal-step{
  display: none;
}
.modal-step.is-active{
  display: flex;
}
@media screen and (min-width: 769px) {
  .modal-content,
  .modal-card {
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    width: 640px;
  }
  .modal-wide .modal-content,
  .modal-wide .modal-card {
    width: 1024px;
  }
}
.modal-close {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.1);
  border: none;
  border-radius: 290486px;
  cursor: pointer;
  display: inline-block;
  height: 24px;
  outline: none;
  position: relative;
  vertical-align: top;
  width: 24px;
  background: none;
  height: 40px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 40px;
}
.modal-light .modal-close{
  background-color: rgba(51, 30, 31, 0.35);
}
.modal-close:before, .modal-close:after {
  background-color: white;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  margin-left: -25%;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 50%;
}
.modal-close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-close:hover {
  background-color: rgba(10, 10, 10, 0.2);
}
.modal-close.is-small {
  height: 16px;
  width: 16px;
}
.modal-close.is-medium {
  height: 32px;
  width: 32px;
}
.modal-close.is-large {
  height: 40px;
  width: 40px;
}
.modal-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: calc(100vh - 40px);
  overflow: hidden;
}
.modal-card-head,
.modal-card-foot {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px;
  position: relative;
}
.modal-card-head {
  border-bottom: 1px solid #dbdbdb;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.modal-card-title {
  color: #363636;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
}
.modal-card-foot {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top: 1px solid #dbdbdb;
}
.modal-card-foot .button:not(:last-child) {
  margin-right: 10px;
}
.modal-card-body {
  background-color: white;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  overflow: auto;
  padding: 20px;
}
.modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 1986;
}
.modal.is-active {
  display: block;
}
.is-active .modal-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-card-body.pdfobject-container{
  position: relative;
}
.modal-card-body.pdfobject-container embed{
  position: absolute;
  top: 0;
  left: 0;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ФОРМЫ
 * ------------------------------------------------------------------------------------------------------------------ */
.form-control{
  position: relative;
  text-align: left;
}
.form-control + .form-control{
  margin-top: 20px;
}
.form-control.has-addons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.form-control .input{
  height: 32px;
  padding: 6px 12px;
  background-color: #ffffff;
  border: 0 none;
  border-radius: 4px;
}
.form-control .input-lg{
  height: 48px;
}
.form-control.has-addons .btn:first-child,
.form-control.has-addons .input:first-child,
.form-control.has-addons .select:first-child{
  border-radius: 4px 0 0 4px;
}
.form-control.has-addons .btn:last-child,
.form-control.has-addons .input:last-child,
.form-control.has-addons .select:last-child{
  border-radius: 0 4px 4px 0;
}

.form-panel{
  min-height: 50px;
  padding: 0 30px 0 0;
  border: 0 none;
  background-color: transparent;
  position: relative;
  display: -webkit-flex;
  display:     -ms-flex;
  display:         flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #4a2015;
  text-align: left;
}
.form-panel::after{
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  font-family: "Ionicons";
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  text-align: right;
  opacity: 0;
  color: #dad2d0;
  content: "\f3ff";
  transition: opacity 0.5s ease, color 0.5s ease;
}
.form-panel:hover::after,
.form-panel.active::after{
  opacity: 1;
}
.form-panel.active::after{
  color: #e44d33;
}
.form-panel[data-label]{
  padding-left: 70px;
}
.form-panel[data-label]::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #e44d33;
  border-radius: 50%;
  overflow: hidden;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  color: #e44d33;
  background-color: transparent;
  transition: color 0.5s ease, background-color 0.5s ease;
  content: attr(data-label);
}
.form-panel + input[type="radio"]{
  display: none;
}

.form-container{
  width: 100%;
  margin-bottom: 30px;
}
.form-title{
  margin: 0 0 20px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #777777;
}
.form-content{
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #dad2d0;
  border-radius: 6px;
}
.form-content.form-transparent{
  padding: 0;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;
}
.form-content .form-control{
  margin-bottom: 20px;
}
.form-content label{
  display: block;
  line-height: 20px;
  margin-bottom: 10px;
  padding-left: 20px;
  color: #4a2015;
}
.form-vertical label{
  padding-left: 0;
  margin-bottom: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-content .select,
.list-control .select,
.form-content .input,
.list-control .input,
.form-content .form-control.has-addons .input,
.form-content .textarea{
  display: flex;
  float: none;
  width: 100%;
  height: 40px;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  line-height: 20px;
  padding: 0 40px 0 20px;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form-content .textarea{
  height: auto;
  padding: 20px 15px;
}
.form-content .nice-select:after,
.list-control .nice-select:after,
.drop-buttons__title::after{
  border: 0 none;
  font-family: "Ionicons";
  font-size: 20px;
  content: "\f3d0";
  width: 20px;
  height: 20px;
  line-height: 1;
  color: #999999;
  margin-top: -10px;
  text-align: center;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.form-content .nice-select.open:after,
.list-control .nice-select.open:after,
.drop-buttons.open:after,
.open .drop-buttons__title::after{
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.form-content .nice-select .list,
.list-control .nice-select .list{
  width: 100%;
}
.form-content .input,
.list-control .input{
  position: relative;
  padding: 0 20px;
  transition: border-color 0.5s ease;
}
.form-content.form-lg .input{
  height: 50px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 300;
}
.form-content .input:focus{
  border-color: #7c7c7c;
}
.form-content .input.valid{
  border-color: #4bce5c;
}
.form-content .form-control label::after,
.form-vertical .form-control::after{
  position: absolute;
  top: 40px;
  right: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-family: "Ionicons";
  font-size: 20px;
  text-align: center;
  opacity: 0;
  content: '';
  transition: opacity 0.5s ease;
  z-index: 999;
}
.form-vertical .form-control::after{
  top: 10px;
}
.form-vertical .form-control.right-addons::after{
  right: 60px;
}
.form-content .form-control.has-error label::after,
.form-vertical .form-control.has-error::after{
  opacity: 1;
  color: #e44d32;
  content: "\f406";
}
.form-content .form-control.has-success label::after,
.form-vertical .form-control.has-success::after{
  opacity: 1;
  color: #4bce5c;
  content: "\f3ff";
}
.form-content .form-control .help-block{
  display: block;
  margin: 10px 0 0;
  padding-left: 20px;
  line-height: 20px;
  font-size: 12px;
  color: #777777;
}
.form-content .form-control .help-block.form-error{
  color: #e44d32;
}
.form-content .has-addons{
  display: block;
  position: relative;
}
.form-content .has-addons{
  padding-left: 50px;
}
.form-content .has-addons.right-addons{
  padding-right: 50px;
  padding-left: 0;
}
.form-content .has-addons:not([class*="right-addons"]) .input{
  border-left: 0 none;
  border-radius: 0 20px 20px 0;
}
.form-content .has-addons.right-addons .input{
  border-right: 0 none;
  border-radius: 20px 0 0 20px;
}
.form-content .has-addons .icon{
  position: absolute;
  top: 30px;
  left: 0;
  width: 50px;
  height: 40px;
  padding: 0 0 0 5px;
  border: 0 none;
  background-color: transparent;
  border: 1px solid #d6d6d6;
  border-radius: 20px 0 0 20px;
  line-height: 38px;
  font-size: 20px;
  text-align: center;
  color: #777777;
  transition: border-color 0.5s ease, color 0.5s ease;
}
.form-content .has-addons.right-addons .icon{
  left: auto;
  right: 0;
  padding: 0 5px 0 0;
  border-radius: 0 20px 20px 0;
}
.form-content .has-addons .icon.active{
  color: #e44d32;
}
.form-vertical .has-addons .icon{
  top: 0;
}
.form-content .has-addons.has-error .icon{
  border-color: #e44d32;
  color: #e9715c;
}
.form-vertical .row-flex{
  margin-bottom: 20px;
}
.form-vertical .row-flex .row-flex{
  margin-bottom: 0;
}
.form-vertical .form-control{
  margin: 0;
}
.form-vertical .form-content:not([class*="default"]){
  padding-top: 30px;
}
.form-control .input[disabled="disabled"],
.form-control .select[disabled="disabled"],
.form-control [disabled="disabled"] + .nice-select{
  background-color: #f2f2f2;
  cursor: not-allowed;
}
.form-vertical .form-content button[type="submit"]{
  width: 100%;
  height: 40px;
  border-radius: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ТАБЛИЦЫ
 * ------------------------------------------------------------------------------------------------------------------ */
.table-title{
  margin: 0 0 20px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #777777;
}
.table{
  width: 100%;
  background-color: #ffffff;
  border: 0 none;
  border-collapse: separate;
}
.table tr{
  border: 0 none;
  vertical-align: top;
  text-align: left;
}
.table tr:nth-child(even){
  background-color: #f2f2f2;
}
.table-chosen tr{
  cursor: pointer;
}
.table th{
  border: 0 none;
  padding: 10px;
  background-color: #6e4c43;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  vertical-align: middle;
}
.table td{
  border: 0 none;
  padding: 10px;
}
.table td.checkbox,
.table td.radio{
  width: 40px;
}
.table tr td:first-child{
  border-left: 1px solid #dad2d0;
}
.table tr td:last-child{
  border-right: 1px solid #dad2d0;
}
.table tr:first-child td{
  border-top: 1px solid #dad2d0;
}
.table tr:last-child td{
  border-bottom: 1px solid #dad2d0;
}
.table tr:first-child td:first-child,
.table tr:first-child th:first-child{
  border-top-left-radius: 4px;
}
.table tr:first-child td:last-child,
.table tr:first-child th:last-child{
  border-top-right-radius: 4px;
}
.table tr:last-child td:first-child,
.table tr:last-child th:first-child{
  border-bottom-left-radius: 4px;
}
.table tr:last-child td:last-child,
.table tr:last-child th:last-child{
  border-bottom-right-radius: 4px;
}
.table thead tr:last-child th:last-child{
  border-bottom-right-radius: 0;
}
.table tr.active td{
  font-weight: 700;
}
.table td button{
  padding: 0;
  border: 0 none;
  background-color: transparent;
  color: #e9715c;
  border-bottom: 1px dashed #e9715c;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ВКЛАДКИ
 * ------------------------------------------------------------------------------------------------------------------ */
.tab-horizontal{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.tab-horizontal.r-tabs-nav{
  padding-left: 20px;
}
.tab-horizontal li,
.tab-horizontal .r-tabs-tab{
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
  min-height: 42px;
  background-color: transparent;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  transition: background-color 0.5s ease, border-color 0.5s ease;
}
.tab-horizontal li.r-tabs-state-active{
  background-color: #ffffff;
  border-color: #dad2d0;
}
.tab-horizontal li.r-tabs-state-active::after{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  content: '';
}
.tab-horizontal li a{
  height: 100%;
  padding: 10px 0;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #454545;
}
.tab-horizontal li button{
  display: none;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-left: 20px;
  background-color: #f2f2f2;
  border: 1px solid #dad2d0;
  border-radius: 50%;
  font-size: 22px;
  line-height: 18px;
  text-align: center;
  transition: all 0.5s ease;
}
.tab-horizontal li button[aria-switch="true"]{
  color: #ffffff;
  background-color: #e44d33;
  border-color: #e44d33;
}
.tab-horizontal li.r-tabs-state-active button{
  display: inline-block;
}
.tabs-vertical{
  padding-right: 0;
  border-right: 1px solid #f2f2f2;
}
.tabs-vertical .list-item,
.tabs-vertical .list-item:last-child{
  width: 100%;
  display: block;
  padding: 15px;
}
.file-archive .r-tabs-panel{
  padding-right: 15px !important;
}

.tabs-services{
  position: relative;
}
.tabs-services .list-item,
.tabs-services.tabs-vertical .list-item:last-child{
  position: relative;
  border: 1px solid #dad2d0;
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 5px 10px;
  overflow: hidden;
}
.tabs-services{
  border: 0 none;
}
.tabs-vertical .list-item.r-tabs-state-active{
  background-color: #f2f2f2;
}
.tabs-vertical .list-item.r-tabs-state-active::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background-color: #e9715c;
  content: '';
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: СКРЫТЫЙ КОНТЕНТ
 * ------------------------------------------------------------------------------------------------------------------ */
.trigger-container{
  position: relative;
  margin-bottom: 20px;
}
.trigger-container .trigger-content{
  display: none;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}
.trigger-container.open .trigger-content{
  display: block;
  margin-top: 20px;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.trigger-toggle{
  position: relative;
  border: 0 none;
  background-color: transparent;
  padding: 0 30px 0 0;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  color: #4a2015;
}
.trigger-toggle::after{
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  line-height: 1;
  margin-top: -10px;
  font-family: "Ionicons";
  font-size: 20px;
  content: "\f3d0";
  text-align: center;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  transition: all 0.15s ease-in-out;
}
.trigger-container.open .trigger-toggle::after{
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ДРЕВОВИДНЫЙ СПИСОК
 * ------------------------------------------------------------------------------------------------------------------ */
.tree-container{
  margin: 30px 0 0;
}
.tree-container__toggle,
.jstree-trigger{
  position: relative;
  height: 30px;
  line-height: 30px;
  padding: 0 20px 0 0;
  background-color: transparent;
  border: 0 none;
  font-size: 18px;
  color: #4a2015;
}
.tree-container__toggle::after,
.jstree-trigger::after{
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  font-family: "Ionicons";
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
  text-align: right;
  content: "\f3d0";
}
.open .tree-container__toggle::after,
.jstree-trigger.open::after{
  content: "\f3d8";
}
.tree-content, .tree-content ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.tree-container .tree-content{
  display: none;
  padding: 20px 0 0;
}
.tree-container.open .tree-content{
  display: block;
}
.tree-content .form-panel{
  position: relative;
  display: block;
  min-height: 40px;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #454545;
}
.tree-content .form-panel::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 40px;
  line-height: 40px;
  font-family: "Ionicons";
  font-size: 20px;
  color: #6e4c43;
  content: "\f139";
}
.tree-content .sub-tree .form-panel::before{
  content: "\f12f";
}
.tree-content .form-panel[data-toggle="animation"]::after{
  content: "\f453";
}
.sub-tree{
  display: none;
}
.tree-content .sub-tree .form-panel{
  font-size: 14px;
  font-weight: 400;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: JSTREE
 * ------------------------------------------------------------------------------------------------------------------ */
.jstree{
  position: relative;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #dad2d0;
  border-radius: 4px;
}
.jstree-inside{
  padding: 0;
  background-color: transparent;
  border: 0 none;
}
.jstree ul{
  display: none;
}
.jstree .jstree-node,
.jstree .jstree-children,
.jstree .jstree-container-ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}
.jstree-node {
  position: relative;
  display: block;
  min-height: 32px;
  line-height: 32px;
}
.jstree-node + .jstree-node{
  margin-top: 20px;
}
/* квадратная кнопка */
.jstree-node .jstree-anchor > .jstree-icon{
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: top;
  width: 32px;
  height: 32px;
  line-height: 30px;
  margin-right: 10px;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #7c7c7c;
  border-radius: 3px;
  transition: all 0.5s ease;
  cursor: pointer;
}
.jstree-node.is-clicked > .jstree-anchor > .jstree-icon,
.jstree-node.service.jstree-open > .jstree-anchor > .jstree-icon{
  border-color: #e44d33;
}
.jstree-node .jstree-anchor > .jstree-icon::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  font-family: "Ionicons";
  font-size: 26px;
  font-style: normal;
  text-align: center;
  color: #454545;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  content: "\f489";
}
.jstree-node.is-clicked > .jstree-anchor > .jstree-icon::before,
.jstree-node.service.jstree-open > .jstree-anchor > .jstree-icon::before{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  color: #e44d33;
}

.jstree-node .jstree-anchor{
  position: relative;
  display: block;
  padding-left: 48px;
}
.jstree-node .jstree-anchor:active,
.jstree-node .jstree-anchor:visited,
.jstree-node .jstree-anchor:focus{
  outline: none;
}
.jstree-node .jstree-anchor > span{
  display: block;
}
.jstree-node > .jstree-icon{
  position: absolute;
  top: 13px;
  left: -35px;
  width: 7px;
  height: 7px;
  background-color: #7c7c7c;
  border-radius: 50%;
  cursor: pointer;
  content: '';
}
.jstree-container-ul > .jstree-node > .jstree-icon{
  display: none;
}
.jstree-node .jstree-children{
  position: relative;
  padding-top: 20px;
  padding-left: 48px;
}
.jstree-node .jstree-children::before{
  position: absolute;
  top: 0;
  bottom: 16px;
  left: 16px;
  width: 1px;
  background-color: #7c7c7c;
  content: '';
}
.jstree-node .jstree-children .jstree-node.jstree-open:last-child::before{
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: -32px;
  width: 1px;
  background-color: #ffffff;
  content: '';
}
.jstree-node .jstree-children .jstree-node::after{
  position: absolute;
  top: 16px;
  left: -30px;
  right: 100%;
  height: 1px;
  background-color: #7c7c7c;
  content: '';
}
.jstree-children .jstree-node.jstree-open > .jstree-anchor::before{
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background-color: #7c7c7c;
  content: '';
}
.jstree-node .jstree-anchor .file-menu{
  display: none;
  position: absolute;
  top: 42px;
  left: -10px;
  margin: 0;
  padding: 5px 10px;
  background-color: #ffffff;
  border: 1px solid #dad2d0;
  border-radius: 4px;
  z-index: 999;
}
.jstree-node .file-menu::before,
.jstree-node .file-menu::after{
  position: absolute;
  top: -10px;
  left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #dad2d0 transparent;
  content: '';
}
.jstree-node .jstree-anchor .file-menu::after{
  top: -9px;
  border-color: transparent transparent #ffffff transparent;
}
.jstree-node.is-clicked > .jstree-anchor > .file-menu{
  display: block;
}
.jstree-node .jstree-anchor button{
  display: block;
  padding: 5px 10px;
  border: 0 none;
  background-color: transparent;
  line-height: 20px;
  color: #000000;
}
.jstree-node .jstree-anchor button i{
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}
.jstree-node .document-title,
.jstree-node .service-title{
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  margin: 0 0 3px;
  color: #4a2015;
}
.jstree-node .service-title{
  font-weight: 600;
}
.jstree-node .document-text,
.jstree-node .service-text{
  font-size: 14px;
  line-height: 1;
  color: #777777;
}
.jstree-trigger{
  margin-bottom: 10px;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: СПИСОК С ФИЛЬТРАМИ
 * ------------------------------------------------------------------------------------------------------------------ */
.list-container .list{
  margin: 0;
  padding: 20px 0;
  background-color: #ffffff;
  border: 1px solid #dad2d0;
  border-radius: 4px;
  list-style-type: none;
}
.list-container .list.dash-calls{
  padding: 0;
  border: 0 none;
  border-radius: 0;
  background-color: transparent;
}
.list-control{
  width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-control .select{
  border-radius: 0;
}
.list-control .drop-buttons{
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 150px;
  background-color: #e9705b;
  border: 1px solid #d6d6d6;
  color: #ffffff;
}
.list-control .drop-buttons .drop-buttons__title::after{
  color: #fff;
}
.list-control button + .input.search{
  border-radius: 0;
}
.list-item{
  display: block;
  margin-bottom: 15px;
  padding: 0 15px 15px;
  border-bottom: 1px solid #f2f2f2;
}
.list-item > a{
  color: #000;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list:not([class*="tabs-vertical"]) > .list-item:last-child{
  margin-bottom: 0;
  padding: 0 15px;
  border-bottom: 0 none;
}
.list-item__title{
  line-height: 20px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
.tabs-vertical.tabs-services .list-item__title{
  font-size: 14px;
}
.list-item__subtitle + .list-item__title{
  margin-top: 10px;
  line-height: 19px;
}
.list-item__title .block{
  display: block;
}
.list-item__title .thin{
  font-size: 14px;
  font-weight: 400;
}
.list-item__title .hidden{
  display: none;
}
.list-item__subtitle{
  line-height: 20px;
  font-weight: 500;
  font-size: 16px;
  color: #777777;
}
.list-item__subtitle.thin,
.tabs-vertical.tabs-services .list-item__subtitle{
  font-size: 14px;
  font-weight: 400;
}
.tabs-vertical.tabs-services .list-item__subtitle,
.tabs-vertical.tabs-services time{
  line-height: 15px;
}
.tabs-vertical.tabs-services time{
  color: #623B2A;
  font-size: 13px;
}

.list-item__data{
  margin: 0 0 10px;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-item__data li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #454545;
  margin-right: 15px;
}
.list-item__data li i{
  line-height: 20px;
  margin-right: 5px;
  font-size: 18px;
  color: #927972;
}
.list-item__data li span{
  display: inline-block;
  line-height: 18px;
  padding-top: 2px;
  font-size: 16px;
  font-weight: 600;
}

.list-item__counter{
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #454545;
}
.list-item__counter.min{
  width: auto;
  height: 15px;
  line-height: 15px;
  margin: 0;
  font-size: 14px;
}
.list-item__counter.is-warning{
  color: #f09c20;
}
.list-item__counter.is-danger{
  color: #e9715c;
}
.list-item__counter.is-success{
  color: #73c482;
}

.list-item__helper{
  margin: 0;
  line-height: 20px;
  font-weight: 300;
  color: #777777;
  text-align: center;
}

.list-item__date{
  margin-bottom: 10px;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-item__date-main{
  height: 40px;
  width: 40px;
  margin-right: 10px;
  flex: none;
  line-height: 40px;
  font-size: 40px;
  color: #777777;
  font-weight: 700;
}
.warning .list-item__date-main{
  color: #f09c20;
}
.danger .list-item__date-main{
  color: #e44d33;
}
.list-item__date-sub{
  font-weight: 600;
  color: #777777;
  text-transform: uppercase;
}
.list-item__period{
  width: 100%;
  height: 20px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background-color: #dad2d0;
  color: #454545;
  font-weight: 600;
  text-align: center;
}
.list-item__period.more-half{
  color: #ffffff;
}
.list-item__period-scale{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  background-color: #73c482;
  content: '';
}
.list-item__period-scale.warning{
  background-color: #f09c20;
}
.list-item__period-scale.danger{
  background-color: #e9715c;
}
.list-item__period-days{
  position: relative;
}
.list-container[data-filtered="favorites"] .favorites-hidden{
  display: none;
}

.file-archive__list li{
  padding: 10px 15px;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.file-archive__list li a{
  color: #777777;
}
.file-archive__list .r-tabs-state-active a{
  color: #e9715c;
}
.file-archive__list li i{
  line-height: 20px;
  margin-right: 5px;
  font-size: 18px;
  color: #927972;
}
.file-archive__list li span{
  display: inline-block;
  line-height: 16px;
  padding-top: 2px;
  font-size: 16px;
  font-weight: 500;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ПАНЕЛЬ УПРАВЛЕНИЯ
 * ------------------------------------------------------------------------------------------------------------------ */
.dash{
  padding-bottom: 20px;
}
.dash-content.fixed-height{
  min-height: calc(100vh - 210px);
}
.dash .tab-horizontal{
  margin: 0;
  padding: 0 0 0 20px;
}
.dash-header__title{
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin: 0 0 10px;
}
.dash-header__meta,
.dash-tabs ul,
.dash-content__tabs{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.dash-header__user{
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}
.dash-header__helper{
  margin: 10px 0 0;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #777777;
}
.dash-header__meta{
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.dash-header__meta li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dash-header__meta li i{
  font-size: 20px;
  line-height: 20px;
  margin-right: 5px;
  color: #927972;
}
.dash-header__meta li span{
  display: block;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #777777;
}

.dash-content{
  background-color: #ffffff;
  border: 1px solid #dad2d0;
  border-radius: 4px;
  padding: 15px;
}
.dash-content .form-content{
  padding: 0;
  border: 0 none;
  border-radius: 0;
}
.dash-content.has-vertical-tabs{
  padding: 0 15px;
  overflow: hidden;
}
.dash-content__tabs,
.r-tabs .r-tabs-nav.dash-content__tabs{
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #dad2d0;
}
.dash-content__tabs.r-tabs-nav .r-tabs-tab,
.dash-content__tabs > li{
  margin-right: 10px;
  line-height: 20px;
  border-radius: 4px;
  background-color: transparent;
  transition: background-color 0.5s ease;
}
.dash-content__tabs.r-tabs-nav .r-tabs-anchor,
.dash-content__tabs > li > a{
  display: block;
  padding: 5px 10px;
  color: #454545;
  transition: color 0.5s ease;
}
.dash-content__tabs.r-tabs-nav .r-tabs-state-active{
  background-color: #e9715c;
}
.dash-content__tabs.r-tabs-nav .r-tabs-state-active a{
  color: #ffffff;
}
.dash-content.r-tabs .r-tabs-panel{
  padding: 0;
}
.dash-panel{
  width: 100%;
}
.dash-panel.has-frame{
  border: 1px solid #dad2d0;
  border-radius: 4px;
  padding: 10px;
}
.dash-panel.has-frame-left{
  border-left: 1px solid #dad2d0;
  padding-left: 10px;
}
.dash-panel + .dash-panel{
  margin-top: 30px;
}
.dash-panel.full-height{
  height: 100%;
}
.dash-title{
  margin: 0 0 10px;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #777777;
}
.dash-list{
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.dash-list li{
  position: relative;
  padding-left: 20px;
}
.dash-list li.summary{
  padding: 10px 0;
  border-top: 1px solid #dad2d0;
  font-weight: 600;
  color: #454545;
}
.dash-list li::before{
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #e9715c;
  content: '';
}
.dash-list li.disk-default::before{
  background-color: #dad2d0;
}
.dash-list li.disk-success::before{
  background-color: #73c482;
}
.dash-list li.disk-warning::before{
  background-color: #f09c20;
}
.dash-list li.summary::before{
  display: none;
}
.dash-list li + li {
  margin-top: 10px;
}
.dash-list h3,
.dash-list h4,
.dash-list h5,
.dash-list h6{
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #927972;
  text-transform: uppercase;
}
.dash-list p{
  margin: 0;
  color: #454545;
}
.dash-list p strong{
  font-weight: 600;
}

.dash-chart{
  width: 100%;
  position: relative;
}
.dash-notify{
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.dash-notify li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 15px;
  background-color: #9CCBCA;
  color: #ffffff;
  border-radius: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
          align-items: center;
}
.dash-notify li.success{
  background-color: #73c482;
}
.dash-notify li.warning{
  background-color: #f09c20;
}
.dash-notify li.danger{
  background-color: #e9715c;
}
.dash-notify li i{
  display: block;
  flex: none;
  margin-right: 10px;
  line-height: 1;
  font-size: 24px;
}
.dash-notify li span{
  display: block;
  width: 100%;
}
.dash-notify li .close{
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  padding: 0 1px 0 0;
  border: 0 none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  color: #454545;
}
.dash-notify li .close::before{
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Ionicons";
  content: "\f404";
}

.dash-title__row{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 10px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #454545;
}
.dash-title__row .full{
  display: block;
  width: 100%;
}
.dash-title__row .is-1,
.dash-title__row .is-2,
.dash-title__row .is-3{
  display: block;
  flex: none;
  margin-left: 10px;
}
.dash-title__row .is-1{
  width: 80px;
}
.dash-title__row .is-2{
  width: 160px;
}
.dash-title__row .is-3{
  width: 250px;
}
.is-medium .dash-title__row .is-1{
  width: 48px;
}
.is-medium .dash-title__row .is-2{
  width: 128px;
}
.is-medium .dash-title__row .is-3{
  width: 186px;
}
.dash-calls{
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.dash-calls li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dash-calls li.clickable{
  cursor: pointer;
}
.dash-calls > li > div + div,
.dash-calls > li > figure + div{
  margin-left: 10px;
}
.dash-calls .label{
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  background-color: #73c482;
  border: 0 none;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
}
.dash-calls .label[data-toggle="input"]{
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 18px;
  background-color: #d6d6d6;
  color: #777777;
}
.dash-calls .label.active[data-toggle="input"]{
  background-color: #73c482;
  color: #ffffff;
}
.dash-calls .label[data-toggle="input"] + input{
  display: none;
}
.messages .dash-calls .label{
  background-color: #f09c20;
}
.dash-calls .title{
  width: 100%;
}
.dash-calls .title h3{
  line-height: 20px;
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}
.is-medium .dash-calls .title h3{
  font-size: 14px;
  margin: 0;
}
.dash-calls .title p{
  line-height: 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
}
.is-medium .dash-calls .title p,
.is-medium .dash-calls .text{
  font-size: 13px;
}
.dash-calls .text{
  color: #777777;
}
.dash-calls .text.has-action{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dash-calls .has-action span + span{
  margin-left: 10px;
}
.dash-calls .is-1,
.dash-calls .is-2,
.dash-calls .is-3{
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.dash-calls .is-1{
  width: 80px;
}
.dash-calls .is-2{
  width: 160px;
}
.dash-calls .is-3{
  width: 250px;
}
.is-medium .dash-calls .is-1{
  width: 48px;
}
.is-medium .dash-calls .is-2{
  width: 128px;
}
.is-medium .dash-calls .is-3{
  width: 192px;
}
.dash-calls .action{
  text-align: center;
}
.dash-calls .action button,
.dash-calls .has-action button{
  border: 0 none;
  background-color: transparent;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  color: #e9715c;
}
.dash-calls .has-action button{
  color: #73c482;
}
.messages .dash-calls .has-action button{
  color: #f09c20;
}

.dash-enumeration{
  display: block;
  list-style-type: decimal;
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  color: #927972;
}
.full-height .dash-enumeration{
  height: 100%;
}
.dash-content__tabs-vertical{
  position: relative;
  padding: 0 0 0 15px;
}
.dash-content__tabs-vertical > .dash-title{
  background: #6e4c43;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 15px;
  padding: 5px 15px;
  width: 288px;
  border-radius: 4px;
}
.dash-content__tabs-vertical > .tabs-vertical{
  margin-top: 40px;
}
.dash-content__tabs-vertical.r-tabs .r-tabs-panel{
  padding-top: 0;
  padding-bottom: 0;
}
.dash-content__tabs-vertical.r-tabs .r-tabs-panel .dash-content__tabs{
  padding-top: 0;
}
.dash-content__tabs-vertical.r-tabs .r-tabs-panel .dash-content__tabs-horizontal .r-tabs-panel{
  padding: 0;
}
.dash-panel .r-tabs-panel{
  width: 100%;
}
.dash-panel__tabs .r-tabs-nav,
.dash-panel > .dash-panel__tabs.row-flex.r-tabs > .r-tabs-panel{
  padding-left: 15px;
  padding-right: 15px;
}
.dash-panel__tabs-buttons{
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ЛЕНТА АКТИВНОСТИ
 * ------------------------------------------------------------------------------------------------------------------ */
.timeline {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none
}
.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #dad2d0;
  left: 31px;
  margin: 0;
  border-radius: 2px
}
.timeline>li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px
}
.timeline>li:before,.timeline>li:after {
  content: " ";
  display: table
}
.timeline>li:after {
  clear: both
}
.timeline>li>.timeline-item {
  margin-top: 0;
  border-bottom: 1px solid #f2f2f2;
  color: #454545;
  margin-left: 60px;
  margin-right: 15px;
  padding: 0;
  position: relative
}

.timeline>li>.timeline-item>.time {
  color: #777777;
  float: right;
  padding: 10px;
  font-size: 12px
}

.timeline>li>.timeline-item>.timeline-header {
  margin: 0;
  color: #000000;
  border-bottom: 1px solid #f2f2f2;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1
}
.timeline>li>.timeline-item>.timeline-header>a {
  font-weight: 600;
  color: #e9715c;
}
.timeline>li>.timeline-item>.timeline-body {
  padding: 10px;
}
.timeline >li > .timeline-item > .timeline-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.timeline > li > i {
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 30px;
  position: absolute;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  left: 18px;
  top: 0
}
.timeline > li > i:not([class*="bg-"]){
  background-color: #6e4c43;
}
.timeline > .time-label > span {
  font-weight: 500;
  padding: 5px;
  display: inline-block;
  color: #ffffff;
  border-radius: 4px
}
.timeline > .time-label > span:not([class*="bg-"]){
  background-color: #472a2c;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: МЕНЕДЖЕР ДОКУМЕНТОВ
 * ------------------------------------------------------------------------------------------------------------------ */
.doc-manager{
  margin: 0;
}
.doc-manager__list li a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.doc-manager__list .r-tabs-state-active a{
  border-right: 3px solid #e9715c;
}
.doc-manager__list li .label{
  width: 40px;
  height: 40px;
  margin-right: 10px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #ffffff;
}
.doc-manager__list li .label:not([class*="bg-"]){
  background-color: #dad2d0;
  color: #454545;
}
.doc-manager__list li .title{
  width: 100%;
  color: #454545;
}
.doc-manager__list .r-tabs-state-active .title{
  font-weight: 500;
  color: #000000;
}
.doc-manager__view{
  padding-top: 15px;
  padding-left: 15px;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ПОЧТА
 * ------------------------------------------------------------------------------------------------------------------ */
.mail{
  position: relative;
}
.mail .list-control{
  position: absolute;
  top: 0;
  left: 0;
  width: 275px;
}
.mail-list + .pagination{
  position: absolute;
  width: 275px;
  bottom: 0;
  left: 0;
}
.mail-list{
  display: block;
  width: 100%;
  margin: 55px 0 !important;
}
.mail-list li,
.mail-list li.r-tabs-tab{
  display: block;
  margin-bottom: 20px;
  padding-left: 15px;
}
.mail-list li a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.mail-list li figure,
.mail-messages header figure{
  position: relative;
  display: block;
  flex: none;
  width: 48px;
  height: 48px;
  margin-right: 7px;
  border: 1px solid #7c7c7c;
  border-radius: 50%;
  overflow: hidden;
  background-color: #dad2d0;
  color: #777777;
  font-size: 18px;
  font-weight: 300;
  transition border-color 0.5s ease;
}
.mail-list li.r-tabs-state-active figure{
  border-color: #e9715c;
}
.mail-list li figure[data-label]::before,
.mail-messages header figure[data-label]::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 46px;
  text-align: center;
  content: attr(data-label);
}
.mail-list li figure img,
.mail-messages header figure img{
  position: relative;
}
.mail-list li h3,
.mail-messages header h3{
  line-height: 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
.mail-list li p,
.mail-messages header p{
  position: relative;
  margin: 0;
  line-height: 20px;
  padding-left: 12px;
  font-size: 13px;
  color: #777777;
}
.mail-list li p::before,
.mail-messages__list li .title::before{
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #e9715c;
  content: '';
}
.mail-list li p.online::before{
  background-color: #73c482;
}
.mail-messages__list li.in .title::before{
  background-color: #c79b65;
}
.mail-messages__list li.out .title::before{
  left: auto;
  right: 0;
  background-color: #6e4c43;
}
.mail-messages{
  width: 100%;
  padding: 0 15px;
}
.mail-messages header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #dad2d0;
}
.mail-messages header p{
  padding-left: 0;
}
.mail-messages__list{
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mail-messages__list li{
  display: block;
  position: relative;
  margin: 0 0 20px;
}
.mail-messages__list li .title{
  position: relative;
  line-height: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
.mail-messages__list li .title time{
  font-size: 13px;
  font-weight: 400;
  color: #777777;
}
.mail-messages__list li.in .title{
  padding-left: 12px;
  text-align: left;
}
.mail-messages__list li.out .title{
  padding-right: 12px;
  text-align: right;
}
.mail-messages__list li .body{
  position: relative;
  width: 80%;
  padding: 10px;
  color: #fff;
  border-radius: 4px;
}
.mail-messages__list li .body::before{
  position: absolute;
  bottom: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  content: '';
}
.mail-messages__list li.in .body::before{
  left: 10px;
  border-color: transparent transparent #c79b65 transparent;
}
.mail-messages__list li.out .body::before{
  right: 10px;
  border-color: transparent transparent #6e4c43 transparent;
}
.mail-messages__list li.in .body{
  margin-right: 20px;
  background-color: #c79b65;
}
.mail-messages__list li.out .body{
  margin-left: 20%;
  background-color: #6e4c43;
}
/** ----------------------------------------------------------------------------------------------------------------- **
 * КОМПОНЕНТ: ЛЕНТА АКТИВНОСТИ
 * ------------------------------------------------------------------------------------------------------------------ */
.activity{
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
}
.activity-title{
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
  padding: 5px 15px;
  line-height: 20px;
  background-color: #e9715c;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
}
.has-filter .activity-title{
  margin-bottom: 0;
  border-radius: 4px 4px 0 0;
}
.activity-filter{
  margin-bottom: 20px;
}
.activity-filter .drop-buttons{
  height: 30px;
  background-color: #f2f2f2;
  border-radius: 0 0 4px 4px;
  border-top: 0;
}
.activity-filter .drop-buttons__title{
  padding: 4px 35px 4px 15px;
}
.activity-list{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding-left: 20px;
  list-style-type: none;
}
.activity-list::before{
  position: absolute;
  top: 0;
  left: 3px;
  width: 1px;
  height: 100%;
  background-color: #dad2d0;
  content: '';
}
.activity-list li{
  position: relative;
  display: block;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #dad2d0;
  border-radius: 4px;
}
.activity-list li::before,
.activity-list li::after{
  position: absolute;
  top: 10px;
  right: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #dad2d0 transparent transparent;
  content: '';
}
.activity-list li::after{
  margin-right: -1px;
  border-color: transparent #ffffff transparent transparent;
}
.activity-list li + li{
  margin-top: 20px;
}
.activity-list li > span:first-child{
  position: absolute;
  top: 17px;
  left: -21px;
  width: 7px;
  height: 7px;
  font-size: 0;
  background-color: #dad2d0;
  border: 1px solid #f3ebe0;
  border-radius: 50%;
}
.activity-list li .title{
  margin: 0 0 5px;
  line-height: 20px;
  font-size: 16px;
  color: #000;
}
.activity-list li .text{
  color: #777777;
}
