@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", serif;
}

body, html {
  background: #FFFFFA;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}
header {
  background: #F3F3F3;
  box-shadow: 0px 0px 5px 0px rgb(0, 0, 0);
}
header .header_wrap {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
header .header_wrap .burger, header .header_wrap .mob_menu {
  display: none;
}
header .header_wrap .logo {
  border-radius: 5px;
  overflow: hidden;
}
header .header_wrap .logo img {
  width: 250px;
  max-height: 60px;
  display: block;
  position: relative;
}
header .header_wrap .auth_wrap {
  display: flex;
  align-items: center;
}
header .header_wrap .auth_wrap .center_wrap {
  display: flex;
  align-items: center;
  border: 1px solid #832434;
  border-radius: 5px;
  overflow: hidden;
}
header .header_wrap .auth_wrap svg {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  fill: #832434;
  transition: 0.3s;
}
header .header_wrap .auth_wrap svg.bigone {
  width: 27px;
  height: 27px;
}
header .header_wrap .auth_wrap .btn {
  font-size: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #832434;
  transition: 0.3s;
  padding: 8px 16px;
  height: 43px;
}
header .header_wrap .auth_wrap .btn:first-child {
  border-right: 1px solid #832434;
}
header .header_wrap .auth_wrap .btn:hover {
  background: #CF5F57;
  color: #fff;
}
header .header_wrap .auth_wrap .btn:hover svg {
  fill: #fff;
}
header .header_wrap .right_side {
  display: flex;
  align-items: center;
}
header .header_wrap .right_side .switch_lang {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
  cursor: pointer;
  color: #000;
  transition: 0.3s;
  font-size: 18px;
  padding-right: 20px;
  position: relative;
}
header .header_wrap .right_side .switch_lang img {
  margin-right: 5px;
}
header .header_wrap .right_side .switch_lang span {
  margin: 0 5px;
  display: flex;
  align-items: center;
}
header .header_wrap .right_side .switch_lang span.active {
  opacity: 0.6;
}
header .header_wrap .right_side .switch_lang span:not(.active):hover {
  color: #CF5F57;
  text-decoration: underline;
}
header .header_wrap .right_side .create_ad {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background: #EE6B7F;
  padding: 8px 16px;
  border-radius: 5px;
  border: 1px solid;
  transition: 0.3s;
  font-size: 18px;
}
header .header_wrap .right_side .create_ad svg {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  transition: 0.3s;
}
header .header_wrap .right_side .create_ad:hover {
  background: #CF5F57;
}

.search_panel {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
}
.search_panel img.bg {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
}
.search_panel .container {
  z-index: 1;
  position: relative;
}
.search_panel .search_wrap {
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  padding: 40px;
  border-radius: 5px;
}
.search_panel .search_wrap h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #000;
}
.search_panel .search_wrap form {
  display: flex;
}
.search_panel .search_wrap form .search_group {
  display: flex;
  position: relative;
}
.search_panel .search_wrap form .search_group.input {
  width: 20%;
}
.search_panel .search_wrap form .search_group.input:first-child {
  width: 60%;
}
.search_panel .search_wrap form .search_group.input:first-child input {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: 1px solid;
}
.search_panel .search_wrap form .search_group.btn {
  width: 20%;
}
.search_panel .search_wrap form .search_group.city_input .city_placeholder {
  position: absolute;
  background: #fff;
  border: 2px solid #EE6B7F;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  left: 0;
  top: 101%;
  width: 100%;
  height: 0;
  opacity: 0;
  max-height: 150px;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 10;
}
.search_panel .search_wrap form .search_group.city_input .city_placeholder.show {
  opacity: 1;
  height: auto;
}
.search_panel .search_wrap form .search_group.city_input .city_placeholder ul {
  list-style: none;
}
.search_panel .search_wrap form .search_group.city_input .city_placeholder ul li {
  padding: 3px 6px;
  border-bottom: 1px solid;
  transition: 0.3s;
  cursor: pointer;
  font-size: 16px;
}
.search_panel .search_wrap form .search_group.city_input .city_placeholder ul li:last-child {
  border: none;
}
.search_panel .search_wrap form .search_group.city_input .city_placeholder ul li:hover {
  background: #fff;
}
.search_panel .search_wrap form .search_group img {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  left: 15px;
}
.search_panel .search_wrap form .search_group input {
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  padding: 10px;
  padding-left: 60px;
  font-size: 18px;
}
.search_panel .search_wrap form .search_group button {
  width: 100%;
  background: #EE6B7F;
  border: none;
  cursor: pointer;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 24px;
  color: #fff;
  transition: 0.3s;
}
.search_panel .search_wrap form .search_group button:hover {
  background: #CF5F57;
}
.search_panel.category {
  height: unset;
  padding: 15px 0 15px;
}
.search_panel.category img.bg {
  display: none;
}
.search_panel.category .search_wrap {
  padding: 20px;
  background: #EE6B7F;
  box-shadow: 0px 0px 8px 0px #000;
}
.search_panel.category .search_wrap form {
  border: 1px solid;
  border-radius: 5px;
}
.search_panel.category .search_wrap form .search_group button {
  background: #F5F5DC;
  color: #000;
  border-left: 1px solid;
  opacity: 0.8;
  transition: 0.3s;
}
.search_panel.category .search_wrap form .search_group button:hover {
  opacity: 1;
}

main {
  padding-bottom: 60px;
  min-height: calc(100vh - 330px);
}
main .page-title h1 {
  margin: 30px 0 30px;
}
main .home_new_ads_wrap {
  display: flex;
  flex-flow: column;
  background: #fff;
  border-radius: 5px;
}
main .site_text_wrap {
  margin-top: 30px;
}
main .site_text_wrap .site_text {
  max-height: 300px;
  overflow-y: auto;
}
main .site_text_wrap .site_text::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
main .site_text_wrap .site_text::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
}
main .site_text_wrap .site_text::-webkit-scrollbar-thumb {
  background: #EE6B7F;
  border-radius: 10px;
}
main .site_text_wrap .site_text::-webkit-scrollbar-thumb:hover {
  background: #000;
}
main .content_wrap {
  display: flex;
}
main .content_wrap .livead_list {
  position: relative;
  width: 80%;
  margin-right: 15px;
  display: flex;
  flex-flow: column;
  background: #fff;
  border-radius: 5px;
}

