@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=cyrillic);
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700&subset=cyrillic);
/* @charset "UTF-8"; */
/*
    1. Import fonts, frameworks, helpers
 */
/*!
 * LABELAUTY jQuery Plugin Styles
 *
 * @file: jquery-labelauty.css
 * @author: Francisco Neves (@fntneves)
 * @site: www.francisconeves.com
 * @license: MIT License
 */

body {
  width: 100vw;
}

.hidden_element {
  position: absolute !important;
  top: -1000 !important;
}

/* Prevent text and blocks selection */
input.labelauty+label ::-moz-selection {
  background-color: rgba(255, 255, 255, 0);
}

input.labelauty+label ::selection {
  background-color: rgba(255, 255, 255, 0);
}

input.labelauty+label ::-moz-selection {
  background-color: rgba(255, 255, 255, 0);
}

/* Hide original checkboxes. They are ugly! */
input.labelauty {
  display: none !important;
}

/*
 * Let's style the input
 * Feel free to work with it as you wish!
 */
input.labelauty+label {
  display: table;
  font-size: 11px;
  padding: 10px;
  background-color: #efefef;
  color: #b3b3b3;
  cursor: pointer;
  border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  -webkit-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

/* Stylish text inside label */
input.labelauty+label>span.labelauty-unchecked,
input.labelauty+label>span.labelauty-checked {
  display: inline-block;
  line-height: 16px;
  vertical-align: bottom;
}

/* Stylish icons inside label */
input.labelauty+label>span.labelauty-unchecked-image,
input.labelauty+label>span.labelauty-checked-image {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: bottom;
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-image 0.5s linear;
  -moz-transition: background-image 0.5s linear;
  -webkit-transition: background-image 0.5s linear;
  -o-transition: background-image 0.5s linear;
}

/* When there's a label, add a little margin to the left */
input.labelauty+label>span.labelauty-unchecked-image+span.labelauty-unchecked,
input.labelauty+label>span.labelauty-checked-image+span.labelauty-checked {
  margin-left: 7px;
}

/* When not Checked */
input.labelauty:not(:checked):not([disabled])+label:hover {
  background-color: #eaeaea;
  color: #a7a7a7;
}

input.labelauty:not(:checked)+label>span.labelauty-checked-image {
  display: none;
}

input.labelauty:not(:checked)+label>span.labelauty-checked {
  display: none;
}

/* When Checked */
input.labelauty:checked+label {
  background-color: #3498db;
  color: #ffffff;
}

input.labelauty:checked:not([disabled])+label:hover {
  background-color: #72c5fd;
}

input.labelauty:checked+label>span.labelauty-unchecked-image {
  display: none;
}

input.labelauty:checked+label>span.labelauty-unchecked {
  display: none;
}

input.labelauty:checked+label>span.labelauty-checked {
  display: inline-block;
}

input.labelauty.no-label:checked+label>span.labelauty-checked {
  display: block;
}

/* When Disabled */
input.labelauty[disabled]+label {
  opacity: 0.5;
}

/* Add a background to (un)checked images */
input.labelauty+label>span.labelauty-unchecked-image {
  background-image: url(images/input-unchecked.png);
}

input.labelauty+label>span.labelauty-checked-image {
  background-image: url(images/input-checked.png);
}

/* Video news fix */

.row p>iframe {
  width: 100%;
  padding-right: 20px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "\2190";
}

[dir="rtl"] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "\2192";
}

