@charset "UTF-8";
/* Styles for Auctions */
.force-UTF-8 {
  content: "¡"; }

html {
  height: 100%; }

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden; }
  @media (max-width: 319px) {
    body {
      width: 320px;
      overflow-x: visible; } }

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-position: inside; }

li {
  list-style-position: inside; }

img {
  max-width: 100%;
  height: auto; }

input,
textarea,
select,
button {
  -webkit-transition: 0.4s;
  transition: 0.4s; }
  input:focus,
  textarea:focus,
  select:focus,
  button:focus {
    outline: none; }

textarea {
  resize: none; }

a,
img {
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s; }

a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: underline;
  outline: none; }

@media (max-width: 767px) {
  .text-center_xs {
    text-align: center !important; } }

.valid {
  color: #88ce7a; }

.invalid {
  color: #e2747d; }

.valid-bg {
  padding: 3px;
  background-color: #88ce7a;
  color: #fff; }

.invalid-bg {
  padding: 3px;
  background-color: #e2747d;
  color: #fff; }

.glyphicon:before {
  margin: 0 5px; }

.alert-message {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  background-color: #e2747d;
  text-align: center;
  color: #fff; }

.test-mode {
  padding-top: 19px; }

.form-xs {
  margin-top: 30px; }

.inline-form {
  display: inline-block; }

input[type="text"],
input[type="password"],
textarea,
select {
  width: 100%;
  margin: 3px 0;
  padding: 5px;
  border-radius: 0;
  border: 1px solid #000;
  -webkit-transition: 0.4s;
  transition: 0.4s; }

input[type="checkbox"] {
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin: 0;
  vertical-align: sub; }

.textarea-resize_v {
  resize: vertical; }

.checkbox-list label {
  display: block; }

.select-wp {
  position: relative;
  width: 100%; }
  .select-wp:after {
    position: absolute;
    content: "";
    top: 50%;
    margin-top: -3px;
    right: 7px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 6px solid #000;
    pointer-events: none; }
  .select-wp select {
    padding-right: 25px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none; }
  .select-wp select::-ms-expand {
    display: none; }

input:disabled,
textarea:disabled,
select:disabled {
  background-color: #b2b2b2 !important;
  color: #424242 !important;
  cursor: not-allowed !important; }

input[type="submit"].mk-disabled,
input[type="button"].mk-disabled,
button.mk-disabled,
a.mk-disabled,
textarea.mk-disabled,
select.mk-disabled {
  background-color: #b2b2b2 !important;
  color: #424242 !important;
  cursor: not-allowed !important; }
  input[type="submit"].mk-disabled:hover, input[type="submit"].mk-disabled:focus,
  input[type="button"].mk-disabled:hover,
  input[type="button"].mk-disabled:focus,
  button.mk-disabled:hover,
  button.mk-disabled:focus,
  a.mk-disabled:hover,
  a.mk-disabled:focus,
  textarea.mk-disabled:hover,
  textarea.mk-disabled:focus,
  select.mk-disabled:hover,
  select.mk-disabled:focus {
    background-color: #b2b2b2 !important;
    color: #424242 !important; }

select.mk-disabled {
  pointer-events: none; }

label {
  margin-bottom: 5px;
  font-weight: 400; }
  @media (max-width: 767px) {
    label {
      margin-top: 15px; } }

.required label:after {
  content: "*";
  color: #f00; }

.no-required label:after {
  content: none; }

.help-block, .error-block {
  font-size: 12px;
  color: #f00; }
  .help-block label {
    color: inherit !important; }

.has-error input[type="text"],
.has-error input[type="password"],
.has-error textarea,
.has-error select {
  border-color: #f00; }

.has-error label {
  color: inherit !important; }

.has-success input[type="text"],
.has-success input[type="password"],
.has-success textarea,
.has-success select {
  border-color: #0f0; }

.has-success label {
  color: inherit !important; }

.mk-invalid input[type="text"],
.mk-invalid input[type="password"],
.mk-invalid textarea,
.mk-invalid select {
  border-color: #f00; }

.mk-valid input[type="text"],
.mk-valid input[type="password"],
.mk-valid textarea,
.mk-valid select {
  border-color: #0f0; }

.mk-input-with-reset-wp {
  position: relative; }
  .mk-input-with-reset-wp input[type="text"] {
    padding-right: 20px; }
  .mk-input-with-reset-wp .mk-reset {
    position: absolute;
    right: 3px;
    top: 50%;
    margin-top: -7px;
    display: block;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    background: none;
    font-size: 24px;
    font-weight: 700;
    line-height: 0;
    color: #0f0; }

.mk-btn {
  display: inline-block;
  margin: 3px;
  padding: 8px 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  text-decoration: none !important;
  line-height: 1.1;
  font-size: 14px;
  color: #eee;
  vertical-align: middle;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .mk-btn:hover, .mk-btn:active, .mk-btn:focus {
    color: #fff; }
  .mk-btn:active {
    -webkit-box-shadow: inset 0 0 4px 1px #555;
            box-shadow: inset 0 0 4px 1px #555; }
  .mk-btn_default {
    background-color: #fbfbfb;
    border: 1px solid #a9a9a9;
    color: #333; }
    .mk-btn_default:hover {
      text-decoration: none;
      color: #333;
      background-color: #d8d8d8; }
    .mk-btn_default:focus {
      text-decoration: none;
      background-color: #fbfbfb;
      border: 1px solid #a9a9a9;
      color: #333; }
    .mk-btn_default:active {
      color: #333; }
  .mk-btn_accept {
    background-color: green; }
    .mk-btn_accept:hover {
      text-decoration: none;
      background-color: darkgreen; }
    .mk-btn_accept:focus {
      text-decoration: none;
      background-color: darkgreen; }
    .mk-btn_accept:active {
      background-color: darkgreen; }
  .mk-btn_danger {
    background-color: red; }
    .mk-btn_danger:hover {
      text-decoration: none;
      background-color: darkred; }
    .mk-btn_danger:focus {
      text-decoration: none;
      background-color: darkred; }
    .mk-btn_danger:active {
      background-color: darkred; }
  .mk-btn:disabled {
    color: #555;
    background-color: #ccc; }

.ajax-file-upload {
  /* it's fucking dog-nail for form in form */
  display: inline-block;
  cursor: pointer !important;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 3px 0;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 14px;
  background-color: #fbfbfb;
  border: 1px solid #a9a9a9;
  color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .ajax-file-upload:hover {
    color: #333;
    background-color: #d8d8d8; }
  .ajax-file-upload:active {
    -webkit-box-shadow: inset 0 0 4px 1px #555;
            box-shadow: inset 0 0 4px 1px #555; }

.uploadfile_replace,
.ajax-file-upload-container {
  display: inline-block; }

.panel-heading .ajax-file-upload-container {
  position: absolute; }

.panel-heading .preloader {
  position: absolute;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px); }

.mk-link {
  display: inline;
  border: none;
  background: none;
  text-align: left;
  word-wrap: break-word;
  color: blue;
  -webkit-transition: 0.4s;
  transition: 0.4s; }
  .mk-link:hover {
    text-decoration: underline; }

.tbl-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  word-wrap: break-word;
  background-color: #ddd;
  border-bottom: 1px solid #fff; }
  .tbl-r:last-of-type:not(:first-child) {
    border-radius: 0 0 5px 5px; }

.tbl-h {
  margin-top: 20px;
  margin-bottom: 5px;
  background-color: #eee;
  border-radius: 5px 5px 0 0;
  line-height: 1.1;
  font-size: 16px; }
  .tbl-h a {
    color: #00f;
    text-decoration: underline; }
    .tbl-h a:hover, .tbl-h a:focus {
      text-decoration: none; }

.tbl-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  text-align: center;
  overflow: hidden; }
  .tbl-col_xs {
    -webkit-box-flex: 0.2;
        -ms-flex: 0.2;
            flex: 0.2; }
  .tbl-col_sm {
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5; }
  .tbl-col_md {
    -webkit-box-flex: 1.4;
        -ms-flex: 1.4;
            flex: 1.4; }
  .tbl-col_lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0;
    background-color: #ececec; }
  .tbl-col.text-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left; }
  .tbl-col.text-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right; }
  .tbl-col > div {
    width: 100%; }
  .tbl-col > span {
    max-width: 100%; }

@media (max-width: 767px) {
  .tbl-r {
    display: block;
    margin-bottom: 20px;
    border-radius: 0 0 5px 5px;
    background-color: transparent; }
  .tbl-col {
    display: block;
    padding: 5px;
    background-color: #ddd; }
    .tbl-col:first-child, .tbl-col:first-of-type {
      margin-top: 15px;
      margin-bottom: 5px;
      background-color: #eee;
      border-radius: 5px 5px 0 0;
      font-size: 16px; }
    .tbl-col:last-child {
      border-radius: 0 0 5px 5px; }
    .tbl-col:before {
      margin-right: 3px;
      content: attr(data-mtitle);
      display: inline-block;
      font-weight: 700; }
    .tbl-col.text-left, .tbl-col.text-right {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
    .tbl-col > div,
    .tbl-col > span {
      width: 100%;
      text-align: center; }
    .tbl-col > a,
    .tbl-col > button {
      display: block;
      width: 100%;
      max-width: 200px;
      margin: 3px auto;
      text-align: center; }
    .tbl-col a {
      color: inherit; }
      .tbl-col a span.glyphicon {
        display: block;
        font-size: 18px;
        border: 1px solid #000;
        border-radius: 4px;
        padding: 5px 8px;
        -webkit-transition: 0.4s;
        transition: 0.4s; }
        .tbl-col a span.glyphicon:active {
          background-color: #eee; } }

.sort-asc:after,
.sort-desc:after {
  margin-left: 5px;
  font-family: 'Glyphicons Halflings';
  font-size: 14px;
  vertical-align: middle; }

.sort-asc:after {
  content: "\e155"; }

.sort-desc:after {
  content: "\e156"; }

.empty {
  text-align: center;
  font-weight: 600; }

.summary {
  margin: 10px 0;
  text-align: center; }

.modal {
  top: 30px; }

.modal-body {
  text-align: left; }

.modal-scroll .modal-body {
  max-height: 100%; }

.modal-footer .btn + .btn {
  margin-bottom: 3px; }

.picker-wp {
  position: relative;
  float: none; }

.modal-body .bootstrap-datetimepicker-widget {
  bottom: 0; }

#classificator-modal .spinner {
  left: calc(50% - 2.5em); }

@media (orientation: landscape) {
  .stub {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
    font-size: 18px;
    color: #fff;
    z-index: 9000; }
    .stub:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      margin-left: -60px;
      width: 120px;
      height: 120px;
      background-image: url("../../img/rotate_screen_icon.gif");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; } }

@media (orientation: portrait) {
  .stub {
    display: none; } }

.message {
  margin: 15px 0;
  padding: 15px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
}

.message_success {
  background-color: #3fa256;
}

.message_warning {
  background-color: #fecb03;
}

.message_danger {
  background-color: #e2747d;
}

.message_info {
  background-color: #5b89e2;
}

.message a {
  text-decoration: underline;
  color: #fff;
}

.message a:hover {
  text-decoration: none;
}

.wrapper .alert {
  position: absolute;
  opacity: 0;
}

.global-alert {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 10px;
  width: 275px;
  z-index: 1000; }
  @media (max-width: 767px) {
    .global-alert {
      top: inherit;
      bottom: 0;
      width: 100%; } }
  .global-alert .alert {
    width: 100%;
    max-height: 59px;
    min-height: 50px;
    margin-bottom: 10px;
    margin-left: auto;
    padding: 0;
    border-radius: 3px;
    font-size: 13px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: border-radius 0s, all .4s ease-out;
    transition: border-radius 0s, all .4s ease-out;
    overflow: hidden;
    background-color: #fff;
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    cursor: pointer;
    -webkit-animation-duration: 0.7s;
            animation-duration: 0.7s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
            animation-direction: alternate; }
    .global-alert .alert:last-child {
      margin: 0; }
    .global-alert .alert:nth-child(1) {
      -webkit-transition-delay: 0.8s;
              transition-delay: 0.8s; }
    .global-alert .alert:nth-child(2) {
      -webkit-transition-delay: 0.6s;
              transition-delay: 0.6s; }
    .global-alert .alert:nth-child(3) {
      -webkit-transition-delay: 0.4s;
              transition-delay: 0.4s; }
    .global-alert .alert:nth-child(4) {
      -webkit-transition-delay: 0.2s;
              transition-delay: 0.2s; }
    .global-alert .alert:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: 38px;
      background-repeat: no-repeat;
      -webkit-transition: .3s;
      transition: .3s;
      padding: 0 13px;
      background-origin: content-box; }
    @media (max-width: 767px) {
      .global-alert .alert {
        opacity: 1; } }
    .global-alert .alert.active:not(.remove-alert) {
      padding: 10px;
      padding-top: 45px;
      max-height: 360px; }
      .global-alert .alert.active:not(.remove-alert):before {
        height: 36px;
        background-position: left center;
        background-size: 25px; }
    .global-alert .alert.remove-alert {
      -webkit-transform: scale(0);
              transform: scale(0); }
      .global-alert .alert.remove-alert .close {
        opacity: 0; }
    .global-alert .alert.alert-danger {
      border-color: #e2747d;
      -webkit-animation-name: shadow-danger;
              animation-name: shadow-danger; }
    .global-alert .alert.alert-warning {
      border-color: #fecb03;
      -webkit-animation-name: shadow-warning;
              animation-name: shadow-warning; }
    .global-alert .alert.alert-success {
      border-color: #88ce7a;
      -webkit-animation-name: shadow-success;
              animation-name: shadow-success; }
    .global-alert .alert.alert-info {
      border-color: #6697ff;
      -webkit-animation-name: shadow-info;
              animation-name: shadow-info; }
    .global-alert .alert-danger:before {
      background-color: #e2747d;
      background-image: url("../img/danger-ico.svg"); }
    .global-alert .alert-warning:before {
      background-color: #fecb03;
      background-image: url("../img/info-ico.svg"); }
    .global-alert .alert-success:before {
      background-color: #88ce7a;
      background-image: url("../img/ok-ico.svg"); }
    .global-alert .alert-info:before {
      background-color: #6697ff;
      background-image: url("../img/information.svg"); }
    .global-alert .alert button {
      position: absolute;
      right: 5px;
      -ms-flex-item-align: start;
          align-self: flex-start;
      top: 0;
      color: #fff;
      opacity: 0.5;
      font-weight: 400;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      .global-alert .alert button:hover {
        opacity: 1; }
    .global-alert .alert .fade.in {
      opacity: 0; }

@-webkit-keyframes shadow-danger {
  from {
    -webkit-box-shadow: 0 0 25px 3px rgba(226, 116, 125, 0.45);
            box-shadow: 0 0 25px 3px rgba(226, 116, 125, 0.45); }
  to {
    -webkit-box-shadow: 0 0 25px 3px #e2747d;
            box-shadow: 0 0 25px 3px #e2747d; } }

@keyframes shadow-danger {
  from {
    -webkit-box-shadow: 0 0 25px 3px rgba(226, 116, 125, 0.45);
            box-shadow: 0 0 25px 3px rgba(226, 116, 125, 0.45); }
  to {
    -webkit-box-shadow: 0 0 25px 3px #e2747d;
            box-shadow: 0 0 25px 3px #e2747d; } }

@-webkit-keyframes shadow-warning {
  from {
    -webkit-box-shadow: 0 0 25px 3px rgba(254, 203, 3, 0.45);
            box-shadow: 0 0 25px 3px rgba(254, 203, 3, 0.45); }
  to {
    -webkit-box-shadow: 0 0 25px 3px #fecb03;
            box-shadow: 0 0 25px 3px #fecb03; } }

@keyframes shadow-warning {
  from {
    -webkit-box-shadow: 0 0 25px 3px rgba(254, 203, 3, 0.45);
            box-shadow: 0 0 25px 3px rgba(254, 203, 3, 0.45); }
  to {
    -webkit-box-shadow: 0 0 25px 3px #fecb03;
            box-shadow: 0 0 25px 3px #fecb03; } }

@-webkit-keyframes shadow-success {
  from {
    -webkit-box-shadow: 0 0 25px 3px rgba(136, 206, 122, 0.45);
            box-shadow: 0 0 25px 3px rgba(136, 206, 122, 0.45); }
  to {
    -webkit-box-shadow: 0 0 25px 3px #88ce7a;
            box-shadow: 0 0 25px 3px #88ce7a; } }

@keyframes shadow-success {
  from {
    -webkit-box-shadow: 0 0 25px 3px rgba(136, 206, 122, 0.45);
            box-shadow: 0 0 25px 3px rgba(136, 206, 122, 0.45); }
  to {
    -webkit-box-shadow: 0 0 25px 3px #88ce7a;
            box-shadow: 0 0 25px 3px #88ce7a; } }

@-webkit-keyframes shadow-info {
  from {
    -webkit-box-shadow: 0 0 25px 3px rgba(102, 151, 255, 0.45);
            box-shadow: 0 0 25px 3px rgba(102, 151, 255, 0.45); }
  to {
    -webkit-box-shadow: 0 0 25px 3px #6697ff;
            box-shadow: 0 0 25px 3px #6697ff; } }

@keyframes shadow-info {
  from {
    -webkit-box-shadow: 0 0 25px 3px rgba(102, 151, 255, 0.45);
            box-shadow: 0 0 25px 3px rgba(102, 151, 255, 0.45); }
  to {
    -webkit-box-shadow: 0 0 25px 3px #6697ff;
            box-shadow: 0 0 25px 3px #6697ff; } }

/* old styles */
.lots_marker,
.add_lot,
.view_convert,
.counted_history,
.award_complaints_block,
.tender_contract_block,
.c_doc_example,
.contract_document_type_select,
.ajax-file-upload-filename,
.eu_procedure,
.unsuccessful,
.cancelation_block,
.confidentialityRational,
.swichRationaleTypes,
.terminationDetails {
  display: none; }

.view_convert {
  background: none !important;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: auto !important; }

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

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

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

#classificator-modal .modal-dialog {
  max-width: 90%;
  margin: auto; }

/* old styles end */
.bg-close {
  position: absolute;
  width: 100%;
  height: calc(100% - 19px);
  z-index: 999; }

header {
  border-bottom-width: 1px;
  border-bottom-style: solid; }
  header .h-logo a {
    display: block;
    margin: 10px 0; }
    header .h-logo a img {
      max-height: 30px; }
  header .h-menu {
    margin-top: 4px; }
    header .h-menu .navbar-toggle {
      margin-right: 0;
      -webkit-transition: 0.4s;
      transition: 0.4s; }
      @media (max-width: 767px) {
        header .h-menu .navbar-toggle {
          width: 48px;
          height: 38px;
          margin-top: 5px;
          margin-right: 15px;
          padding: 0 12px;
          border: 1px solid #000; }
          header .h-menu .navbar-toggle .icon-bar {
            background-color: #000; } }
    header .h-menu .nav {
      margin-top: 5px;
      float: right; }
      @media (max-width: 991px) {
        header .h-menu .nav {
          float: left; } }
      @media (max-width: 767px) {
        header .h-menu .nav {
          float: none;
          text-align: center; } }
      header .h-menu .nav a {
        padding: 7px 10px;
        border: none;
        background-color: transparent;
        -webkit-transition: 0.4s;
        transition: 0.4s; }
        header .h-menu .nav a:focus {
          background-color: transparent; }
        header .h-menu .nav a[href='/backend/companies'] {
          min-width: 48px;
          padding: 8px 8px;
          border: 1px solid #000;
          border-radius: 4px;
          font-size: 0; }
          header .h-menu .nav a[href='/backend/companies']:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iIzQ0NDQ0NCIgZD0iTTE1LjIgNmwtMS4xLTAuMmMtMC4xLTAuMi0wLjEtMC40LTAuMi0wLjZsMC42LTAuOSAwLjUtMC43LTIuNi0yLjYtMC43IDAuNS0wLjkgMC42Yy0wLjItMC4xLTAuNC0wLjEtMC42LTAuMmwtMC4yLTEuMS0wLjItMC44aC0zLjZsLTAuMiAwLjgtMC4yIDEuMWMtMC4yIDAuMS0wLjQgMC4xLTAuNiAwLjJsLTAuOS0wLjYtMC43LTAuNC0yLjUgMi41IDAuNSAwLjcgMC42IDAuOWMtMC4yIDAuMi0wLjIgMC40LTAuMyAwLjZsLTEuMSAwLjItMC44IDAuMnYzLjZsMC44IDAuMiAxLjEgMC4yYzAuMSAwLjIgMC4xIDAuNCAwLjIgMC42bC0wLjYgMC45LTAuNSAwLjcgMi42IDIuNiAwLjctMC41IDAuOS0wLjZjMC4yIDAuMSAwLjQgMC4xIDAuNiAwLjJsMC4yIDEuMSAwLjIgMC44aDMuNmwwLjItMC44IDAuMi0xLjFjMC4yLTAuMSAwLjQtMC4xIDAuNi0wLjJsMC45IDAuNiAwLjcgMC41IDIuNi0yLjYtMC41LTAuNy0wLjYtMC45YzAuMS0wLjIgMC4yLTAuNCAwLjItMC42bDEuMS0wLjIgMC44LTAuMnYtMy42bC0wLjgtMC4yek0xNSA5bC0xLjcgMC4zYy0wLjEgMC41LTAuMyAxLTAuNiAxLjVsMC45IDEuNC0xLjQgMS40LTEuNC0wLjljLTAuNSAwLjMtMSAwLjUtMS41IDAuNmwtMC4zIDEuN2gtMmwtMC4zLTEuN2MtMC41LTAuMS0xLTAuMy0xLjUtMC42bC0xLjQgMC45LTEuNC0xLjQgMC45LTEuNGMtMC4zLTAuNS0wLjUtMS0wLjYtMS41bC0xLjctMC4zdi0ybDEuNy0wLjNjMC4xLTAuNSAwLjMtMSAwLjYtMS41bC0xLTEuNCAxLjQtMS40IDEuNCAwLjljMC41LTAuMyAxLTAuNSAxLjUtMC42bDAuNC0xLjdoMmwwLjMgMS43YzAuNSAwLjEgMSAwLjMgMS41IDAuNmwxLjQtMC45IDEuNCAxLjQtMC45IDEuNGMwLjMgMC41IDAuNSAxIDAuNiAxLjVsMS43IDAuM3YyeiI+PC9wYXRoPjxwYXRoIGZpbGw9IiM0NDQ0NDQiIGQ9Ik04IDQuNWMtMS45IDAtMy41IDEuNi0zLjUgMy41czEuNiAzLjUgMy41IDMuNSAzLjUtMS42IDMuNS0zLjVjMC0xLjktMS42LTMuNS0zLjUtMy41ek04IDEwLjVjLTEuNCAwLTIuNS0xLjEtMi41LTIuNXMxLjEtMi41IDIuNS0yLjUgMi41IDEuMSAyLjUgMi41YzAgMS40LTEuMSAyLjUtMi41IDIuNXoiPjwvcGF0aD48L3N2Zz4=);
            background-repeat: no-repeat;
            background-position: center;
            background-size: 45%;
            -webkit-transition: .4s;
            transition: .4s; }
          header .h-menu .nav a[href='/backend/companies']:hover {
            background-color: #d3d3d3; }
          @media (max-width: 767px) {
            header .h-menu .nav a[href='/backend/companies'] {
              padding: 7px 10px;
              border: none;
              font-size: 14px; }
              header .h-menu .nav a[href='/backend/companies']:before {
                position: static; }
              header .h-menu .nav a[href='/backend/companies']:hover {
                background-color: transparent; } }
      header .h-menu .nav .dropdown-toggle {
        margin-bottom: 8px; }
        @media (max-width: 767px) {
          header .h-menu .nav .dropdown-toggle {
            margin-bottom: 0; } }
        header .h-menu .nav .dropdown-toggle:after {
          content: "";
          display: inline-block;
          margin-left: 5px;
          vertical-align: bottom;
          border: 6px solid transparent;
          border-top: 6px solid blue; }
      @media (max-width: 767px) {
        header .h-menu .nav .open {
          padding: 0;
          border-bottom-width: 3px;
          border-bottom-style: solid; } }
      header .h-menu .nav .open .dropdown-menu {
        right: 0;
        left: auto;
        padding: 0;
        border: solid 2px #aaa;
        border-radius: 4px;
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3); }
        header .h-menu .nav .open .dropdown-menu:before {
          content: '';
          z-index: 1;
          position: absolute;
          top: -7px;
          right: 20px;
          width: 13px;
          height: 13px;
          background: #fff;
          -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
                  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
          border: solid 2px #aaa;
          -webkit-transform: rotate(45deg);
                  transform: rotate(45deg); }
        header .h-menu .nav .open .dropdown-menu:after {
          content: '';
          z-index: 2;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 10px;
          background: #fff; }
        @media (max-width: 767px) {
          header .h-menu .nav .open .dropdown-menu {
            width: auto;
            border: none; }
            header .h-menu .nav .open .dropdown-menu:before {
              content: none; } }
        header .h-menu .nav .open .dropdown-menu a {
          position: relative;
          padding: 10px;
          z-index: 3;
          text-transform: none;
          line-height: 1;
          -webkit-transition: color .3s;
          transition: color .3s; }
          header .h-menu .nav .open .dropdown-menu a:hover, header .h-menu .nav .open .dropdown-menu a:focus {
            color: #aaa;
            background: #f1f1f1; }
          @media (max-width: 767px) {
            header .h-menu .nav .open .dropdown-menu a {
              text-align: center; } }

.h-acc-dropmenu {
  text-align: right;
  position: relative; }
  .h-acc-dropmenu > .dropdown-toggle {
    width: 48px;
    height: 38px;
    margin: 8px 0;
    padding: 3px 8px;
    border: 1px solid #000;
    border-radius: 4px;
    text-align: center;
    font-size: 20px;
    line-height: 19px;
    background: none;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .h-acc-dropmenu > .dropdown-toggle span {
      -webkit-transition: 0.4s;
      transition: 0.4s; }
    .h-acc-dropmenu > .dropdown-toggle:hover span {
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg); }
  .h-acc-dropmenu > .collapse,
  .h-acc-dropmenu > .collapsing {
    width: 273px;
    position: absolute;
    top: 100%;
    right: 0;
    left: inherit;
    z-index: 1000;
    float: left;
    margin: 2px 0 0;
    padding: 0;
    border: solid 2px #aaa;
    border-radius: 4px;
    background-color: #fff;
    text-align: left;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3); }
    .h-acc-dropmenu > .collapse:before,
    .h-acc-dropmenu > .collapsing:before {
      content: '';
      position: absolute;
      top: -7px;
      right: 20px;
      z-index: -1;
      width: 13px;
      height: 13px;
      background-color: #fff;
      -webkit-box-shadow: -2px -2px 4px 0 rgba(0, 0, 0, 0.3);
              box-shadow: -2px -2px 4px 0 rgba(0, 0, 0, 0.3);
      border: solid 2px #aaa;
      border-right-color: transparent !important;
      border-bottom-color: transparent !important;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg);
      pointer-events: none; }
    .h-acc-dropmenu > .collapse li,
    .h-acc-dropmenu > .collapsing li {
      display: block; }
      .h-acc-dropmenu > .collapse li ul,
      .h-acc-dropmenu > .collapsing li ul {
        margin: 0;
        border-bottom-width: 3px;
        border-bottom-style: solid; }
        .h-acc-dropmenu > .collapse li ul a,
        .h-acc-dropmenu > .collapsing li ul a {
          padding-left: 20px; }
    .h-acc-dropmenu > .collapse a,
    .h-acc-dropmenu > .collapsing a {
      display: block;
      padding: 7px 10px;
      word-wrap: break-word;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
      .h-acc-dropmenu > .collapse a:hover,
      .h-acc-dropmenu > .collapsing a:hover {
        text-decoration: none;
        background-color: #f1f1f1; }
      .h-acc-dropmenu > .collapse a:focus,
      .h-acc-dropmenu > .collapsing a:focus {
        text-decoration: none; }
      .h-acc-dropmenu > .collapse a span,
      .h-acc-dropmenu > .collapsing a span {
        margin-right: 5px; }
    .h-acc-dropmenu > .collapse a[data-toggle="collapse"]:after,
    .h-acc-dropmenu > .collapsing a[data-toggle="collapse"]:after {
      content: "";
      display: inline-block;
      margin-left: 5px;
      vertical-align: bottom;
      border: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-top: 6px solid blue;
      -webkit-transition: 0.4s;
      transition: 0.4s; }
    .h-acc-dropmenu > .collapse a[aria-expanded="true"]:after,
    .h-acc-dropmenu > .collapsing a[aria-expanded="true"]:after {
      border-top: 6px solid transparent !important;
      border-bottom: 6px solid blue;
      vertical-align: top; }
  .h-acc-dropmenu .switch {
    vertical-align: top;
    margin: 0 3px 0 10px;
    width: 30px;
    height: 17px; }
    .h-acc-dropmenu .switch-container {
      padding: 10px 0;
      border-top-width: 1px;
      border-top-style: solid; }
    .h-acc-dropmenu .switch:not(checked) {
      position: absolute;
      opacity: 0; }
    .h-acc-dropmenu .switch + label {
      margin: 0;
      padding: 0 0 0 50px;
      line-height: 1.2;
      cursor: pointer;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
    .h-acc-dropmenu .switch:not(checked) + label {
      position: relative; }
    .h-acc-dropmenu .switch:not(checked) + label:before {
      content: '';
      position: absolute;
      top: 1px;
      left: 10px;
      width: 30px;
      height: 16px;
      border-radius: 8px;
      -webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2);
              box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.2); }
    .h-acc-dropmenu .switch:not(checked) + label:after {
      content: '';
      position: absolute;
      top: 3px;
      left: 14px;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
              box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      -webkit-transition: all .2s;
      transition: all .2s; }
    .h-acc-dropmenu .switch:checked + label:after {
      left: 25px;
      background-color: #000; }

.language-picker-wp {
  margin-right: 15px;
  text-align: right;
  line-height: 0; }
  @media (max-width: 767px) {
    .language-picker-wp {
      line-height: 1.4; } }

.language-picker a:last-child {
  margin-right: 0; }

.language-picker .ua, .language-picker .en {
  margin: 0 5px;
  display: inline-block;
  width: 16px;
  height: 11px;
  background-image: url("../img/flags-small.png");
  background-repeat: no-repeat; }

.language-picker .ua {
  background-position: -32px -78px; }

.language-picker .en {
  background-position: -47px -78px; }

@media (max-width: 767px) {
  .language-picker .ua, .language-picker .en {
    background-image: none;
    margin: 0 3px;
  }

  .language-picker .ua:before, .language-picker .en:before {
    font-size: 16px;
    line-height: 1.4;
  }

  .language-picker .ua:before {
    content: "UA";
  }

  .language-picker .en:before {
    content: "EN";
  }
}

.nav-pills > li > a:hover,
.nav-pills > li > a:focus {
  color: #333;
}

footer {
  margin-top: auto;
  height: auto;
}

.footer {
  min-height: 60px;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #eee;
}

.f-logo a {
  display: block;
  margin-bottom: 5px; }

.f-logo_txt {
  font-size: 12px;
  line-height: 1.2; }

.f-nav {
  margin-top: 20px;
  text-align: center; }
  .f-nav li {
    display: inline-block; }
    .f-nav li:last-child a {
      border-right: none; }
  .f-nav a {
    display: block;
    margin-left: 10px;
    padding-right: 10px;
    border-right: 1px solid;
    font-size: 16px;
    color: #fff; }

.f-soc {
  margin-bottom: 8px;
  text-align: right; }
  .f-soc a {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin: 0 5px; }
    .f-soc a:first-child {
      margin-left: 0; }
    .f-soc a:last-child {
      margin-right: 0; }
  .f-soc .tw {
    background: #1da1f2 url("../img/social/ic-tw.svg") center no-repeat;
    background-size: 14px; }
    .f-soc .tw:hover {
      background: #7dc9f8 url("../img/social/ic-tw.svg") center no-repeat;
      background-size: 14px; }
  .f-soc .email {
    background: #9dd703 url("../img/social/ic-email.svg") center no-repeat;
    background-size: 14px; }
    .f-soc .email:hover {
      background: #aff003 url("../img/social/ic-email.svg") center no-repeat;
      background-size: 14px; }
  .f-soc .fb {
    background: #3b5998 url("../img/social/ic-fb.svg") center no-repeat;
    background-size: 17px; }
    .f-soc .fb:hover {
      background: #718dc8 url("../img/social/ic-fb.svg") center no-repeat;
      background-size: 17px; }
  .f-soc .gp {
    background: #d53e28 url("../img/social/ic-gp.svg") center no-repeat;
    background-size: 18px; }
    .f-soc .gp:hover {
      background: #e68a7d url("../img/social/ic-gp.svg") center no-repeat;
      background-size: 18px; }

.f-partn {
  text-align: right;
  margin-bottom: 10px; }

.f-cr {
  text-align: right;
  font-size: 12px; }

.search-form {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000; }
  .search-form label {
    font-size: 13px; }
    @media (max-width: 991px) {
      .search-form label {
        height: auto;
        margin: 10px 0 0; } }
    @media (max-width: 767px) {
      .search-form label {
        font-size: 14px;
        height: auto; } }
  .search-form .btn-search_cancel {
    margin-right: 10px; }
  @media (max-width: 767px) {
    .search-form .btn-search, .search-form .btn-search_cancel {
      margin: 10px 5px; } }
  .search-form .more-filter-wp label {
    font-size: 12px; }
    @media (max-width: 1199px) {
      .search-form .more-filter-wp label {
        height: 32px; } }
    @media (max-width: 991px) {
      .search-form .more-filter-wp label {
        height: auto; } }
    @media (max-width: 767px) {
      .search-form .more-filter-wp label {
        font-size: 14px; } }

.search-content .new-object {
  margin: 15px 0;
  float: right; }
  @media (max-width: 515px) {
    .search-content .new-object {
      float: none;
      margin-top: 15px;
      text-align: right; } }

.more-filter-btn {
  text-align: center; }
  .more-filter-btn .field-filter {
    display: block;
    position: relative; }
    .more-filter-btn .field-filter:before, .more-filter-btn .field-filter:after {
      content: "";
      display: inline-block;
      position: absolute;
      height: 1px;
      top: 50%;
      margin-top: -3px;
      width: 40%;
      margin-left: 15px;
      margin-right: 15px;
      background-color: #000; }
    .more-filter-btn .field-filter:before {
      left: 0; }
    .more-filter-btn .field-filter:after {
      right: 0; }
  .more-filter-btn label {
    margin: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .more-filter-btn span {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #000;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer; }
    .more-filter-btn span:before, .more-filter-btn span:after {
      top: calc(50% - 20px / 2);
      left: calc(50% - 3px / 2);
      width: 3px;
      height: 20px; }
    .more-filter-btn span:hover {
      background-color: #888; }
    .more-filter-btn span:before, .more-filter-btn span:after {
      content: '';
      position: absolute;
      display: inline-block;
      background-color: #fff;
      border-radius: 2px;
      -webkit-transition: 0.4s;
      transition: 0.4s; }
    .more-filter-btn span:before {
      opacity: 0; }
    .more-filter-btn span:after {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
    .more-filter-btn span.collapsed:before {
      opacity: 1;
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
    .more-filter-btn span.collapsed:after {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg); }

.search-result {
  margin-bottom: 20px;
  padding: 15px;
  border-left: 3px solid #000;
  border-right: 3px solid #000;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px 1px #000;
          box-shadow: 0 2px 4px 1px #000;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .search-result:hover {
    border-color: #666;
    -webkit-box-shadow: 0 4px 4px 1px #000;
            box-shadow: 0 4px 4px 1px #000; }
  .search-result_t {
    margin: 0 0 10px; }
  .search-result_article {
    margin: 8px 0; }
    @media (max-width: 767px) {
      .search-result_article {
        word-wrap: break-word; } }
  .search-result_d {
    margin: 5px 0;
    max-height: 46px;
    overflow: hidden; }
  .search-result_starting-price {
    margin-bottom: 15px; }
  .search-result_price {
    margin: 5px 0; }
  .search-result_status-term {
    display: inline-block;
    margin: 15px 0;
    padding: 5px; }

.item-h {
  margin-top: 20px;
  margin-bottom: 20px; }
  .item-h .item-bl_t,
  .item-h .item-bl_val {
    margin: 3px 0; }
  .item-h .item-bl_t:before {
    content: '•';
    margin-right: 5px;
    font-size: 22px;
    line-height: 1;
    vertical-align: middle; }
  @media (max-width: 767px) {
    .item-h .item-bl_t {
      margin-bottom: 0; }
    .item-h .item-bl_val {
      margin-top: 0; } }

.item-message {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 5px;
  opacity: 0.8; }
  .item-message_t {
    margin-bottom: 8px;
    font-size: 18px; }
  .item-message a {
    text-decoration: underline;
    color: #fff; }
    .item-message a:hover {
      text-decoration: none; }

.item-inf {
  margin: 15px 0; }
  .item-inf_ad {
    font-weight: 700; }
    .item-inf_ad span {
      font-weight: 400; }
    @media (max-width: 767px) {
      .item-inf_ad {
        margin-bottom: 10px; } }
  .item-inf_page-t h1 {
    border: none;
    word-wrap: break-word; }
  .item-inf_price-t {
    height: 38px; }
    @media (max-width: 767px) {
      .item-inf_price-t {
        height: auto; } }
  .item-inf_price-numb {
    margin: 20px 0 10px;
    line-height: 1.1;
    font-size: 36px; }
    @media (max-width: 767px) {
      .item-inf_price-numb {
        margin-top: 0; } }
  .item-inf_d {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #666; }
  .item-inf_t {
    margin: 5px 0;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
    background-color: #eee;
    font-size: 20px; }
  .item-inf_sub-t {
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: -5px;
    font-size: 18px; }
  .item-inf_txt {
    margin-bottom: 20px;
    padding: 10px 30px;
    border-radius: 0 0 5px 5px;
    background-color: #ddd; }
    .item-inf_txt .row .col-sm-6:nth-child(2n) {
      margin-bottom: 10px; }

.item-doc {
  margin-top: 0;
  padding-top: 30px;
  border-top: 1px solid #000; }
  .item-doc:first-child {
    padding-top: 0;
    border-top: none; }
  .item-doc-wp {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000; }
  .item-doc_link {
    margin-bottom: 5px;
    font-size: 15px; }
    .item-doc_link__no-active {
      color: #999; }
    .item-doc_link__old {
      text-decoration: line-through; }
  .item-doc_t {
    margin: 5px 0;
    font-size: 15px; }
  .item-doc_download-stat {
    color: #f00; }

.item-bl_t {
  font-weight: 300; }

.item-bl_val {
  font-weight: 600; }
  .item-bl_val a {
    word-wrap: break-word; }

.gallery {
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  text-align: justify;
}
  @media (max-width: 991px) {
    .gallery {
      -webkit-column-count: 4;
      -moz-column-count: 4;
      column-count: 4;
    } }
  @media (max-width: 767px) {
    .gallery {
      -webkit-column-count: 3;
      -moz-column-count: 3;
      column-count: 3;
    } }
  @media (max-width: 640px) {
    .gallery {
      -webkit-column-count: 2;
      -moz-column-count: 2;
      column-count: 2;
    } }
  @media (max-width: 480px) {
    .gallery {
      -webkit-column-count: 1;
      -moz-column-count: 1;
      column-count: 1;
    } }
  .gallery a {
    margin: 10px 0;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    overflow: hidden;
    /* fix for FF */
  }
    .gallery a:first-child {
      margin-top: 0; }
    .gallery a:last-child {
      margin-bottom: 0; }

.mk-progress-bar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step; }
  .mk-progress-bar:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    height: 12px;
    background-color: #e5e5e5;
    z-index: 1; }
  @media (max-width: 767px) {
    .mk-progress-bar {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .mk-progress-bar:after {
        width: 12px;
        height: calc(100% - 30px);
        top: 0;
        left: 15px;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0); } }
  .mk-progress-bar_item {
    position: relative;
    min-height: 110px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    z-index: 3; }
    @media (max-width: 1199px) {
      .mk-progress-bar_item {
        min-height: 150px; } }
    @media (max-width: 991px) {
      .mk-progress-bar_item:nth-child(2n) .mk-progress-bar_item__title {
        margin-top: 20px; }
      .mk-progress-bar_item:nth-child(2n) .mk-progress-bar_item__remainder {
        margin: 0 0 5px; } }
    @media (max-width: 767px) {
      .mk-progress-bar_item {
        min-height: 100px; } }
    .mk-progress-bar_item:first-child {
      text-align: left; }
      .mk-progress-bar_item:first-child:after {
        left: 0;
        -webkit-transform: translate(0, -50%);
                transform: translate(0, -50%); }
        @media (max-width: 767px) {
          .mk-progress-bar_item:first-child:after {
            -webkit-transform: translate(0);
                    transform: translate(0); } }
      .mk-progress-bar_item:first-child .mk-progress-bar_item__title {
        -webkit-transform: translate(0);
                transform: translate(0); }
    .mk-progress-bar_item:last-child {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
      flex: 1 1 0;
      width: 0;
      max-width: 0;
      min-width: 0;
    }
      .mk-progress-bar_item:last-child:after {
        -webkit-transform: translate(-100%, -50%);
                transform: translate(-100%, -50%); }
      .mk-progress-bar_item:last-child .mk-progress-bar_item__title {
        -webkit-transform: translate(-100%, 0);
                transform: translate(-100%, 0); }
      @media (max-width: 767px) {
        .mk-progress-bar_item:last-child {
          width: 100%;
          min-width: 100%;
          max-width: 100%;
          min-height: 0; }
          .mk-progress-bar_item:last-child:after {
            -webkit-transform: translate(0);
                    transform: translate(0); } }
    .mk-progress-bar_item:after {
      content: counter(step);
      counter-increment: step;
      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;
      width: 30px;
      height: 30px;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      background-color: #a4a4a4;
      -webkit-box-shadow: 0 0 0 5px rgba(115, 115, 115, 0.19);
              box-shadow: 0 0 0 5px rgba(115, 115, 115, 0.19);
      color: #000;
      line-height: 1;
      font-size: 14px;
      border-radius: 50%; }
      @media (max-width: 767px) {
        .mk-progress-bar_item:after {
          top: 0;
          -webkit-transform: translate(0);
                  transform: translate(0); } }
    .mk-progress-bar_item__active:after {
      background-color: #0070d3;
      -webkit-box-shadow: 0 0 0 5px rgba(0, 112, 211, 0.36);
              box-shadow: 0 0 0 5px rgba(0, 112, 211, 0.36);
      color: #fff; }
    .mk-progress-bar_item__active .mk-progress-bar_item__progress {
      position: absolute;
      top: 50%;
      left: 5px;
      right: 15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      display: block;
      width: 0;
      height: 10px;
      border-radius: 5px;
      background-color: #0070d3;
      -webkit-transition: 0.4s;
      transition: 0.4s; }
      @media (max-width: 767px) {
        .mk-progress-bar_item__active .mk-progress-bar_item__progress {
          width: 10px;
          top: 4px;
          left: 10px;
          -webkit-transform: translateY(0);
                  transform: translateY(0); } }
    .mk-progress-bar_item__title {
      display: inline-block;
      -webkit-transform: translate(calc(-50% + 15px), 0);
              transform: translate(calc(-50% + 15px), 0);
      white-space: nowrap;
      font-weight: 700; }
      @media (max-width: 991px) {
        .mk-progress-bar_item__title {
          font-size: 13px; } }
      @media (max-width: 767px) {
        .mk-progress-bar_item__title {
          margin-top: 0 !important;
          line-height: 30px;
          -webkit-transform: translate(45px, 0) !important;
                  transform: translate(45px, 0) !important;
          font-size: 15px; } }
    .mk-progress-bar_item__remainder {
      margin: 5px 0;
      text-align: center;
      font-size: 12px;
      color: #4c4c4c; }
      @media (max-width: 767px) {
        .mk-progress-bar_item__remainder {
          margin: 0 0 10px 45px !important;
          text-align: left; } }
    .mk-progress-bar_item__dates {
      bottom: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      position: absolute;
      display: block;
      text-align: center;
      font-size: 12px;
      color: #4c4c4c; }
      @media (max-width: 767px) {
        .mk-progress-bar_item__dates {
          position: relative;
          margin: 0 0 10px 30px !important;
          text-align: left; } }

.mk-slide-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 90px;
  width: 300px;
  -webkit-box-shadow: 1px 3px 6px 0 #ccc;
          box-shadow: 1px 3px 6px 0 #ccc;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 10; }
  .mk-slide-panel_toggle {
    position: relative;
    width: 30px;
    background-color: #aaa;
    opacity: 0.7;
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s; }
    .mk-slide-panel_toggle:hover, .mk-slide-panel_toggle:focus {
      opacity: 1; }
    .mk-slide-panel_toggle span {
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: -17px;
      margin-top: -12px;
      line-height: 1;
      font-size: 24px;
      -webkit-transition: 1s;
      transition: 1s; }
  .mk-slide-panel_body {
    width: calc(100% - 30px);
    padding: 10px 15px;
    background-color: #eee; }
    .mk-slide-panel_body .title {
      margin-bottom: 10px;
      font-size: 16px;
      font-weight: 600; }
    .mk-slide-panel_body .counter {
      height: 44px;
      margin-bottom: 15px; }
    .mk-slide-panel_body .link {
      width: 100%;
      display: block;
      margin-bottom: 15px;
      border: none;
      text-align: center;
      padding: 8px 0;
      background-color: #fff;
      color: #000;
      -webkit-transition: 0.4s;
      transition: 0.4s; }
      .mk-slide-panel_body .link:hover, .mk-slide-panel_body .link:focus {
        text-decoration: none; }
    .mk-slide-panel_body .search-result_favorite span {
      font-size: 14px; }

.mk-question {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid #000; }
  .mk-question:last-child {
    margin-bottom: 0;
    border: none; }
  .mk-question_date {
    margin: 10px 0 5px; }
  .mk-question_title {
    font-size: 16px;
    font-weight: 700; }
  .mk-question_description {
    margin-bottom: 10px;
    font-style: italic; }
  .mk-question_answer .title {
    font-size: 16px;
    font-weight: 700; }
  .mk-question_answer .text {
    font-style: italic; }

/* table documents in modal windows */
.documents-tbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 0; }
  .documents-tbl_h, .documents-tbl_r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; }
    .documents-tbl_h > div, .documents-tbl_r > div {
      border: 1px solid #ccc;
      padding: 3px 5px; }
    .documents-tbl_h_name, .documents-tbl_h_type, .documents-tbl_h_date, .documents-tbl_r_name, .documents-tbl_r_type, .documents-tbl_r_date {
      width: calc(100% / 3); }
    .documents-tbl_h_name, .documents-tbl_r_name {
      word-break: break-all; }
  .documents-tbl_r {
    -webkit-transition: 0.4s;
    transition: 0.4s; }

@media (max-width: 767px) {
  .documents-tbl_r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 4px solid #000; }
    .documents-tbl_r > div {
      display: block;
      width: 100%;
      text-align: center;
      border: none; }
      .documents-tbl_r > div:before {
        content: attr(data-mtitle);
        display: inline-block;
        margin-right: 5px;
        font-weight: 700; } }

@media print {
  .header-wp,
  .mk-slide-panel {
    display: none; }
  .message {
    border: 1px solid #000;
    border-radius: 2px; }
  .item-bl_t,
  .item-bl_val {
    width: 50% !important;
    text-align: left; }
  .item-inf_t,
  .item-inf_sub-t,
  .item-inf_txt {
    text-align: left; }
  .item-inf_t {
    margin-left: -10px;
    padding: 0; }
  .item-inf_txt {
    margin-bottom: 10px;
    padding: 5px 0 10px;
    border-bottom: 1px solid #000; } }

#keyStatusPanel input[type="file"] {
  opacity: 0;
  visibility: hidden;
}

#PKeyFileName,
#PKeyPassword {
  width: 100% !important;
}

.panel-body {
  background-color: unset!important;
}

/*# sourceMappingURL=core.css.map */