.breadcrumbs {
  padding: 5px 10px;
  background: #EE6B7F;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  margin: 15px 0;
}
.breadcrumbs ol {
  display: flex;
  list-style: none;
}
.breadcrumbs ol li {
  margin: 0 15px;
}
.breadcrumbs ol li:first-child {
  margin-left: 0;
}
.breadcrumbs ol li a {
  color: #fff;
}
.breadcrumbs ol li .nolink {
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.sidebar {
  width: calc(20% - 15px);
  height: inherit;
}
.sidebar .sticky_sidebar {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #EE6B7F;
  position: sticky;
  top: 15px;
}
.sidebar .sticky_sidebar .sidebar_title {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  border-bottom: 1px solid;
  margin-bottom: 10px;
}
.sidebar .sticky_sidebar .sidebar_filter {
  padding: 10px;
}
.sidebar .sticky_sidebar .sidebar_filter.filter_regions {
  padding-bottom: 5px;
}
.sidebar .sticky_sidebar .sidebar_filter.filter_regions .sidebar_filter_content {
  margin: 0 !important;
}
.sidebar .sticky_sidebar .sidebar_filter .sidebar_filter_title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}
.sidebar .sticky_sidebar .sidebar_filter .sidebar_filter_content {
  display: flex;
  flex-flow: column;
}
.sidebar .sticky_sidebar .sidebar_filter .sidebar_filter_content:last-child {
  margin-bottom: 10px;
}
.sidebar .sticky_sidebar .sidebar_filter .longTimeFilter {
  margin-bottom: 5px;
}
.sidebar .sticky_sidebar .sidebar_filter .longTimeFilter input {
  margin-right: 5px;
}
.sidebar .sticky_sidebar .sidebar_filter .filter_category {
  text-decoration: none;
  margin-bottom: 5px;
  color: #EE6B7F;
  padding-left: 5px;
  font-size: 16px;
  transition: 0.3s;
}
.sidebar .sticky_sidebar .sidebar_filter .filter_category:hover {
  text-decoration: underline;
}
.sidebar .sticky_sidebar .sidebar_filter .filter_category.filter_region:last-child {
  margin-bottom: 0;
}
.sidebar .sticky_sidebar .sidebar_filter .filter_category.filter_subcategory {
  font-size: 14px;
  padding-left: 15px;
}
.sidebar .sticky_sidebar .sidebar_filter .filter_submit {
  border: 1px solid #EE6B7F;
  background: #EE6B7F;
  outline: none;
  padding: 4px 8px;
  margin-right: 10px;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.sidebar .sticky_sidebar .sidebar_filter .filter_submit:hover {
  background: #fff;
  color: #EE6B7F;
}
.sidebar .sticky_sidebar .sidebar_filter .filter_clear {
  border: 1px solid #EE6B7F;
  background: #fff;
  outline: none;
  padding: 4px 8px;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.sidebar .sticky_sidebar .sidebar_filter .filter_clear:hover {
  background: #fff;
}
.sidebar .sticky_sidebar .sidebar_filter .range_slider {
  margin-bottom: 15px;
}
.sidebar .sticky_sidebar .sidebar_filter .range_slider .range_label {
  margin-bottom: 10px;
}
.sidebar .sticky_sidebar .sidebar_filter .range-slider {
  position: relative;
  width: 100%;
  height: 16px;
}
.sidebar .sticky_sidebar .sidebar_filter .range-slider input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none;
  z-index: 99;
}
.sidebar .sticky_sidebar .sidebar_filter .range-slider input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #EE6B7F;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.sidebar .sticky_sidebar .sidebar_filter .range-slider input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #EE6B7F;
  cursor: pointer;
}
.sidebar .sticky_sidebar .sidebar_filter .range-slider .slider-bg {
  position: absolute;
  height: 6px;
  background: #F5F5DC;
  border-radius: 3px;
  z-index: 1;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .sticky_sidebar .sidebar_filter .range-slider .slider-track {
  position: absolute;
  height: 6px;
  background: #EE6B7F;
  border-radius: 3px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.livead_item {
  position: relative;
  display: flex;
  width: 100%;
  padding: 15px;
  border: 1px solid #EE6B7F;
  border-radius: 5px;
  margin-bottom: 15px;
  transition: 0.3s;
  overflow: hidden;
}
.livead_item.colorize {
  background: #E8FFE6;
}
.livead_item:hover {
  background: #efefef;
}
.livead_item:last-child {
  margin-bottom: 0;
}
.livead_item .livead_item_photo {
  width: 320px;
  max-width: 100%;
  position: relative;
}
.livead_item .livead_item_photo a {
  display: block;
  width: 320px;
  max-width: 100%;
}
.livead_item .livead_item_photo img {
  width: 320px;
  max-width: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.livead_item .livead_item_photo .tag_icon {
  position: absolute;
  right: 0;
  top: 10px;
  padding: 2px 4px;
  color: #fff;
  background: #EE6B7F;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.livead_item .livead_item_photo .tag_icon.indi_tag {
  top: 40px;
}
.livead_item .livead_item_content {
  width: 80%;
  padding-left: 15px;
  position: relative;
}
.livead_item .livead_item_content h5 {
  margin-bottom: 10px;
  max-width: 74%;
}
.livead_item .livead_item_content h5 a {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.livead_item .livead_item_content .tags {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.livead_item .livead_item_content .tags img {
  width: 40px;
  height: 40px;
}
.livead_item .livead_item_content .tags span {
  margin-right: 10px;
}
.livead_item .livead_item_content .tags span.indi_tag img {
  width: unset;
  height: 30px;
}
.livead_item .livead_item_content .short_description {
  margin-bottom: 10px;
  max-width: 80%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  word-break: break-work;
}
.livead_item .livead_item_content .time_publish, .livead_item .livead_item_content .city, .livead_item .livead_item_content .category {
  display: flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 15px;
}
.livead_item .livead_item_content .time_publish img, .livead_item .livead_item_content .city img, .livead_item .livead_item_content .category img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.livead_item .livead_item_content .favorite {
  position: absolute;
  bottom: 0;
  right: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 1px solid;
  border-radius: 5px;
  padding: 4px 8px;
  transition: 0.3s;
}
.livead_item .livead_item_content .favorite img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  transition: 0.3s;
}
.livead_item .livead_item_content .favorite:hover, .livead_item .livead_item_content .favorite.save {
  background: #EE6B7F;
  color: #fff;
  border-color: #fff;
}
.livead_item .livead_item_content .favorite:hover img, .livead_item .livead_item_content .favorite.save img {
  filter: invert(1);
}
.livead_item .livead_item_content .price {
  position: absolute;
  right: 10px;
  top: 0;
  font-weight: bold;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.pagination_wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.pagination_wrap .pagination {
  display: flex;
  align-items: center;
}
.pagination_wrap .pagination a {
  margin: 0 5px;
  font-size: 16px;
  color: #fff;
  background: #EE6B7F;
  transition: 0.3s;
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid #fff;
}
.pagination_wrap .pagination a:hover, .pagination_wrap .pagination a.active {
  background: #CF5F57;
}

footer {
  padding: 30px 0 20px;
  background: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 4%), #fff;
}
footer .footer_wrap .about_wrap {
  display: flex;
  flex-flow: column;
}
footer .footer_wrap .about_wrap a {
  margin-bottom: 10px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
}
footer .footer_wrap .about_wrap a:hover {
  text-decoration: underline;
}
footer .copyright {
  text-align: center;
  padding: 5px 0;
  font-weight: bold;
}

.aditem_page {
  width: 100%;
  position: relative;
  padding: 20px;
  min-height: calc(100vh - 330px);
  background: #fff;
  border: 1px solid #EE6B7F;
  border-radius: 5px;
}
.aditem_page .row-aditem {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 12px;
}
.aditem_page .row-aditem .howLong, .aditem_page .row-aditem .views, .aditem_page .row-aditem .user {
  display: flex;
  align-items: center;
}
.aditem_page .row-aditem .howLong svg, .aditem_page .row-aditem .views svg, .aditem_page .row-aditem .user svg {
  width: 20px;
  height: 20px;
  fill: #EE6B7F;
  margin-right: 5px;
}
.aditem_page .row-aditem span {
  margin: 0 10px;
}
.aditem_page .gallery {
  margin: 10px 0;
  width: 100%;
  max-height: 460px;
}
.aditem_page .gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 460px;
}
.aditem_page .gallery_preview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
}
.aditem_page .gallery_preview img {
  max-height: 125px;
  max-width: calc(50% - 5px);
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
  transition: 0.3s;
  cursor: pointer;
}
.aditem_page .gallery_preview img:hover {
  filter: none;
}
.aditem_page .row {
  display: flex;
  flex-flow: row wrap;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  margin: 15px 0;
}
.aditem_page .aditem_description {
  width: 80%;
  padding: 15px;
}
.aditem_page .aditem_description .aditem_description_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.aditem_page .aditem_description .city, .aditem_page .aditem_description .region, .aditem_page .aditem_description .category, .aditem_page .aditem_description .subcategory, .aditem_page .aditem_description .price, .aditem_page .aditem_description .places {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.aditem_page .aditem_description .city span, .aditem_page .aditem_description .region span, .aditem_page .aditem_description .category span, .aditem_page .aditem_description .subcategory span, .aditem_page .aditem_description .price span, .aditem_page .aditem_description .places span {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-right: 5px;
}
.aditem_page .aditem_description .city svg, .aditem_page .aditem_description .region svg, .aditem_page .aditem_description .category svg, .aditem_page .aditem_description .subcategory svg, .aditem_page .aditem_description .price svg, .aditem_page .aditem_description .places svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  fill: #EE6B7F;
}
.aditem_page .aditem_description .places {
  align-items: flex-start;
}
.aditem_page .aditem_description .places span:last-child {
  font-weight: normal;
  flex-flow: row wrap;
  justify-content: flex-end;
  margin-right: 0;
}
.aditem_page .aditem_description .places span:last-child div {
  display: flex;
  align-items: center;
  margin-left: 5px;
}
.aditem_page .aditem_description .places span:last-child svg {
  width: 12px;
  height: 12px;
  margin-right: 3px;
}
.aditem_page .aditem_description .places span:last-child svg.none {
  fill: #000;
}
.aditem_page .aditem_description hr {
  margin: 10px 0;
}
.aditem_page .aditem_description .aditem_description_text {
  margin-bottom: 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  word-break: break-word;
}
.aditem_page .aditem_description .aditem_details {
  margin-top: 30px;
}
.aditem_page .aditem_description .aditem_details .aditem_details_title {
  font-size: 18px;
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.aditem_page .aditem_description .aditem_details .aditem_details_title svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.aditem_page .aditem_description .aditem_details .attr_row {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  background: #E8FFE6;
  padding: 6px 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.aditem_page .safety_wrap {
  width: 20%;
  border-left: 1px solid #000;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.aditem_page .safety_wrap .aditem_actions {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 auto;
  width: 70%;
  padding-bottom: 25px;
}
.aditem_page .safety_wrap .aditem_actions .aditem_action {
  cursor: pointer;
}
.aditem_page .safety_wrap .aditem_actions .aditem_action svg {
  width: 45px;
  height: 45px;
  transition: 0.3s;
}
.aditem_page .safety_wrap .aditem_actions .aditem_action svg:hover {
  fill: #EE6B7F;
}
.aditem_page .safety_wrap .aditem_actions .aditem_action.active svg {
  fill: #EE6B7F;
}
.aditem_page .safety_wrap .aditem_actions .aditem_action::after {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px 8px 8px 0;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  color: #FFF;
  content: attr(data-tooltip);
  margin-top: -24px;
  opacity: 0;
  padding: 3px 7px;
  position: absolute;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.aditem_page .safety_wrap .aditem_actions .aditem_action:hover::after {
  opacity: 1;
  visibility: visible;
}
.aditem_page .safety_wrap .safety_tips .safety_tips_title {
  padding: 15px;
  font-weight: bold;
  margin-bottom: 15px;
  background: #fcfcfc;
  border-bottom: 1px solid #c7c7c7;
  padding-left: 20px;
}
.aditem_page .safety_wrap .safety_tips ul {
  padding: 15px;
  padding-left: 30px;
  padding-top: 0;
  list-style: none;
}
.aditem_page .safety_wrap .safety_tips ul li {
  margin-bottom: 5px;
}
.aditem_page .safety_wrap .safety_tips ul li::before {
  content: "✓ ";
}
.aditem_page .aditem_buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aditem_page .aditem_buttons .aditem_button {
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.aditem_page .aditem_buttons .no_paid_before {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
  padding: 8px 14px;
  font-size: 16px;
}
.aditem_page .aditem_buttons .no_paid_before svg {
  fill: #842029;
  margin-right: 10px;
}
.aditem_page .aditem_buttons .telegram_link, .aditem_page .aditem_buttons .phone_link {
  font-size: 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 14px;
  opacity: 0.6;
  transition: 0.3s;
  border-radius: 5px;
}
.aditem_page .aditem_buttons .telegram_link:hover, .aditem_page .aditem_buttons .phone_link:hover {
  opacity: 1;
}
.aditem_page .aditem_buttons .telegram_link svg, .aditem_page .aditem_buttons .phone_link svg {
  margin-right: 5px;
  width: 20px;
  height: 20px;
  fill: #fff;
}
.aditem_page .aditem_buttons .phone_link {
  background: #1dd782;
  border: 1px solid #009551;
  color: #fff;
}
.aditem_page .aditem_buttons .telegram_link {
  background: #1c6ee9;
  border: 1px solid #004ebb;
  color: #fff;
}

.page-content {
  display: block;
  margin: 0 auto;
  margin-top: 60px;
  padding: 20px;
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #EE6B7F;
  border-radius: 5px;
}
.page-content h1 {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.page-content form {
  display: flex;
  flex-flow: column;
  min-width: 400px;
}
.page-content form .form-group {
  width: 100%;
  margin-bottom: 10px;
}
.page-content form .form-group .form-control {
  width: 100%;
  padding: 8px 16px;
  font-size: 16px;
}
.page-content form .form-group.select select {
  width: 100%;
  padding: 8px 16px;
  font-size: 16px;
}
.page-content form .form-group.radio_buttons input {
  margin-right: 5px;
}
.page-content form .btn_submit {
  font-size: 16px;
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #EE6B7F;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.page-content form .btn_submit:hover {
  color: #EE6B7F;
  background: #fff;
  border-color: #EE6B7F;
}

.d-flex {
  display: flex;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

hr {
  margin: 10px 0;
}

.modal {
  display: none;
}
.modal .modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
}
.modal#modalSendMessage .modal_body {
  width: 600px;
}
.modal .modal_body {
  position: fixed;
  border-radius: 5px;
  width: 800px;
  min-height: 400px;
  max-height: 90%;
  max-width: 90%;
  background: #fff;
  border: 1px solid #EE6B7F;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 91;
}
.modal .modal_body .modal_title {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 30px;
  background: #EE6B7F;
  border-bottom: 1px solid #000;
  color: #fff;
}
.modal .modal_body .modal_title svg {
  margin-right: 10px;
  fill: #fff;
}
.modal .modal_body .modal_content {
  padding: 30px;
}
.modal .modal_body .modal_content .form-group {
  display: flex;
  flex-flow: column;
  margin-bottom: 10px;
}
.modal .modal_body .modal_content .form-group label {
  margin-bottom: 5px;
}
.modal .modal_body .modal_content .form-group label .red {
  color: red !important;
  font-weight: bold !important;
  font-size: 20px;
}
.modal .modal_body .modal_content .form-group .form-control {
  border: 1px solid #EE6B7F;
  outline: none;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 5px;
}
.modal .modal_body .modal_content .row-end {
  display: flex;
  justify-content: flex-end;
}
.modal .modal_body .modal_content button {
  outline: none;
  border: 1px solid #EE6B7F;
  background: #EE6B7F;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 5px;
}
.modal .modal_body .modal_content button:hover {
  background: #fff;
  color: #EE6B7F;
}
.modal .modal_body .close {
  display: block;
  position: absolute;
  right: 5px;
  top: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.5s;
}
.modal .modal_body .close:hover {
  opacity: 1;
}
.modal .modal_body .close::after, .modal .modal_body .close::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  background: #000;
  border-radius: 100%;
  top: 50%;
}
.modal .modal_body .close::before {
  transform: rotateZ(-45deg);
}
.modal .modal_body .close::after {
  transform: rotateZ(45deg);
}

@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  header {
    position: relative;
  }
  header .header_wrap .burger {
    display: block;
    position: relative;
    width: 45px;
    cursor: pointer;
  }
  header .header_wrap .burger span, header .header_wrap .burger span::before, header .header_wrap .burger span::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 4px;
    background: #EE6B7F;
    border-radius: 5px;
    transition: 0.15s;
  }
  header .header_wrap .burger span {
    left: 5px;
    top: 50%;
  }
  header .header_wrap .burger span::before {
    top: -12px;
  }
  header .header_wrap .burger span::after {
    top: 12px;
  }
  header .header_wrap .burger.active span {
    height: 0;
  }
  header .header_wrap .burger.active span::before {
    top: 0;
    transform: rotate(-45deg);
  }
  header .header_wrap .burger.active span::after {
    top: 0;
    transform: rotate(45deg);
  }
  header .header_wrap .auth_wrap, header .header_wrap .right_side {
    display: none;
  }
  header .header_wrap .mob_menu {
    display: flex;
    flex-flow: column;
    position: absolute;
    z-index: 99;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid;
    background: #F3F3F3;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: 0;
    transition: 0.3s;
  }
  header .header_wrap .mob_menu.show {
    height: 150px;
  }
  header .header_wrap .mob_menu .btn-page, header .header_wrap .mob_menu .create_ad {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #EE6B7F;
    padding: 4px 0;
  }
  header .header_wrap .mob_menu .btn-page svg, header .header_wrap .mob_menu .create_ad svg {
    width: 30px;
    height: 30px;
    fill: #EE6B7F;
    margin-right: 5px;
  }
  header .header_wrap .mob_menu .btn-page svg path, header .header_wrap .mob_menu .create_ad svg path {
    fill: #EE6B7F !important;
  }
  header .header_wrap .mob_menu .switch_lang {
    padding: 6px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header_wrap .mob_menu .switch_lang span {
    margin: 0 5px;
  }
  header .header_wrap .mob_menu .switch_lang span.active {
    opacity: 0.6;
  }
  .search_panel .search_wrap {
    padding: 15px 10px;
  }
  .search_panel .search_wrap form {
    flex-flow: column;
  }
  .search_panel .search_wrap form .search_group {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .search_panel .search_wrap form .search_group img {
    top: 7.5px;
  }
  .search_panel .search_wrap form .search_group input {
    border: none !important;
    border-radius: 5px;
    height: 45px;
  }
  .search_panel .search_wrap form .search_group button {
    height: 45px;
  }
  .livead_item {
    flex-flow: column;
  }
  .livead_item .livead_item_content {
    width: 100%;
    padding: 10px 0 30px;
  }
  .livead_item .livead_item_content .price {
    position: relative;
    right: unset;
    top: unset;
    margin-bottom: 10px;
  }
  .livead_item .livead_item_content .time_publish {
    margin-bottom: 10px;
  }
  .livead_item .livead_item_content .city {
    margin-bottom: 10px;
  }
  .livead_item .livead_item_content .category {
    margin-bottom: 10px;
  }
  main .home_new_ads_wrap {
    padding-bottom: 10px;
  }
  main .content_wrap {
    flex-flow: column-reverse;
  }
  main .content_wrap .sidebar {
    width: 100%;
    margin-bottom: 20px;
  }
  main .content_wrap .sidebar .sticky_sidebar .sidebar_title {
    margin: 0;
    border: none;
    color: #fff;
    background: #EE6B7F;
    transition: 0.3s;
  }
  main .content_wrap .sidebar .sticky_sidebar .sidebar_filter {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
  main .content_wrap .sidebar .sticky_sidebar.show .sidebar_title {
    margin-bottom: 10px;
    color: #000;
    background: transparent;
    border-bottom: 1px solid;
  }
  main .content_wrap .sidebar .sticky_sidebar.show .sidebar_filter {
    padding: 10px;
    height: -moz-max-content;
    height: max-content;
  }
  main .content_wrap .livead_list {
    width: 100%;
  }
  .breadcrumbs ol {
    flex-flow: row wrap;
    width: 100%;
  }
  .breadcrumbs ol li {
    font-size: 14px;
  }
  .aditem_page h1 {
    font-size: 20px;
  }
  .aditem_page .row-aditem {
    flex-flow: row wrap;
  }
  .aditem_page .row-aditem div, .aditem_page .row-aditem span {
    margin-bottom: 5px;
  }
  .aditem_page .gallery_preview img {
    margin: 5px;
  }
  .aditem_page .aditem_description {
    width: 100%;
    font-size: 14px;
  }
  .aditem_page .aditem_description .city svg, .aditem_page .aditem_description .region svg, .aditem_page .aditem_description .price svg, .aditem_page .aditem_description .category svg, .aditem_page .aditem_description .subcategory svg, .aditem_page .aditem_description .places svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  .aditem_page .aditem_description .city a, .aditem_page .aditem_description .region a, .aditem_page .aditem_description .price a, .aditem_page .aditem_description .category a, .aditem_page .aditem_description .subcategory a, .aditem_page .aditem_description .places a {
    text-align: right;
  }
  .aditem_page .safety_wrap {
    width: 100%;
    border: none;
    border-top: 1px solid #000;
  }
  .aditem_page .aditem_buttons {
    flex-flow: row wrap;
    justify-content: center;
  }
  .aditem_page .aditem_buttons .aditem_button {
    margin-bottom: 10px;
  }
  .page-content {
    max-width: 90%;
  }
  .page-content h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .page-content form {
    min-width: unset;
    width: 100%;
  }
}
@media screen and (max-width: 350px) {
  .aditem_page .aditem_description .city, .aditem_page .aditem_description .region, .aditem_page .aditem_description .price, .aditem_page .aditem_description .category, .aditem_page .aditem_description .subcategory, .aditem_page .aditem_description .places {
    flex-flow: column;
    align-items: flex-start;
  }
  .aditem_page .aditem_description .subcategory a {
    text-align: left;
  }
  .aditem_page .aditem_description .places span:last-child {
    flex-flow: column;
    justify-content: flex-start;
  }
  .aditem_page .aditem_description .places span:last-child div {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
    margin-bottom: 5px;
  }
}/*# sourceMappingURL=style.css.map */