[dir="rtl"] .slick-next:before {
  content: "\2190";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Add a background to (un)checked images */
input.labelauty+label>span.labelauty-unchecked-image {
  background-image: url("../img/input-unchecked.png");
}

input.labelauty+label>span.labelauty-checked-image {
  background-image: url("../img/input-checked.png");
}

input.labelauty:checked+label {
  background-color: #4DA1FF;
}

input.labelauty:checked:not([disabled])+label:hover {
  background-color: #1579e8;
}

input.labelauty+label {
  margin: 0;
  font-size: 12px;
  padding: 0;
  float: left;
  height: 26px;
  width: 26px;
}

input.labelauty+label+label {
  margin: 3px 0 0;
  cursor: pointer;
  padding-left: 10px;
}

input.labelauty+label>span.labelauty-checked-image,
input.labelauty+label>span.labelauty-unchecked-image {
  display: block;
  width: 10px;
  height: 10px;
  background-size: cover;
  margin: 8px auto;
}

input.labelauty+label>span.labelauty-unchecked-image {
  opacity: 0;
}

input.labelauty[disabled]+label {
  cursor: not-allowed;
}

.slick-next,
.slick-prev {
  height: 40px;
  width: 23px;
  text-indent: -9999px;
  z-index: 10;
}

.slick-next:before,
.slick-next:after,
.slick-prev:before,
.slick-prev:after {
  display: none;
}

.slick-prev {
  left: 15px;
}

.slick-next {
  right: 15px;
}

.slick-prev,
.slick-prev:hover {
  background: url(../img/icon-arrow-prev.png) no-repeat 0 0;
}

.slick-next,
.slick-next:hover {
  background: url(../img/icon-arrow-next.png) no-repeat 0 0;
}

.dz-progress {
  display: none;
}

.dropzone.dz-started .dz-message {
  display: block;
}

/*
    1. Visual Grid settings (required neat helpers)
 */
/*
    2. Grid settings
 */
/*
    3. Media Breakpoints
 */
/*
    4. Typography settings
 */
/*
    5. Colors settings
 */
/*
    Description: init mixins here.

    Content:
    1. Mixin: Vertical Align
    2. Mixin: Horizontal Align
    3. Mixin: Disable User Select
    4. Mixin: Placeholder Color
    5. Mixin: Remove Appearance
    6. Mixin: Box Shadow
    7. Mixin: Opacity
    8. Mixin: transition
    9. Mixin: transition-with-delay
    10. Mixin: Transform
    11. Mixin: Background
    12. Mixin: Keyframes
 */
/*
    1. Mixin: Vertical Align
       Usage example: @import vertical-align();
 */
/*
    2. Mixin: Horizontal Align
       Usage example: @import horizontal-align();
 */
/*
    3. Mixin: Disable User Select
       Usage example: @import disable-select();
 */
/*
    4. Mixin: Placeholder Color
       Usage example: @import placeholder-color(#000);
 */
/*
    5. Mixin: Remove Appearance
       Usage example: @import remove-appearance();
 */
/*
    6. Mixin: Box Shadow
       Usage example: @import box-shadow(inset 0 0 5px #000000);
 */
/*
    7. Mixin: Opacity
       Usage example: @import opacity(75);
 */
/*
    8. Mixin: Transition
       Usage example: @import transition(color 300ms ease, padding 300ms ease 0ms);
 */
/*
    9. Mixin: Transition With Delay
       Usage example: @import transition-with-delay(color 300ms ease, 0.5s);
 */
/*
    10. Mixin: Transform
       Usage example: @import transform(rotate(15deg));
 */
/*
    11. Mixin: Background
        Usage example: @import bg('../img/image.jpg',  cover, no-repeat, top center);
 */
/*
    12. Mixin: Keyframes
        Usage example: @import keyframes(animationName) {...};
 */
/*
    13. Mixin: aspect ratio
 */
html,
body {
  height: 100%;
}

input,
textarea {
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  font-weight: 300;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  font-weight: 300;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  font-weight: 300;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  font-weight: 300;
}

textarea {
  resize: none;
}

button {
  outline: none;
  cursor: pointer;
}

button:hover,
button:active,
button:focus {
  outline: none;
}

input[type="checkbox"] {
  appearance: checkbox;
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
}

input[type="radio"] {
  appearance: radio;
  -moz-appearance: radio;
  -webkit-appearance: radio;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #1e9ee0;
}

a:hover {
  text-decoration: none;
  color: #006bad;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  font-size: 14px;
  font-weight: 400;
  background-color: #FFF;
  padding-top: 94px;
}

@media (min-width: 992px) {
  body {
    padding-top: 116px;
  }
}

body {
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fonts-loaded body {
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/**
    1. Buttons
 */
.btn {
  border-radius: 3px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.btn:focus,
.btn:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-lg {
  padding: 9px 0;
}

.btn-orange {
  background-color: #ff5722;
  border-color: #ff5722;
  color: #fff;
}

.btn-orange:hover {
  background-color: #e63e09;
  border-color: #e63e09;
  color: #fff;
}

.btn-orange:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(232, 61, 0, 0.27);
  box-shadow: 0 0 0 0.2rem rgba(232, 61, 0, 0.27);
}

.btn-primary {
  background-color: #1e9ee0;
  border-color: #1e9ee0;
  color: #fff;
}

.btn-primary:hover {
  background-color: #006bad;
  border-color: #006bad;
  color: #fff;
}

.btn-primary:hover .announcement__phone-info {
  opacity: 0.7;
}

.btn-outline-primary {
  border-color: #1e9ee0;
  color: #1e9ee0;
}

.btn-outline-primary:hover {
  border-color: #006bad;
  color: #006bad;
  background-color: #fff;
}

.btn-sort {
  border-radius: 3px 3px 0 0 !important;
  padding-left: 12px;
  padding-right: 12px;
  background-color: transparent;
}

.btn-sort.active {
  border: 1px solid #f0f0f0;
  border-bottom: none;
  background-color: #FFF;
  color: #1e9ee0;
}

.btn-sort:hover {
  color: #1e9ee0;
}

.btn-link {
  color: #1e9ee0;
}

.btn-link:hover {
  color: #006bad;
}

/**
    2. Dropdown
 */
.dropdown-menu {
  font-size: 0.8rem;
  min-width: 9rem;
  border-radius: 0;
  border: none;
  margin: 0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .dropdown-menu {
    border-top: 1px solid #f0f0f0;
    top: 98%;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.dropdown-toggle {
  line-height: 2;
}

.dropdown-item {
  padding: .25rem 0.75rem;
  -webkit-transition: none;
  transition: none;
}

.dropdown-item .fa-sign-in {
  margin-right: 6px;
  width: 13px;
}

.dropdown-item .fa-user-plus {
  margin-right: 2px;
  width: 17px;
}

.dropdown-item:hover {
  background-color: #fff;
}

a.dropdown-item:hover,
button.dropdown-item:hover,
a.dropdown-item:focus,
button.dropdown-item:focus {
  background-color: #1e9ee0;
  color: #FFF;
}

.dropdown-toggle::after {
  top: 2px;
  position: relative;
}

.dropdown-item-divider {
  height: 1px;
  overflow: hidden;
  margin: 8px 0;
  background-color: #ececec;
}

/**
    3. Modals
 */
.modal-dialog {
  margin: 5rem auto;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 400px;
  }
}

@media (min-width: 576px) {
  .modal-dialog.modal-xl {
    max-width: 800px;
  }
}

.row-center {
  margin: auto 0;
  margin-top: 1rem;
}

.modal-region-centered,
.modal-dialog-centered {
  margin: 0 auto;
}

.modal-region {
  margin: 5rem auto;
}

@media (min-width: 576px) {
  .modal-region {
    max-width: 700px;
  }
}

.modal-content {
  border-radius: 0.2rem;
  border: none;
}

.modal-header {
  background: #f7f7f7;
  padding: 1.15rem 2.2rem 1rem 1.5rem;
  border: none;
  color: #212529;
  border-bottom: 1px solid #e0e0e0;
  border-top-left-radius: .2rem;
  border-top-right-radius: .2rem;
}

.modal-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.modal-body {
  padding: 2rem;
}

/**
    4. Forms
 */
.form-control {
  border-radius: 0.2rem;
  height: calc(2rem + 2px);
  font-size: 0.9rem;
}

.form-control::-webkit-input-placeholder {
  color: #888;
}

.form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #888;
}

.form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #888;
}

.form-control:-ms-input-placeholder {
  color: #888;
}

label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: .5rem;
  text-transform: uppercase;
  display: block;
}

.form-control {
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  padding: 10px;
  line-height: 1;
  height: auto;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #d7d7d7;
  border-radius: 3px;
}

.form-control:focus,
.form-control:active {
  box-shadow: none;
  -webkit-box-shadow: none;
  border-color: #d7d7d7;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.fade.in {
  opacity: 1;
}

.nav-tabs .nav-item .nav-link.disabled {
  cursor: not-allowed;
}

.main-tabs {
  position: relative;
  justify-content: space-between;
  margin-bottom: 30px;
}

.main-tabs li.nav-item {
  flex-grow: 1;
}

.main-tabs a.nav-link {
  color: #000;
  font-weight: 500;
  font-size: 1.3em;
  width: 100%;
  text-align: center;
  border-radius: 0;
  border: none;
}

.main-tabs a.nav-link.active {
  background-color: #1E9EE0;
  color: #fff;
  position: relative;
}

.main-tabs .nav-link:hover,
.main-tabs .nav-link:focus {
  border-color: transparent;
  background-color: #eee;
}

@media (min-width: 992px) {

  .main-tabs {
    /*top: -42px;*/
    margin-bottom: 50px;
  }

  .main-tabs a.nav-link.active {
    border-radius: 0 0 4px 4px;
    top: 10px;
  }


  .main-tabs a.nav-link.active::before {
    content: '';
    display: block;
    position: absolute;
    top: -11px;
    left: 0px;
    height: 11px;
    width: 100%;
    background-color: #1E9EE0;
  }

}

.modal-body .btn.btn-sm {
  padding: .4rem .75rem;
}

.section .container.profile-settings-container .alert-success {
  display: flex;
  position: static;
  margin-top: 0px;
  padding: 0.75rem 1.25rem;
}

.profile-settings-container .message-caontainer {
  margin-top: 0px !important;
}

fieldset {
  min-width: 0;
  padding: 18px 18px 0;
  margin: 0;
  border: 1px solid #ececec;
  background: #FFF;
  border-radius: 2px;
}

.announcement-container {
  padding: 20px 0;
}

.add-vechicle-fieldset {
  padding: 0;
  border: none;
}

.add-vechicle-fieldset .add-vehicle.active {
  padding: 10px;
}

.ann-sum {
  margin: 0;
}

fieldset+fieldset {
  margin-top: 30px;
}

legend {
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.form-label--required {
  position: relative;
}

.form-label--required:after {
  content: ' *';
  font-weight: bold;
  color: #D74721;
}

select.form-control {
  height: 41px;
}

@media (max-width: 991px) {
  .navbar__profile .dropdown {
    position: static;
  }

  .navbar__profile .dropdown .dropdown-menu {
    width: 100%;
  }
}

.badge-warning {
  background-color: #ff5722;
  color: #FFF;
}

.cursor-pointer {
  cursor: pointer;
}

/**
    Custom ICONS
 */
.icon-plus {
  font-size: 18px;
  line-height: 16px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .navbar__tools .icon-plus {
    font-size: 52px;
    display: block;
    line-height: normal;
  }

  .navbar__profile {
    font-size: 24px;
  }

  .burger {
    font-size: 22px;
  }

  .navbar__language_mobile {
    margin: 0px 20px;
    font-weight: bold;
  }

  .navbar__language_mobile a {
    font-size: 22px;
    display: block;
    line-height: normal;
  }
}

.form-socials a {
  display: block;
}

.form-socials a+a {
  margin-left: 10px;
}

.form-social-icon {
  height: 32px;
  width: 32px;
  display: block;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.form-social-icon:hover {
  opacity: 0.75;
}

.form-social-icon--facebook {
  background: url("../img/social-icons.png") 0px -138px/32px no-repeat;
}

.form-social-icon--twitter {
  background: url("../img/social-icons.png") 0px -172px/32px no-repeat;
}

.form-social-icon--google-plus {
  background: url("../img/social-icons.png") 0px -206px/32px no-repeat;
}

.form-social-icon--instagram {
  background: url("../img/social-icons.png") 0px -784px/32px no-repeat;
}

.form-social-icon--yandex {
  background: url("../img/social-icons.png") 0px -240px/32px no-repeat;
}

.form-social-icon--vkontakte {
  background: url("../img/social-icons.png") 0px -36px/32px no-repeat;
}

/**
    Slogan
 */
.slogan {
  font-style: italic;
  color: #777;
  line-height: 1.75;
  margin: 12px 0 6px;
}

/**
    Headers
 */
.small-header {
  font-weight: bold;
  font-size: 16px;
}

.no-arrows::-webkit-inner-spin-button,
.no-arrows::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.loader-ellips {
  font-size: 14px;
  /* change size here */
  position: relative;
  width: 4em;
  height: 1em;
  margin: 12px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #666666;
  position: absolute;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}

.loader-ellips__dot:nth-child(3) {
  left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
  left: 3em;
}

@-webkit-keyframes reveal {
  from {
    -webkit-transform: scale(0.001);
    transform: scale(0.001);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes reveal {
  from {
    -webkit-transform: scale(0.001);
    transform: scale(0.001);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes slide {
  to {
    -webkit-transform: translateX(1.5em);
    transform: translateX(1.5em);
  }
}

@keyframes slide {
  to {
    -webkit-transform: translateX(1.5em);
    transform: translateX(1.5em);
  }
}

.loader-ellips__dot:nth-child(1) {
  -webkit-animation-name: reveal;
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  -webkit-animation-name: slide;
  animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
  -webkit-animation-name: reveal;
  animation-name: reveal;
  animation-direction: reverse;
}

.color-orange {
  color: orange;
}

.body-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100vh - 116px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.body-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.title-medium {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 12px;
  line-height: 25px;
}

.title-medium a {
  font-weight: normal;
  font-size: 14px;
}

.title-medium.lh-1 {
  line-height: 1.2;
}

.text-overflow-ellipsis,
.announcement-card__title,
.announcement-list__item-title,
.announcement-card__category,
.announcement-list__item-category,
.announcement-card__add-to-favorite,
.announcement-list__item-add-to-favorite {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*.section {
  padding: 12px 0 12px;
}

@media (min-width: 768px) {
  .section {
    padding: 24px 0;
  }
}

@media (min-width: 992px) {
  .section {
    padding: 42px 0;
  }
}*/

.section+.section {
  padding-top: 12px;
}

@media (min-width: 992px) {
  .toolbar-sort-actions {
    margin-top: -42px;
  }
}

.toolbar-sort-actions .btn-toolbar .btn-group {
  width: 100%;
}

@media (min-width: 992px) {
  .toolbar-sort-actions .btn-toolbar .btn-group {
    width: auto;
  }
}

.top-block__list {
  padding-left: 1px;
  padding-top: 1px;
  width: 100%;
  margin: 0;
}

.content-main__heading {
  font-size: 21px;
  color: #121212;
  margin: 18px 0 12px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .content-main__heading {
    margin: 24px 0 12px;
  }
}

.color-danger {
  color: #dc3545;
}

a.color-danger:hover {
  color: #c82333;
}

.loader--cats {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.loader--cats .loader-ellips {
  top: 50%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #000;
  height: 100%;
  width: 100%;
  display: block;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: opacity 240ms ease, visibility 240ms ease;
  transition: opacity 240ms ease, visibility 240ms ease;
}

@media (min-width: 992px) {
  .overlay {
    display: none;
  }
}

.overlay.active {
  visibility: visible;
  opacity: 0.5;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .u-hide-on-mob {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-hide-on-desk {
    display: none !important;
  }
}

@media screen and (max-width: 992px) {
  .u-overflow-x-scroll {
    overflow-x: scroll;
  }
}

.alert .title-medium {
  font-size: 18px;
}

.alert-info-with-icon {
  background-image: url("../img/icon-notice.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: auto;
  padding-left: 42px;
  background-color: #e3f7fc;
  border-color: #b4dee9;
  color: #31708f;
}

.alert-danger-with-icon {
  background-image: url("../img/icon-danger.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: auto;
  padding-left: 42px;
  background-color: #ffecec;
  border-color: #f1bdbd;
  color: #a94442;
}

.alert-warning {
  background-image: url("../img/icon-warning.png");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: auto;
  padding-left: 42px;
  background-color: #fff8c4;
  border-color: #eee180;
  color: #8a6d3b;
}

.alert-warning .title-medium {
  margin-bottom: 0;
}

.section .container .alert {
  display: none;
}

.section .container .alert.show {
  display: block;
}

.section .container .alert-success {
  position: absolute;
  display: none;
  padding: 0px;
  margin-bottom: 0px;
  margin-top: 70px;
}

/*
    4. Import components
 */
.navbar {
  padding: 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 1px 6px rgba(25, 25, 25, 0.075);
  box-shadow: 0 1px 6px rgba(25, 25, 25, 0.075);
  z-index: 100;
}

.menu-fix {
  display: flex;
  align-items: center;
}



.navbar__header {
  border-bottom: 1px solid #f0f0f0;
  background-color: #fff;
}

.navbar__logo {
  max-width: 110px;
  margin: 8px 0px 12px;
  max-height: 52px;
}

.openMenuBtn-1 {
  display: none;
}

.openMenuBtn-2 {
  display: none;
}

@media (min-width: 992px) {
  .navbar__logo {
    max-width: 150px;
  }
}

.navbar__language {
  margin-right: 24px;
  padding-right: 24px;
  border-right: 1px solid #e5e5e5;
}

.navbar__language .fa-globe {
  margin-right: 2px;
}

.navbar__profile .fa-user-circle-o {
  margin-right: 2px;
}

@media (min-width: 1200px) {
  .navbar__profile {
    margin-right: 48px;
  }

  form.js-search-form-header {
    margin-left: 177px;
  }
}

@media (max-width: 1200px) {
  .navbar__profile {
    margin-right: 33px;
  }

  form.js-search-form-header {
    margin-left: 163px;
  }
}

@media (max-width: 991px) {
  form.js-search-form-header {
    margin-left: 190px;
  }
}

@media (max-width: 768px) {
  form.js-search-form-header {
    margin-left: 0px;
    margin-bottom: 20px;
  }

  .navbar__profile {
    margin-right: 0;
  }
}

.navbar__language_mobile {
  margin: 0px 20px;
  font-weight: bold;
  display: block;
}

@media (min-width: 992px) {
  .navbar__language_mobile {
    display: none;
  }
}

.burger {
  margin-left: 24px;
}



.navbar__nav {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  -webkit-box-shadow: 0 1px 6px rgba(25, 25, 25, 0.05);
  box-shadow: 0 1px 6px rgba(25, 25, 25, 0.05);
  will-change: transform;
  -webkit-transition: transform 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

#gray {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 99;
  background-color: #000;
}

.gray-closed {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media (min-width: 992px) {
  .navbar__nav {
    display: block;
  }
}

.navbar__nav-item {
  position: relative;
  border-right: 1px solid #f0f0f0;
  white-space: nowrap;
}

.navbar__nav-item:last-child {
  border-right: none;
}

.navbar__nav-link {
  display: block;
  padding: 0 12px;
  line-height: 36px;
  color: #111;
}

@media (min-width: 414px) {
  .navbar__nav-link {
    padding: 0 24px;
  }
}

@media (min-width: 992px) {
  .navbar__nav-link {
    line-height: 42px;
  }
}

.hero,
.announcement-categories {
  background: #f5f5f5;
  padding: 5px 0 30px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  -webkit-box-shadow: inset 0 1px 6px rgba(40, 40, 40, 0.015);
  box-shadow: inset 0 1px 6px rgba(40, 40, 40, 0.015);
}

@media (min-width: 992px) {

  .hero,
  .announcement-categories {
    display: block;
  }
}

.is-homepage .hero,
.is-homepage .announcement-categories {
  display: block;
}

.hero__search-area {
  padding: 18px;
  margin-bottom: -8px;
  border-radius: 0.2rem;
}

/*@media (min-width: 768px) {
  .hero__search-area {
    margin-bottom: 16px;
  }
}*/

.hero__search-area button {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__search-area--hp {
  background-color: #1e9ee0;
}

.hero__search-area--small {
  padding: 0;
  margin-bottom: 0;
}

.hero__search-area-term {
  background: #fff url("../img/icon-search.svg") no-repeat 10px 12px;
  padding: 12px 12px 12px 36px;
  border: 1px solid #d7d7d7;
}

.hero__search-area--hp .hero__search-area-term {
  border: none;
}

@media (min-width: 768px) {
  .hero__search-area-term {
    background-position: 10px 8px;
    padding: 8px 12px 7px 36px;
  }
}

.hero__search-area-region {
  border-radius: 0.2rem;
  padding: 12px 12px 12px 36px;
  color: #888;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  background: #fff url("../img/icon-map.svg") no-repeat 10px 12px;
  border: 1px solid #d7d7d7;
}

.hero__search-area--hp .hero__search-area-region {
  border: none;
}

@media (min-width: 768px) {
  .hero__search-area-region {
    background-position: 10px 8px;
    padding: .375rem .75rem .375rem 36px;
    height: calc(2rem + 2px);
  }
}

.hero__search-area-cat {
  border-radius: 0.2rem;
  padding: 12px 12px 12px 36px;
  color: #888;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  background: #fff url("../img/icon-cat.svg") no-repeat 10px 12px;
  border: 1px solid #d7d7d7;
}

/* .hero__search-area--hp .hero__search-area-cat {
  border: none;
} */

@media (min-width: 768px) {
  .hero__search-area-cat {
    background-position: 10px 8px;
    padding: .375rem .75rem .375rem 36px;
    height: calc(2rem + 2px);
  }
}

.region-item.active {
  color: grey;
  text-decoration: underline;
}

.region-item.active:hover {
  color: inherit;
}

.hero__search-area-button {
  padding: 13px 12px 11px;
  background-color: #006bad;
  text-transform: uppercase;
  color: #FFF;
  width: 100%;
  letter-spacing: .25px;
  font-size: 0.9rem;
  border-radius: 0.2rem;
}

.hero__search-area-button .fa {
  margin-right: 2px;
  vertical-align: text-top;
}

.hero__search-area-button:hover {
  color: #FFF;
  background-color: #025b92;
}

@media (min-width: 768px) {
  .hero__search-area-button {
    padding: .375rem .75rem;
    height: calc(2rem + 2px);
  }
}

.hero__categories-icon {
  background-color: #fff;
  border-radius: 100%;
  overflow: hidden;
  height: 54px;
  width: 54px;
  min-width: 54px;
  text-align: center;
  position: relative;
  -webkit-transition: box-shadow 250ms ease;
  -webkit-transition: -webkit-box-shadow 250ms ease;
  transition: -webkit-box-shadow 250ms ease;
  transition: box-shadow 250ms ease;
  transition: box-shadow 250ms ease, -webkit-box-shadow 250ms ease;
}

.hero__categories-icon img {
  max-width: 42px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero__categories-item {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 0;
  border-top: 1px solid #e8e8e8;
}

.hero__categories-item:hover .hero__categories-icon {
  -webkit-box-shadow: 0 1px 6px rgba(25, 25, 25, 0.2);
  box-shadow: 0 1px 6px rgba(25, 25, 25, 0.2);
}

@media (min-width: 768px) {
  .hero__categories-item {
    margin-bottom: 30px;
    padding: 0;
    border-radius: 8px;
    border-top: none;
  }
}

.hero__categories-list .col-lg-3:nth-of-type(1) .hero__categories-item {
  border-top: none;
}

.hero__categories-title {
  padding-left: 12px;
  font-weight: 600;
  color: #111;
}

.hero__categories-title:hover {
  color: #006bad;
}

@media (min-width: 992px) {
  .hero__categories-title {
    word-break: break-word;
  }
}

@media (max-width: 991px) {
  .hero__categories-title {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.hero__subcategories__title {
  border-bottom: 1px solid #e8e8e8;
  padding: 0 0 18px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 18px;
}

.hero__subcategories__arrow {
  z-index: 4;
  border: 1px solid #efefef;
  border-right: 0;
  border-bottom: 0;
  background: #fff;
  height: 20px;
  width: 20px;
  position: absolute;
  top: -11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .hero__subcategories__arrow {
    left: 32px !important;
  }
}

.hero__subcategories {
  position: relative;
  background: #fff;
  border: 1px solid #efefef;
  padding: 24px 24px 12px;
  margin: 15px 0 24px;
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__subcategories {
    margin: 0 0 24px;
  }
}

.hero__subcategories__item {
  width: 100%;
  display: block;
  float: left;
  margin-bottom: 18px;
}

@media screen and (min-width: 1024px) {
  .hero__subcategories__item {
    width: 25%;
    margin-bottom: 12px;
  }
}

.hero__subcategories-wrapper {
  padding: 0 14px;
  width: 100%;
}

.footer {
  position: relative;
  color: #666;
  font-size: 0.8rem;
}

.footer__wrapper {
  padding: 34px 0;
  border-top: 1px solid #f0f0f0;
}

.footer__nav-link {
  margin-right: 18px;
  background-color: #1e9ee0;
  color: #fff;
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

.footer__nav-link:hover {
  color: #333;
  text-decoration: underline;
}

.footer__nav-link.dropdown-toggle {
  line-height: 1.5;
}

.footer__copyright {
  font-size: 12px;
}

.text-block {
  padding: 42px 0 12px;
  margin-bottom: 18px;
}

.text-block h1 {
  font-weight: bold;
  font-size: 16px;
}

.text-block__text {
  font-size: 12px;
  color: #666;
}

.text-block__header {
  color: #444;
}

.text-block__header .small-header {
  margin-bottom: 12px;
  margin-top: 6px;
}

.text-block__social-item+.text-block__social-item {
  margin-left: 18px;
}

.text-block__social-icon {
  max-width: 100px;
  display: block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: .5;
}

.text-block__social-icon:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

.text-block__social-icon--facebook {
  width: 100px;
}

.text-block__social-icon--instagram {
  width: 100px;
  opacity: .4;
}

.text-block__social-icon--vk {
  width: 24px;
}

.button-up {
  position: fixed;
  z-index: 999;
  display: none;
  right: 40px;
  bottom: 30px;
  cursor: pointer;
  border: 1px solid #d7d7d7;
  height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 2px;
  background-image: url("/assets/dist/img/up-arrow.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFF;
}

@media (max-width: 991px) {
  .button-up {
    display: none !important;
  }
}

.articles__item {
  position: relative;
  margin-bottom: 30px;
}

.articles__item::after {
  clear: both;
  content: "";
  display: block;
}

@media (min-width: 992px) {
  .articles__item-title--feature {
    display: none;
  }
}

.articles__item-meta {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 18px 18px 12px;
}

@media (min-width: 992px) {
  .articles__item-meta {
    float: left;
    width: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 8px 12px;
  }
}

.articles__item--first .articles__item-meta,
.articles__item--second .articles__item-meta,
.articles__item--third .articles__item-meta {
  height: auto;
  width: 100%;
  float: none;
  width: 100%;
  height: auto;
  padding: 18px;
}

@media (min-width: 992px) {

  .articles__item--first .articles__item-title--feature,
  .articles__item--second .articles__item-title--feature,
  .articles__item--third .articles__item-title--feature {
    display: block;
    margin-left: 0;
  }
}

.articles__item--first .articles__item-title a,
.articles__item--first .article__title a,
.articles__item--second .articles__item-title a,
.articles__item--second .article__title a,
.articles__item--third .articles__item-title a,
.articles__item--third .article__title a {
  color: #FFF;
}

.articles__item--first .articles__item-content,
.articles__item--second .articles__item-content,
.articles__item--third .articles__item-content {
  display: none;
}

.articles__item-date {
  font-size: 12px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.75);
}

.articles__item-content {
  display: none;
}

@media (min-width: 992px) {
  .articles__item-content {
    display: block;
    float: left;
    padding-left: 18px;
    width: 50%;
    height: 150px;
    position: relative;
  }
}

@media (min-width: 992px) {
  .articles__item-content-text {
    position: absolute;
    bottom: 0;
    left: 18px;
  }
}

.articles__item-category {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.articles__item-poster::after {
  clear: both;
  content: "";
  display: block;
}

@media (min-width: 992px) {
  .articles__item-poster {
    width: 50%;
    float: left;
  }
}

.articles__item-poster img {
  width: 100% !important;
  display: block;
  height: 220px !important;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 992px) {
  .articles__item-poster img {
    height: 150px !important;
  }
}

.articles__item--first .articles__item-poster,
.articles__item--second .articles__item-poster,
.articles__item--third .articles__item-poster {
  float: none;
  width: 100%;
}

@media (min-width: 992px) {

  .articles__item--first .articles__item-poster img,
  .articles__item--second .articles__item-poster img,
  .articles__item--third .articles__item-poster img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
  }
}

.articles__item-title,
.article__title {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.5px;
  max-height: 50px;
  overflow: hidden;
}

@media (max-width: 991px) {

  .articles__item-title a,
  .article__title a {
    color: #FFF;
  }
}

@media (min-width: 992px) {
  .articles__item--first {
    height: 420px;
  }
}

@media (min-width: 992px) {
  .articles__item--second {
    height: 195px;
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  .articles__item--third {
    height: 195px;
  }
}

.article__date {
  font-size: 13px;
  margin-top: -8px;
}

.article__content {
  line-height: 1.5;
  font-size: 14px;
}

.article__content img {
  max-width: 100%;
  height: auto !important;
  display: inline-block;
}

.article__content>div:first-child,
.article__content p:first-child,
.article__content h1:first-child,
.article__content h2:first-child,
.article__content h3:first-child,
.article__content h4:first-child,
.article__content h5:first-child,
.article__content h6:first-child {
  margin-top: 0;
}

.article__footer {
  padding: 18px 12px;
  margin-top: 18px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  color: #666666;
  background: #f5f5f5;
  font-weight: 500;
}

.article__messages {
  padding: 0 11px 0 15px;
}

.article__details-title,
.infoblock__title {
  margin-top: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}

.article__details-title h5,
.infoblock__title h5 {
  background-color: #fff;
  font-size: 16px;
  position: relative;
  top: 10px;
  padding-right: 12px;
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
  font-weight: 700;
}

.articles-related__title h3 {
  font-size: 18px;
}

@media (min-width: 768px) {
  .articles-related__title h3 {
    font-size: 24px;
  }
}

.article__sidebar .title-promo {
  margin-top: 0;
}

.announcement-card {
  border: 1px solid #ececec;
  padding: 8px;
  margin-left: -1px;
  margin-top: -1px;
}

.announcement-card__image {
  display: block;
  height: 170px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 12px;
}

.announcement-card__title,
.announcement-list__item-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 21px;
  margin: 0 0 6px;
}

.announcement-card__category,
.announcement-list__item-category {
  color: #666666;
  font-size: 13px;
  line-height: 1;
  margin: 0 0 18px;
}

.announcement-card__image-container,
.announcement-list__item-container {
  display: block;
  position: relative;
}

.announcement-card__add-to-favorite,
.announcement-list__item-add-to-favorite {
  position: absolute;
  top: 6px;
  left: 6px;
  height: 30px;
  width: 30px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  overflow: hidden;
  font-size: 21px;
  line-height: 34px;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  padding-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.announcement-card__add-to-favorite:hover,
.announcement-list__item-add-to-favorite:hover {
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.2);
  width: 136px;
}

.announcement-card__add-to-favorite span,
.announcement-list__item-add-to-favorite span {
  font-size: 12px;
  margin-left: 6px;
}

.announcement-card__add-to-favorite.color-orange:hover,
.color-orange.announcement-list__item-add-to-favorite:hover {
  width: 146px;
}

.announcement-card__location,
.announcement-list__item-location {
  font-weight: 500;
  font-size: 13px;
  margin: 0 0 6px;
  line-height: 1.2;
}

.announcement-card__location i,
.announcement-list__item-location i {
  color: #ff5722;
}

.announcement-card__date {
  font-size: 13px;
  line-height: 1;
  margin: 0 0 6px;
  padding: 0 0 12px;
  color: #666666;
  border-bottom: 1px solid #ececec;
}

.announcement-card__price {
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  min-height: 22px;
  display: inline-block;
}

.announcement-list__item {
  padding: 15px 0;
}

.announcement-list__item+.announcement-list__item {
  border-top: 1px solid #ececec;
}

.announcement-list__item-image {
  display: block;
  height: 170px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .announcement-list__item-image--order {
    height: 100px;
    width: 100%;
  }
}

.announcement-list__item-title {
  margin-bottom: 12px;
  color: #006bad;
}

.announcement-list__item-title .is-shop {
  display: inline;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  padding: 4px 8px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-left: 3px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: #1e9ee0;
}

.announcement-list__item-title .is-shop--small {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 0px 8px;
}

.announcement-link {
  display: inline-block;
  padding: 5px;
  margin-top: 5px;
  border-radius: 3px;
  color: #fff;
  font-size: 15px;
}

.announcement-link:hover {
  color: #f1f1f1;
  filter: brightness(1.17);
}

@media (min-width: 992px) {
  .announcement-list__item .announcement-list__item-title {
    padding-right: 140px;
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
  }
}

@media (max-width: 991px) {
  .announcement-list__item-title {
    width: 60%;
    white-space: normal;
  }

  .shop-list .announcement-list__item-title {
    width: 100%;
  }
}

.announcement-list__item-title--order {
  white-space: normal;
}

.announcement-list__item-category {
  font-size: 14px;
  color: #121212;
  font-weight: bold;
  margin-bottom: 5px;
}

.announcement-list__item-category--small {
  color: #666666;
  font-weight: normal;
}

.announcement-list__item-text {
  color: #666666;
  font-size: 13px;
  min-height: 57px;
  margin-top: 10px;
}

.announcement-list__item-container {
  margin-bottom: 10px;
}

.announcement-list__item-location {
  font-weight: bold;
  margin-bottom: 0;
}

.announcement-list__item-date {
  font-size: 13px;
  color: #666666;
}

.announcement-list__item-price {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 6px;
  right: 15px;
}

.announcement-list__item-price strike {
  color: #777 !important;
}

@media (min-width: 768px) {
  .announcement-list__item-price {
    position: absolute;
    top: 0;
    right: 30px;
  }
}

.announcement-list__item-price--bottom {
  position: relative;
  display: inline-block;
  right: unset;
  margin-bottom: 10px;
}

.announcement-list__item-delimeter {
  border-top: 1px solid #f0f0f0;
}

.announcement-categories {
  background-color: #fff;
  padding: 0;
  -webkit-box-shadow: inset 0px 0px 24px rgba(40, 40, 40, 0.05);
  box-shadow: inset 0px 0px 24px rgba(40, 40, 40, 0.05);
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #f0f0f0;
}

.announcement-categories__list {
  border-right: 1px solid #ececec;
  min-width: 20%;
}

.announcement-categories__list:nth-child(5) {
  border-right: none;
}

@media (max-width: 992px) {
  .announcement-categories__list {
    min-width: 100%;
    display: none;
  }

  .announcement-categories__list:last-child {
    display: block;
  }
}

.announcement-categories__item-link {
  background-color: transparent;
  border: none;
  padding: 8px 12px;
  text-align: left;
  color: #121212;
  font-size: 13px;
  width: calc(100% + 1px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.announcement-categories__item-link:hover {
  background-color: #1e9ee0;
  color: #FFF;
}

.clicked .announcement-categories__item-link {
  background-color: #1e9ee0;
  color: #FFF;
}

.announcement-container {
  background-color: #f5f5f5;
}

@media (max-width: 767px) {
  .body-content {
    padding: 28px 0;
  }
}

.selected {
  background-color: #fff7c5;
}

.announcement-list__item-related {
  position: relative;
  border: 1px solid #f0f0f0;
  margin-left: -1px;
  padding-top: 15px;
  margin-bottom: 18px;
}

.announcement__meta {
  margin-bottom: 6px;
  color: #666666;
  font-size: 13px;
}

.announcement__meta-region {
  color: #1e9ee0;
  font-weight: 700;
}

@media (max-width: 767px) {
  .announcement__meta-region {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .announcement__meta-date {
    font-size: 13px;
    color: #666;
  }
}

.announcement__meta-separator {
  margin: 0 6px;
  color: #d7d7d7;
}

@media (max-width: 767px) {
  .announcement__meta-separator {
    font-size: 13px;
  }
}

.announcement__id {
  font-size: 11px;
  color: #666666;
  margin-bottom: 18px;
}

.announcement__services-item {
  background-color: #f5f5f5;
  border: 1px solid #d7d7d7;
  font-size: 15px;
  margin-bottom: 12px;
  padding: 14px 12px 14px 42px;
  position: relative;
}

@media (min-width: 768px) {
  .announcement__services-item {
    margin-right: 9px;
    padding: 6px 7px 6px 37px;
  }
}

.announcement__services-item:last-child {
  margin-right: 0;
}

.announcement__services-item-icon {
  z-index: 1;
  display: inline-block;
  width: 28px;
  position: absolute;
  top: 7px;
  left: 5px;
}

@media (min-width: 768px) {
  .announcement__services-item-icon {
    top: -5px;
  }
}

.announcement__images-slider {
  background-color: #f5f5f5;
}

@media (min-width: 992px) {
  .announcement__images-slider {
    max-height: 600px;
  }

  .announcement__images-slider img {
    height: auto;
    width: auto !important;
    max-width: 100%;
    margin: 0 auto;
    max-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.annoncement__sticky-block {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  z-index: 1;
}

.annoncement__sticky-block--shop {
  margin-top: 65px;
}

.announcement__images {
  margin: 0 -15px;
  width: 100vw;
}

@media (min-width: 768px) {
  .announcement__images {
    margin: 0;
    width: 100%;
  }
}

.announcement__fields-title {
  color: #666666;
  margin-bottom: 12px;
}

.announcement__fields-value {
  padding-bottom: 12px;
  word-wrap: break-word;
  position: relative;
}

.announcement__price {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 12px;
  position: absolute;
  bottom: 0;
  min-height: 40px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
}

.announcement__price strike {
  margin-right: .25rem;
  color: #777 !important;
}

@media (min-width: 768px) {
  .announcement__price {
    background-color: #f5f5f5;
    color: inherit;
    position: relative;
    bottom: unset;
    height: 70px;
    font-weight: 700;
    font-size: 22px;
    text-shadow: 0 1px 0 #fff;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
  }

  .announcement__price:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-right: 20px solid #f5f5f5;
    position: absolute;
    top: 0;
    left: -20px;
  }
}

.announcement__actions .btn {
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

@media (max-width: 767px) {
  .announcement__actions {
    position: fixed;
    width: 100vw;
    z-index: 1;
    left: 0;
    bottom: 0;
    height: 40px;
  }

  .announcement__actions .btn {
    width: 50%;
    float: left;
    margin: 0;
    display: block;
    font-size: 13px;
    border-radius: 0;
    text-align: left;
    padding: 11px 12px 9px;
  }

  .announcement__actions .btn:nth-child(1) {
    border-right: 1px solid #fff;
  }
}

.announcement__region {
  background: url("../img/announcement-map-bg.png") no-repeat;
  background-size: cover;
  background-position: 50%;
  padding: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.announcement__region-text {
  color: #333;
  background: rgba(245, 245, 245, 0.8) url(../img/icon-map-marker.png) no-repeat;
  background-position: 10px 12px;
  background-size: auto 32px;
  padding: 12px 12px 12px 50px;
  font-size: 13px;
  font-weight: 500;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.announcement__author {
  background: url(../img/icon-user.png) no-repeat;
  background-position: 0 0;
  background-size: 32px 32px;
  padding-left: 42px;
  color: #666666;
}

@media (max-width: 767px) {
  .announcement__author {
    background-color: #f5f5f5;
    margin: 0 -15px 12px;
    padding: 18px 15px 18px 57px;
    background-position: 15px 18px;
  }
}

@media (min-width: 992px) {
  .announcement__author {
    margin: 24px 0 30px 18px;
  }
}

.announcement__author-name {
  font-size: 20px;
  line-height: 20px;
}

.announcement__author-since,
.announcement__author-related,
.announcement__author-shop {
  font-size: 12px;
  line-height: 1;
  margin-top: 12px;
}

.announcement__author-since {
  margin-top: 6px;
}

.announcement__phone-info {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  top: 9px;
  right: 10px;
  display: flex;
  transition: opacity 0.2s;
}

@media (max-width: 992px) {
  .announcement__phone-info {
    display: none;
  }
}

.announcement__phone-info>div {
  margin-left: 4px;
}

.announcement__phone-info img {
  width: 22px;
  display: block;
  border: 1px solid #FFF;
  border-radius: 100%;
}

.announcement__phone-info.is-shop {
  position: relative;
  top: auto;
  right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
}

.announcement__phone-info.is-shop>div {
  margin-left: 0;
  margin-right: 4px;
}

.announcement__phone-info.is-shop>div img {
  width: 20px;
}

@media (min-width: 1280px) {
  .is-showed .announcement__phone-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.edit-address {
  width: 40px;
  height: 40px;
}

.breadcrumb+.content-main__heading {
  margin: 18px 0 6px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .breadcrumb+.content-main__heading {
    margin: 0 0 12px;
  }
}

.content-main__heading+.breadcrumb {
  margin-top: -12px;
}

.breadcrumb {
  padding: 12px 0;
  margin-bottom: 18px;
  list-style: none;
  background-color: transparent;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  color: #666666;
}

@media (max-width: 768px) {
  .breadcrumb {
    font-size: 12px;
    margin-top: -20px;
    margin-bottom: 10px;
  }
}

.breadcrumb__item {
  display: inline-block;
  color: #666666;
  position: relative;
}

.breadcrumb__item+.breadcrumb__item:before {
  padding: 0 8px;
  content: "\203A";
}

.breadcrumb__item:hover:before {
  color: #666666;
}

.page-link {
  color: #1e9ee0;
  border-radius: 3px;
  border: none;
  margin-left: 0;
}

.page-link:hover,
.page-link:focus {
  outline: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.page-item.active .page-link {
  background-color: #1e9ee0;
  border-color: #1e9ee0;
}

.page-item:first-child .page-link {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.page-item.disabled .page-link,
.page-link {
  border-color: #FFF;
}

.infoblock__title.is-centered {
  text-align: center;
}

.infoblock__title.is-centered h5 {
  padding-left: 12px;
}

.infoblock__content.alert-schedule {
  background-color: #f7f7f7;
  border: 1px solid #ddd;
}

.infoblock__content.alert-schedule .schedule-item {
  font-size: 14px;
  font-weight: 600;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 0;
  color: #666;
}

.shop-single__search {
  background-color: #1e9ee0;
  padding: 12px;
  /* margin: 0; */
  margin-bottom: 10px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.shop-single__search input {
  padding: 7px 12px 5px 30px;
}

.shop-single__search button {
  padding: 7px 12px 5px;
  background-color: #006bad;
}

.shop-single__input-group {
  overflow: hidden;
}

.shop-single__input-group input {
  width: 70%;
  float: left;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-bottom: 0;
  padding: 13px 12px 12px 30px;
  border: none;
  background: #fff url(../img/icon-search.svg) no-repeat 6px 12px;
}

@media (min-width: 992px) {
  .shop-single__input-group input {
    width: 80%;
    padding: 7px 12px 7px 30px;
    background-position: 6px;
  }
}

.shop-single__input-group button {
  width: 30%;
  height: 42px;
  float: left;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  background-color: #006bad;
  color: #fff;
  text-transform: uppercase;
  padding: 13px 12px 11px;
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

@media (min-width: 992px) {
  .shop-single__input-group button {
    width: 20%;
    padding: 7px 12px 5px;
  }
}

.shop-single__gallery {
  background-color: #f5f5f5;
  padding: 24px 0;
  text-align: center;
  position: relative;
}

.shop-list__categories {
  font-weight: 700;
}

.shop-list__categories::after {
  clear: both;
  content: "";
  display: block;
}

.shop-list__categories-item {
  float: left;
  width: 100%;
  padding: 4px 0;
  border-bottom: 1px solid #e8e8e8;
}

@media (min-width: 1023px) {
  .shop-list__categories-item {
    width: 20%;
    padding: 0;
    border-bottom: none;
  }
}

.shop-list__categories-item:nth-last-child(1) {
  border-bottom: none;
}

.shop-list__categories-item-icon {
  display: inline-block;
  padding: 12px 0;
  border-radius: 50%;
  background: white;
  margin-right: 10px;
  width: 48px;
  height: 48px;
  text-align: center;
}

.shop-list__categories-item-icon img {
  height: 24px;
  vertical-align: middle;
}

.shop-list__item {
  position: relative;
  padding: 6px;
  border: 1px solid #f0f0f0;
}

.shop-list__item-poster {
  display: block;
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 6px;
}

.shop-list__item-poster img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 992px) {
  .filter {
    position: -webkit-sticky;
    position: sticky;
    top: 136px;
  }
}

.filter .btn {
  white-space: unset;
}

.filter .btn-orange {
  position: fixed;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 99;
}

@media (min-width: 992px) {
  .filter .btn-orange {
    position: relative;
    left: unset;
    right: unset;
    bottom: unset;
  }
}

.filter__checkbox {
  position: relative;
  margin-bottom: 12px;
  text-transform: unset;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 0px;
}

.filter__checkbox-mirage {
  border: 1px solid #888;
  height: 14px;
  width: 14px;
  vertical-align: middle;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  top: -1px;
}

.filter__checkbox input:checked+.filter__checkbox-mirage:before {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  right: 0;
  bottom: 1px;
  left: 1px;
  background: transparent url(../img/icon-checkbox.svg) no-repeat;
  height: 14px;
  width: 14px;
}

.filter__checkbox-label {
  margin-left: 3px;
  font-weight: 500;
  font-size: 13px;
  color: #666666;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

.cookies-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  color: #FFF;
  padding: 18px 0;
}

.cookies-modal.visible {
  display: block !important;
}

.cookies-modal a {
  color: #FFF;
  text-decoration: underline;
}

.cookies-modal a:hover {
  text-decoration: none;
}

.cookies-modal .btn {
  background-color: #1b1b1b;
  border-color: #777777;
  color: #FFF;
}

.cookies-modal .btn:hover {
  border-color: #1b1b1b;
}

@media (max-width: 767px) {
  .cookies-modal br {
    display: none;
  }

  .cookies-modal .cookies-modal__content {
    margin-bottom: 12px;
  }
}

/* News */

.search-list-categories {
  margin-right: 10px;
}

.search-list-categories {
  display: flex;
  align-items: center;
}

.news-title {
  max-height: 80px;
  display: flex;
  align-items: flex-end;
}

.js-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flex-wrap-custom {
  flex-wrap: wrap;
  min-height: 320px;
  align-content: baseline;
}

.grecaptcha-badge {
  opacity: 0;
}

.filter.sidebar-filter>.js-search-form-left.inited+a.btn.btn-sm.btn-orange {
  white-space: nowrap;
}

.filter.sidebar-filter>.js-search-form-left.inited+a.btn.btn-sm.btn-orange+a,
.filter.sidebar-filter>.btn-primary {
  width: 100%;
}

.tabs {
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tabs>a {
  padding: 10px;
  display: block;
  margin-bottom: -1px;
  font-weight: 600;
}

.tabs>a.active {
  border: 1px solid #ddd;
  border-bottom-color: #fff;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  color: #333;
}

#categories {
  width: 100%;
  /*  max-width: 200px;*/
}

/*=================*/

.post-body {
  padding: 3em 4em 3em;
  background-color: #FFF;
  border: 1px solid #F0F3F4;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

@media (min-width: 1024px) {
  .post-body__sidebar {
    border-left: 1px solid #DFE3E8;
    padding-left: 3em;
  }

  .post-body__sidebar .form-group+.form-group {
    margin-top: 42px;
  }
}

@media (min-width: 1024px) {
  .post-body__content {
    padding-right: 3em;
  }
}

.post-thumbnail {
  position: relative;
  margin-top: -12px;
}

.post-thumbnail--avatar {
  max-width: 200px;
}

.post-thumbnail-sm .thumbnail-upload {
  display: inline-block;
  width: 200px;
}

.post-thumbnail__icon {
  height: 43px;
  width: 43px;
  margin: 0 auto 12px;
  background-color: #D8DFE5;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  position: relative;
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
}

.post-thumbnail__icon:before,
.post-thumbnail__icon:after {
  content: '';
  display: block;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post-thumbnail__icon:before {
  height: 23px;
  width: 4px;
}

.post-thumbnail__icon:after {
  height: 4px;
  width: 23px;
}

.post-thumbnail__label {
  font-weight: bold;
  line-height: 27px;
}

.post-thumbnail__preview-wrapper {
  position: relative;
  cursor: pointer;
  display: none;
}

.post-thumbnail__preview-wrapper:after {
  content: 'Change featured image';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  color: #FFF;
  line-height: 200px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.post-thumbnail__preview-wrapper:hover:after {
  opacity: 1;
  visibility: visible;
}

.post-thumbnail__preview-wrapper.active {
  display: block;
}

.post-thumbnail__preview-wrapper--avatar:after {
  content: '\417\43C\456\43D\438\442\438   \437\43E\431\440\430\436\435\43D\43D\44F';
}

.post-thumbnail__preview-wrapper--favicon.active {
  display: inline-block;
}

.post-thumbnail__preview-wrapper--favicon,
.post-thumbnail__preview-wrapper--favicon.active {
  width: auto;
}

.post-thumbnail__preview-wrapper--favicon:after,
.post-thumbnail__preview-wrapper--favicon.active:after {
  content: "\F148";
  font: normal normal normal 14px/1 'Elusive-Icons';
}

.post-thumbnail__preview-wrapper--favicon-32 .post-thumbnail__preview,
.post-thumbnail__preview-wrapper--favicon-32.active .post-thumbnail__preview {
  height: 32px;
  width: 32px;
}

.post-thumbnail__preview-wrapper--favicon-32:after,
.post-thumbnail__preview-wrapper--favicon-32.active:after {
  line-height: 32px;
}

.post-thumbnail__preview-wrapper--favicon-57 .post-thumbnail__preview,
.post-thumbnail__preview-wrapper--favicon-57.active .post-thumbnail__preview {
  height: 57px;
  width: 57px;
}

.post-thumbnail__preview-wrapper--favicon-57:after,
.post-thumbnail__preview-wrapper--favicon-57.active:after {
  line-height: 57px;
}

.post-thumbnail__preview-wrapper--favicon-72 .post-thumbnail__preview,
.post-thumbnail__preview-wrapper--favicon-72.active .post-thumbnail__preview {
  height: 72px;
  width: 72px;
}

.post-thumbnail__preview-wrapper--favicon-72:after,
.post-thumbnail__preview-wrapper--favicon-72.active:after {
  line-height: 72px;
}

.post-thumbnail__preview-wrapper--favicon-114 .post-thumbnail__preview,
.post-thumbnail__preview-wrapper--favicon-114.active .post-thumbnail__preview {
  height: 114px;
  width: 114px;
}

.post-thumbnail__preview-wrapper--favicon-114:after,
.post-thumbnail__preview-wrapper--favicon-114.active:after {
  line-height: 114px;
}

.post-thumbnail__preview-wrapper--favicon-144 .post-thumbnail__preview,
.post-thumbnail__preview-wrapper--favicon-144.active .post-thumbnail__preview {
  height: 144px;
  width: 144px;
}

.post-thumbnail__preview-wrapper--favicon-144:after,
.post-thumbnail__preview-wrapper--favicon-144.active:after {
  line-height: 144px;
}

.post-thumbnail__preview {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.post-thumbnail__stub {
  color: #6f767d;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 4px dashed #D8DFE5;
  padding: 40px;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-bottom: 0;
}

.post-thumbnail__stub:hover {
  border-color: rgba(147, 158, 171, 0.65);
}

.post-thumbnail__stub:hover .post-thumbnail__icon {
  background-color: rgba(147, 158, 171, 0.65);
}

.post-thumbnail__stub.hidden {
  display: none;
}

.post-thumbnail__remove-button {
  margin: 12px 0 0;
  line-height: 38px;
  cursor: pointer;
  display: none;
  border: 1px solid #DFE3E8;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  text-align: center;
  color: #6f767d;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.post-thumbnail__remove-button:hover {
  color: #4DA1FF;
  border-color: #4DA1FF;
}

.post-thumbnail__remove-button.active {
  display: block;
}

.screenreader-only {
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  border: none;
}

.form-control:focus,
.form-select:focus,
.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus,
.select2.select2-container.select2-container--default.select2-container--below:focus {
  border-color: rgba(77, 161, 255, 0.75);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(77, 161, 255, 0.25);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(77, 161, 255, 0.25);
  outline: none;
}

#imagesAdd .image-item.can-delete .post-thumbnail__stub {
  border: 1px solid #ddd;
  padding: 0;
}

#imagesAdd .image-item label>img {
  max-width: 150px;
  width: 100%;
}

.not-found {
  font-family: 'Montserrat', sans-serif;
  color: #1E9EE0;
  font-weight: 500;
  font-size: 20px;
}

.reg-checkbox input {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.reg-checkbox {
  height: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.reg-checkbox label {
  white-space: nowrap;
}

@media screen and (max-width: 1200px) {
  .filter.sidebar-filter>.js-search-form-left.inited+a.btn.btn-sm.btn-orange {
    white-space: normal;
  }
}

.owl-carousel.viewd-carousel .owl-nav.disabled {
  display: flex;
  position: absolute;
  top: 30%;
  left: -20px;
  width: calc(100% + 40px);
  z-index: 0;
  justify-content: space-between;
  font-size: 50px;
}

.owl-carousel.viewd-carousel .owl-stage-outer {
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .viewed-wrapper {
    padding: 0 20px;
  }

}

.my-vehicles {
  display: flex;
  flex-wrap: wrap;
}

.vehicle-wrapper {
  flex-basis: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  padding: 40px 20px 20px 20px;
  position: relative;
  margin-bottom: 30px;
}

.add-vehicle {
  max-width: 100%;
}

.add-vehicle {
  display: none;
}

.add-vehicle .vehicle-description {
  padding-top: 30px;
}

.add-vehicle .vehicle-image {
  margin: 0;
  display: flex;
  width: 90%;
  max-height: 100%;
  padding: 20px;
  justify-content: flex-end;
}

.add-vehicle .vehicle-headers {
  overflow: hidden;
  flex-grow: 1;
  position: relative;
  align-items: center;
}

@media screen and (max-width: 700px) {
  .add-vehicle .help-wrapper {
    flex-direction: column;
  }
}

@media screen and (min-width: 700px) {
  .add-vehicle .vehicle-headers {
    flex-basis: 500px;
  }

  .add-vehicle .vehicle-image {
    position: absolute;
  }
}

.add-vehicle .vehicle-description {
  flex-basis: 60%;
}

.add-vehicle img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.add-vehicle.active {
  display: block;
}

.add-vehicle input {
  outline: none;
  border-radius: 0.2rem;
}

.add-vehicle .vehicle-option {
  margin-bottom: 10px;
}

.vehicle-selected {
  position: absolute;
  top: 10px;
  left: 20px;
}

.vehicle-headers {
  display: flex;
}

.vehicle-rating {
  flex-basis: 15%;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}

.vehicle-rating-item {
  padding-left: 5px;
  white-space: nowrap;
}

.vehicle-rate-total,
.vehicle-rate {
  margin-right: 5px;
}

.vehicle-rating-total,
.vehicle-rate {
  font-weight: 600;
}

.vehicle-rating-total {
  display: flex;
  align-items: center;
  background-color: #1E9EE0;
  color: #fff;
  border-radius: 0.2rem;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.vehicle-rate-total {
  font-size: 41px;
  line-height: 41px;
}

.vehicle-rate-total-desc {
  font-size: 17px;
  line-height: 1.1;
}

.vehicle-rate {
  color: #1E9EE0;
  font-size: 18px;
}

.vehicle-rate+span {
  font-size: 15px;
}

.vehicle-image {
  flex-basis: 30%;
  flex-grow: 1;
}

.vehicle-description {
  flex-basis: 20%;
  flex-grow: 1;
  padding-top: 20px;
}

.vehicle-subscribe {
  margin: 15px 0;
}

.vehicle-subscribe-text {
  border:  2px solid #333;
  border-radius: 10px;
  padding: 5px;
  line-height: 1.1;
  margin-bottom: 5px;
}

.vehicle-subscribe-model {
  display: block;
  line-height: 1.2;
}

.vechicle-annotation {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0 0;
  margin-left: 25px;
}

.vehicle-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;  
  margin: 25px 25px 0;
  min-height: 180px;
}

.vehicle-description {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.vehicle-selects {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.vehicle-select {
  min-width: 100px;
  max-width: 150px;
  margin-right: 5px;
  font-size: 16px;
  margin-bottom: 5px;
}

.vehicle-select.big {
  max-width: 30%;
}

.vehicle-select label {
  margin-bottom: 5px;
}

.vehicle-option,
.vehicle-model {
  font-weight: 600;
  text-transform: uppercase;
}

.vehicle-option {
  font-size: 16px;
}

.vehicle-option+.vehicle-actions {
  margin-top: 10px;
}

.vehicle-model {
  margin-bottom: 25px;
  font-size: 22px;
}

.edit-vehicle-btn {
  color: #8B8B8B;
  display: flex;
  align-items: center;
  background-color: transparent;
  outline: none;
  border: none;
  line-height: 10px;
  transition: opacity 0.3s;
  will-change: opacity;
}

.edit-vehicle-btn:not(:last-child) {
  margin-bottom: 5px;
}


.edit-vehicle-btn:last-child {
  margin-bottom: 15px;
}

.edit-vehicle-btn:hover {
  color: #8B8B8B;
  opacity: 0.8;
}

.edit-vehicle-btn svg {
  fill: #8B8B8B;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.vehicle-btn {
  display: inline-block;
  white-space: nowrap;
  color: #000;
  background-color: transparent;
  padding: .375rem .75rem;
  border: 1px solid #000;
  border-radius: 0.2rem;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: opacity 0.3s;
  will-change: opacity;
}

.vehicle-rating-item+.vehicle-btn {
  margin-top: 10px;
}

.add-vehicle .vehicle-more {
  display: flex;
  justify-content: flex-end;
}

.vehicle-more .vehicle-btn {
  width: 100%;
  text-align: center;
}

.vehicle-btn:hover {
  opacity: 0.8;
  color: #000;
}

/* .subscribe-btn {
  background-color: #25A844;
  color: #fff;
  text-transform: none;
  border-radius: 0;
  border: none;
  width: 100%;
  text-align: center;
} 

.subscribe-btn:hover {
  color: #fff;
} */


.add-vehicle-btn {
  color: #fff;
  font-size: 16px;
  background-color: #1E9EE0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
  will-change: opacity;
}

.add-vehicle-btn svg {
  margin-left: 8px;
}

.add-vehicle-btn:hover {
  opacity: 0.8;
}

.add-vehicle .alert-success.js-main-image-edit {
  display: none;
}

.add-vehicle .js-drag-n-drop,
.add-vehicle .js-drag-n-drop #my-dropzone {
  height: 100%;
}

.add-vehicle #my-dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.add-vehicle .dz-message {
  flex-basis: 100%;
}

.vehicle-review-wrapper {
  display: none;
  flex-wrap: wrap;
  width: 100%;
  border: 2px solid #f0f0f0;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 20px;
}

/* .vehicle-review {
  
} */

.vehicle-review-wrapper.active {
  display: flex;
}

.vehicle-review-wrapper>div {
  padding-top: 30px;
  flex-basis: 300px;
}

.vehicle-review-item {
  display: flex;
  flex-direction: column;
}

.review-comment-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.review-textarea {
  width: 100%;
  flex-grow: 1;
  margin-bottom: 20px;
}

.review-comment-wrapper .vehicle-btn {
  align-self: flex-end;
  margin-bottom: 0;
}

.vehicle-review-item.total {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.vehicle-more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vehicle-review>.vehicle-rating {
  margin-right: 30px;
  padding-top: 5px;
}

.vehicle-reviews {
  min-width: 100%;
  max-height: 80%;
  position: absolute;
  overflow-y: scroll;
  overflow-x: hidden;
}

.review-content {
  width: 100%;
}

@media screen and (max-width: 700px) {
  .vehicle-headers {
    flex-direction: column;
  }

  .vehicle-image {
    margin: 40px 0;
  }
}

.my-vehicle-img {
  max-width: 100%;
}

@media (max-width: 991px) {
  .btn-sort.active {
    border: none;
    background-color: transparent;
    font-weight: bolder;
  }

  .vehicle-headers {
    flex-direction: column;
  }

  .vehicle-rating .vehicle-btn {
    margin: 20px 0;
  }

  .vehicle-selected {
    position: static;
  }
  
  .vechicle-annotation {
    margin-left: 0;
  }
}



.reg-card .card-body {
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: height 0.4s;
  will-change: height;
}

.reg-card .card-body .row {
  padding: 20px 30px;
}

.reg-card .modal-header {
  cursor: pointer;
  position: relative;
}

.reg-card .modal-header::after {
  content: '\02C3';
  position: absolute;
  right: 20px;
  font-size: 30px;
  line-height: 30px;
  transform: rotate(90deg);
  transition: transform 0.3s;
  will-change: transform;
}

.reg-card.active .modal-header::after {
  transform: rotate(-90deg);
}

.reg-card .vehicle-option {
  display: block;
}

.reg-card .add-vehicle {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius:5px 5px 0 0;
}

.reg-card .add-vehicle-btn {
  background-color: #FF5722;
  width: 100%;
  text-align: center;
}

.reg-card .vehicle-select {
  max-width: 200px;
}

.messager .message {
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid #333;
  border-radius: 3px;
  position: relative;
  height: 0;
  transition: height 0.3s, padding 0.3s, margin-bottom 0.3s;
  will-change: height, padding, margin-bottom;
}

.messager .message.active {
  height: 40px;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.messager .message .close-btn {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
}


.messager .message.error .close-btn svg {
  fill: #fff;
}

.messager .message.error {
  color: #fff;
  background-color: #EB736A;
  border-color: #EB4235;
}

.added-vehicle {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 102px;
  min-height: 50px;
  align-items:center;
  position: relative;
}

.added-vehicle-selects {
  padding-top: 10px;
  padding-bottom: 5px;
}

.added-vehicle-selects .delete-added-vahicle {
  top: 0;
}

.delete-added-vahicle {
  position: absolute;
  right: 0;
  width: 72px;
  height: 100%;
  background-color: #fff;
}

/* .reg-card:not(:first-of-type) {

  width: 100%;
} */

.js-user-login .message span {
  display: block;
  margin: 0 auto 20px auto;
  padding: 5px 10px;
}

.pincode-field {
  display: flex;
}

.pincode-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #aaa;
  padding: 10px;
  width: 40px;
  height: 40px;
  -moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
  transition: box-shadow 0.3s, border 0.3s;
  will-change: box-shadow, border;
}

.pincode-item:focus {
  border: 1px solid #333;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.pincode-item::-webkit-outer-spin-button,
.pincode-item::-webkit-inner-spin-button {
	display: none;
}

.pincode-item:not(:first-child) {
  margin-left: 5px;
}

.register-block {
  max-width: 750px;
}

.choose-messager {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  top: 0;
  text-transform: uppercase;
}

.messager-wrapper {
  display: flex;
  align-items: center;
}

.messager-wrapper label {
  font-weight: 400;
  font-size: 10px;
}

.explain-text {
  display: block;
  font-size: 12px;
  margin-top: 10px;
}

.confirm-phone-code {
  margin-top: 10px;
}
