/*
 *  Owl Carousel - Core
 */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap");
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.flex-box {
  display: flex; }

.subpage a {
  color: #aa2c1f; }
  .subpage a:hover {
    text-decoration: underline; }

.btn-yellow-add .text {
  color: #000; }

.yellow {
  color: #f0cc05; }

.box-radius {
  border-radius: 8px; }

.box-wrapper {
  padding: 30px 45px; }

.red-bg {
  background-color: #aa2c1f;
  color: #fff; }
  .red-bg .form-control {
    border: 2px solid #fff;
    border-radius: 8px;
    background-color: #aa2c1f;
    color: #fff;
    width: 240px;
    margin-left: 5px;
    margin-right: 5px; }
  .red-bg p {
    color: #fff; }
  .red-bg .btn {
    color: #fff;
    cursor: pointer; }
  .red-bg h1, .red-bg h2, .red-bg h3, .red-bg h4, .red-bg h5 {
    color: #fff; }

.grey-bg {
  background-color: #ededed;
  border-radius: 8px;
  border: 2px solid #aa2c1f; }
  .grey-bg p {
    color: #000; }

body {
  font-family: 150% "Nunito", sans-serif; }
  body a {
    transition: 0.3s;
    -webkit-transition: 0.3s; }
    body a:hover {
      text-decoration: none; }
  body img:not(#big-image-img) {
    max-width: 100%; }

.btn, button {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  cursor: pointer; }
  .btn div, button div {
    cursor: pointer; }
  .btn span, button span {
    cursor: pointer; }
  .btn img, button img {
    cursor: pointer; }
  .btn:focus, button:focus {
    outline: none;
    box-shadow: none; }

.btn-menu {
  margin-left: auto;
  padding: 0 15px; }
  .btn-menu span {
    height: 4px;
    background-color: #aa2c1f;
    margin-top: 7px;
    margin-bottom: 7px;
    display: block;
    width: 38px;
    border-radius: 3px; }

.btn-contact {
  width: 100%;
  border: 2px solid #fff;
  height: 48px;
  display: flex;
  padding: 0;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden; }
  .btn-contact.btn-tel .icon {
    background-color: #e70328; }
  .btn-contact.btn-whatsapp .icon {
    background-color: #3ba450; }
  .btn-contact.btn-nachricht .icon {
    background-color: #1db2cd; }
  .btn-contact.btn-www .icon {
    background-color: #f97b00; }
  .btn-contact .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    border-right: 2px solid #fff;
    height: 100%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    overflow: hidden; }
    .btn-contact .icon img {
      max-width: 100%;
      width: 24px; }
  .btn-contact .name {
    padding: 0 30px;
    color: #fff;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center; }
  .btn-contact:last-child {
    margin-bottom: 0; }
  .btn-contact:hover {
    border-color: #fc971f; }
    .btn-contact:hover .icon {
      border-color: #fc971f; }

.btn-issue {
  background-color: none;
  border: none;
  box-shadow: none;
  color: #fff;
  padding: 0;
  padding-right: 35px;
  opacity: 0.7;
  font-size: 15px; }
  .btn-issue:hover {
    opacity: 1; }

textarea {
  border-radius: 8px; }

.btn-add-review {
  background-color: #f0cc05;
  color: #000;
  text-transform: uppercase;
  display: flex;
  padding: 0;
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  border-radius: 12px; }
  .btn-add-review .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-left: 3px solid #aa2c1f;
    height: 100%;
    width: 66px;
    padding: 0 !important; }
    .btn-add-review .icon img {
      width: 20px; }
  .btn-add-review .text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; }
    .btn-add-review .text span {
      padding-left: 30px;
      padding-right: 30px; }

.btn-yellow-add {
  display: flex;
  align-items: center;
  width: 450px;
  height: 46px;
  background-color: #f0cc05;
  color: #000;
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px; }
  .btn-yellow-add .text {
    text-align: center;
    width: 100%; }
  .btn-yellow-add .icon {
    background-image: url("../img/check_white.svg");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 58px;
    height: 100%;
    background-color: #000;
    margin-left: auto; }
  .btn-yellow-add:hover {
    box-shadow: 0px 0px 8px #aa2c1f; }

.btn-white-icon {
  display: flex;
  align-items: center;
  width: 450px;
  height: 46px;
  background-color: transparent;
  color: #fff;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px; }
  .btn-white-icon .text {
    text-align: center;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .btn-white-icon .icon {
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 58px;
    height: 100%;
    background-color: #fff;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center; }
    .btn-white-icon .icon img {
      width: 18px; }
  .btn-white-icon:hover {
    box-shadow: 0px 0px 8px #fff; }
    .btn-white-icon:hover .text {
      text-shadow: 0px 0px 8px #fff; }

.btn-transparent {
  border: 1px solid #aa2c1f;
  text-transform: uppercase; }
  .btn-transparent:hover {
    box-shadow: 0px 0px 8px #aa2c1f; }

.btn-grey {
  background-color: #fff;
  border: 1px solid #aa2c1f;
  border-radius: 8px;
  color: #000;
  font-size: 18px;
  padding: 5px 15px 5px 15px; }
  .btn-grey:hover {
    box-shadow: 0px 0px 8px #aa2c1f; }

.r-name {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  opacity: 0; }

form {
  position: relative; }

button.favorite, button.dislike, button.like {
  background-color: transparent;
  border: none;
  padding: 0; }

.red-arrow {
  list-style: none;
  margin: 0;
  padding: 0; }
  .red-arrow li a {
    padding-left: 22px;
    display: block;
    background-position: left top 8px;
    background-image: url(/img/li-red.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    margin-bottom: 10px;
    color: #000; }
    .red-arrow li a:hover {
      color: #aa2c1f;
      background-position: left 5px top 8px;
      text-decoration: none; }

body.block {
  overflow: hidden;
  padding-right: 17px; }

.fb_iframe_widget {
  width: 100%;
  text-align: center;
  margin-top: 20px; }

#contact-page textarea.form-control {
  min-height: 160px; }

#additional-ad {
  min-height: 120px; }

.banner-xs {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #f0cc05; }
  .banner-xs img {
    width: 100% !important;
    height: auto !important; }

#start-info {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 99999999;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 15px; }
  #start-info .wrapper {
    border-radius: 8px;
    padding: 30px 15px;
    border: 2px solid #aa2c1f;
    background-color: #ededed;
    max-width: 1100px;
    width: 1100px;
    background-color: #fff; }
  #start-info .to-scroll {
    max-height: 40vh;
    overflow-y: auto;
    margin-bottom: 30px;
    padding: 15px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); }
  #start-info .logo-start-info {
    margin-top: 0px;
    margin-bottom: 20px; }
    #start-info .logo-start-info img {
      max-width: 280px; }
  #start-info h3 {
    color: #aa2c1f;
    margin-bottom: 20px; }
  #start-info .btn-accept {
    background-color: #aa2c1f;
    color: #fff;
    border-radius: 8px; }
  #start-info .btn-decline {
    background-color: transparent;
    border: 2px solid #aa2c1f;
    color: #aa2c1f;
    border-radius: 8px; }
  #start-info .buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    #start-info .buttons .btn {
      text-transform: uppercase;
      margin: 5px; }

#xs-longer {
  display: block;
  height: 100px;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
  border: 2px solid #ededed;
  border-radius: 8px; }
  #xs-longer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center; }

#city-select-xs {
  margin-top: 10px;
  margin-bottom: 10px; }
  #city-select-xs select.form-control {
    height: 46px;
    background-color: #fff;
    width: 100%;
    margin: 0;
    color: #aa2c1f;
    font-size: 18px;
    border: 2px solid #aa2c1f;
    border-radius: 8px;
    background-color: #ededed;
    appearance: none;
    padding-right: 30px;
    background: url("../img/arrow-down-red.svg");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 15px; }
    #city-select-xs select.form-control:focus {
      box-shadow: none; }
  #city-select-xs .form-group {
    margin-bottom: 0; }
    #city-select-xs .form-group label {
      font-size: 22px;
      margin-bottom: 5px;
      color: #aa2c1f; }
    #city-select-xs .form-group .form-textarea {
      min-height: 350px; }
    #city-select-xs .form-group .form-control {
      height: 46px;
      width: 100%;
      margin: 0;
      color: #aa2c1f;
      font-size: 18px;
      border: 2px solid #aa2c1f;
      border-radius: 8px;
      background-color: #ededed; }
      #city-select-xs .form-group .form-control:focus {
        box-shadow: none; }

.breadcrumb {
  border-radius: 8px; }
  .breadcrumb li a {
    color: grey; }
    .breadcrumb li a:hover {
      color: #aa2c1f; }

#filter-cities {
  margin-bottom: 10px;
  margin-top: 10px; }
  #filter-cities .inner {
    overflow-y: hidden;
    overflow-x: auto; }
    #filter-cities .inner ul {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      height: 165px;
      margin-bottom: 0;
      list-style: none;
      padding: 15px 10px 30px 10px; }
      #filter-cities .inner ul li a {
        display: block;
        padding: 0px 20px;
        min-width: max-content;
        color: #000;
        padding-left: 27px;
        display: block;
        background-position: left 5px top 6px;
        background-image: url(/img/li-red.svg);
        background-repeat: no-repeat;
        background-size: 10px; }
        #filter-cities .inner ul li a:hover {
          background-position: left 10px top 6px;
          color: #aa2c1f; }

.review-seo .wrapper {
  width: 100%;
  padding-top: 10px; }
.review-seo .one-review {
  background-color: #ededed;
  padding: 25px 45px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex; }
.review-seo .avatar {
  margin-right: 30px; }
  .review-seo .avatar img {
    min-width: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center; }
.review-seo .date {
  font-size: 14px; }
.review-seo .top {
  display: flex;
  justify-content: space-between; }
  .review-seo .top p {
    font-weight: bold;
    margin-bottom: 5px; }

.faq-movie {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px; }
  .faq-movie .one-video {
    margin: 10px;
    flex: 1 1 30%;
    max-width: 341px; }
    .faq-movie .one-video h4 {
      color: #aa2c1f; }

.subpage .faq-movie .one-video {
  max-width: 427px; }

.subpage#escort-map p a {
  color: blue;
  text-decoration: underline; }
  .subpage#escort-map p a:hover {
    color: #aa2c1f; }

#backToTop {
  display: none;
  position: fixed;
  right: 5px;
  bottom: 5px;
  cursor: pointer;
  z-index: 100;
  width: 32px;
  height: 32px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%; }
  #backToTop img {
    width: 30px; }

.maintenence-info {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px; }

#maintenence {
  padding: 15px;
  margin-top: 10%;
  text-align: center;
  max-width: 100%;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  float: none; }
  #maintenence img {
    max-width: 300px !important; }

.messageNew {
  width: 700px;
  max-width: 100%; }
  .messageNew a {
    color: #aa2c1f; }
  .messageNew .info {
    text-align: center; }
    .messageNew .info a {
      color: #aa2c1f !important; }
  .messageNew .content textarea.form-control {
    height: 150px; }
  .messageNew h3 span {
    color: #aa2c1f; }
  .messageNew button {
    max-width: max-content; }
    .messageNew button .text {
      width: 200px;
      max-width: 100%; }

#banners .box-wrapper {
  padding-left: 0px;
  padding-right: 0px; }

#banner-slider .one-banner1 {
  height: 100%; }
#banner-slider img {
  width: 100%;
  height: auto; }
#banner-slider a {
  display: flex !important;
  align-items: center;
  justify-content: center; }

#big-subsite-images .inner img {
  width: auto !important;
  display: block;
  height: auto !important;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  float: none; }

.info-box-window {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 30px; }
  .info-box-window .wrapper {
    max-width: 1200px;
    color: #000;
    position: relative;
    padding: 20px 30px; }
    .info-box-window .wrapper.bid-position {
      height: auto;
      width: auto; }
      .info-box-window .wrapper.bid-position .checkbox-group {
        max-width: 752px;
        margin-left: auto;
        margin-right: auto; }
      .info-box-window .wrapper.bid-position .time-pick {
        margin-bottom: 20px; }
        .info-box-window .wrapper.bid-position .time-pick .form-control {
          flex: 1 1;
          border-radius: 8px 0px 0px 8px;
          max-width: 180px;
          border: 2px solid #aa2c1f; }
          .info-box-window .wrapper.bid-position .time-pick .form-control:focus {
            box-shadow: none; }
        .info-box-window .wrapper.bid-position .time-pick .btn {
          border-radius: 0px 8px 8px 0px;
          flex: 1 1;
          max-width: 80px; }
      .info-box-window .wrapper.bid-position h3 {
        color: #aa2c1f; }
    .info-box-window .wrapper .btn-close {
      color: #aa2c1f;
      position: absolute;
      right: 5px;
      top: 5px;
      font-size: 20px; }
    .info-box-window .wrapper a {
      color: #f0cc05; }
      .info-box-window .wrapper a:hover {
        text-decoration: underline; }

.better-info {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 300;
  justify-content: center;
  align-items: center;
  padding: 30px; }
  .better-info .wrapper {
    max-width: 600px;
    color: #aa2c1f;
    font-weight: 500;
    position: relative;
    padding: 70px 30px 20px 30px; }
    .better-info .wrapper.success {
      background-position: center top 20px;
      background-repeat: no-repeat;
      background-size: 45px;
      background-image: url("../img/info-success.svg"); }
    .better-info .wrapper.warning {
      background-position: center top 20px;
      background-repeat: no-repeat;
      background-size: 45px;
      background-image: url("../img/info-warning.svg"); }
    .better-info .wrapper.danger {
      background-position: center top 20px;
      background-repeat: no-repeat;
      background-size: 45px;
      background-image: url("../img/info-danger.svg"); }
    .better-info .wrapper.info {
      background-position: center top 20px;
      background-repeat: no-repeat;
      background-size: 45px;
      background-image: url("../img/info-info.svg"); }
    .better-info .wrapper .btn-close {
      color: #aa2c1f;
      position: absolute;
      right: 5px;
      top: 5px;
      font-size: 20px; }
    .better-info .wrapper a {
      color: #f0cc05; }
      .better-info .wrapper a:hover {
        text-decoration: underline; }

.admin-info {
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  padding: 15px; }
  .admin-info .wrapper {
    max-width: 1200px;
    min-width: 60%;
    position: relative;
    padding: 20px 30px; }
    .admin-info .wrapper .text {
      width: 100%; }
    .admin-info .wrapper .inner {
      display: flex; }
    .admin-info .wrapper .icon {
      width: 40px;
      min-width: 40px;
      max-height: 40px;
      margin-right: 30px; }
    .admin-info .wrapper .content {
      max-height: 60vh;
      overflow: auto; }
    .admin-info .wrapper .btn-yellow-add {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: auto;
      height: 40px;
      padding-left: 35px;
      font-size: 18px; }
      .admin-info .wrapper .btn-yellow-add span {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 40px;
        margin-left: 35px;
        background-color: #000; }
        .admin-info .wrapper .btn-yellow-add span img {
          width: 22px; }

#loader {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(255, 255, 255, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 999; }
  #loader .wrapper {
    background-image: url("../img/loader.gif");
    background-position: center center;
    background-size: 80px;
    background-repeat: no-repeat;
    width: 80px;
    height: 80px; }

.seo-subpage-title {
  border: none;
  padding: 10px 30px;
  cursor: initial !important; }
  .seo-subpage-title h1 {
    font-size: 28px;
    text-align: center; }
  .seo-subpage-title strong {
    color: #aa2c1f; }
  .seo-subpage-title p {
    text-align: center;
    margin-bottom: 0; }

#info-dek {
  color: #fff;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #bb564c;
  padding: 10px 30px; }

#top-nav #language-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  background-color: #aa2c1f;
  top: 38px;
  width: 110px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  border-radius: 0px 0px 8px 8px;
  display: none;
  z-index: 1; }
  #top-nav #language-menu a {
    padding: 6px 35px 6px 18px;
    display: flex;
    align-items: center;
    background-image: url("/img/arrow_left_yellow.svg");
    background-position: center right 15px;
    background-repeat: no-repeat;
    background-size: 10px; }
    #top-nav #language-menu a p {
      padding: 0px;
      font-size: 15px; }
    #top-nav #language-menu a:hover {
      background-position: center right 20px; }
      #top-nav #language-menu a:hover p {
        color: #f0cc05; }
#top-nav #language {
  max-width: 110px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  cursor: pointer;
  position: relative;
  overflow: visible; }
  #top-nav #language .flag {
    width: 28px;
    margin-right: 8px; }
  #top-nav #language .btn {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    #top-nav #language .btn p {
      font-size: 15px;
      padding: 0;
      flex: 0; }
    #top-nav #language .btn .open {
      height: 12px;
      margin-left: 8px; }
  #top-nav #language.active {
    border-radius: 8px 8px 0px 0px; }
#top-nav #login {
  max-width: 250px; }
  #top-nav #login p {
    white-space: nowrap; }
  #top-nav #login span {
    border-left: 2px solid #fff; }
#top-nav #register {
  max-width: 250px; }
  #top-nav #register img {
    width: 23px; }
  #top-nav #register span {
    border-left: 2px solid #fff; }
#top-nav #text-element {
  background-color: #f0cc05;
  white-space: nowrap; }
  #top-nav #text-element img {
    width: 13px; }
  #top-nav #text-element span {
    border-right: 2px solid #fff; }
  #top-nav #text-element p {
    color: #000;
    font-weight: 600;
    white-space: nowrap; }
  #top-nav #text-element .rotate {
    transform: rotate(180deg); }
#top-nav p {
  margin: 0;
  padding: 0 15px;
  text-transform: uppercase;
  flex: 1 1;
  text-align: center;
  font-size: 18px; }
#top-nav .element {
  height: 38px;
  flex: 1 1 auto;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  border-radius: 8px;
  overflow: hidden;
  display: flex; }
  #top-nav .element span {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 100%; }
    #top-nav .element span img {
      width: 18px; }
  #top-nav .element:hover {
    box-shadow: 0px 0px 8px #aa2c1f; }
#top-nav .flex-box {
  margin-left: -10px;
  margin-right: -10px; }

#listing-search-options {
  margin-bottom: 8px;
  padding: 6px 15px;
  display: flex;
  align-items: center; }
  #listing-search-options h4 {
    margin: 0;
    font-weight: 400;
    font-size: 16px; }
    #listing-search-options h4 span {
      font-weight: bold; }

.subpage {
  margin-bottom: 10px; }
  .subpage .box-title img {
    filter: brightness(0%); }

.btn-subscribe-search {
  color: #fff;
  background-color: #aa2c1f;
  padding: 2px 10px;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase; }

#description a {
  color: #f0cc05; }
  #description a:hover {
    text-decoration: underline; }

#view-filters {
  margin-left: -2px;
  margin-right: -2px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 5px; }
  #view-filters .kat-f {
    display: flex;
    flex-wrap: wrap;
    margin-right: 20px; }
    #view-filters .kat-f.remove-filters .one-filter {
      background-color: #aa2c1f;
      color: #fff; }
  #view-filters .one-filter {
    background-color: #ededed;
    color: #aa2c1f;
    border: 1px solid #aa2c1f;
    border-radius: 8px;
    padding: 2px 10px;
    margin: 2px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    #view-filters .one-filter span {
      display: block;
      font-weight: bold;
      font-size: 14px;
      margin-left: 10px; }

#middle-bar #logo {
  flex: 1 1;
  max-width: max-content; }
  #middle-bar #logo a img {
    height: 124px;
    width: auto; }
#middle-bar .flex-box {
  max-height: 124px; }

#big-image {
  flex: 1 1;
  overflow: hidden;
  margin-left: 20px;
  border-radius: 8px;
  border: 2px solid #dad6d6; }
  #big-image a {
    display: block;
    text-indent: -9999em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 124px; }

#top-filters {
  margin-top: 10px;
  margin-bottom: 10px; }
  #top-filters p {
    margin: 0;
    margin-right: 20px;
    font-size: 17px; }
  #top-filters .flex-box {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    justify-content: space-between;
    border-radius: 8px;
    height: 48px;
    align-items: center;
    position: relative; }
    #top-filters .flex-box.open-filter {
      border-radius: 8px 8px 0px 0px; }

.filters {
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center; }
  .filters .buttons-wrapper {
    display: flex; }
  .filters .btn-switch {
    text-align: left;
    text-transform: uppercase;
    font-size: 17px;
    padding-top: 2px;
    padding-bottom: 2px;
    height: 36px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: right 15px center;
    background-image: url("../img/open.svg"); }
    .filters .btn-switch:focus {
      box-shadow: none;
      outline: none; }
    .filters .btn-switch.open {
      border-color: #f0cc05;
      color: #f0cc05; }
  .filters .element .switch-menu {
    padding: 15px;
    margin: 0;
    list-style: none;
    position: absolute;
    background-color: #ededed;
    margin-top: 6px;
    border-top: 2px solid #f0cc05;
    display: none;
    z-index: 10;
    left: 0px;
    right: 0px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    column-count: 4; }
    .filters .element .switch-menu li {
      transition: 0.3s;
      -webkit-transition: 0.3s;
      text-transform: uppercase;
      cursor: pointer;
      font-size: 18px;
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      break-inside: avoid; }
      .filters .element .switch-menu li .holder {
        display: flex;
        align-items: center;
        position: relative;
        cursor: pointer;
        margin-bottom: 6px; }
        .filters .element .switch-menu li .holder .form-control {
          position: absolute;
          left: 0px;
          top: 0px;
          width: 1px;
          height: 1px;
          opacity: 0;
          z-index: -10; }
        .filters .element .switch-menu li .holder .filter-checkbox {
          transition: 0.3s;
          -webkit-transition: 0.3s;
          width: 20px;
          height: 20px;
          border-radius: 3px;
          border: 1px solid #aa2c1f;
          margin-right: 10px;
          background-color: #fff;
          background-position: center center;
          background-size: 12px;
          background-repeat: no-repeat; }
        .filters .element .switch-menu li .holder .filter-name {
          transition: 0.3s;
          -webkit-transition: 0.3s;
          color: #000; }
        .filters .element .switch-menu li .holder:hover .filter-name {
          color: #aa2c1f; }
        .filters .element .switch-menu li .holder:hover .filter-checkbox {
          border-color: #aa2c1f; }
        .filters .element .switch-menu li .holder.active .filter-checkbox {
          background-image: url("/img/red-check.svg"); }
        .filters .element .switch-menu li .holder.active .filter-name {
          color: #aa2c1f; }

.search {
  align-items: center;
  display: flex;
  padding-left: 15px;
  padding-right: 15px; }

.serach-wrapper {
  position: relative; }
  .serach-wrapper .btn {
    position: absolute;
    right: 5px;
    padding: 0;
    top: 0px;
    bottom: 0px;
    width: 40px; }
    .serach-wrapper .btn img {
      width: 20px;
      position: relative;
      bottom: 2px; }
  .serach-wrapper .form-control {
    border: none;
    height: 34px;
    color: #000;
    background-color: #fff; }
    .serach-wrapper .form-control:focus {
      box-shadow: 0px 0px 4px #f0cc05; }

.vertical-listing.userpanel-listing .one-element {
  cursor: initial; }
.vertical-listing .one-element {
  position: relative;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  padding-right: 40px;
  border-radius: 8px;
  overflow: hidden;
  height: 202px;
  display: flex;
  background-color: #aa2c1f;
  color: #fff;
  cursor: pointer;
  margin-bottom: 5px; }
  .vertical-listing .one-element p {
    margin: 0; }
  .vertical-listing .one-element .foto {
    min-width: 212px;
    max-width: 212px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-right: 5px solid #fff;
    position: relative; }
    .vertical-listing .one-element .foto a {
      position: relative;
      max-height: 100%;
      max-width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-start; }
    .vertical-listing .one-element .foto .profile-foto {
      width: 100%;
      height: auto; }
    .vertical-listing .one-element .foto .label {
      position: absolute; }
    .vertical-listing .one-element .foto .flag-label {
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      border: 1px solid #fff;
      left: 10px;
      top: 8px;
      width: 25px;
      height: 16px; }
    .vertical-listing .one-element .foto .video-label {
      top: 0px;
      right: 0px;
      background-color: #aa2c1f;
      color: #fff;
      font-size: 14px;
      padding: 4px 10px; }
    .vertical-listing .one-element .foto .verifed-label {
      height: 38px;
      text-align: center;
      padding-left: 10px;
      padding-right: 10px;
      background-color: #aa2c1f;
      bottom: 0px;
      left: 0px;
      color: #fff;
      line-height: 13px;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center; }
    .vertical-listing .one-element .foto .foto-label {
      height: 38px;
      padding-left: 10px;
      padding-right: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      right: 0px;
      bottom: 0px;
      background-color: #aa2c1f;
      color: #fff;
      font-weight: 500; }
      .vertical-listing .one-element .foto .foto-label img {
        width: 20px;
        margin-right: 5px; }
    .vertical-listing .one-element .foto > img {
      min-width: 100%;
      min-height: 100%; }
  .vertical-listing .one-element .wrapper {
    padding: 18px 28px;
    width: 100%;
    display: flex;
    flex-direction: column; }
    .vertical-listing .one-element .wrapper .top-data {
      font-size: 14px;
      color: #fff;
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
      .vertical-listing .one-element .wrapper .top-data a {
        color: #fff;
        opacity: 0.7; }
        .vertical-listing .one-element .wrapper .top-data a:hover {
          opacity: 1; }
      .vertical-listing .one-element .wrapper .top-data .left {
        display: flex;
        opacity: 0.7; }
        .vertical-listing .one-element .wrapper .top-data .left .date {
          margin-right: 20px; }
        .vertical-listing .one-element .wrapper .top-data .left .region-type {
          display: flex; }
          .vertical-listing .one-element .wrapper .top-data .left .region-type span {
            white-space: nowrap;
            display: block; }
      .vertical-listing .one-element .wrapper .top-data .right {
        justify-content: flex-end;
        display: flex; }
        .vertical-listing .one-element .wrapper .top-data .right img {
          width: 20px; }
        .vertical-listing .one-element .wrapper .top-data .right .review {
          margin-right: 20px; }
        .vertical-listing .one-element .wrapper .top-data .right .rating {
          margin-right: 20px; }
          .vertical-listing .one-element .wrapper .top-data .right .rating span {
            transition: 0.3s;
            -webkit-transition: 0.3s;
            opacity: 0.7; }
            .vertical-listing .one-element .wrapper .top-data .right .rating span img {
              transition: 0.3s;
              -webkit-transition: 0.3s; }
            .vertical-listing .one-element .wrapper .top-data .right .rating span:first-child img {
              position: relative;
              bottom: 3px; }
            .vertical-listing .one-element .wrapper .top-data .right .rating span:hover {
              opacity: 1; }
              .vertical-listing .one-element .wrapper .top-data .right .rating span:hover img {
                transform: translateY(3px); }
              .vertical-listing .one-element .wrapper .top-data .right .rating span:hover:first-child img {
                transform: translateY(-3px); }
        .vertical-listing .one-element .wrapper .top-data .right .favorite {
          transition: 0.3s;
          -webkit-transition: 0.3s;
          cursor: pointer;
          opacity: 0.7; }
          .vertical-listing .one-element .wrapper .top-data .right .favorite img {
            position: relative;
            bottom: 1px; }
          .vertical-listing .one-element .wrapper .top-data .right .favorite.added {
            color: #f0cc05;
            opacity: 1; }
          .vertical-listing .one-element .wrapper .top-data .right .favorite:hover {
            opacity: 1; }
    .vertical-listing .one-element .wrapper .desc .cut-text {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical; }
    .vertical-listing .one-element .wrapper .desc .listing-ad-title, .vertical-listing .one-element .wrapper .desc h2 {
      text-transform: uppercase;
      font-size: 18px;
      margin-bottom: 5px;
      margin-top: 5px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical; }
    .vertical-listing .one-element .wrapper .desc p {
      font-size: 15px;
      text-align: justify;
      line-height: 19px;
      opacity: 0.9; }
      .vertical-listing .one-element .wrapper .desc p a {
        color: #f0cc05;
        overflow: hidden;
        display: none;
        pointer-events: none;
        cursor: default; }
    .vertical-listing .one-element .wrapper .bottom-buttons {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto; }
      .vertical-listing .one-element .wrapper .bottom-buttons .buttons {
        margin-left: -5px;
        margin-right: -5px;
        display: flex; }
        .vertical-listing .one-element .wrapper .bottom-buttons .buttons a, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink {
          width: 240px;
          border: 2px solid #fff;
          border-radius: 8px;
          margin-left: 5px;
          margin-right: 5px;
          height: 36px;
          color: #fff;
          font-size: 17px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          overflow: hidden; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink .icon {
            transition: 0.3s;
            -webkit-transition: 0.3s;
            flex: 1 1;
            min-width: 42px;
            max-width: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-right: 2px solid #fff;
            height: 100%; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon img, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink .icon img {
              width: 19px; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .name, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink .name {
            width: 100%;
            text-align: center; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-tel .icon, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.link-tel .icon {
            background-color: #e70328; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-whatsapp .icon, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.link-whatsapp .icon {
            background-color: #3ba450; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-whatsapp .icon img, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.link-whatsapp .icon img {
              width: 22px; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-mail .icon, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.link-mail .icon {
            background-color: #1db2cd; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-mail .icon img, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.link-mail .icon img {
              width: 23px; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-www .icon, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.link-www .icon {
            background-color: #f97b00; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-www .icon img, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.link-www .icon img {
              width: 22px; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a:hover:not(.nolink), .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink:hover:not(.nolink) {
            color: #f0cc05;
            border-color: #f0cc05; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a:hover:not(.nolink) .icon, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink:hover:not(.nolink) .icon {
              border-color: #f0cc05; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.disabled, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.disabled {
            opacity: 0.5;
            cursor: not-allowed; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.disabled .icon, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.disabled .icon {
              background-color: transparent; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.disabled:hover, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.disabled:hover {
              border-color: #fff;
              color: #fff; }
              .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.disabled:hover .icon, .vertical-listing .one-element .wrapper .bottom-buttons .buttons .nolink.disabled:hover .icon {
                border-color: #fff; }
      .vertical-listing .one-element .wrapper .bottom-buttons .mehr-btn {
        color: #fff;
        font-weight: 600;
        padding-right: 20px;
        background-position: right;
        background-image: url("/img/arrow.svg");
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: right 5px center; }
        .vertical-listing .one-element .wrapper .bottom-buttons .mehr-btn:hover {
          color: #f0cc05;
          background-position: right 0px center; }
  .vertical-listing .one-element .premium-label {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    width: 40px;
    background-color: #f0cc05;
    display: none;
    justify-content: center;
    align-items: center;
    font-weight: 600; }
    .vertical-listing .one-element .premium-label span {
      display: block;
      color: #000;
      transform: rotate(90deg);
      font-size: 22px; }
  .vertical-listing .one-element:hover {
    box-shadow: 0px 0px 8px #aa2c1f; }
  .vertical-listing .one-element.premium {
    border: 4px solid #f0cc05;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #f0cc05;
    height: 206px; }
    .vertical-listing .one-element.premium .premium-label {
      display: flex; }
    .vertical-listing .one-element.premium .wrapper {
      background-color: #aa2c1f; }
    .vertical-listing .one-element.premium .foto {
      min-width: 208px;
      max-width: 208px;
      border-color: #f0cc05; }
  .vertical-listing .one-element.bank .foto .profile-foto {
    max-width: none !important;
    width: 207px;
    height: 202px;
    object-fit: cover;
    object-position: top; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px; }
  .pagination .numbers {
    display: flex;
    justify-content: center; }
  .pagination a:not(.nav-button) {
    width: 40px;
    height: 42px;
    background-color: #ededed;
    color: #888888;
    border-radius: 8px;
    margin-left: 3px;
    margin-right: 3px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .pagination a:not(.nav-button).active {
      background-color: #aa2c1f;
      color: #fff; }
    .pagination a:not(.nav-button):hover {
      opacity: 0.8;
      background-color: #aa2c1f;
      color: #fff; }
  .pagination .nav-button {
    margin-left: 10px;
    margin-right: 10px;
    color: #000;
    font-weight: 600;
    font-size: 20px;
    background-repeat: no-repeat;
    background-size: 10px; }
  .pagination .prev {
    background-position: left 5px center;
    background-image: url("/img/prev.svg");
    padding-left: 25px; }
    .pagination .prev:hover {
      background-position: left 0px center; }
  .pagination .next {
    background-position: right 5px center;
    background-image: url("/img/next.svg");
    padding-right: 25px; }
    .pagination .next:hover {
      background-position: right 0px center; }

#boxes .flex-box {
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px; }
#boxes .one-box {
  flex: 1 1 44%;
  display: flex;
  flex-direction: column;
  margin: 8px;
  border-radius: 8px;
  background-color: #ededed;
  padding: 35px 60px; }
  #boxes .one-box .links {
    margin-top: auto; }
    #boxes .one-box .links ul {
      column-count: 2;
      list-style: none;
      padding: 0;
      margin: 0; }
      #boxes .one-box .links ul li a {
        padding-left: 22px;
        display: block;
        background-position: left top 8px;
        background-image: url("/img/li-red.svg");
        background-repeat: no-repeat;
        background-size: 10px;
        color: #000;
        font-size: 17px;
        font-weight: 500; }
        #boxes .one-box .links ul li a:hover {
          color: #aa2c1f;
          background-position: left 5px top 8px; }
  #boxes .one-box h2 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 36px;
    margin: 0;
    margin-bottom: 15px; }
  #boxes .one-box p {
    text-align: justify;
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 30px; }
    #boxes .one-box p a {
      color: blue;
      text-decoration: underline; }
      #boxes .one-box p a:hover {
        color: #aa2c1f; }

#linkbox .inner {
  border-radius: 8px;
  background-color: #ededed;
  padding: 35px 60px;
  margin-top: 8px;
  margin-bottom: 8px; }
#linkbox ul {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 5; }
  #linkbox ul li a {
    padding-left: 22px;
    display: block;
    background-position: left top 10px;
    background-image: url("/img/li-red.svg");
    background-repeat: no-repeat;
    background-size: 10px;
    color: #000;
    font-size: 19px; }
    #linkbox ul li a:hover {
      color: #aa2c1f;
      background-position: left 5px top 10px; }

#small-images {
  margin-top: 20px;
  margin-bottom: 20px; }
  #small-images .inner {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; }
    #small-images .inner a {
      margin: 10px; }
      #small-images .inner a img {
        height: 60px;
        width: auto; }
      #small-images .inner a:hover {
        box-shadow: 0px 0px 8px #aa2c1f; }

#footer-links .links-wrapper {
  display: flex;
  padding: 35px 60px;
  flex: auto;
  justify-content: space-between;
  border-radius: 8px; }
  #footer-links .links-wrapper h3 {
    font-size: 18px; }
  #footer-links .links-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    #footer-links .links-wrapper ul li a {
      padding-left: 22px;
      display: block;
      background-position: left top 6px;
      background-image: url("/img/li.svg");
      background-repeat: no-repeat;
      background-size: 10px;
      color: #fff;
      font-size: 15px;
      opacity: 0.7; }
      #footer-links .links-wrapper ul li a:hover {
        opacity: 1;
        background-position: left 5px top 6px; }
  #footer-links .links-wrapper .one-column {
    margin-left: 10px;
    margin-right: 10px; }
#footer-links .footer-logo {
  flex: auto; }

#footer p {
  margin: 0; }
#footer .flex-box {
  align-items: center;
  justify-content: space-between;
  height: 60px; }

#footer-social {
  display: flex;
  align-items: center; }
  #footer-social img {
    height: 36px;
    overflow: hidden;
    border-radius: 6px; }
  #footer-social a {
    display: block;
    margin-left: 2px;
    margin-right: 2px; }
    #footer-social a:hover {
      transform: translateY(-3px); }

#function-buttons {
  display: flex; }
  #function-buttons a, #function-buttons button {
    color: #fff;
    opacity: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 14px; }
    #function-buttons a img, #function-buttons button img {
      width: 15px;
      margin-left: 5px;
      margin-right: 5px;
      position: relative; }
    #function-buttons a span, #function-buttons button span {
      margin-right: 5px; }
    #function-buttons a.review img, #function-buttons button.review img {
      position: relative;
      top: 2px; }
    #function-buttons a.like img, #function-buttons button.like img {
      position: relative;
      bottom: 1px; }
    #function-buttons a.dislike img, #function-buttons button.dislike img {
      position: relative;
      top: 2px; }
    #function-buttons a.favorite img, #function-buttons button.favorite img {
      margin-left: 0px; }
    #function-buttons a#copy-link, #function-buttons button#copy-link {
      transition: 0.3s;
      -webkit-transition: 0.3s;
      background: transparent;
      border: none;
      box-shadow: none;
      white-space: nowrap; }
      #function-buttons a#copy-link img, #function-buttons button#copy-link img {
        margin-left: 0px; }
    #function-buttons a:hover, #function-buttons button:hover {
      opacity: 1; }
    #function-buttons a.added, #function-buttons button.added {
      opacity: 1;
      color: #f0cc05; }

#banned-belt {
  z-index: 99;
  height: 50px;
  background-color: #f0cc05;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aa2c1f;
  text-transform: uppercase;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0px;
  right: 0px;
  font-size: 20px;
  font-weight: 700; }

#title-belt {
  margin-top: 10px;
  margin-bottom: 10px; }
  #title-belt #title {
    padding-left: 15px;
    padding-right: 15px; }
    #title-belt #title h1 {
      font-weight: 400;
      margin: 0;
      font-size: 19px;
      text-transform: uppercase;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical; }
      #title-belt #title h1 img {
        width: 20px;
        position: relative;
        top: -2px; }
  #title-belt .flex-box {
    height: 48px;
    border-radius: 8px;
    align-items: center;
    justify-content: space-between; }

#top-navigation .flex-box, #bottom-navigation .flex-box {
  justify-content: space-between;
  align-items: center;
  height: 30px; }
#top-navigation a, #bottom-navigation a {
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  color: #000;
  font-size: 19px;
  font-weight: 500;
  background-repeat: no-repeat; }
  #top-navigation a:hover, #bottom-navigation a:hover {
    color: #fc971f; }
#top-navigation .prev, #bottom-navigation .prev {
  background-image: url("../img/prev.svg");
  background-size: 12px;
  background-position: left 5px top 9px; }
  #top-navigation .prev:hover, #bottom-navigation .prev:hover {
    background-position: left 0px top 9px; }
#top-navigation .next, #bottom-navigation .next {
  background-image: url("../img/next.svg");
  background-size: 12px;
  background-position: right 5px top 9px; }
  #top-navigation .next:hover, #bottom-navigation .next:hover {
    background-position: right 0px top 9px; }
#top-navigation .return, #bottom-navigation .return {
  background-image: url("../img/list.svg");
  background-size: 20px;
  background-position: left 5px top 7px; }
  #top-navigation .return:hover, #bottom-navigation .return:hover {
    background-position: left 0px top 7px; }

#bottom-navigation {
  margin-bottom: 10px; }

#mobileNav {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  background-color: #fff;
  overflow: hidden;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 100vh;
  max-height: 0%;
  z-index: 999999; }
  #mobileNav #mobile-logo {
    padding: 10px 15px;
    margin-bottom: 30px; }
    #mobileNav #mobile-logo img {
      max-width: 100px; }
  #mobileNav .btn-close {
    position: absolute;
    font-weight: 600;
    font-size: 26px;
    top: 1px;
    right: 18px; }
  #mobileNav .mobile-nav {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
    list-style: none; }
    #mobileNav .mobile-nav li a {
      color: #000;
      background-position: left center;
      background-repeat: no-repeat;
      background-size: 14px;
      font-size: 20px;
      text-transform: uppercase;
      font-weight: 600;
      padding: 5px 0px 5px 30px;
      background-image: url("/img/red-arrow.svg"); }
  #mobileNav.open {
    max-height: 100%; }

#mobileSearch {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  position: fixed;
  top: 0px;
  width: 100%;
  left: 0px;
  right: 0px;
  background-color: #aa2c1f;
  box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999999;
  padding-top: 20px;
  padding-bottom: 20px;
  transform: translateY(-100px); }
  #mobileSearch .form-group {
    position: relative;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    float: none;
    margin-bottom: 0px; }
    #mobileSearch .form-group .form-control {
      width: 100%;
      margin-bottom: 0; }
    #mobileSearch .form-group .btn-search {
      position: absolute;
      height: 100%;
      top: 0px;
      bottom: 0px;
      right: 0px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-right: 10px;
      padding-left: 10px; }
      #mobileSearch .form-group .btn-search img {
        width: 26px; }
  #mobileSearch .btn-close {
    position: absolute;
    bottom: -20px;
    background-color: #aa2c1f;
    right: 0px;
    background-image: url("../img/up-chevron.svg");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 0;
    width: 40px;
    height: 20px;
    border-radius: 0px 0px 8px 8px; }
  #mobileSearch.open {
    transform: translateY(0px); }

#main-card .foto-box {
  flex: 1 1 68%;
  background-color: #aa2c1f;
  border-radius: 8px;
  margin-right: 20px;
  padding: 20px;
  margin-bottom: 20px; }
#main-card .right-box {
  flex: 1 1 32%;
  background-color: #aa2c1f;
  border-radius: 8px;
  margin-bottom: 20px; }
  #main-card .right-box .name:not(span) {
    padding: 30px 15px;
    border-bottom: 1px solid #bb564c; }
    #main-card .right-box .name:not(span) h2 {
      text-align: center;
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 42px;
      margin-top: 0; }
    #main-card .right-box .name:not(span) h3 {
      text-align: center;
      color: #fff;
      font-weight: 400;
      font-size: 20px;
      text-transform: uppercase;
      margin-bottom: 0; }
    #main-card .right-box .name:not(span) h4 {
      text-transform: uppercase;
      color: #fff;
      font-size: 18px;
      font-weight: 300;
      margin-bottom: 0;
      margin-top: 10px; }
  #main-card .right-box .buttons {
    max-width: 340px;
    padding: 20px 15px;
    margin-left: auto;
    margin-right: auto;
    float: none; }
  #main-card .right-box .regions {
    border-top: 1px solid #bb564c;
    color: #fff;
    padding-left: 12%;
    padding-right: 12%;
    padding-top: 10px;
    display: flex;
    justify-content: center; }
    #main-card .right-box .regions h4 {
      font-size: 19px;
      margin-right: 10px;
      margin-bottom: 4px; }
  #main-card .right-box .adress {
    display: flex;
    align-items: center;
    padding-left: 12%;
    padding-right: 12%;
    padding-top: 0px;
    padding-bottom: 20px; }
    #main-card .right-box .adress .navigate {
      text-align: right;
      flex: 1 1 50%; }
      #main-card .right-box .adress .navigate img {
        width: 152px;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -webkit-backface-visibility: hidden;
        height: auto; }
        #main-card .right-box .adress .navigate img:hover {
          transform: scale(1.05); }
    #main-card .right-box .adress .text {
      flex: 1 1 50%; }
      #main-card .right-box .adress .text h4 {
        color: #fff;
        font-size: 19px;
        font-weight: 600;
        margin: 0;
        margin-bottom: 5px; }
      #main-card .right-box .adress .text p {
        font-size: 19px;
        margin: 0;
        color: #fff;
        line-height: 21px; }

.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #fff !important;
  display: flex;
  justify-content: center;
  align-items: center; }
  .owl-carousel .owl-nav .owl-next img, .owl-carousel .owl-nav .owl-prev img {
    width: 12px; }
  .owl-carousel .owl-nav .owl-next:hover, .owl-carousel .owl-nav .owl-prev:hover {
    border-color: #fc971f !important; }
.owl-carousel .owl-nav .owl-next {
  right: -60px; }
.owl-carousel .owl-nav .owl-prev {
  left: -60px; }
  .owl-carousel .owl-nav .owl-prev img {
    transform: rotate(180deg); }

#main-foto {
  max-width: 712px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  margin-bottom: 20px; }
  #main-foto .one-foto {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    height: 470px;
    border: 1px solid #fff; }
    #main-foto .one-foto .video {
      width: 100%;
      height: auto; }
    #main-foto .one-foto img {
      object-fit: contain;
      max-width: initial;
      width: 100%;
      height: 100%; }
    #main-foto .one-foto:hover {
      border-color: #fc971f; }

#thumbnails {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  float: none; }
  #thumbnails .owl-item.center .one-foto {
    border-color: #fc971f; }
    #thumbnails .owl-item.center .one-foto img {
      opacity: 1; }
  #thumbnails .owl-next, #thumbnails .owl-prev {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    top: calc(50% - 10px); }
    #thumbnails .owl-next img, #thumbnails .owl-prev img {
      width: 7px; }
  #thumbnails .owl-next {
    right: -30px; }
  #thumbnails .owl-prev {
    left: -30px; }
  #thumbnails .one-foto {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 110px;
    background-color: #aa2c1f;
    cursor: pointer;
    border: 1px solid #fff; }
    #thumbnails .one-foto img {
      transition: 0.3s;
      -webkit-transition: 0.3s;
      object-fit: contain;
      max-width: initial;
      width: 100%;
      height: 100%;
      opacity: 0.5; }
    #thumbnails .one-foto:hover {
      border-color: #fc971f; }
      #thumbnails .one-foto:hover img {
        opacity: 1; }
    #thumbnails .one-foto.view {
      border-color: #fc971f; }

#description {
  margin-bottom: 20px; }
  #description .box-title {
    padding-right: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  #description .wrapper {
    border-radius: 8px; }
    #description .wrapper .text {
      padding: 20px 45px;
      color: #fff !important;
      background-color: transparent !important;
      font-family: "Nunito", sans-serif !important; }
      #description .wrapper .text span, #description .wrapper .text p, #description .wrapper .text h1, #description .wrapper .text h2, #description .wrapper .text h3, #description .wrapper .text h4, #description .wrapper .text h5, #description .wrapper .text ol li, #description .wrapper .text ul li {
        color: #fff !important;
        background-color: transparent !important;
        font-family: "Nunito", sans-serif !important; }
      #description .wrapper .text br + br {
        display: none !important; }
      #description .wrapper .text a {
        pointer-events: none;
        cursor: default;
        color: #fff; }

#services {
  margin-bottom: 20px; }
  #services .wrapper {
    border-radius: 8px; }
    #services .wrapper .inner {
      padding: 20px 45px; }
      #services .wrapper .inner ul {
        list-style: none;
        column-count: 6;
        margin: 0;
        padding: 0; }
        #services .wrapper .inner ul li {
          padding: 0 0 0 24px;
          background-image: url("../img/check.svg");
          background-position: left top 8px;
          background-repeat: no-repeat;
          background-size: 15px;
          font-size: 18px;
          -webkit-column-break-inside: avoid;
          page-break-inside: avoid;
          break-inside: avoid; }

.box-title {
  border-bottom: 1px solid #bb564c; }
  .box-title h3 {
    margin: 0;
    padding: 10px 45px;
    font-weight: 400;
    font-size: 26px;
    text-transform: uppercase; }

#infobox, #infobox-info {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
  display: none;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  padding: 30px; }

.popup-wrapper {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  background-color: #aa2c1f;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  overflow-y: auto;
  position: relative; }
  .popup-wrapper.grey-bg {
    background-color: #ededed;
    border: 2px solid #aa2c1f;
    width: 95%;
    height: 95%; }
    .popup-wrapper.grey-bg .btn-close {
      color: #aa2c1f; }
    .popup-wrapper.grey-bg .wrapper-inner {
      color: #000; }
  .popup-wrapper .wrapper-inner {
    color: #fff;
    transition: 0.3s;
    -webkit-transition: 0.3s; }
  .popup-wrapper h3 {
    text-transform: uppercase;
    color: #fff; }
  .popup-wrapper .btn-close {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    font-size: 18px; }
    .popup-wrapper .btn-close:hover {
      color: #f0cc05; }
  .popup-wrapper .form-text {
    padding: 5px 10px;
    width: 100%; }
  .popup-wrapper a {
    color: #f0cc05; }
    .popup-wrapper a:hover {
      text-decoration: underline; }

#review h3.empty {
  padding: 20px 15px; }
#review .one-review {
  padding: 20px 45px; }
  #review .one-review .top {
    display: flex;
    align-items: center;
    margin-bottom: 5px; }
    #review .one-review .top .icon {
      margin-right: 5px; }
      #review .one-review .top .icon img {
        width: 18px; }
        #review .one-review .top .icon img.like {
          position: relative;
          bottom: 3px; }
    #review .one-review .top .author .name {
      color: #f0cc05;
      font-weight: 600; }
    #review .one-review .top .author .text {
      opacity: 0.8; }
    #review .one-review .top .date {
      margin-left: auto;
      opacity: 0.8; }
  #review .one-review:not(:first-child) {
    border-top: 1px solid #bb564c; }
#review .box-title {
  display: flex;
  align-items: center;
  padding-right: 45px; }
  #review .box-title h3 {
    padding-right: 20px; }
  #review .box-title .review-info img {
    width: 20px;
    position: relative; }
  #review .box-title .review-info a {
    color: #fff; }
    #review .box-title .review-info a.like img {
      bottom: 3px; }
    #review .box-title .review-info a.dislike {
      margin-left: 10px; }
      #review .box-title .review-info a.dislike img {
        top: 1px; }
  #review .box-title .btn-add-review {
    color: #000;
    margin-left: auto;
    font-weight: 700; }
    #review .box-title .btn-add-review .text {
      padding-right: 0; }
#review .wrapper {
  border-radius: 8px; }

.like-review-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px; }
  .like-review-wrapper .like-review {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    margin-left: 30px;
    margin-right: 30px;
    cursor: pointer;
    opacity: 0.8; }
    .like-review-wrapper .like-review img {
      width: 80px; }
    .like-review-wrapper .like-review:hover:first-child {
      transform: translateY(-5px); }
    .like-review-wrapper .like-review:hover:last-child {
      transform: translateY(5px); }
    .like-review-wrapper .like-review.active {
      opacity: 1; }
    .like-review-wrapper .like-review.inactive {
      opacity: 0.2; }
    .like-review-wrapper .like-review.warrning {
      opacity: 1;
      transform: scale(1.05); }

#user-sidebar {
  min-width: 248px;
  max-width: 248px;
  margin-right: 10px; }

.sidebar-wrapper {
  padding: 15px 10px; }
  .sidebar-wrapper h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px; }
  .sidebar-wrapper h4 {
    font-weight: 400;
    color: #aa2c1f;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px; }
    .sidebar-wrapper h4 span {
      font-weight: 600; }

.panel-nav .menu-vertical {
  list-style: none;
  margin-bottom: 20px;
  padding: 0; }
  .panel-nav .menu-vertical li a {
    display: block;
    color: #fff;
    background-color: #aa2c1f;
    border: 2px solid #aa2c1f;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 3px 15px;
    position: relative;
    text-align: center;
    font-size: 18px; }
    .panel-nav .menu-vertical li a span {
      background-color: #ededed;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      position: absolute;
      right: 15px;
      top: 7px;
      font-size: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #aa2c1f;
      font-weight: 500; }
    .panel-nav .menu-vertical li a:hover {
      box-shadow: 0px 0px 8px #aa2c1f; }
  .panel-nav .menu-vertical li.active a {
    box-shadow: 0px 0px 8px #aa2c1f; }

#user-content {
  flex: auto; }
  #user-content .panel-title {
    padding: 20px 45px;
    border-radius: 8px; }
    #user-content .panel-title h1 {
      font-size: 30px;
      margin: 0;
      text-transform: uppercase;
      display: flex;
      align-items: center; }
      #user-content .panel-title h1 .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        position: relative;
        top: 1px; }
        #user-content .panel-title h1 .icon img {
          height: 24px; }

#userpanel {
  margin-top: 10px;
  margin-bottom: 30px; }

.pills .pills-buttons {
  display: flex; }
  .pills .pills-buttons button {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0s;
    -webkit-transition: 0s;
    font-size: 20px;
    background-color: #ededed;
    color: #aa2c1f;
    border: 2px solid #aa2c1f;
    height: 60px;
    width: 215px;
    border-radius: 8px 8px 0 0;
    z-index: 1; }
    .pills .pills-buttons button span {
      border-radius: 50%;
      background-color: #aa2c1f;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      margin-left: 10px; }
    .pills .pills-buttons button.active {
      border-bottom: #ededed; }
.pills .pills-wrapper {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  border: 2px solid #aa2c1f;
  border-radius: 0 8px 8px 8px;
  background-color: #ededed;
  padding: 15px 10px;
  position: relative;
  top: -2px; }
  .pills .pills-wrapper .one-pill {
    display: none; }
    .pills .pills-wrapper .one-pill.active {
      display: block; }

#inserate-manager .one-element {
  overflow: visible;
  padding-right: 0; }
  #inserate-manager .one-element .foto {
    overflow: hidden;
    border-radius: 8px 0px 0px 8px;
    border-right: none; }
    #inserate-manager .one-element .foto img {
      border-radius: 8px 0px 0px 8px; }
  #inserate-manager .one-element .wrapper .top-data .left .region-type span {
    max-width: 78px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block; }
  #inserate-manager .one-element .wrapper .ad-options {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    #inserate-manager .one-element .wrapper .ad-options .dates {
      font-size: 18px; }
      #inserate-manager .one-element .wrapper .ad-options .dates div {
        display: flex;
        justify-content: space-between; }
        #inserate-manager .one-element .wrapper .ad-options .dates div strong {
          margin-left: 10px; }
    #inserate-manager .one-element .wrapper .ad-options .clicks {
      font-size: 30px; }
    #inserate-manager .one-element .wrapper .ad-options .options {
      font-size: 18px; }
    #inserate-manager .one-element .wrapper .ad-options .dropdown-button, #inserate-manager .one-element .wrapper .ad-options .menu-panel-xs {
      margin-left: 10px; }
  #inserate-manager .one-element .wrapper .desc {
    border-bottom: 1px solid #bb564c;
    margin-bottom: 10px; }
    #inserate-manager .one-element .wrapper .desc h2 {
      margin-bottom: 5px; }
  #inserate-manager .one-element .wrapper .bottom-buttons .buttons {
    flex: 1 1; }
    #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink {
      cursor: initial;
      width: 100%; }

.dropdown-button, .menu-panel-xs {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  padding: 3px 30px 2px 15px;
  width: 240px;
  position: relative;
  text-align: left;
  background-image: url("../img/open.svg");
  background-position: center right 15px;
  background-size: 12px;
  background-repeat: no-repeat; }
  .dropdown-button .logout, .menu-panel-xs .logout {
    border-top: 1px solid rgba(255, 255, 255, 0.3); }
  .dropdown-button ul, .menu-panel-xs ul {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0px;
    right: 0px;
    background-color: #aa2c1f;
    padding: 15px;
    z-index: 10;
    border: 2px solid #fff;
    margin-top: 2px; }
    .dropdown-button ul li a, .dropdown-button ul li span, .menu-panel-xs ul li a, .menu-panel-xs ul li span {
      -webkit-transition: 0.3s;
      transition: 0.3s;
      color: #fff; }
      .dropdown-button ul li a:hover, .dropdown-button ul li span:hover, .menu-panel-xs ul li a:hover, .menu-panel-xs ul li span:hover {
        color: #f0cc05; }
  .dropdown-button hr, .menu-panel-xs hr {
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    margin-bottom: 5px; }

#xs-bar {
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  #xs-bar .btn-mini-panel-menu {
    margin-right: 30px;
    background-color: transparent;
    border: none; }
    #xs-bar .btn-mini-panel-menu span {
      display: block;
      width: 34px;
      height: 5px;
      border-radius: 4px;
      background-color: #fff;
      margin-bottom: 5px;
      margin-top: 5px; }
  #xs-bar .dropdown-button, #xs-bar .menu-panel-xs {
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    background-image: url("../img/open.svg"), url("../img/open.svg");
    background-position: center right 15px , center left 15px;
    background-size: 12px;
    background-repeat: no-repeat; }
    #xs-bar .dropdown-button ul li a, #xs-bar .menu-panel-xs ul li a {
      text-align: center;
      text-transform: uppercase;
      font-size: 18px; }

#account-xs {
  margin-bottom: 10px; }
  #account-xs h4 {
    text-transform: uppercase;
    font-weight: 500;
    margin: 0; }
    #account-xs h4 span {
      font-weight: initial;
      color: #aa2c1f;
      text-transform: initial; }

.box {
  border-radius: 8px;
  margin-bottom: 10px; }

.title-border {
  font-size: 19px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  border-bottom: 1px solid #aa2c1f;
  padding: 20px 45px;
  color: #aa2c1f; }
  .title-border span {
    color: #000;
    text-transform: initial;
    margin-left: 10px; }

#ad-period, #packets-pack {
  position: relative;
  padding-bottom: 55px; }
  #ad-period .credit-info, #packets-pack .credit-info {
    position: absolute;
    left: 0px;
    right: 0px;
    display: none;
    justify-content: center; }
  #ad-period .flex-box, #packets-pack .flex-box {
    padding: 10px 45px 5px 45px;
    margin-left: -2px;
    margin-right: -2px; }
    #ad-period .flex-box .one-element, #packets-pack .flex-box .one-element {
      flex: 1 1 17%;
      margin-left: 3px;
      margin-right: 3px;
      cursor: pointer; }
      #ad-period .flex-box .one-element .icon, #packets-pack .flex-box .one-element .icon {
        border-radius: 8px;
        padding: 20px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 4px solid #aa2c1f;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        margin-bottom: 5px; }
        #ad-period .flex-box .one-element .icon img, #packets-pack .flex-box .one-element .icon img {
          user-drag: none;
          user-select: none;
          -moz-user-select: none;
          -webkit-user-drag: none;
          -webkit-user-select: none;
          -ms-user-select: none;
          max-width: 100%; }
      #ad-period .flex-box .one-element.active .icon, #packets-pack .flex-box .one-element.active .icon {
        border-color: #f0cc05; }

#ad-region .region {
  column-count: 4;
  list-style: none;
  padding: 45px 45px 45px 45px; }

#ad-category .category {
  column-count: 4;
  padding: 45px 45px 45px 45px; }

#ad-service .service {
  column-count: 4;
  padding: 45px 45px 45px 45px; }

#ad-info .inner {
  padding: 20px 45px 45px 45px; }

.li-buttons {
  list-style: none; }
  .li-buttons li {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.3;
    -webkit-transition: 0.3s;
    border: 2px solid #aa2c1f;
    text-align: center;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    column-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #aa2c1f; }
    .li-buttons li label {
      margin: 0;
      width: 100%;
      padding-top: 3px;
      padding-bottom: 3px;
      cursor: pointer; }
      .li-buttons li label input {
        position: absolute;
        opacity: 0;
        cursor: pointer; }
    .li-buttons li.active {
      border-color: #aa2c1f;
      background-color: #aa2c1f; }
      .li-buttons li.active label {
        color: #fff; }
    .li-buttons li.disabled {
      opacity: 0.4; }
      .li-buttons li.disabled label {
        cursor: not-allowed; }

.red-bg .form-group label {
  font-size: 22px;
  margin-bottom: 5px; }
.red-bg .form-group .form-textarea {
  min-height: 350px; }
.red-bg .form-group .form-control {
  height: 46px;
  background-color: #fff;
  width: 100%;
  margin: 0;
  color: #000;
  font-size: 18px; }
  .red-bg .form-group .form-control:focus {
    box-shadow: none; }

.grey-bg select.form-control {
  height: 46px;
  background-color: #fff;
  width: 100%;
  margin: 0;
  color: #aa2c1f;
  font-size: 18px;
  border: 2px solid #aa2c1f;
  border-radius: 8px; }
  .grey-bg select.form-control:focus {
    box-shadow: none; }
.grey-bg .form-group label {
  font-size: 22px;
  margin-bottom: 5px;
  color: #aa2c1f; }
.grey-bg .form-group .form-textarea {
  min-height: 350px; }
.grey-bg .form-group .form-control {
  height: 46px;
  background-color: #fff;
  width: 100%;
  margin: 0;
  color: #aa2c1f;
  font-size: 18px;
  border: 2px solid #aa2c1f;
  border-radius: 8px; }
  .grey-bg .form-group .form-control:focus {
    box-shadow: none; }

#ad-contact .tel-number {
  display: flex;
  margin-bottom: 15px; }
  #ad-contact .tel-number .prefix {
    flex: 1 1 40%; }
  #ad-contact .tel-number .number {
    margin-left: 6px;
    flex: 1 1 60%; }
#ad-contact .inner {
  padding: 20px 45px 20px 45px; }

.form-group.checkbox-group {
  cursor: pointer;
  position: relative; }
  .form-group.checkbox-group label {
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer; }
    .form-group.checkbox-group label input {
      cursor: pointer; }
    .form-group.checkbox-group label .form-control {
      position: absolute;
      opacity: 0;
      z-index: -1; }
    .form-group.checkbox-group label .checkbox-box {
      -webkit-transition: 0.1s;
      transition: 0.1s;
      margin-right: 10px;
      width: 22px;
      height: 22px;
      min-width: 22px;
      min-height: 22px;
      border-radius: 3px;
      border: 2px solid #aa2c1f;
      background-color: #fff;
      background-image: url("../img/check_white.svg");
      background-position: center center;
      background-size: 14px;
      background-repeat: no-repeat; }
      .form-group.checkbox-group label .checkbox-box.checked {
        background-size: 14px;
        background-color: #aa2c1f; }
  .form-group.checkbox-group.whatsapp-group {
    margin-bottom: 19px; }

.adress-form .postcode {
  flex: 1 1 40%; }
.adress-form .city {
  margin-left: 6px;
  flex: 1 1 60%; }

.form-title {
  color: #aa2c1f;
  font-weight: 400; }

#ad-add .button-accept {
  display: flex;
  justify-content: center; }

#credit-info p {
  margin: 0;
  font-size: 20px; }

#packets-pack .flex-box {
  padding: 10px 45px 20px 45px; }
#packets-pack .title-border {
  display: flex;
  align-items: center;
  padding: 10px 45px; }
  #packets-pack .title-border .form-control {
    background-color: transparent;
    color: #000;
    width: 96px;
    margin-left: auto;
    font-weight: 600; }
#packets-pack .btn-yellow-add .icon {
  background-image: url("../img/cart.svg"); }

.padding-box {
  padding: 20px 45px 20px 45px; }

#discount #discount-form {
  padding-left: 15px;
  padding-right: 15px; }
  #discount #discount-form .form-group {
    margin-bottom: 0; }
#discount .btn-yellow-add .icon {
  background-image: url("../img/arrow.svg");
  background-size: 12px; }

#register, #login {
  margin-bottom: 30px; }
  #register .box-title, #login .box-title {
    border-bottom: 1px solid #fff; }
    #register .box-title h1, #login .box-title h1 {
      display: flex;
      align-items: center;
      padding: 20px 45px;
      margin: 0;
      text-transform: uppercase;
      font-size: 30px; }
      #register .box-title h1 .icon, #login .box-title h1 .icon {
        margin-right: 10px;
        display: flex;
        align-items: center; }
        #register .box-title h1 .icon img, #login .box-title h1 .icon img {
          height: 30px; }
  #register .red-bg, #login .red-bg {
    border-radius: 8px; }
  #register .form .form-group, #login .form .form-group {
    max-width: 454px; }
  #register .info .yellow-li, #login .info .yellow-li {
    list-style: none;
    padding: 0;
    margin-top: 30px; }
    #register .info .yellow-li li, #login .info .yellow-li li {
      font-size: 24px;
      font-weight: 600;
      padding-left: 35px;
      background-image: url("../img/check.svg");
      background-size: 20px;
      padding-top: 7px;
      padding-bottom: 7px;
      background-position: left top 19px;
      background-repeat: no-repeat; }

#register-form, #login-form {
  padding: 30px 45px; }
  #register-form .form-title, #login-form .form-title {
    text-transform: uppercase; }
  #register-form .btn-yellow-add, #login-form .btn-yellow-add {
    color: #000; }
  #register-form .checkbox-group label, #login-form .checkbox-group label {
    align-items: flex-start; }
    #register-form .checkbox-group label .checkbox-box, #login-form .checkbox-group label .checkbox-box {
      border-color: #fff;
      background-color: #aa2c1f;
      background-image: none;
      margin-top: 2px; }
      #register-form .checkbox-group label .checkbox-box.checked, #login-form .checkbox-group label .checkbox-box.checked {
        background-image: url(../img/check_white.svg); }
  #register-form a, #login-form a {
    color: #f0cc05; }
    #register-form a:hover, #login-form a:hover {
      text-decoration: underline; }

#login #login-form .info {
  display: flex;
  align-items: center; }
#login .btn-yellow-add .icon {
  background-image: url("../img/user.svg");
  background-size: 20px; }

.review-sign {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  cursor: pointer; }
  .review-sign:hover.like {
    transform: translateY(-3px); }
  .review-sign:hover.dislike {
    transform: translateY(3px); }

#messages .message {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  display: flex;
  position: relative;
  background-color: #ededed;
  padding: 15px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 8px; }
  #messages .message .avatar img {
    min-width: 90px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin-right: 20px;
    object-position: center center;
    object-fit: cover;
    border: 2px solid #fff; }
  #messages .message .date {
    font-size: 14px; }
  #messages .message .content {
    padding-top: 5px; }
    #messages .message .content .info {
      margin-bottom: 10px; }
      #messages .message .content .info span {
        color: #aa2c1f;
        font-weight: 600; }
  #messages .message .text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; }
  #messages .message .options {
    position: absolute;
    right: 15px;
    top: 10px;
    display: flex; }
    #messages .message .options .btn {
      background-color: #fff;
      padding: 0;
      width: 25px;
      height: 25px;
      margin: 3px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 4px;
      border: 1px solid #aa2c1f; }
      #messages .message .options .btn:hover {
        box-shadow: 0px 0px 5px #aa2c1f; }
    #messages .message .options img {
      width: 14px; }
  #messages .message.readed {
    opacity: 0.8; }
  #messages .message.unread {
    box-shadow: 0px 0px 10px #aa2c1f; }
  #messages .message:hover {
    opacity: 1; }

@media (min-width: 1200px) {
  .two-columns-ul {
    column-count: 2;
    line-height: 28px; } }
#conversation-block {
  width: 1200px;
  max-width: 100%; }
  #conversation-block .message-box {
    margin-bottom: 20px;
    overflow-y: auto; }
  #conversation-block h3 span {
    color: #aa2c1f;
    font-weight: 600; }
  #conversation-block .message-sender form {
    display: flex; }
  #conversation-block .message-sender .btn {
    padding: 0;
    height: 38px;
    margin-left: 10px;
    background-color: #f0cc05;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 20px;
    padding-right: 20px; }
  #conversation-block .message {
    display: flex;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 3px; }
    #conversation-block .message .content {
      position: relative;
      width: 100%; }
    #conversation-block .message .date {
      font-size: 12px;
      opacity: 0.8;
      position: absolute;
      right: 0px;
      top: 0px;
      text-align: right; }
    #conversation-block .message .name {
      color: #aa2c1f;
      font-weight: 700; }
    #conversation-block .message .avatar {
      margin-right: 20px; }
      #conversation-block .message .avatar img {
        width: 60px;
        min-width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 1px solid #fff; }

#messages-options {
  padding: 15px 45px; }
  #messages-options form {
    margin-bottom: 0; }
  #messages-options .btn-delete-all {
    background-color: #fff;
    border: 1px solid #aa2c1f;
    border-radius: 8px;
    float: right;
    color: #000;
    font-size: 18px;
    padding: 5px 35px 5px 15px;
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 20px;
    background-image: url("../img/delete.svg"); }
    #messages-options .btn-delete-all:hover {
      box-shadow: 0px 0px 8px #aa2c1f; }
  #messages-options .form-group {
    margin: 0;
    margin-right: 20px; }
  #messages-options label {
    margin: 0;
    color: #000; }

.messages-list .one-message {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  display: flex;
  padding: 15px 20px;
  color: #000;
  height: 210px;
  border: 2px solid #ededed;
  position: relative;
  cursor: pointer;
  opacity: 0.7;
  overflow: hidden;
  margin-bottom: 8px; }
  .messages-list .one-message .options {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px; }
    .messages-list .one-message .options .btn {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      border-radius: 8px;
      border: 1px solid #aa2c1f;
      width: 38px;
      height: 38px;
      margin: 2px; }
      .messages-list .one-message .options .btn img {
        max-width: 18px;
        max-height: 18px; }
      .messages-list .one-message .options .btn:hover {
        box-shadow: 0px 0px 8px #aa2c1f; }
  .messages-list .one-message .foto {
    flex: 1 1 18%;
    min-width: 180px;
    max-width: 180px;
    height: 180px;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 50%; }
    .messages-list .one-message .foto img {
      width: 100%; }
  .messages-list .one-message .content {
    flex: 1 1 82%; }
    .messages-list .one-message .content .date {
      font-size: 14px;
      margin-bottom: 10px; }
    .messages-list .one-message .content .details {
      display: flex;
      margin-bottom: 10px; }
      .messages-list .one-message .content .details .from {
        font-weight: 600;
        font-size: 17px; }
        .messages-list .one-message .content .details .from span {
          color: #aa2c1f; }
      .messages-list .one-message .content .details .to {
        font-weight: 600;
        margin-left: 20px;
        font-size: 17px; }
        .messages-list .one-message .content .details .to span {
          color: #aa2c1f; }
    .messages-list .one-message .content .text {
      text-align: justify;
      line-height: 19px;
      font-weight: 600;
      font-size: 15px;
      padding-right: 30px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical; }
  .messages-list .one-message.unread {
    border: 2px solid #aa2c1f;
    opacity: 1; }
  .messages-list .one-message:hover {
    opacity: 1;
    box-shadow: 0px 0px 8px #aa2c1f; }

.gallery-for-rmz .inner {
  margin-left: -6px;
  margin-right: -6px;
  display: flex;
  flex-wrap: wrap; }
  .gallery-for-rmz .inner .one-element {
    flex: 1 1 18%;
    background-color: #ededed;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    margin: 6px;
    max-width: 273.41px; }
    .gallery-for-rmz .inner .one-element p {
      margin: 0;
      color: #000; }
      .gallery-for-rmz .inner .one-element p span {
        color: #aa2c1f; }
    .gallery-for-rmz .inner .one-element .text {
      text-align: center; }
    .gallery-for-rmz .inner .one-element .foto {
      margin-bottom: 5px; }
    .gallery-for-rmz .inner .one-element img {
      width: 100%;
      height: 100%;
      object-position: center;
      object-fit: cover; }

.message-sender {
  position: absolute;
  bottom: 15px;
  left: 30px;
  right: 30px; }

.conversation {
  height: 95vh;
  overflow: hidden; }

#conversation-block {
  height: 100%;
  padding-bottom: 80px; }

#subscriptions-list .one-subscription {
  padding: 20px 60px;
  position: relative;
  overflow: hidden; }
  #subscriptions-list .one-subscription .btn-delete-icon {
    position: absolute;
    top: -10px;
    right: -50px; }
  #subscriptions-list .one-subscription .wrapper .name {
    width: 90px; }
  #subscriptions-list .one-subscription .wrapper .one-cat {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 6px; }
  #subscriptions-list .one-subscription .wrapper .list {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
  #subscriptions-list .one-subscription .wrapper .plate {
    margin-left: 6px;
    padding: 3px 10px;
    font-size: 15px;
    margin-bottom: 2px; }
  #subscriptions-list .one-subscription .wrapper .yellow-bar {
    padding: 0;
    max-width: 600px;
    width: 600px;
    float: none;
    margin-right: auto;
    margin-left: auto;
    border: none; }
  #subscriptions-list .one-subscription .number {
    border-radius: 8px;
    background-color: #fff;
    color: #000;
    border: 1px solid #aa2c1f;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    left: -50px;
    font-size: 20px; }

#lead-foto #lead-foto-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
  width: 1px; }
#lead-foto .btn-transparent {
  margin-top: 10px; }
#lead-foto .wrapper {
  padding: 10px 45px;
  text-align: center; }
#lead-foto .lead-foto-preview {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 212px;
  height: 206px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer; }
  #lead-foto .lead-foto-preview img {
    width: 100%; }
  #lead-foto .lead-foto-preview canvas {
    width: 100% !important; }

#foto-load {
  position: fixed;
  display: none;
  top: 0px;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999; }

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px; }

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent; }

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s; }

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s; }

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s; }

@keyframes lds-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.btn-delete-icon {
  border-radius: 8px;
  background-color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  color: #000;
  border: 1px solid #aa2c1f;
  width: 36px;
  height: 36px;
  background-image: url("../img/delete.svg");
  background-position: center center;
  background-size: 18px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-shadow: none;
  cursor: pointer; }
  .btn-delete-icon:hover {
    box-shadow: 0px 0px 8px #aa2c1f; }

.plate {
  background-color: #aa2c1f;
  color: #fff;
  border-radius: 8px;
  padding: 3px 20px;
  text-transform: uppercase;
  font-size: 18px; }

.yellow-bar {
  height: 38px;
  flex: 1 1 auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  background-color: #f0cc05; }
  .yellow-bar span {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 100%; }
    .yellow-bar span img {
      width: 16px; }
  .yellow-bar:hover {
    box-shadow: 0px 0px 8px #aa2c1f; }
  .yellow-bar img {
    width: 13px; }
  .yellow-bar span {
    border-right: 2px solid #fff; }
  .yellow-bar p {
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0; }
  .yellow-bar .rotate {
    transform: rotate(180deg); }

#favorite-listing {
  padding: 10px; }
  #favorite-listing .one-element {
    padding-right: 0px;
    position: relative; }
    #favorite-listing .one-element .btn-delete-icon {
      position: absolute;
      top: 10px;
      right: 10px; }
    #favorite-listing .one-element .foto {
      border-right: none; }
    #favorite-listing .one-element .wrapper .desc p {
      color: #fff; }
    #favorite-listing .one-element .wrapper .bottom-buttons .buttons a {
      width: 208px; }

#userprofile .box {
  padding: 20px 45px; }

#userprofile-info {
  font-size: 19px; }

#user-details {
  padding-bottom: 20px;
  margin-bottom: 10px; }
  #user-details .avatar {
    margin-top: 20px;
    margin-bottom: 20px; }
    #user-details .avatar label {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap; }
      #user-details .avatar label .avatar-img {
        overflow: hidden;
        border-radius: 50%;
        width: 162px;
        height: 162px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff; }
        #user-details .avatar label .avatar-img img {
          width: 100%; }
      #user-details .avatar label span {
        text-align: center;
        color: #000;
        flex: 1 1 100%; }
  #user-details form {
    padding: 0px 45px;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto; }
    #user-details form .btn {
      max-width: 100%;
      width: 100%; }
    #user-details form .btn-yellow-add .icon {
      background-image: url("../img/arrow.svg");
      background-size: 14px; }

#settings .wrapper {
  padding: 30px 45px 20px 45px; }
  #settings .wrapper label {
    color: #000; }
  #settings .wrapper .button {
    display: flex;
    justify-content: center; }
    #settings .wrapper .button .btn {
      max-width: 340px; }
    #settings .wrapper .button .btn-yellow-add .icon {
      background-image: url("../img/arrow.svg");
      background-size: 14px; }

#security .btn-yellow-add .icon {
  background-image: url("../img/arrow.svg");
  background-size: 14px; }
#security .wrapper {
  display: flex;
  justify-content: center;
  padding: 30px 45px; }

#ad-gallery .wrapper {
  padding: 20px 45px; }

.red-line {
  margin-top: 10px;
  margin-bottom: 10px;
  flex: 1 1 100%;
  background-color: #aa2c1f;
  height: 1px; }

.media-reloader .btn-delete-foto, .media-reloader .btn-delete-video {
  width: 36px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  height: 36px;
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #f5f5f5;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px;
  background-image: url("/img/delete-symbol.svg");
  z-index: 10; }
.media-reloader .handler {
  width: 36px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  height: 36px;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #f5f5f5;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px;
  background-image: url("/img/move.svg");
  z-index: 10; }
.media-reloader .one-video {
  margin: 10px;
  flex: 1 1 22%;
  max-width: 250.75px;
  height: 220px;
  border: 2px solid #fff;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 12px; }
  .media-reloader .one-video .options {
    padding: 10px; }
  .media-reloader .one-video .video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    height: 150px;
    overflow: hidden;
    background-color: #fff; }
    .media-reloader .one-video .video .video-holder {
      width: 100%; }
.media-reloader .one-foto {
  margin: 10px;
  flex: 1 1 22%;
  max-width: 250.75px;
  height: 372px;
  border: 2px solid #fff;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 12px; }
  .media-reloader .one-foto .img-status span {
    color: #000; }
  .media-reloader .one-foto .options {
    padding: 10px; }
  .media-reloader .one-foto .foto {
    height: 270px;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; }
    .media-reloader .one-foto .foto a {
      width: 100%;
      height: 270px;
      display: flex;
      justify-content: center;
      align-items: center; }
      .media-reloader .one-foto .foto a img {
        width: initial;
        max-width: 100%;
        max-height: 100%; }
    .media-reloader .one-foto .foto .rotate-buttons {
      position: absolute;
      bottom: 0px;
      left: auto;
      right: auto;
      display: flex;
      justify-content: center; }
      .media-reloader .one-foto .foto .rotate-buttons .rotate {
        width: 36px;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 36px;
        margin: 4px;
        background-color: rgba(255, 255, 255, 0.4);
        border-radius: 8px;
        padding: 5px;
        cursor: pointer; }
        .media-reloader .one-foto .foto .rotate-buttons .rotate img {
          width: 100%; }
        .media-reloader .one-foto .foto .rotate-buttons .rotate:hover {
          background-color: rgba(255, 255, 255, 0.8); }
  .media-reloader .one-foto img {
    width: 100%; }
.media-reloader .photoHolder, .media-reloader .videoHolder {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  flex-wrap: wrap; }

#general-uploader {
  background-color: #f5f5f5;
  width: 100%;
  height: 172px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 38px;
  padding: 15px; }
  #general-uploader strong {
    color: #aa2c1f; }

#upload-container {
  margin-bottom: 30px; }
  #upload-container p {
    margin-left: auto;
    margin-right: auto;
    max-width: 666px; }

#mediaUploaderInput {
  opacity: 0;
  position: absolute;
  z-index: -5; }

.radius-box {
  width: 100%;
  position: relative;
  cursor: pointer; }
  .radius-box input {
    position: absolute;
    z-index: -2;
    opacity: 0; }
  .radius-box label {
    display: flex;
    align-items: center;
    cursor: pointer; }
  .radius-box .checkbox {
    -webkit-transition: 0.1s;
    transition: 0.1s;
    margin-right: 10px;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border-radius: 3px;
    border: 2px solid #aa2c1f;
    background-color: #fff;
    background-image: url("../img/check_white.svg");
    background-position: center center;
    background-size: 0px;
    background-repeat: no-repeat; }
    .radius-box .checkbox.checked {
      background-size: 14px;
      background-color: #aa2c1f; }

#infobox.avatar #cropper div {
  max-width: 450px;
  max-height: 350px; }
#infobox.avatar .top {
  display: flex;
  justify-content: center;
  align-items: center; }
#infobox.avatar .addFoto {
  width: 200px;
  position: relative; }
  #infobox.avatar .addFoto input {
    position: absolute;
    z-index: -2;
    opacity: 0; }
  #infobox.avatar .addFoto .btn-add-foto {
    border: 1px solid #aa2c1f;
    width: 100%; }
    #infobox.avatar .addFoto .btn-add-foto:hover {
      box-shadow: 0px 0px 8px #aa2c1f; }
  #infobox.avatar .addFoto #crop {
    border: 1px solid #aa2c1f;
    width: 100%; }
    #infobox.avatar .addFoto #crop:hover {
      box-shadow: 0px 0px 8px #aa2c1f; }
#infobox.avatar .preview {
  margin-right: 30px; }
  #infobox.avatar .preview .pre-avatar {
    width: 220px;
    height: 220px;
    background-color: #fff;
    border: 1px solid #aa2c1f;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; }
    #infobox.avatar .preview .pre-avatar img {
      max-width: 100%; }

#cropper {
  max-width: 680px; }
  #cropper img {
    display: block;
    max-width: 100%; }

.avatar-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .avatar-list .one-avatar {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    border: 1px solid transparent;
    border-radius: 50%;
    overflow: hidden;
    margin: 15px;
    width: 200px;
    height: 200px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
    .avatar-list .one-avatar img {
      max-width: 100%; }
    .avatar-list .one-avatar.active {
      border-color: #aa2c1f;
      box-shadow: 0px 0px 8px #aa2c1f; }
    .avatar-list .one-avatar:hover {
      box-shadow: 0px 0px 8px #aa2c1f; }

#upload-preview {
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: center;
  margin-top: 10px; }
  #upload-preview .progress-box {
    height: 38px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    border: 1px solid transparent;
    position: relative;
    transition: 0.3s;
    -webkit-transition: 0.3s; }
    #upload-preview .progress-box .progress {
      transition: 0.3s;
      -webkit-transition: 0.3s;
      height: 100%;
      width: 0%;
      background-color: green;
      position: absolute;
      left: 0px;
      top: 0px;
      bottom: 0px; }
    #upload-preview .progress-box span {
      z-index: 100;
      font-weight: bold; }
  #upload-preview p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px; }

.yellow-bar-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
  background-color: #f0cc05;
  border-radius: 8px;
  border: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px; }
  .yellow-bar-button span {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    width: 45px;
    height: 40px;
    flex: 1 1;
    font-weight: bold;
    border: none; }
    .yellow-bar-button span img {
      width: 16px; }
    .yellow-bar-button span.rotate {
      transform: rotate(180deg); }
  .yellow-bar-button p {
    flex: 1 1;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    min-width: 240px;
    font-weight: bold; }
  .yellow-bar-button:hover {
    box-shadow: 0px 0px 8px #aa2c1f; }

#infobox .success, #infobox .warrning, #infobox .danger, #infobox .error, #infobox-info .success, #infobox-info .warrning, #infobox-info .danger, #infobox-info .error {
  padding-left: 65px;
  background-position: left 25px top 26px;
  background-repeat: no-repeat;
  background-size: 30px;
  max-width: 900px; }
#infobox .success, #infobox-info .success {
  background-image: url("../img/green_check.svg"); }
#infobox .danger, #infobox .warrning, #infobox .error, #infobox-info .danger, #infobox-info .warrning, #infobox-info .error {
  background-image: url("../img/warning_triangel.svg"); }
#infobox .verification, #infobox-info .verification {
  width: auto;
  height: auto;
  min-width: 50%; }
  #infobox .verification input[name="foto"], #infobox-info .verification input[name="foto"] {
    position: absolute;
    bottom: 0px;
    z-index: -1;
    opacity: 0; }
  #infobox .verification label, #infobox-info .verification label {
    position: relative; }
  #infobox .verification .btn-add-foto, #infobox-info .verification .btn-add-foto {
    border: 2px solid #aa2c1f;
    color: #aa2c1f;
    text-transform: uppercase;
    padding: 12px 45px; }
#infobox .open-issue, #infobox-info .open-issue {
  min-width: 1200px; }
  #infobox .open-issue .corespondence .one-element .data, #infobox-info .open-issue .corespondence .one-element .data {
    display: flex;
    justify-content: space-between;
    padding: 5px 15px;
    border-bottom: 1px solid #aa2c1f; }
  #infobox .open-issue .corespondence .one-element .content, #infobox-info .open-issue .corespondence .one-element .content {
    padding: 10px 15px; }
  #infobox .open-issue .corespondence .one-element .attachment, #infobox-info .open-issue .corespondence .one-element .attachment {
    padding: 10px 15px;
    border-top: 1px solid #aa2c1f;
    display: flex;
    align-items: center;
    justify-content: center; }
    #infobox .open-issue .corespondence .one-element .attachment a, #infobox-info .open-issue .corespondence .one-element .attachment a {
      margin-left: 10px;
      margin-right: 10px;
      display: block; }
  #infobox .open-issue .corespondence .one-element.support, #infobox-info .open-issue .corespondence .one-element.support {
    margin-left: 20px;
    border: 1px solid #f0cc05; }
  #infobox .open-issue h4, #infobox-info .open-issue h4 {
    color: #f0cc05; }
  #infobox .open-issue .files .form-control, #infobox-info .open-issue .files .form-control {
    margin-bottom: 20px; }
  #infobox .open-issue h2, #infobox-info .open-issue h2 {
    color: #fff; }
  #infobox .open-issue label, #infobox-info .open-issue label {
    color: #f0cc05; }
#infobox .bid-position, #infobox-info .bid-position {
  height: auto;
  width: auto; }
  #infobox .bid-position .checkbox-group, #infobox-info .bid-position .checkbox-group {
    max-width: 752px;
    margin-left: auto;
    margin-right: auto; }
  #infobox .bid-position .time-pick, #infobox-info .bid-position .time-pick {
    margin-bottom: 20px; }
    #infobox .bid-position .time-pick .form-control, #infobox-info .bid-position .time-pick .form-control {
      flex: 1 1;
      border-radius: 8px 0px 0px 8px;
      max-width: 180px;
      border: 2px solid #aa2c1f; }
      #infobox .bid-position .time-pick .form-control:focus, #infobox-info .bid-position .time-pick .form-control:focus {
        box-shadow: none; }
    #infobox .bid-position .time-pick .btn, #infobox-info .bid-position .time-pick .btn {
      border-radius: 0px 8px 8px 0px;
      flex: 1 1;
      max-width: 80px; }
  #infobox .bid-position h3, #infobox-info .bid-position h3 {
    color: #aa2c1f; }
#infobox .promo, #infobox-info .promo {
  height: auto; }
  #infobox .promo .wrapper, #infobox-info .promo .wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; }
  #infobox .promo .credits-info, #infobox-info .promo .credits-info {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0; }
  #infobox .promo .one-date, #infobox-info .promo .one-date {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    border: 2px solid #aa2c1f;
    border-radius: 8px;
    margin: 8px;
    text-align: center;
    padding: 15px 10px;
    opacity: 0.4;
    cursor: default;
    width: 110px;
    height: 130px; }
    #infobox .promo .one-date .date, #infobox-info .promo .one-date .date {
      font-size: 32px;
      color: #aa2c1f;
      font-weight: bold; }
    #infobox .promo .one-date .status, #infobox-info .promo .one-date .status {
      color: #aa2c1f;
      font-weight: bold; }
    #infobox .promo .one-date.available, #infobox-info .promo .one-date.available {
      opacity: 1;
      cursor: pointer; }
      #infobox .promo .one-date.available .status, #infobox-info .promo .one-date.available .status {
        color: green; }
    #infobox .promo .one-date.active, #infobox-info .promo .one-date.active {
      box-shadow: 0px 0px 10px #aa2c1f; }
#infobox .ad-time, #infobox-info .ad-time {
  padding-left: 0px;
  padding-right: 0px;
  background-color: #ededed;
  border: 2px solid #aa2c1f; }
  #infobox .ad-time .btn-close, #infobox-info .ad-time .btn-close {
    color: #aa2c1f; }
  #infobox .ad-time .grey-bg, #infobox-info .ad-time .grey-bg {
    border: none; }
    #infobox .ad-time .grey-bg .flex-box, #infobox-info .ad-time .grey-bg .flex-box {
      margin-left: 0px;
      margin-right: 0px; }
#infobox #message-massenger, #infobox-info #message-massenger {
  position: relative;
  height: 100%; }
  #infobox #message-massenger .wrapper-inner, #infobox-info #message-massenger .wrapper-inner {
    position: relative; }
    #infobox #message-massenger .wrapper-inner .form-control, #infobox-info #message-massenger .wrapper-inner .form-control {
      max-height: 38px;
      min-height: 38px;
      padding-right: 130px; }
  #infobox #message-massenger #message-send-panel, #infobox-info #message-massenger #message-send-panel {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px; }
  #infobox #message-massenger .btn-send-message, #infobox-info #message-massenger .btn-send-message {
    background-color: #aa2c1f;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 120px; }
    #infobox #message-massenger .btn-send-message:hover, #infobox-info #message-massenger .btn-send-message:hover {
      box-shadow: 0px 0px 8px #aa2c1f; }
#infobox .messages-window, #infobox-info .messages-window {
  margin-bottom: 20px;
  max-height: 80vh;
  overflow: auto; }
  #infobox .messages-window .one-message, #infobox-info .messages-window .one-message {
    display: flex;
    padding: 5px;
    background-color: #edfaef; }
    #infobox .messages-window .one-message .foto, #infobox-info .messages-window .one-message .foto {
      min-width: 50px;
      max-width: 50px;
      min-height: 50px;
      max-height: 50px;
      border-radius: 50%;
      margin-right: 10px;
      overflow: hidden; }
      #infobox .messages-window .one-message .foto img, #infobox-info .messages-window .one-message .foto img {
        width: 100%; }
    #infobox .messages-window .one-message .text, #infobox-info .messages-window .one-message .text {
      position: relative;
      width: 100%; }
      #infobox .messages-window .one-message .text .date, #infobox-info .messages-window .one-message .text .date {
        color: grey;
        font-size: 9px;
        position: absolute;
        top: 0px;
        right: 0px; }
      #infobox .messages-window .one-message .text strong, #infobox-info .messages-window .one-message .text strong {
        color: #aa2c1f; }
    #infobox .messages-window .one-message:nth-child(odd), #infobox-info .messages-window .one-message:nth-child(odd) {
      background-color: #edf8fa; }
#infobox .message, #infobox-info .message {
  min-width: 1100px; }
  #infobox .message.grey-bg h3, #infobox-info .message.grey-bg h3 {
    color: #aa2c1f; }
    #infobox .message.grey-bg h3 span, #infobox-info .message.grey-bg h3 span {
      color: #aa2c1f;
      font-weight: bold; }
  #infobox .message.grey-bg label, #infobox-info .message.grey-bg label {
    color: #aa2c1f; }
  #infobox .message .btn-yellow-add, #infobox-info .message .btn-yellow-add {
    width: auto;
    min-width: 300px; }
    #infobox .message .btn-yellow-add:hover, #infobox-info .message .btn-yellow-add:hover {
      box-shadow: 0px 0px 14px rgba(255, 255, 255, 0.5); }
  #infobox .message textarea, #infobox-info .message textarea {
    min-height: 200px;
    max-height: 400px; }
  #infobox .message label, #infobox-info .message label {
    color: #fff; }
  #infobox .message h3 span, #infobox-info .message h3 span {
    color: #f0cc05; }
  #infobox .message h3.info, #infobox-info .message h3.info {
    max-width: 1200px;
    text-align: center; }
    #infobox .message h3.info a, #infobox-info .message h3.info a {
      color: #f0cc05; }
#infobox .lead-foto, #infobox-info .lead-foto {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ededed;
  border: 2px solid #aa2c1f; }
  #infobox .lead-foto h3, #infobox-info .lead-foto h3 {
    color: #aa2c1f; }
  #infobox .lead-foto .btn-close, #infobox-info .lead-foto .btn-close {
    color: #aa2c1f; }
  #infobox .lead-foto .btn-rotate, #infobox-info .lead-foto .btn-rotate {
    width: 34px;
    height: 34px;
    background-color: #aa2c1f;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    margin-right: 5px; }
    #infobox .lead-foto .btn-rotate img, #infobox-info .lead-foto .btn-rotate img {
      width: 24px; }
  #infobox .lead-foto #cropper-image, #infobox-info .lead-foto #cropper-image {
    max-width: 100%;
    max-height: 70vh;
    margin-right: auto;
    margin-right: auto; }
  #infobox .lead-foto .buttons, #infobox-info .lead-foto .buttons {
    margin-top: 20px; }
#infobox .review, #infobox-info .review {
  min-width: 80%; }
#infobox .login .wrapper, #infobox-info .login .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; }
  #infobox .login .wrapper .btn-white-icon, #infobox-info .login .wrapper .btn-white-icon {
    max-width: 100%; }
#infobox .login #login-form p, #infobox-info .login #login-form p {
  color: #fff; }
#infobox .login #login-form h1, #infobox .login #login-form h2, #infobox .login #login-form h3, #infobox .login #login-form h4, #infobox-info .login #login-form h1, #infobox-info .login #login-form h2, #infobox-info .login #login-form h3, #infobox-info .login #login-form h4 {
  color: #fff;
  text-align: center; }
#infobox .login #login-form a, #infobox-info .login #login-form a {
  color: #fff; }
  #infobox .login #login-form a span:hover, #infobox-info .login #login-form a span:hover {
    color: #fff; }
  #infobox .login #login-form a:hover, #infobox-info .login #login-form a:hover {
    color: #f0cc05; }

#video-options {
  margin-bottom: 20px; }
  #video-options .d-flex {
    margin-left: -10px;
    margin-right: -10px; }
  #video-options .red-bg {
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 8px; }
  #video-options #video-box {
    flex: 1 1 68%;
    padding-bottom: 30px; }
    #video-options #video-box .wrapper {
      max-width: 712px;
      margin-left: auto;
      margin-right: auto; }
  #video-options #options-box {
    flex: 1 1 32%; }

#video-carousel {
  margin-top: 20px; }
  #video-carousel .one-video {
    border: 1px solid #fff; }
    #video-carousel .one-video video {
      width: 100%;
      height: 450px; }

.ck-editor__editable_inline {
  min-height: 300px; }

.ck-focused:focus {
  outline: none !important; }

.ck-editor {
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #aa2c1f !important; }

.info-block {
  padding: 30px;
  display: flex;
  font-size: 20px;
  color: #aa2c1f;
  font-weight: bold;
  justify-content: center;
  align-items: center; }

#user-email {
  margin-bottom: 30px; }
  #user-email .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 10px; }
    #user-email .wrapper .form-group {
      margin: 15px; }
    #user-email .wrapper .btn-yellow-add {
      width: 275px; }
      #user-email .wrapper .btn-yellow-add.disabled:hover {
        cursor: not-allowed;
        box-shadow: none; }
        #user-email .wrapper .btn-yellow-add.disabled:hover span {
          cursor: not-allowed;
          box-shadow: none; }

#user-pass .wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 45px;
  margin-left: -15px;
  margin-right: -15px; }
  #user-pass .wrapper .form-group {
    margin-left: 15px;
    margin-right: 15px;
    flex: 1 1 44%; }
    #user-pass .wrapper .form-group .form-short {
      max-width: calc(50% - 15px); }
    #user-pass .wrapper .form-group.form-full {
      flex: 1 1 100%; }

#issue-list {
  padding: 10px; }
  #issue-list .one-issue {
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    background-color: #aa2c1f; }
    #issue-list .one-issue .info {
      display: flex;
      padding: 5px 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
    #issue-list .one-issue .number {
      margin-right: 30px; }
    #issue-list .one-issue .date {
      margin-left: auto; }
    #issue-list .one-issue .text {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      padding: 5px 10px; }
    #issue-list .one-issue.unread {
      box-shadow: 0px 0px 10px #aa2c1f; }
      #issue-list .one-issue.unread .info .status span {
        color: #f0cc05;
        font-weight: bold; }
    #issue-list .one-issue:hover {
      text-decoration: none;
      color: #fff;
      box-shadow: 0px 0px 8px #aa2c1f; }
    #issue-list .one-issue:focus {
      text-decoration: none; }
    #issue-list .one-issue:last-child {
      margin-bottom: 0; }
    #issue-list .one-issue.closed {
      opacity: 0.7; }

#open-issue {
  padding: 10px 45px;
  display: flex; }
  #open-issue .btn {
    margin-left: auto; }

.additional-options {
  color: #fff;
  padding: 15px 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .additional-options button, .additional-options a {
    padding: 0;
    margin: 0;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 20px; }
    .additional-options button img, .additional-options a img {
      margin-right: 20px; }
    .additional-options button:hover, .additional-options a:hover {
      opacity: 1; }
  .additional-options .favorite {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    cursor: pointer;
    opacity: 0.7; }
    .additional-options .favorite img {
      position: relative;
      bottom: 1px; }
    .additional-options .favorite.added {
      color: #f0cc05;
      opacity: 1; }
    .additional-options .favorite:hover {
      opacity: 1; }
  .additional-options .copy-link {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    background: transparent;
    border: none;
    box-shadow: none;
    white-space: nowrap; }
    .additional-options .copy-link img {
      margin-left: 0px; }
  .additional-options img {
    height: 20px; }

.box-title h1 {
  font-size: 30px;
  padding: 20px 45px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin: 0; }
  .box-title h1 span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px; }
    .box-title h1 span img {
      height: 30px; }

#redweb {
  padding-top: 15px;
  border-top: 1px solid #aa2c1f; }
  #redweb .redweb-name .form-group {
    background-color: #fff;
    display: flex;
    align-items: center;
    border: 2px solid #aa2c1f;
    border-radius: 8px; }
  #redweb .redweb-name input {
    width: 178px;
    border: none;
    padding: 0;
    font-weight: bold; }
  #redweb .redweb-name span {
    padding: 5px 15px; }
    #redweb .redweb-name span:first-child {
      padding-right: 0px; }
    #redweb .redweb-name span:last-child {
      padding-left: 0px; }

.no-element {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
  padding: 30px; }
  .no-element h2 {
    text-transform: uppercase;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-size: 28px; }
  .no-element img {
    height: 68px;
    margin-right: 30px;
    height: auto; }

#banners .banner-wrapper {
  margin: 20px 45px;
  padding: 30px;
  border-radius: 8px;
  background-color: #fff; }
  #banners .banner-wrapper p {
    color: #000; }
  #banners .banner-wrapper textarea {
    width: 100%; }
  #banners .banner-wrapper .one-banner {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #aa2c1f; }
    #banners .banner-wrapper .one-banner img {
      margin-bottom: 20px; }

#footer .links-footer {
  text-align: right; }
  #footer .links-footer a {
    color: #aa2c1f; }
    #footer .links-footer a:hover {
      text-decoration: underline; }

#weblinks .inner {
  display: flex;
  margin-left: -2px;
  margin-right: -2px;
  flex-wrap: wrap; }
  #weblinks .inner a {
    color: #aa2c1f;
    border: 1px solid #aa2c1f;
    flex: 1 1 17%;
    margin: 2px;
    padding: 5px 15px;
    text-align: center;
    max-width: 279.8px; }
    #weblinks .inner a:hover {
      box-shadow: 0px 0px 5px #aa2c1f; }

.bulletin-carousel {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #aa2c1f;
  border-radius: 8px;
  background-color: #ededed;
  justify-content: center;
  align-items: center;
  display: flex; }
  .bulletin-carousel#user-board {
    font-size: 120%; }
  .bulletin-carousel .owl-nav .owl-next {
    right: 0px;
    width: 22px;
    border: none !important; }
  .bulletin-carousel .owl-nav .owl-prev {
    left: 0px;
    border: none !important;
    width: 22px; }
  .bulletin-carousel .one-board {
    text-align: center;
    padding: 15px;
    display: block;
    color: #aa2c1f;
    position: relative; }
    .bulletin-carousel .one-board .more {
      font-size: 70%;
      position: absolute;
      right: 5px;
      bottom: 2px; }
      .bulletin-carousel .one-board .more.read {
        cursor: pointer; }
    .bulletin-carousel .one-board .date {
      font-size: 70%;
      position: absolute;
      right: 5px;
      top: 2px; }
    .bulletin-carousel .one-board strong {
      margin-bottom: 15px; }
    .bulletin-carousel .one-board p {
      margin: 0;
      line-height: 95%; }

#one-board #content {
  font-size: 110%;
  position: relative; }
#one-board .date {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #aa2c1f; }

#board-list {
  margin-left: -4px;
  margin-right: -4px;
  display: flex;
  flex-wrap: wrap; }
  #board-list .one-board {
    flex: 1 1 22%;
    margin: 4px;
    position: relative;
    background-color: #ededed;
    border: 2px solid #aa2c1f;
    border-radius: 8px;
    padding: 25px 8px;
    color: #aa2c1f;
    max-width: 283.26px; }
    #board-list .one-board .date {
      position: absolute;
      right: 8px;
      top: 4px;
      font-size: 90%; }
    #board-list .one-board .more {
      position: absolute;
      right: 8px;
      bottom: 4px; }
    #board-list .one-board p {
      text-align: center; }
    #board-list .one-board strong {
      width: 100%;
      display: block;
      margin-bottom: 10px;
      font-size: 120%; }

@media (max-width: 576px) {
  .review-seo .wrapper {
    width: 100%;
    padding-top: 0px; }
  .review-seo .one-review {
    background-color: #ededed;
    padding: 15px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex; }
  .review-seo .content p {
    line-height: 16px;
    font-size: 13px;
    margin-bottom: 0px; }
  .review-seo .avatar {
    margin-right: 10px; }
    .review-seo .avatar img {
      min-width: 50px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center; }
  .review-seo .date {
    font-size: 11px; }
  .review-seo .top {
    display: flex;
    justify-content: space-between; }
    .review-seo .top p {
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 13px; }

  .listing-box-hidden h1 {
    cursor: pointer;
    font-size: 20px; }
  .listing-box-hidden .hidden {
    display: none; }

  #start-info .wrapper {
    padding: 15px; }
  #start-info h3 {
    font-size: 18px; }
  #start-info p {
    font-size: 13px; }
  #start-info ul li {
    font-size: 13px; }
  #start-info .logo-start-info {
    margin-bottom: 10px; }
    #start-info .logo-start-info img {
      max-width: 180px; }

  body.block {
    padding-right: 0; }

  .gallery-for-rmz .inner .one-element {
    flex: 1 1 45%;
    max-width: 47.5%; }
    .gallery-for-rmz .inner .one-element p {
      font-size: 12px; }

  .faq-movie {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px; }
    .faq-movie .one-video {
      margin: 10px;
      flex: 1 1 100%;
      max-width: 100%; }
      .faq-movie .one-video h4 {
        color: #aa2c1f;
        font-size: 18px; }

  .subpage .faq-movie .one-video {
    max-width: 100%; }

  #messages .message {
    padding: 5px; }
    #messages .message .options {
      right: 5px;
      top: 5px; }
    #messages .message .date {
      font-size: 10px; }
    #messages .message .content {
      padding-top: 0px; }
      #messages .message .content .info {
        font-size: 12px;
        margin-bottom: 0; }
      #messages .message .content .text {
        font-size: 12px; }
    #messages .message .avatar img {
      height: 60px;
      width: 60px;
      min-width: 60px;
      margin-right: 10px; }

  .message-sender {
    left: 15px;
    right: 15px; }

  .conversation {
    height: 90vh; }

  #conversation-block .message-sender .btn {
    font-size: 14px; }
  #conversation-block h3 {
    font-size: 15px; }
  #conversation-block .message {
    padding: 5px 5px; }
    #conversation-block .message .text {
      font-size: 12px; }
    #conversation-block .message .date {
      font-size: 10px; }
    #conversation-block .message .name {
      font-size: 12px; }
    #conversation-block .message .avatar {
      margin-right: 10px; }
      #conversation-block .message .avatar img {
        width: 35px;
        min-width: 35px;
        height: 35px; }

  #infobox, #infobox-info {
    padding: 15px; }
    #infobox .open-issue, #infobox-info .open-issue {
      min-width: 100%; }
      #infobox .open-issue .corespondence, #infobox-info .open-issue .corespondence {
        font-size: 80%; }
      #infobox .open-issue .btn-yellow-add, #infobox-info .open-issue .btn-yellow-add {
        width: 200px; }
      #infobox .open-issue h2, #infobox-info .open-issue h2 {
        font-size: 20px; }
      #infobox .open-issue label, #infobox-info .open-issue label {
        font-size: 80%; }
    #infobox .popup-wrapper, #infobox-info .popup-wrapper {
      padding: 30px 15px; }
    #infobox h3, #infobox-info h3 {
      font-size: 20px; }

  .admin-info {
    align-items: flex-start; }
    .admin-info .wrapper {
      overflow: scroll;
      padding: 15px;
      max-height: 92vh; }
      .admin-info .wrapper .inner {
        flex-wrap: wrap; }
      .admin-info .wrapper .title h2 {
        font-size: 20px; }
      .admin-info .wrapper .icon {
        display: flex;
        margin-bottom: 10px;
        margin-right: 0px;
        justify-content: center;
        flex: 1 1 100%; }
        .admin-info .wrapper .icon img {
          width: 30px; }
      .admin-info .wrapper .content {
        max-height: inherit; }
        .admin-info .wrapper .content h3 {
          font-size: 17px; }
        .admin-info .wrapper .content p {
          font-size: 14px; }

  .like-review-wrapper .like-review img {
    width: 44px; }

  #top-nav p {
    font-size: 11px;
    padding: 0px;
    flex: 0; }
  #top-nav #logo-xs {
    display: flex;
    align-items: center;
    padding: 0;
    order: 4;
    margin-left: 2px;
    margin-right: 2px;
    width: 100%; }
    #top-nav #logo-xs a {
      width: 100%; }
      #top-nav #logo-xs a img {
        width: 100%;
        height: auto; }
  #top-nav #language {
    order: 0;
    max-width: 30px; }
    #top-nav #language .btn .flag {
      margin: 0;
      width: 20px; }
  #top-nav .btn-menu {
    order: 3; }
  #top-nav .element {
    margin: 4px 2px;
    height: 28px; }
    #top-nav .element span {
      width: auto;
      display: block; }
      #top-nav .element span img {
        width: 12px; }
  #top-nav #text-element {
    order: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px; }
    #top-nav #text-element img {
      width: 15px;
      margin-left: 2px; }
    #top-nav #text-element p {
      width: max-content;
      padding-right: 15px;
      background-position: center right;
      background-repeat: no-repeat;
      background-size: 10px;
      background-image: url("../img/add.svg"); }
  #top-nav #login {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center; }
    #top-nav #login span {
      background-color: #aa2c1f;
      border: none;
      width: auto;
      margin-left: 3px;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center; }
    #top-nav #login p {
      width: max-content;
      padding-right: 15px;
      background-position: center right;
      background-repeat: no-repeat;
      background-size: 10px;
      background-image: url("../img/user.svg"); }
  #top-nav #register {
    display: none; }
  #top-nav .flex-box {
    margin-left: -2px;
    margin-right: -2px;
    flex-wrap: wrap; }
  #top-nav .btn-xs-search {
    order: 3;
    padding: 0;
    background-color: #aa2c1f;
    max-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center; }
    #top-nav .btn-xs-search img {
      width: 14px; }

  #middle-bar .flex-box {
    max-height: 60px; }
  #middle-bar #logo a img {
    height: 60px; }

  #top-filters {
    margin-top: 4px;
    margin-bottom: 4px; }
    #top-filters .flex-box {
      transition: 0.5s;
      -webkit-transition: 0.5s;
      height: auto;
      max-height: 38px; }
      #top-filters .flex-box .filters {
        display: flex;
        width: 100%;
        justify-content: space-between; }
      #top-filters .flex-box.open {
        max-height: 300px; }

  .filters {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px; }
    .filters .red-bg .form-control {
      border: 1px solid #fff; }
    .filters p {
      flex: 1 1 40%; }
    .filters button {
      text-align: right;
      flex: 0; }
    .filters .btn-filter {
      padding: 0;
      margin-right: 2px; }
      .filters .btn-filter img {
        width: 26px; }
    .filters .btn-switch {
      flex: 1 1 100%;
      width: 100%;
      margin: 5px 0px;
      font-size: 12px;
      height: 28px;
      background-size: 6px;
      background-position: right 5px center;
      border: 1px solid #fff; }
    .filters .element {
      flex: 1 1;
      width: 100%;
      margin-left: 2px;
      margin-right: 2px; }
      .filters .element .switch-menu {
        left: 0px;
        right: 0px;
        margin-top: 0;
        column-count: 2; }
        .filters .element .switch-menu li .holder {
          align-items: flex-start; }
          .filters .element .switch-menu li .holder .filter-checkbox {
            width: 13px;
            height: 13px;
            min-width: 13px;
            background-size: 6px;
            margin-right: 5px;
            margin-top: 3px; }
          .filters .element .switch-menu li .holder .filter-name {
            font-size: 12px; }
    .filters .buttons-wrapper {
      flex: 1 1 100%; }

  #city-select-xs {
    margin-top: 4px;
    margin-bottom: 4px; }

  .serach-wrapper {
    margin-bottom: 10px;
    width: 100%; }
    .serach-wrapper .form-control {
      width: 100%;
      margin: 5px 0; }

  .search {
    flex: 1 1 100%;
    margin: 0; }

  .vertical-listing .one-element {
    flex-wrap: wrap;
    height: 252px;
    padding-right: 0px;
    height: 100px; }
    .vertical-listing .one-element .foto {
      min-width: 110px;
      max-width: 110px; }
      .vertical-listing .one-element .foto .flag-label {
        left: 0px;
        top: 0px;
        width: 20px;
        height: 12px; }
      .vertical-listing .one-element .foto .video-label {
        padding: 0px;
        opacity: 1; }
        .vertical-listing .one-element .foto .video-label img {
          width: 18px; }
      .vertical-listing .one-element .foto .profile-foto {
        width: 100%; }
      .vertical-listing .one-element .foto .verifed-label {
        display: block;
        text-align: center;
        height: 16px;
        font-size: 8px;
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 0px 8px 0px 0px;
        opacity: 1;
        width: auto;
        height: 17px; }
      .vertical-listing .one-element .foto .video-label-xs {
        position: absolute;
        right: 0px;
        top: 0px;
        background-color: #aa2c1f;
        width: 26px;
        height: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0px 0px 0px 8px;
        opacity: 1; }
        .vertical-listing .one-element .foto .video-label-xs img {
          width: 16px; }
    .vertical-listing .one-element .premium-label {
      height: 24px;
      width: 100%;
      position: initial;
      flex: 1 1 100%; }
      .vertical-listing .one-element .premium-label span {
        font-size: 14px;
        transform: none;
        margin-bottom: 3px;
        display: block;
        height: 21px; }
    .vertical-listing .one-element .wrapper {
      padding: 5px 10px;
      flex: 1 1 50%;
      max-width: calc(100% - 110px); }
      .vertical-listing .one-element .wrapper .desc .cut-text {
        -webkit-line-clamp: 2; }
      .vertical-listing .one-element .wrapper .desc p {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 0;
        text-align: left; }
      .vertical-listing .one-element .wrapper .desc .listing-ad-title, .vertical-listing .one-element .wrapper .desc h2 {
        font-size: 13px;
        margin-bottom: 0px;
        margin-top: 0px; }
      .vertical-listing .one-element .wrapper .top-data {
        padding-bottom: 3px;
        margin-bottom: 3px; }
        .vertical-listing .one-element .wrapper .top-data .right {
          position: absolute;
          bottom: 1px;
          right: 10px;
          font-size: 11px; }
          .vertical-listing .one-element .wrapper .top-data .right .review {
            margin-right: 10px; }
          .vertical-listing .one-element .wrapper .top-data .right .rating {
            margin-right: 10px; }
          .vertical-listing .one-element .wrapper .top-data .right img {
            width: 14px; }
        .vertical-listing .one-element .wrapper .top-data .left {
          display: block; }
          .vertical-listing .one-element .wrapper .top-data .left div {
            line-height: 11px;
            font-size: 10px; }
          .vertical-listing .one-element .wrapper .top-data .left .region-type span {
            max-width: 56px; }
      .vertical-listing .one-element .wrapper .bottom-buttons {
        justify-content: flex-end; }
        .vertical-listing .one-element .wrapper .bottom-buttons .buttons a {
          width: auto;
          height: 30px; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon {
            border: none; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon img {
              width: 16px; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-whatsapp .icon img {
            width: 19px; }
    .vertical-listing .one-element .xs-belt {
      height: 50px;
      flex: 1 1 100%; }
      .vertical-listing .one-element .xs-belt .buttons {
        display: flex;
        border-top: 5px solid #fff;
        flex-wrap: wrap;
        max-width: 110px; }
        .vertical-listing .one-element .xs-belt .buttons a {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 53px; }
          .vertical-listing .one-element .xs-belt .buttons a.link-tel {
            background-color: #e70328; }
          .vertical-listing .one-element .xs-belt .buttons a.link-whatsapp {
            background-color: #3ba450; }
          .vertical-listing .one-element .xs-belt .buttons a.link-mail {
            background-color: #1db2cd; }
          .vertical-listing .one-element .xs-belt .buttons a.link-www {
            background-color: #f97b00; }
          .vertical-listing .one-element .xs-belt .buttons a:last-child {
            border-right: 5px solid #fff; }
      .vertical-listing .one-element .xs-belt img {
        width: 28px; }
    .vertical-listing .one-element.premium {
      height: 196px; }
      .vertical-listing .one-element.premium .foto {
        min-width: 106px;
        max-width: 106px; }
      .vertical-listing .one-element.premium .xs-belt .buttons {
        border-color: #f0cc05; }
        .vertical-listing .one-element.premium .xs-belt .buttons a {
          width: 55px; }
          .vertical-listing .one-element.premium .xs-belt .buttons a:last-child {
            border-color: #f0cc05; }
      .vertical-listing .one-element.premium .wrapper {
        border-radius: 0px 8px 8px 0px; }
    .vertical-listing .one-element.premium {
      height: 130px; }
    .vertical-listing .one-element.bank .foto .profile-foto {
      height: 100px; }

  #boxes .one-box {
    flex: 1 1 100%;
    padding: 20px 15px; }
    #boxes .one-box h2 {
      font-size: 20px; }
    #boxes .one-box p {
      font-size: 14px; }
    #boxes .one-box .links ul {
      column-count: 1; }

  #linkbox ul {
    column-count: 1; }
  #linkbox .inner {
    padding: 20px 15px; }

  #small-images .inner {
    justify-content: flex-start; }
    #small-images .inner a {
      flex: 1 1 45%;
      text-align: center;
      max-width: 48.5%;
      margin: 5px; }
      #small-images .inner a img {
        width: 100%;
        height: auto;
        max-height: 57px;
        object-position: center;
        object-fit: contain; }

  #footer-links .flex-box {
    flex-wrap: wrap; }
  #footer-links .links-wrapper {
    padding: 20px 15px;
    flex-wrap: wrap; }
    #footer-links .links-wrapper .one-column {
      flex: 1 1 100%;
      margin-bottom: 20px; }

  .pagination .prev {
    order: 1; }
    .pagination .prev span {
      color: transparent; }
  .pagination .next {
    order: 3;
    text-align: right; }
    .pagination .next span {
      color: transparent; }
  .pagination .nav-button {
    position: relative;
    top: 5px;
    max-width: 20px;
    color: transparent;
    overflow: hidden;
    background-size: 15px; }
  .pagination .numbers {
    order: 2;
    margin-top: 10px;
    flex-wrap: wrap; }
    .pagination .numbers a {
      width: 32px;
      height: 36px;
      margin: 2px;
      font-size: 12px; }

  #big-image {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    border-radius: 8px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0; }
    #big-image a {
      background: none;
      height: auto; }
      #big-image a img {
        width: 100%; }

  #footer .copyright {
    flex: 1 1 100%;
    text-align: center;
    justify-content: center; }
  #footer .copyright {
    order: 2; }
  #footer .links-footer {
    order: 3; }

  #footer-social {
    flex: 1 1 100%;
    justify-content: center;
    order: 1;
    margin-bottom: 10px; }
    #footer-social img {
      height: 28px; }

  #main-foto {
    max-width: 100%;
    margin-bottom: 0; }
    #main-foto .one-foto {
      height: 260px; }

  #thumbnails {
    display: none; }

  #main-card .foto-box {
    max-width: 100%;
    margin-right: 0px;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 5px; }
  #main-card .right-box {
    margin-bottom: 4px; }
    #main-card .right-box div.name {
      display: none; }
    #main-card .right-box .buttons {
      display: block;
      padding-left: 30px;
      padding-right: 30px; }
    #main-card .right-box .btn-contact {
      height: 40px;
      margin-bottom: 10px;
      margin-left: 0px;
      margin-right: 0px; }
      #main-card .right-box .btn-contact .text {
        font-size: 14px;
        padding: 0 5px;
        width: 100%;
        text-align: center;
        justify-content: center; }
      #main-card .right-box .btn-contact .icon {
        width: 50px; }
        #main-card .right-box .btn-contact .icon img {
          width: 18px; }
      #main-card .right-box .btn-contact:last-child {
        margin-bottom: 0; }
    #main-card .right-box .regions {
      padding-left: 30px;
      padding-right: 30px;
      font-size: 14px;
      padding-bottom: 15px;
      display: flex;
      justify-content: center; }
      #main-card .right-box .regions h4 {
        font-size: 16px;
        margin-right: 10px; }
    #main-card .right-box .adress {
      padding: 10px 30px;
      justify-content: center; }
      #main-card .right-box .adress .text h4 {
        font-size: 16px; }
      #main-card .right-box .adress .text p {
        line-height: 17px;
        font-size: 14px; }
      #main-card .right-box .adress .navigate img {
        width: 90px; }
  #main-card .flex-box {
    flex-wrap: wrap; }

  #services .wrapper .inner {
    padding: 20px 15px; }
    #services .wrapper .inner ul {
      column-count: 1; }
      #services .wrapper .inner ul li {
        font-size: 15px; }

  .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    background-color: #aa2c1f !important; }
    .owl-carousel .owl-nav .owl-next img, .owl-carousel .owl-nav .owl-prev img {
      width: 10px; }
  .owl-carousel .owl-nav .owl-prev {
    left: 5px; }
  .owl-carousel .owl-nav .owl-next {
    right: 5px; }

  #title-belt {
    margin-top: 4px;
    margin-bottom: 4px; }
    #title-belt #title {
      padding-top: 10px;
      padding-bottom: 10px;
      flex: 1 1 100%;
      border-bottom: 1px solid #bb564c; }
      #title-belt #title h2 {
        text-align: center;
        font-size: 34px;
        margin-bottom: 0px;
        margin-top: 0; }
      #title-belt #title h1 {
        text-align: center;
        font-size: 16px;
        margin-top: 0; }
      #title-belt #title h4 {
        font-weight: 300;
        font-size: 14px; }
    #title-belt .flex-box {
      height: auto;
      flex-wrap: wrap; }

  #function-buttons {
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    flex: 1 1 100%; }
    #function-buttons button {
      font-size: 9px;
      margin-left: 2px;
      margin-right: 2px; }
      #function-buttons button img {
        width: 8px; }
    #function-buttons a {
      font-size: 9px;
      margin-left: 2px;
      margin-right: 2px; }
      #function-buttons a img {
        width: 8px; }

  #description {
    margin-bottom: 4px; }
    #description .wrapper .text {
      padding: 15px; }
      #description .wrapper .text p {
        font-size: 15px;
        line-height: 20px;
        text-align: justify; }
    #description .box-title {
      margin: 0;
      padding-left: 15px;
      padding-right: 15px; }

  .box-title {
    margin: 0;
    padding-left: 15px;
    padding-right: 15px; }
    .box-title h3 {
      width: 100%;
      font-size: 20px;
      text-align: center; }

  .btn-add-review {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px; }
    .btn-add-review .text {
      font-size: 13px; }
      .btn-add-review .text span {
        padding-left: 15px;
        padding-right: 15px; }
    .btn-add-review .icon {
      width: 50px; }

  #review .box-title {
    justify-content: center;
    flex-wrap: wrap;
    padding-right: 15px;
    padding-left: 15px; }
    #review .box-title .review-info {
      padding-right: 5px;
      flex: 0;
      min-width: 100px; }
      #review .box-title .review-info img {
        width: 17px; }
    #review .box-title h3 {
      flex: 0;
      padding-left: 0;
      padding-right: 10px; }
  #review .inner .one-review {
    padding: 15px 15px; }
    #review .inner .one-review .top {
      flex-wrap: wrap; }
      #review .inner .one-review .top .icon {
        order: 1; }
      #review .inner .one-review .top .author {
        order: 2;
        font-size: 14px; }
      #review .inner .one-review .top .date {
        text-align: right;
        font-size: 12px;
        order: 0;
        flex: 1 1 100%; }
    #review .inner .one-review .content p {
      font-size: 14px;
      line-height: 19px;
      text-align: justify; }

  #top-navigation .prev, #bottom-navigation .prev {
    background-size: 8px;
    background-position: left 5px top 6px; }
  #top-navigation .next, #bottom-navigation .next {
    padding-left: 10px;
    padding-right: 22px;
    background-size: 8px;
    background-position: right 5px top 6px; }
  #top-navigation .return, #bottom-navigation .return {
    background-size: 13px;
    background-position: left 5px top 4px; }
  #top-navigation a, #bottom-navigation a {
    padding-left: 22px;
    padding-right: 10px;
    font-size: 12px; }

  #inserate-manager .one-element {
    height: 118px; }
    #inserate-manager .one-element .foto {
      min-width: 120px;
      max-width: 120px; }
    #inserate-manager .one-element .wrapper .top-data .left {
      display: flex;
      flex-direction: column; }
    #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink {
      font-size: 13px;
      height: 32px; }
      #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .icon {
        min-width: 30px;
        max-width: 30px; }
        #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .icon img {
          width: 15px; }
      #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .name {
        line-height: 13px; }
    #inserate-manager .one-element .wrapper .ad-options {
      flex-wrap: wrap; }
      #inserate-manager .one-element .wrapper .ad-options .dropdown-button, #inserate-manager .one-element .wrapper .ad-options .menu-panel-xs {
        width: 100%;
        margin-left: 0px;
        padding: 2px 15px 2px 10px;
        font-size: 13px;
        background-position: center right 5px;
        background-size: 10px; }
      #inserate-manager .one-element .wrapper .ad-options .clicks {
        display: flex;
        justify-content: space-between;
        font-size: 10px;
        flex: 1 1 100%;
        text-align: left;
        line-height: 10px; }
      #inserate-manager .one-element .wrapper .ad-options .dates {
        flex: 1 1 40%; }
        #inserate-manager .one-element .wrapper .ad-options .dates div {
          font-size: 10px;
          line-height: 10px; }
      #inserate-manager .one-element .wrapper .ad-options .options {
        font-size: 15px;
        flex: 1 1 100%;
        margin-top: 5px;
        margin-bottom: 10px; }
        #inserate-manager .one-element .wrapper .ad-options .options .title {
          display: none; }

  .userpanel-listing .one-element .wrapper .desc {
    margin-bottom: 2px; }
    .userpanel-listing .one-element .wrapper .desc h2 {
      font-size: 11px;
      margin-bottom: 2px; }

  .dropdown-button, .menu-panel-xs {
    width: 200px; }

  .pills .pills-wrapper {
    padding: 10px 5px; }
  .pills .pills-buttons button {
    width: 72px;
    font-size: 15px;
    height: 36px;
    font-size: 12px; }
    .pills .pills-buttons button span {
      display: none; }

  #userpanel {
    margin-top: 0; }
    #userpanel .flex-box {
      flex-direction: column; }

  #xs-bar {
    margin-top: 4px;
    margin-bottom: 4px; }
    #xs-bar .dropdown-button, #xs-bar .menu-panel-xs {
      font-size: 16px;
      padding-left: 10px;
      padding-right: 10px;
      background-size: 10px;
      background-position: center right 10px , center left 10px; }
      #xs-bar .dropdown-button ul li a, #xs-bar .menu-panel-xs ul li a {
        font-size: 15px; }
    #xs-bar .btn-mini-panel-menu {
      margin-right: 15px; }
      #xs-bar .btn-mini-panel-menu span {
        width: 28px;
        height: 4px; }

  #account-xs {
    margin-bottom: 8px; }
    #account-xs h4 {
      text-transform: uppercase;
      font-weight: 500;
      margin: 0;
      font-size: 16px; }
      #account-xs h4 span {
        font-weight: initial;
        color: #aa2c1f;
        text-transform: initial; }

  #ad-region .region {
    padding: 30px 15px 30px 15px;
    column-count: 2; }

  #ad-category .category {
    padding: 30px 15px 30px 15px;
    column-count: 2; }

  #ad-service .service {
    padding: 30px 15px 30px 15px;
    column-count: 2; }

  #ad-period .flex-box, #packets-pack .flex-box {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center; }
    #ad-period .flex-box .one-element, #packets-pack .flex-box .one-element {
      flex: 1 1 30%;
      margin-top: 3px;
      margin-bottom: 3px;
      max-width: 80.67px; }
      #ad-period .flex-box .one-element .icon, #packets-pack .flex-box .one-element .icon {
        padding: 12px 1px; }
      #ad-period .flex-box .one-element h4, #packets-pack .flex-box .one-element h4 {
        font-size: 14px; }
  #ad-period .flex-box, #packets-pack .flex-box {
    padding: 10px 15px 30px 15px; }

  #ad-contact .tel-number {
    flex-direction: row; }

  #ad-contact .adress-form {
    flex-direction: row;
    flex-wrap: wrap; }
    #ad-contact .adress-form .postcode {
      flex: 1 1 100%; }
    #ad-contact .adress-form .city {
      flex: 1 1 100%;
      margin-left: 0px; }

  .title-border {
    padding: 20px 15px; }

  #ad-info .inner {
    padding: 30px 15px 30px 15px; }

  #ad-contact .inner {
    padding: 30px 15px 30px 15px; }

  .li-buttons li label {
    font-size: 12px; }

  #credit-info p {
    text-align: center;
    font-size: 14px;
    line-height: 18px; }

  #credit-packets .title-border {
    flex-wrap: wrap; }
    #credit-packets .title-border span {
      flex: 1 1 70%;
      margin-left: 0; }
    #credit-packets .title-border #currency {
      flex: 1 1 20%; }
  #credit-packets .flex-box {
    padding: 10px 15px; }
    #credit-packets .flex-box .one-element .icon {
      padding: 5px 5px; }
  #credit-packets .btn-yellow-add .text {
    font-size: 18px; }

  #discount .title-border {
    flex-wrap: wrap; }
    #discount .title-border span {
      margin-left: 0;
      flex: 1 1 100%;
      display: block; }
  #discount .btn-yellow-add {
    max-width: 100%; }
    #discount .btn-yellow-add .text {
      font-size: 18px; }

  .padding-box {
    padding: 20px 15px 20px 15px; }

  #packets-pack .title-border {
    padding: 10px 15px; }
    #packets-pack .title-border span {
      margin-bottom: 10px; }

  #register #register-form, #login #register-form {
    padding: 20px 15px; }
    #register #register-form .yellow-li, #login #register-form .yellow-li {
      column-count: 1;
      margin-top: 0; }
      #register #register-form .yellow-li li, #login #register-form .yellow-li li {
        font-size: 14px;
        padding-top: 5px;
        padding-bottom: 5px;
        background-size: 14px;
        background-position: left top 11px; }
    #register #register-form .row, #login #register-form .row {
      display: flex;
      flex-direction: column; }
  #register .box-title, #login .box-title {
    padding: 0; }
    #register .box-title h1, #login .box-title h1 {
      font-size: 24px;
      padding: 20px 15px; }

  #login #login-form {
    padding: 20px 15px; }
    #login #login-form .info {
      align-items: flex-start;
      margin-top: 10px; }
      #login #login-form .info h3 {
        font-size: 20px; }
      #login #login-form .info .wrapper {
        width: 100%; }
      #login #login-form .info .btn-white-icon {
        width: 100%; }

  #messages-options {
    padding: 15px; }
    #messages-options .button {
      width: 100%; }
    #messages-options .btn-delete-all {
      font-size: 12px;
      background-size: 12px;
      background-position: center right 5px;
      float: right;
      margin-top: 10px;
      padding: 2px 20px 2px 10px; }
    #messages-options .checkbox-group {
      align-items: flex-start;
      flex-direction: column; }
      #messages-options .checkbox-group label {
        font-size: 11px; }
      #messages-options .checkbox-group .form-group:first-child {
        margin-bottom: 4px; }

  .messages-list .one-message {
    height: 88px;
    padding: 10px; }
    .messages-list .one-message .deleted-info h3 {
      font-size: 12px; }
    .messages-list .one-message .options {
      right: 2px;
      top: 2px; }
      .messages-list .one-message .options .btn {
        width: 24px;
        height: 24px; }
        .messages-list .one-message .options .btn img {
          max-width: 11px;
          max-height: 11px; }
    .messages-list .one-message .foto {
      flex: 1 1 24%;
      margin-right: 20px; }
    .messages-list .one-message .content {
      flex: 1 1 76%; }
      .messages-list .one-message .content .details {
        margin-bottom: 0px;
        flex-wrap: wrap; }
        .messages-list .one-message .content .details .from, .messages-list .one-message .content .details .to {
          flex: 1 1 100%;
          font-size: 11px;
          margin: 0; }
      .messages-list .one-message .content .text {
        font-size: 11px;
        line-height: 14px;
        padding: 0; }
      .messages-list .one-message .content .date {
        font-size: 10px;
        margin-bottom: 0px; }

  #subscriptions-list .one-subscription {
    padding-left: 5px;
    padding-right: 5px; }
    #subscriptions-list .one-subscription .number {
      top: -20px;
      left: -5px;
      border-top: none;
      border-left: none;
      width: 25px;
      height: 25px;
      font-size: 13px;
      background-size: 14px;
      border-radius: 0px 0px 8px 0px; }
    #subscriptions-list .one-subscription .btn-delete-icon {
      top: -20px;
      right: -5px;
      border-top: none;
      border-right: none;
      width: 30px;
      height: 30px;
      background-size: 14px;
      border-radius: 0px 0px 0px 8px; }
    #subscriptions-list .one-subscription .wrapper .plate {
      font-size: 10px;
      padding: 3px 6px;
      margin-right: 2px;
      margin-left: 2px; }
    #subscriptions-list .one-subscription .wrapper .name {
      font-size: 13px;
      width: 74px; }
    #subscriptions-list .one-subscription .wrapper .one-cat {
      margin-bottom: 5px; }
    #subscriptions-list .one-subscription .wrapper .yellow-bar {
      height: 30px;
      margin-top: 0px;
      max-width: 250px; }
      #subscriptions-list .one-subscription .wrapper .yellow-bar span {
        width: 36px; }
        #subscriptions-list .one-subscription .wrapper .yellow-bar span img {
          width: 10px; }
      #subscriptions-list .one-subscription .wrapper .yellow-bar p {
        font-size: 14px; }

  #view-filters .kat-f {
    margin-right: 10px; }
  #view-filters .one-filter {
    padding: 2px 5px;
    font-size: 12px; }

  #favorite-listing .one-element .btn-delete-icon {
    top: 0px;
    right: 0px;
    width: 28px;
    height: 28px;
    background-size: 14px;
    border-top: none;
    border-right: none;
    border-radius: 0px 0px 0px 8px; }

  #listing-search-options {
    display: block;
    text-align: center;
    font-size: 13px; }
    #listing-search-options h4 {
      margin-bottom: 10px; }

  #userprofile .box {
    padding: 15px; }

  #userprofile-info {
    text-align: center;
    font-size: 14px; }

  #user-details .title-border {
    display: flex;
    flex-direction: column; }
    #user-details .title-border span {
      margin: 0; }

  #user-details form {
    padding: 0px 15px; }

  #settings .wrapper {
    padding: 20px 15px 10px 15px; }
    #settings .wrapper .checkbox-group label {
      font-size: 14px; }

  #security .wrapper {
    padding: 20px 15px; }
    #security .wrapper .btn-yellow-add span {
      font-size: 12px; }

  #general-uploader {
    text-align: center;
    font-size: 26px; }

  #ad-gallery .wrapper {
    padding: 20px 15px; }

  .media-reloader {
    margin-left: -5px;
    margin-right: -5px; }
    .media-reloader .one-foto {
      flex: 1 1 45%;
      max-width: 46%;
      height: 270px;
      margin: 5px; }
      .media-reloader .one-foto .foto {
        height: 170px; }
    .media-reloader .one-video {
      flex: 1 1 100%;
      max-width: 100%; }

  #infobox.avatar .top {
    flex-wrap: wrap; }
  #infobox.avatar #cropper div {
    max-height: 250px; }
  #infobox.avatar .preview {
    flex: 1 1 100%;
    margin-bottom: 10px;
    margin-right: 0; }
    #infobox.avatar .preview .pre-avatar {
      margin-left: auto;
      margin-right: auto;
      float: none;
      width: 120px;
      height: 120px; }
  #infobox.avatar .addFoto {
    margin-bottom: 20px;
    flex: 1 1 100%; }

  .avatar-list .one-avatar {
    height: 40px;
    width: 40px;
    margin: 5px; }

  #infobox .promo .one-date, #infobox-info .promo .one-date {
    width: 70px;
    height: 82px;
    margin: 5px;
    padding: 8px 5px; }
    #infobox .promo .one-date .date, #infobox-info .promo .one-date .date {
      font-size: 18px; }
    #infobox .promo .one-date .status, #infobox-info .promo .one-date .status {
      font-size: 10px; }
    #infobox .promo .one-date .cost, #infobox-info .promo .one-date .cost {
      font-size: 12px; }
  #infobox .promo h2, #infobox-info .promo h2 {
    font-size: 17px; }
  #infobox .promo h4, #infobox-info .promo h4 {
    font-size: 15px; }
  #infobox .promo p, #infobox-info .promo p {
    font-size: 12px; }
  #infobox .login #login-form, #infobox-info .login #login-form {
    padding: 15px; }
  #infobox .review #review .box-title, #infobox-info .review #review .box-title {
    padding: 0; }
    #infobox .review #review .box-title h3, #infobox-info .review #review .box-title h3 {
      padding-left: 15px;
      padding-right: 15px; }
    #infobox .review #review .box-title .review-info, #infobox-info .review #review .box-title .review-info {
      min-width: 125px;
      display: flex;
      justify-content: center;
      margin-bottom: 10px; }
      #infobox .review #review .box-title .review-info .review-sign, #infobox-info .review #review .box-title .review-info .review-sign {
        display: flex;
        justify-content: center; }
  #infobox .popup-wrapper, #infobox-info .popup-wrapper {
    padding: 25px 15px;
    margin: 0; }
    #infobox .popup-wrapper .container, #infobox-info .popup-wrapper .container {
      padding: 0; }
  #infobox .success, #infobox .warrning, #infobox .danger, #infobox .error, #infobox-info .success, #infobox-info .warrning, #infobox-info .danger, #infobox-info .error {
    padding-left: 40px;
    background-position: left 15px top 28px;
    background-size: 20px; }

  .review-sign {
    font-size: 13px; }

  #options-box .additional-options {
    padding: 20px 15px; }

  #video-options .red-bg {
    margin: 0; }
  #video-options .d-flex {
    margin: 0;
    flex-wrap: wrap; }
  #video-options #options-box {
    flex: 1 1 100%; }
  #video-options #video-box {
    flex: 1 1 100%;
    margin-bottom: 20px;
    max-width: 100%; }
    #video-options #video-box .wrapper {
      max-width: 100%; }

  #video-carousel .one-video video {
    height: 220px; }

  .media-reloader .one-foto .foto a {
    height: 160px; }

  #info-dek {
    text-align: center; }

  .info-box-window {
    padding: 10px; }
    .info-box-window .wrapper {
      padding: 20px 15px; }
      .info-box-window .wrapper .btn-close {
        padding: 0;
        top: 0px;
        right: 5px; }
    .info-box-window .bid-position h2 {
      font-size: 22px; }
    .info-box-window .bid-position p {
      font-size: 15px; }
    .info-box-window .bid-position .yellow-bar-button p {
      min-width: 155px; }
    .info-box-window .bid-position .form-group.checkbox-group label {
      font-size: 13px; }

  #infobox .bid-position h2, #infobox-info .bid-position h2 {
    font-size: 22px; }
  #infobox .bid-position p, #infobox-info .bid-position p {
    font-size: 15px; }
  #infobox .bid-position .yellow-bar-button p, #infobox-info .bid-position .yellow-bar-button p {
    min-width: 155px; }
  #infobox .bid-position .form-group.checkbox-group label, #infobox-info .bid-position .form-group.checkbox-group label {
    font-size: 13px; }
  #infobox .message, #infobox-info .message {
    min-width: 95%; }
    #infobox .message .btn-yellow-add, #infobox-info .message .btn-yellow-add {
      max-width: 100%;
      min-width: auto; }
      #infobox .message .btn-yellow-add .text, #infobox-info .message .btn-yellow-add .text {
        padding-left: 20px;
        padding-right: 20px; }

  #user-pass .wrapper {
    margin: 0;
    padding: 20px 15px; }
    #user-pass .wrapper .form-group {
      flex: 1 1 100%;
      margin: 15px 0px; }
      #user-pass .wrapper .form-group label {
        font-size: 18px; }
      #user-pass .wrapper .form-group .form-control {
        max-width: 100%; }
  #user-pass .btn-yellow-add {
    width: 220px; }

  #user-email .wrapper {
    flex-wrap: wrap; }
    #user-email .wrapper .form-group {
      margin-bottom: 0; }

  #issue-list .info {
    flex-wrap: wrap;
    justify-content: flex-start; }
    #issue-list .info .number {
      order: 2;
      font-size: 70%; }
    #issue-list .info .status {
      order: 3;
      font-size: 70%; }
    #issue-list .info .date {
      margin-right: auto;
      margin-left: 0;
      font-size: 70%;
      order: 1; }
  #issue-list .text {
    font-size: 11px; }

  #open-issue {
    padding: 10px 20px; }
    #open-issue .btn {
      margin-right: auto; }

  #redweb .redweb-name input {
    width: 128px;
    border: none;
    padding: 0;
    font-weight: bold;
    font-size: 13px; }
  #redweb .redweb-name span {
    font-size: 13px; }
    #redweb .redweb-name span:first-child {
      padding-left: 10px; }
    #redweb .redweb-name span:last-child {
      padding-right: 10px; }

  .box-title {
    padding: 0; }
    .box-title h1 {
      font-size: 24px;
      padding: 20px 15px; }

  .box-wrapper {
    padding: 20px 15px; }

  .btn-yellow-add {
    max-width: 100%; }

  .no-element {
    padding: 20px; }
    .no-element img {
      height: 30px;
      margin-right: 0px;
      margin-bottom: 10px; }
    .no-element h2 {
      font-size: 15px;
      flex-direction: column; }

  #banners .banner-wrapper {
    margin: 15px 0px;
    padding: 15px 10px; }
    #banners .banner-wrapper .one-banner textarea {
      height: 160px; }

  #footer .flex-box {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto; }
    #footer .flex-box .links-footer {
      display: flex;
      justify-content: center;
      flex-wrap: wrap; }
      #footer .flex-box .links-footer a {
        margin-left: 5px;
        margin-right: 5px; }

  .seo-subpage-title {
    padding: 10px 15px; }
    .seo-subpage-title h1 {
      position: relative;
      font-size: 16px;
      text-align: center;
      margin-bottom: 0px; }
    .seo-subpage-title p {
      text-align: center;
      margin-bottom: 0; }
    .seo-subpage-title span {
      line-height: 15px;
      font-size: 14px;
      margin-bottom: 0;
      display: block;
      font-size: 12px;
      line-height: 16px; }

  .for-hidden-text-xs:after {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    position: absolute;
    right: 0px;
    top: 0px;
    content: "";
    cursor: pointer;
    width: 21px;
    height: 27px;
    background-position: center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-image: url("../img/arrow-down-red.svg"); }
  .for-hidden-text-xs.open:after {
    transform: rotate(180deg); }

  .mobile-hidden {
    display: none; }

  #purchase-confirmation .grey-bg {
    text-align: center; }
    #purchase-confirmation .grey-bg .form-group {
      padding-left: 15px;
      padding-right: 15px;
      justify-content: center;
      flex-direction: row; }

  #discount .title-border {
    text-align: center;
    justify-content: center; }

  #discount-form .btn-yellow-add {
    margin-top: 10px; }

  #weblinks .inner a {
    max-width: 48.5%;
    flex: 1 1 48%;
    font-size: 12px; }

  #board-list .one-board {
    flex: 1 1 100%;
    max-width: 100%; }

  .bulletin-carousel .owl-nav .owl-prev, .bulletin-carousel .owl-nav .owl-next {
    background-color: transparent !important; }
  .bulletin-carousel .one-board {
    font-size: 90%; } }
@media (min-width: 577px) and (max-width: 767px) {
  .review-seo .wrapper {
    width: 100%;
    padding-top: 5px; }
  .review-seo .one-review {
    background-color: #ededed;
    padding: 15px 45px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex; }
  .review-seo .content p {
    line-height: 18px;
    font-size: 15px; }
  .review-seo .avatar {
    margin-right: 20px; }
    .review-seo .avatar img {
      min-width: 80px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center; }
  .review-seo .date {
    font-size: 14px; }
  .review-seo .top {
    display: flex;
    justify-content: space-between; }
    .review-seo .top p {
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 15px; }

  .seo-subpage-title h1 {
    font-size: 20px;
    text-align: center; }
  .seo-subpage-title p {
    text-align: center;
    margin-bottom: 0; }

  .listing-box-hidden h1 {
    cursor: pointer; }
  .listing-box-hidden .hidden {
    display: none; }

  #top-nav p {
    font-size: 14px;
    padding: 0; }
  #top-nav #language {
    max-width: 65px; }
    #top-nav #language .btn {
      padding-left: 5px;
      padding-right: 5px; }
      #top-nav #language .btn .flag {
        margin-right: 0; }
  #top-nav .element {
    margin-left: 5px;
    margin-right: 5px;
    justify-content: center;
    padding-left: 5px;
    padding-right: 5px; }
    #top-nav .element span {
      width: 38px;
      background-color: #aa2c1f; }
      #top-nav .element span img {
        width: 14px; }
  #top-nav #text-element p {
    font-size: 14px;
    padding-left: 0px;
    padding-right: 0px; }
  #top-nav #text-element img {
    width: 16px; }
  #top-nav #login span {
    border: none;
    width: 100%; }
  #top-nav .flex-box {
    margin-left: -5px;
    margin-right: -5px; }
  #top-nav #register img {
    width: 16px; }
  #top-nav #register span {
    width: auto;
    border: none; }

  .faq-movie {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px; }
    .faq-movie .one-video {
      margin: 10px;
      flex: 1 1 40%;
      max-width: 198px; }
      .faq-movie .one-video h4 {
        color: #aa2c1f;
        font-size: 18px; }

  .subpage .faq-movie .one-video {
    max-width: 198px; }

  .admin-info .wrapper .title h2 {
    font-size: 26px; }
  .admin-info .wrapper .content h3 {
    font-size: 22px; }

  .gallery-for-rmz .inner .one-element {
    flex: 1 1 30%;
    max-width: 162px; }

  #middle-bar .flex-box {
    max-height: 60px; }
  #middle-bar #big-image a {
    background-size: contain;
    height: 60px; }
  #middle-bar #logo a img {
    height: 60px; }

  #top-filters .flex-box {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    height: auto;
    max-height: 46px; }
    #top-filters .flex-box .filters {
      display: flex;
      width: 100%;
      justify-content: space-between; }
    #top-filters .flex-box.open {
      max-height: 300px; }

  .filters {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0px;
    padding-right: 0px; }
    .filters p {
      flex: 1 1 40%; }
    .filters button {
      text-align: right;
      flex: 1 1 40%; }
    .filters .btn-filter {
      padding: 0;
      flex: 0; }
      .filters .btn-filter img {
        width: 34px; }
    .filters .btn-switch {
      font-size: 14px;
      flex: 1 1 100%;
      width: 100%;
      margin: 5px 0px;
      background-size: 7px;
      background-position: right 3px center;
      padding-right: 18px; }
    .filters .element {
      flex: 0;
      width: 100%;
      margin-left: 5px;
      margin-right: 5px; }
      .filters .element .switch-menu {
        margin-top: 0;
        column-count: 2; }
        .filters .element .switch-menu li .holder {
          align-items: flex-start; }
          .filters .element .switch-menu li .holder .filter-checkbox {
            width: 15px;
            height: 15px;
            background-size: 8px;
            margin-right: 6px;
            margin-top: 3px; }
          .filters .element .switch-menu li .holder .filter-name {
            font-size: 14px; }
    .filters .buttons-wrapper {
      margin-left: auto;
      margin-right: auto; }

  .serach-wrapper {
    margin-bottom: 0px;
    width: 186px;
    margin-left: auto;
    margin-right: auto; }
    .serach-wrapper .form-control {
      width: 100%;
      margin: 5px 0;
      font-size: 14px; }

  .search {
    flex: 1 1 100%;
    margin: 0; }

  .vertical-listing .one-element {
    flex-wrap: wrap;
    height: 252px;
    padding-right: 30px; }
    .vertical-listing .one-element .premium-label {
      width: 24px; }
      .vertical-listing .one-element .premium-label span {
        font-size: 19px; }
    .vertical-listing .one-element .wrapper {
      padding: 10px 15px;
      flex: 1 1 50%;
      max-width: 264px; }
      .vertical-listing .one-element .wrapper .desc p {
        font-size: 14px;
        line-height: 16px; }
      .vertical-listing .one-element .wrapper .desc .listing-ad-title, .vertical-listing .one-element .wrapper .desc h2 {
        margin-bottom: 5px; }
      .vertical-listing .one-element .wrapper .top-data .right {
        position: absolute;
        bottom: 10px;
        right: 48px; }
      .vertical-listing .one-element .wrapper .top-data .left {
        display: block; }
      .vertical-listing .one-element .wrapper .bottom-buttons {
        justify-content: flex-end; }
        .vertical-listing .one-element .wrapper .bottom-buttons .buttons a {
          width: auto;
          height: 30px; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon {
            border: none; }
            .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon img {
              width: 16px; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .name {
            display: none; }
          .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-whatsapp .icon img {
            width: 19px; }
    .vertical-listing .one-element .xs-belt {
      height: 50px;
      flex: 1 1 100%; }
      .vertical-listing .one-element .xs-belt .buttons {
        display: flex;
        border-top: 5px solid #fff; }
        .vertical-listing .one-element .xs-belt .buttons a {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 53px; }
          .vertical-listing .one-element .xs-belt .buttons a.link-tel {
            background-color: #e70328; }
          .vertical-listing .one-element .xs-belt .buttons a.link-whatsapp {
            background-color: #3ba450; }
          .vertical-listing .one-element .xs-belt .buttons a.link-mail {
            background-color: #1db2cd; }
          .vertical-listing .one-element .xs-belt .buttons a.link-www {
            background-color: #f97b00; }
          .vertical-listing .one-element .xs-belt .buttons a:last-child {
            border-right: 5px solid #fff; }
      .vertical-listing .one-element .xs-belt img {
        width: 28px; }
    .vertical-listing .one-element.premium {
      height: 256px; }
      .vertical-listing .one-element.premium .xs-belt .buttons {
        border-color: #f0cc05; }
        .vertical-listing .one-element.premium .xs-belt .buttons a {
          width: 52px; }
          .vertical-listing .one-element.premium .xs-belt .buttons a:last-child {
            border-color: #f0cc05; }

  #boxes .one-box {
    flex: 1 1 100%; }
    #boxes .one-box h2 {
      font-size: 24px; }
    #boxes .one-box p {
      font-size: 15px; }
    #boxes .one-box .links ul {
      column-count: 1; }

  #linkbox ul {
    column-count: 2; }

  #small-images .inner {
    flex-wrap: wrap; }

  #footer-links .links-wrapper {
    flex-wrap: wrap; }
    #footer-links .links-wrapper .one-column {
      flex: 1 1 30%;
      margin-bottom: 20px; }

  #main-foto {
    max-width: 375px; }
    #main-foto .one-foto {
      height: 260px; }

  #thumbnails {
    max-width: 400px; }
    #thumbnails .one-foto {
      height: 90px; }

  #main-card .foto-box {
    margin-right: 0px; }
  #main-card .right-box div.name {
    display: none; }
  #main-card .right-box .buttons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 10px;
    max-width: 100%; }
    #main-card .right-box .buttons a {
      flex: 1 1 40%;
      margin-top: 4px;
      margin-bottom: 4px; }
  #main-card .right-box .btn-contact {
    height: 30px;
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 5px; }
    #main-card .right-box .btn-contact .text {
      font-size: 13px;
      padding: 0 5px;
      width: 100%;
      text-align: center;
      justify-content: center; }
    #main-card .right-box .btn-contact .icon {
      width: 40px; }
      #main-card .right-box .btn-contact .icon img {
        width: 14px; }
    #main-card .right-box .btn-contact:last-child {
      margin-bottom: 0; }
  #main-card .right-box .regions {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center; }
    #main-card .right-box .regions h4 {
      font-size: 16px;
      margin-right: 10px; }
  #main-card .right-box .adress {
    padding: 10px 15px;
    justify-content: center; }
    #main-card .right-box .adress .text h4 {
      font-size: 16px; }
    #main-card .right-box .adress .text p {
      line-height: 17px;
      font-size: 14px; }
    #main-card .right-box .adress .navigate img {
      width: 90px; }
  #main-card .flex-box {
    flex-wrap: wrap; }

  #services .wrapper .inner ul {
    column-count: 2; }
    #services .wrapper .inner ul li {
      font-size: 15px; }

  .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    width: 35px;
    height: 35px; }
  .owl-carousel .owl-nav .owl-prev {
    left: -45px; }
  .owl-carousel .owl-nav .owl-next {
    right: -45px; }

  #title-belt #title {
    padding-top: 10px;
    padding-bottom: 10px;
    flex: 1 1 100%;
    border-bottom: 1px solid #bb564c; }
    #title-belt #title h2 {
      text-align: center;
      font-size: 40px;
      margin-bottom: 0px;
      margin-top: 0; }
    #title-belt #title h1 {
      text-align: center;
      font-size: 20px;
      margin-top: 0; }
    #title-belt #title h4 {
      font-weight: 300;
      font-size: 16px; }
  #title-belt .flex-box {
    height: auto;
    flex-wrap: wrap; }

  #function-buttons {
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    flex: 1 1 100%; }
    #function-buttons button {
      font-size: 12px;
      margin-left: 5px;
      margin-right: 5px; }
    #function-buttons a {
      font-size: 13px;
      margin-left: 5px;
      margin-right: 5px; }

  .box-title h3 {
    font-size: 20px; }

  .btn-add-review {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px; }
    .btn-add-review .text {
      font-size: 14px; }
      .btn-add-review .text span {
        padding-left: 20px;
        padding-right: 20px; }

  #review .box-title {
    justify-content: center;
    flex-wrap: wrap;
    padding-right: 0; }
    #review .box-title h3 {
      padding-left: 0; }
  #review .inner .one-review .content p {
    font-size: 15px;
    line-height: 19px; }

  #inserate-manager .one-element {
    height: 185px; }
    #inserate-manager .one-element .foto {
      min-width: 189px;
      max-width: 189px; }
    #inserate-manager .one-element .wrapper .top-data .left {
      display: flex; }
    #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink {
      font-size: 13px;
      height: 32px; }
      #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .icon {
        min-width: 30px;
        max-width: 30px; }
        #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .icon img {
          width: 15px; }
      #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .name {
        line-height: 13px; }
    #inserate-manager .one-element .wrapper .ad-options {
      flex-wrap: wrap; }
      #inserate-manager .one-element .wrapper .ad-options .dropdown-button, #inserate-manager .one-element .wrapper .ad-options .menu-panel-xs {
        width: 186px; }
      #inserate-manager .one-element .wrapper .ad-options .clicks {
        font-size: 12px;
        flex: 1 1 24%;
        text-align: right; }
      #inserate-manager .one-element .wrapper .ad-options .dates {
        flex: 1 1 72%; }
        #inserate-manager .one-element .wrapper .ad-options .dates div {
          font-size: 12px; }
          #inserate-manager .one-element .wrapper .ad-options .dates div strong {
            margin-left: 5px; }
      #inserate-manager .one-element .wrapper .ad-options .options {
        font-size: 12px;
        flex: 1 1 100%;
        margin-top: 5px;
        margin-bottom: 10px; }

  .userpanel-listing .one-element .wrapper .desc {
    margin-bottom: 5px; }
    .userpanel-listing .one-element .wrapper .desc h2 {
      font-size: 16px; }

  .dropdown-button, .menu-panel-xs {
    width: 200px; }

  .pills .pills-buttons button {
    width: 140px;
    font-size: 15px;
    height: 50px; }
    .pills .pills-buttons button span {
      width: 28px;
      height: 28px; }

  #userpanel {
    margin-top: 0; }
    #userpanel .flex-box {
      flex-direction: column; }

  #ad-region .region {
    padding: 30px 15px 30px 15px;
    column-count: 3; }

  #ad-category .category {
    padding: 30px 15px 30px 15px;
    column-count: 3; }

  #ad-service .service {
    padding: 30px 15px 30px 15px;
    column-count: 3; }

  #ad-period .flex-box, #packets-pack .flex-box {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center; }
    #ad-period .flex-box .one-element, #packets-pack .flex-box .one-element {
      flex: 1 1 30%;
      margin-top: 3px;
      margin-bottom: 3px;
      max-width: 155.33px; }
  #ad-period .flex-box, #packets-pack .flex-box {
    padding: 10px 15px 30px 15px; }

  #ad-contact .tel-number {
    flex-direction: row; }

  #ad-contact .adress-form {
    flex-direction: row; }

  .title-border {
    padding: 20px 15px; }

  #ad-info .inner {
    padding: 30px 15px 30px 15px; }

  #ad-contact .inner {
    padding: 30px 15px 30px 15px; }

  .li-buttons li label {
    font-size: 12px; }

  #credit-info p {
    text-align: center; }

  #credit-packets .title-border {
    flex-wrap: wrap; }
    #credit-packets .title-border span {
      flex: 1 1 70%;
      margin-left: 0; }
    #credit-packets .title-border #currency {
      flex: 1 1 20%; }

  #discount .title-border {
    flex-wrap: wrap; }
    #discount .title-border span {
      margin-left: 0;
      flex: 1 1 100%;
      display: block; }

  #register #register-form .yellow-li, #login #register-form .yellow-li {
    column-count: 2;
    margin-top: 0; }
    #register #register-form .yellow-li li, #login #register-form .yellow-li li {
      font-size: 14px;
      padding-top: 5px;
      padding-bottom: 5px;
      background-size: 14px;
      background-position: left top 11px; }
  #register #register-form .row, #login #register-form .row {
    display: flex;
    flex-direction: column-reverse; }

  #login #login-form .info {
    align-items: flex-start;
    margin-top: 34px; }
    #login #login-form .info .wrapper {
      width: 100%; }
    #login #login-form .info .btn-white-icon {
      width: 100%; }

  #messages-options {
    padding: 15px; }
    #messages-options .checkbox-group {
      align-items: flex-start;
      flex-direction: column; }
      #messages-options .checkbox-group label {
        font-size: 13px; }
      #messages-options .checkbox-group .form-group:first-child {
        margin-bottom: 4px; }

  .messages-list .one-message {
    height: 138px; }
    .messages-list .one-message .deleted-info h3 {
      font-size: 20px; }
    .messages-list .one-message .options {
      right: 5px;
      top: 5px; }
      .messages-list .one-message .options .btn {
        width: 30px;
        height: 30px; }
        .messages-list .one-message .options .btn img {
          max-width: 16px;
          max-height: 16px; }
    .messages-list .one-message .foto {
      flex: 1 1 24%;
      margin-right: 20px; }
    .messages-list .one-message .content {
      flex: 1 1 76%; }
      .messages-list .one-message .content .details {
        margin-bottom: 5px; }
        .messages-list .one-message .content .details .from, .messages-list .one-message .content .details .to {
          font-size: 14px; }
      .messages-list .one-message .content .text {
        font-size: 12px;
        line-height: 16px; }
      .messages-list .one-message .content .date {
        font-size: 11px;
        margin-bottom: 0px; }

  #subscriptions-list .one-subscription {
    padding-left: 30px;
    padding-right: 30px; }
    #subscriptions-list .one-subscription .number {
      top: -20px;
      left: -30px;
      border-top: none;
      border-left: none;
      width: 30px;
      height: 30px;
      font-size: 14px;
      background-size: 14px;
      border-radius: 0px 0px 8px 0px; }
    #subscriptions-list .one-subscription .btn-delete-icon {
      top: -20px;
      right: -30px;
      border-top: none;
      border-right: none;
      width: 30px;
      height: 30px;
      background-size: 14px;
      border-radius: 0px 0px 0px 8px; }
    #subscriptions-list .one-subscription .wrapper {
      margin-left: -5px;
      margin-right: -5px; }
      #subscriptions-list .one-subscription .wrapper .plate {
        font-size: 13px;
        padding: 4px 10px;
        margin-right: 3px;
        margin-left: 3px; }
      #subscriptions-list .one-subscription .wrapper .yellow-bar {
        height: 30px;
        margin-top: 10px;
        max-width: 300px; }
        #subscriptions-list .one-subscription .wrapper .yellow-bar span img {
          width: 12px; }
        #subscriptions-list .one-subscription .wrapper .yellow-bar p {
          font-size: 14px; }

  #view-filters .one-filter {
    font-size: 13px; }

  #user-details .title-border {
    display: flex;
    flex-direction: column; }
    #user-details .title-border span {
      margin: 0; }

  #general-uploader {
    text-align: center;
    font-size: 30px; }

  #ad-gallery .wrapper {
    padding: 20px 15px; }

  .media-reloader .one-foto {
    flex: 1 1 26%;
    max-width: 145.33px;
    height: 270px; }
    .media-reloader .one-foto .foto {
      height: 170px; }
  .media-reloader .one-video {
    flex: 1 1 45%;
    max-width: 228px; }

  #infobox.avatar #cropper div {
    max-height: 250px; }
  #infobox.avatar .preview .pre-avatar {
    width: 170px;
    height: 170px; }

  .avatar-list .one-avatar {
    height: 130px;
    width: 130px;
    margin: 10px; }

  #video-options .d-flex {
    flex-wrap: wrap; }
  #video-options #options-box {
    flex: 1 1 100%; }
  #video-options #video-box {
    flex: 1 1 100%;
    margin-bottom: 20px; }
    #video-options #video-box .wrapper {
      max-width: 330px; }

  #video-carousel .one-video video {
    height: 250px; }

  .media-reloader .one-foto .foto a {
    height: 170px; }

  #infobox .open-issue, #infobox-info .open-issue {
    min-width: 100%; }
  #infobox .message, #infobox-info .message {
    min-width: 95%; }

  #user-pass .wrapper .form-group {
    flex: 1 1 100%; }
    #user-pass .wrapper .form-group .form-control {
      max-width: 100%; }
  #user-pass .btn-yellow-add {
    width: 300px; }

  #issue-list .info {
    flex-wrap: wrap;
    justify-content: flex-start; }
    #issue-list .info .number {
      order: 1; }
    #issue-list .info .status {
      order: 3; }
    #issue-list .info .date {
      font-size: 70%;
      order: 2; }

  .btn-yellow-add {
    max-width: 100%; }

  .no-element {
    padding: 20px; }
    .no-element img {
      height: 42px;
      margin-right: 20px; }
    .no-element h2 {
      font-size: 18px; }

  #banners .banner-wrapper {
    margin: 20px 15px;
    padding: 20px 15px; }
    #banners .banner-wrapper .one-banner textarea {
      height: 150px; }

  #footer .flex-box {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120px; }
  #footer .copyright {
    order: 2; }
  #footer .links-footer {
    order: 3; }

  #footer-social {
    flex: 1 1 100%;
    justify-content: center;
    order: 1; }

  #purchase-confirmation .grey-bg {
    text-align: center; }
    #purchase-confirmation .grey-bg .form-group {
      justify-content: center;
      flex-direction: row; }

  .pagination {
    flex-wrap: wrap; }
    .pagination .prev {
      order: 1;
      flex: 1 1 40%; }
    .pagination .next {
      order: 2;
      flex: 1 1 40%;
      text-align: right; }
    .pagination .numbers {
      flex: 1 1 100%;
      order: 3;
      margin-top: 10px; }
      .pagination .numbers a {
        width: 38px;
        height: 40px; }

  #weblinks .inner a {
    max-width: 124.5px;
    flex: 1 1 22%;
    font-size: 12px; }

  #board-list .one-board {
    flex: 1 1 40%;
    max-width: 251px; } }
@media (min-width: 768px) and (max-width: 991px) {
  #top-nav p {
    font-size: 14px;
    padding: 0 10px; }
  #top-nav #login span {
    border: none;
    width: 100%; }
  #top-nav #text-element img {
    width: 10px; }
  #top-nav #text-element span {
    width: 34px; }
  #top-nav #register span {
    border: none;
    width: 100%; }

  #info-dek {
    padding: 10px 15px;
    text-align: center; }

  .seo-subpage-title h1 {
    font-size: 22px;
    text-align: center; }
  .seo-subpage-title p {
    text-align: center;
    margin-bottom: 0; }

  .faq-movie {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px; }
    .faq-movie .one-video {
      margin: 10px;
      flex: 1 1 40%;
      max-width: 288px; }
      .faq-movie .one-video h4 {
        color: #aa2c1f; }

  .subpage .faq-movie .one-video {
    max-width: 288px; }

  .gallery-for-rmz .inner .one-element {
    flex: 1 1 22%;
    max-width: 163.5px; }

  .admin-info .wrapper .title h2 {
    font-size: 26px; }
  .admin-info .wrapper .content h3 {
    font-size: 22px; }

  #middle-bar .flex-box {
    max-height: 80px; }
  #middle-bar #big-image a {
    height: 80px;
    background-size: contain; }
  #middle-bar #logo a img {
    height: 80px; }

  .filters {
    margin-right: 0px; }
    .filters .btn-filter {
      padding: 0; }
      .filters .btn-filter img {
        width: 34px; }
    .filters .btn-switch {
      font-size: 15px;
      width: 130px; }
    .filters .element .switch-menu {
      column-count: 3; }
      .filters .element .switch-menu li .holder {
        align-items: flex-start; }
        .filters .element .switch-menu li .holder .filter-checkbox {
          width: 15px;
          height: 15px;
          background-size: 8px;
          margin-right: 6px;
          margin-top: 3px; }
        .filters .element .switch-menu li .holder .filter-name {
          font-size: 14px; }

  .serach-wrapper .form-control {
    width: 205px; }

  .vertical-listing .one-element .wrapper .desc p {
    font-size: 14px;
    line-height: 16px; }
  .vertical-listing .one-element .wrapper .desc .listing-ad-title, .vertical-listing .one-element .wrapper .desc h2 {
    margin-bottom: 5px; }
  .vertical-listing .one-element .wrapper .top-data .left {
    display: block; }
  .vertical-listing .one-element .wrapper .bottom-buttons .buttons a {
    width: auto;
    height: 30px; }
    .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon {
      border: none; }
      .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon img {
        width: 16px; }
    .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .name {
      display: none; }
    .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-whatsapp .icon img {
      width: 19px; }

  #boxes .one-box {
    flex: 1 1 100%; }
    #boxes .one-box h2 {
      font-size: 24px; }
    #boxes .one-box p {
      font-size: 15px; }
    #boxes .one-box .links ul {
      column-count: 1; }

  #linkbox ul {
    column-count: 3; }

  #small-images .inner {
    flex-wrap: wrap; }

  #footer-links .links-wrapper {
    flex-wrap: wrap; }
    #footer-links .links-wrapper .one-column {
      flex: 1 1 30%;
      margin-bottom: 20px; }

  #footer .flex-box {
    flex-wrap: wrap;
    height: 120px; }
  #footer .copyright {
    order: 2; }
  #footer .links-footer {
    order: 3; }

  #footer-social {
    flex: 1 1 100%;
    justify-content: center;
    order: 1; }

  #main-foto {
    max-width: 330px; }
    #main-foto .one-foto {
      height: 240px; }

  #thumbnails {
    max-width: 356px; }
    #thumbnails .one-foto {
      height: 90px; }

  #main-card .right-box .buttons {
    padding: 10px 15px; }
  #main-card .right-box .btn-contact {
    height: 34px;
    margin-bottom: 10px; }
    #main-card .right-box .btn-contact .text {
      font-size: 15px; }
    #main-card .right-box .btn-contact .icon {
      width: 48px; }
      #main-card .right-box .btn-contact .icon img {
        width: 18px; }
    #main-card .right-box .btn-contact .name {
      font-size: 15px; }
    #main-card .right-box .btn-contact:last-child {
      margin-bottom: 0; }
  #main-card .right-box .regions {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center; }
    #main-card .right-box .regions h4 {
      font-size: 16px;
      margin-right: 10px; }
  #main-card .right-box .adress {
    padding: 10px 15px; }
    #main-card .right-box .adress .text h4 {
      font-size: 16px; }
    #main-card .right-box .adress .text p {
      line-height: 17px;
      font-size: 14px; }
    #main-card .right-box .adress .navigate img {
      width: 70px; }
  #main-card .right-box .name:not(span) {
    padding: 12px 15px; }
    #main-card .right-box .name:not(span) h2 {
      font-size: 24px !important; }
    #main-card .right-box .name:not(span) h3 {
      font-size: 13px !important; }
    #main-card .right-box .name:not(span) h4 {
      font-size: 14px; }

  .media-reloader .one-foto .foto a {
    height: 210px; }

  #services .wrapper .inner ul {
    column-count: 3; }
    #services .wrapper .inner ul li {
      font-size: 16px; }

  .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    width: 35px;
    height: 35px; }
  .owl-carousel .owl-nav .owl-prev {
    left: -45px; }
  .owl-carousel .owl-nav .owl-next {
    right: -45px; }

  #title-belt #title h1 {
    font-size: 14px; }

  #function-buttons button {
    font-size: 12px;
    margin-left: 5px;
    margin-right: 15px; }
  #function-buttons a {
    font-size: 12px;
    margin-left: 5px;
    margin-right: 5px; }
    #function-buttons a span {
      display: none; }

  .box-title h3 {
    font-size: 22px; }

  .btn-add-review .text {
    font-size: 14px; }
    .btn-add-review .text span {
      padding-left: 20px;
      padding-right: 20px; }

  #inserate-manager .one-element {
    height: 208px; }
    #inserate-manager .one-element .wrapper .top-data .left {
      display: flex; }
    #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink {
      font-size: 13px;
      height: 32px; }
      #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .icon {
        min-width: 30px;
        max-width: 30px; }
        #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .icon img {
          width: 15px; }
      #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .name {
        line-height: 13px; }
    #inserate-manager .one-element .wrapper .ad-options {
      flex-wrap: wrap; }
      #inserate-manager .one-element .wrapper .ad-options .clicks {
        font-size: 16px;
        flex: 1 1 36%;
        text-align: right; }
      #inserate-manager .one-element .wrapper .ad-options .dates {
        flex: 1 1 40%; }
        #inserate-manager .one-element .wrapper .ad-options .dates div {
          font-size: 14px; }
      #inserate-manager .one-element .wrapper .ad-options .options {
        font-size: 14px;
        flex: 1 1 100%;
        margin-top: 5px;
        margin-bottom: 10px; }

  .userpanel-listing .one-element .wrapper .desc {
    margin-bottom: 5px; }
    .userpanel-listing .one-element .wrapper .desc h2 {
      font-size: 16px; }

  .dropdown-button, .menu-panel-xs {
    width: 200px; }

  .pills .pills-buttons button {
    width: 140px;
    font-size: 15px;
    height: 50px; }
    .pills .pills-buttons button span {
      width: 28px;
      height: 28px; }

  #userpanel {
    margin-top: 0; }
    #userpanel .flex-box {
      flex-direction: column; }

  #ad-region .region {
    column-count: 3; }

  #ad-category .category {
    column-count: 3; }

  #ad-service .service {
    column-count: 3; }

  #ad-period .flex-box, #packets-pack .flex-box {
    flex-direction: row; }

  #ad-contact .tel-number {
    flex-direction: row; }

  #ad-contact .adress-form {
    flex-direction: row; }

  #register #register-form .yellow-li, #login #register-form .yellow-li {
    column-count: 2;
    margin-top: 0; }
    #register #register-form .yellow-li li, #login #register-form .yellow-li li {
      font-size: 14px;
      padding-top: 5px;
      padding-bottom: 5px;
      background-size: 14px;
      background-position: left top 11px; }
  #register #register-form .row, #login #register-form .row {
    display: flex;
    flex-direction: column-reverse; }

  #messages-options .checkbox-group {
    align-items: flex-start;
    flex-direction: column; }
    #messages-options .checkbox-group .form-group:first-child {
      margin-bottom: 4px; }

  .messages-list .one-message {
    height: 188px; }
    .messages-list .one-message .foto {
      flex: 1 1 24%;
      margin-right: 20px; }
    .messages-list .one-message .content {
      flex: 1 1 76%; }

  #subscriptions-list .one-subscription .wrapper .plate {
    font-size: 14px;
    padding: 5px 10px; }
  #subscriptions-list .one-subscription .wrapper .yellow-bar {
    height: 34px;
    margin-top: 15px;
    max-width: 300px; }
    #subscriptions-list .one-subscription .wrapper .yellow-bar p {
      font-size: 16px; }

  #favorite-listing .one-element .wrapper .top-data .left {
    display: flex; }
  #favorite-listing .one-element .wrapper .bottom-buttons .buttons {
    flex-wrap: wrap; }
    #favorite-listing .one-element .wrapper .bottom-buttons .buttons a {
      width: 185px;
      font-size: 14px;
      margin-top: 2px;
      margin-bottom: 2px; }
      #favorite-listing .one-element .wrapper .bottom-buttons .buttons a .name {
        display: flex;
        justify-content: center; }

  #general-uploader {
    font-size: 30px; }

  .media-reloader .one-foto {
    flex: 1 1 30%;
    max-width: 179.33px;
    height: 310px; }
    .media-reloader .one-foto .foto {
      height: 210px; }
  .media-reloader .one-video {
    flex: 1 1 30%;
    max-width: 179.33px; }

  #infobox .open-issue, #infobox-info .open-issue {
    min-width: 100%; }
  #infobox .review #review .box-title, #infobox-info .review #review .box-title {
    padding-right: 0;
    flex-direction: column; }
    #infobox .review #review .box-title h3, #infobox-info .review #review .box-title h3 {
      padding-left: 15px;
      padding-right: 15px; }
    #infobox .review #review .box-title .review-info, #infobox-info .review #review .box-title .review-info {
      margin-bottom: 10px; }
    #infobox .review #review .box-title .btn-add-review, #infobox-info .review #review .box-title .btn-add-review {
      margin-right: auto;
      margin-bottom: 20px; }

  #video-options #options-box {
    flex: 1 1 32%; }
  #video-options #video-box {
    flex: 1 1 68%; }
    #video-options #video-box .wrapper {
      max-width: 330px; }

  #video-carousel .one-video video {
    height: 250px; }

  #infobox .message, #infobox-info .message {
    min-width: 95%; }

  #user-pass .wrapper .form-group {
    flex: 1 1 100%; }
    #user-pass .wrapper .form-group .form-control {
      max-width: 100%; }
  #user-pass .btn-yellow-add {
    width: 300px; }

  .btn-yellow-add {
    max-width: 100%; }

  .no-element {
    padding: 20px; }
    .no-element img {
      height: 42px;
      margin-right: 20px; }
    .no-element h2 {
      font-size: 18px; }

  .additional-options {
    padding: 20px 15px; }

  #banners .banner-wrapper .one-banner textarea {
    height: 110px; }

  #purchase-confirmation .grey-bg {
    text-align: center; }
    #purchase-confirmation .grey-bg .form-group {
      justify-content: center;
      flex-direction: row; }

  #function-buttons .like {
    width: 45px; }
  #function-buttons .dislike {
    width: 45px; }
  #function-buttons .favorite {
    margin-left: 15px;
    margin-right: 10px; }

  #weblinks .inner a {
    max-width: 169.5px;
    flex: 1 1 22%;
    font-size: 13px; }

  #board-list .one-board {
    flex: 1 1 30%;
    max-width: 224.67px; } }
@media (min-width: 992px) and (max-width: 1199px) {
  #middle-bar .flex-box {
    max-height: 80px; }
  #middle-bar #big-image a {
    height: 80px; }
  #middle-bar #logo a img {
    height: 80px; }

  .gallery-for-rmz .inner .one-element {
    flex: 1 1 22%;
    max-width: 223.5px; }

  #info-dek {
    text-align: center; }

  .seo-subpage-title h1 {
    font-size: 24px;
    text-align: center; }
  .seo-subpage-title p {
    text-align: center;
    margin-bottom: 0; }

  .faq-movie {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px; }
    .faq-movie .one-video {
      margin: 10px;
      flex: 1 1 40%;
      max-width: 279px; }
      .faq-movie .one-video h4 {
        color: #aa2c1f; }

  .subpage .faq-movie .one-video {
    max-width: 265.33px; }

  .filters .element .switch-menu {
    column-count: 3; }
  .filters .btn-switch {
    width: 140px; }

  .vertical-listing .one-element .wrapper .top-data .left .date {
    display: none; }
  .vertical-listing .one-element .wrapper .bottom-buttons .buttons a {
    width: 128px;
    height: 30px; }
    .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon img {
      width: 16px; }
    .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .name {
      font-size: 14px; }
    .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-whatsapp .icon img {
      width: 19px; }

  #function-buttons .like {
    width: 45px; }
  #function-buttons .dislike {
    width: 45px; }

  #boxes .one-box h2 {
    font-size: 24px; }
  #boxes .one-box p {
    font-size: 15px; }
  #boxes .one-box .links ul {
    column-count: 1; }

  #linkbox ul {
    column-count: 3; }

  #small-images .inner {
    flex-wrap: wrap; }

  #footer-links .links-wrapper {
    flex-wrap: wrap; }
    #footer-links .links-wrapper .one-column {
      flex: 1 1 30%;
      margin-bottom: 20px; }

  #footer .flex-box {
    flex-wrap: wrap;
    height: 120px; }
  #footer .copyright {
    order: 2; }
  #footer .links-footer {
    order: 3; }

  #footer-social {
    flex: 1 1 100%;
    justify-content: center;
    order: 1; }

  #main-foto {
    max-width: 460px; }
    #main-foto .one-foto {
      height: 330px; }

  #thumbnails {
    max-width: 520px; }
    #thumbnails .one-foto {
      height: 110px; }

  #main-card .right-box .btn-contact {
    height: 42px; }
    #main-card .right-box .btn-contact .text {
      font-size: 18px; }
    #main-card .right-box .btn-contact .icon {
      width: 56px; }
      #main-card .right-box .btn-contact .icon img {
        width: 22px; }
  #main-card .right-box .regions {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
    align-items: center; }
    #main-card .right-box .regions h4 {
      margin-bottom: 4px;
      margin-right: 10px; }
  #main-card .right-box .adress .text p {
    font-size: 16px; }
  #main-card .right-box .adress .navigate img {
    width: 100px; }
  #main-card .right-box .name {
    padding: 20px 15px; }
    #main-card .right-box .name h2 {
      font-size: 34px; }
    #main-card .right-box .name h3 {
      font-size: 15px; }

  #services .wrapper .inner ul {
    column-count: 4; }
    #services .wrapper .inner ul li {
      font-size: 17px; }

  #inserate-manager .one-element {
    height: 208px; }
    #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink {
      font-size: 13px;
      height: 32px; }
      #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .icon {
        min-width: 30px;
        max-width: 30px; }
        #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .icon img {
          width: 15px; }
      #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink .name {
        line-height: 13px; }
    #inserate-manager .one-element .wrapper .ad-options {
      flex-wrap: wrap; }
      #inserate-manager .one-element .wrapper .ad-options .clicks {
        font-size: 20px;
        flex: 1 1 40%;
        text-align: right; }
      #inserate-manager .one-element .wrapper .ad-options .dates {
        flex: 1 1 60%; }
        #inserate-manager .one-element .wrapper .ad-options .dates div {
          font-size: 15px; }
      #inserate-manager .one-element .wrapper .ad-options .options {
        font-size: 15px;
        flex: 1 1 100%;
        margin-top: 5px;
        margin-bottom: 10px; }

  .userpanel-listing .one-element .wrapper .desc {
    margin-bottom: 5px; }
    .userpanel-listing .one-element .wrapper .desc h2 {
      font-size: 16px; }

  .dropdown-button, .menu-panel-xs {
    width: 200px; }

  .pills .pills-buttons button {
    width: 170px;
    font-size: 18px;
    height: 50px; }
    .pills .pills-buttons button span {
      width: 32px;
      height: 32px; }

  .li-buttons li label {
    font-size: 15px; }

  #ad-region .region {
    column-count: 3; }

  #ad-category .category {
    column-count: 3; }

  #ad-service .service {
    column-count: 3; }

  #login #login-form .info {
    align-items: flex-start;
    margin-top: 34px; }
    #login #login-form .info .wrapper {
      width: 100%; }
    #login #login-form .info .btn-white-icon {
      width: 100%; }

  #messages-options .checkbox-group {
    align-items: flex-start;
    flex-direction: column; }
    #messages-options .checkbox-group .form-group:first-child {
      margin-bottom: 4px; }

  .messages-list .one-message {
    height: 188px; }
    .messages-list .one-message .foto {
      flex: 1 1 24%;
      margin-right: 20px; }
    .messages-list .one-message .content {
      flex: 1 1 76%; }

  #subscriptions-list .one-subscription .wrapper .plate {
    font-size: 14px;
    padding: 4px 10px; }
  #subscriptions-list .one-subscription .wrapper .yellow-bar {
    height: 34px;
    margin-top: 15px;
    max-width: 450px; }
    #subscriptions-list .one-subscription .wrapper .yellow-bar p {
      font-size: 16px; }

  #favorite-listing .one-element .wrapper .bottom-buttons .buttons {
    flex-wrap: wrap; }
    #favorite-listing .one-element .wrapper .bottom-buttons .buttons a {
      width: 185px;
      font-size: 14px;
      margin-top: 2px;
      margin-bottom: 2px; }

  #general-uploader {
    font-size: 30px; }

  .media-reloader .one-foto {
    flex: 1 1 30%;
    max-width: 179.33px;
    height: 310px; }
    .media-reloader .one-foto .foto {
      height: 210px; }
  .media-reloader .one-video {
    flex: 1 1 30%;
    max-width: 179.33px; }

  .media-reloader .one-foto .foto a {
    height: 210px; }

  #video-options #options-box {
    flex: 1 1 32%; }
  #video-options #video-box {
    flex: 1 1 68%; }
    #video-options #video-box .wrapper {
      max-width: 460px; }

  #video-carousel .one-video video {
    height: 320px; }

  #infobox .open-issue, #infobox-info .open-issue {
    min-width: 100%; }
  #infobox .message, #infobox-info .message {
    min-width: 800px; }

  #user-pass .wrapper .form-group {
    flex: 1 1 100%; }
    #user-pass .wrapper .form-group .form-control {
      max-width: 100%; }
  #user-pass .btn-yellow-add {
    width: 300px; }

  .btn-yellow-add {
    max-width: 100%; }

  #banners .banner-wrapper .one-banner textarea {
    height: 90px; }

  #weblinks .inner a {
    max-width: 229.5px;
    flex: 1 1 22%; }

  #board-list .one-board {
    flex: 1 1 30%;
    max-width: 218.67px; } }
@media (min-width: 1200px) and (max-width: 1504px) {
  #middle-bar .flex-box {
    max-height: 100px; }
  #middle-bar #big-image a {
    height: 100px; }
  #middle-bar #logo a img {
    height: 100px; }

  .faq-movie {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px; }
    .faq-movie .one-video {
      margin: 10px;
      flex: 1 1 30%;
      max-width: 239.33px; }
      .faq-movie .one-video h4 {
        color: #aa2c1f; }

  .subpage .faq-movie .one-video {
    max-width: 325.33px; }

  .seo-subpage-title h1 {
    font-size: 28px;
    text-align: center; }
  .seo-subpage-title p {
    text-align: center;
    margin-bottom: 0; }

  .gallery-for-rmz .inner .one-element {
    flex: 1 1 18%;
    max-width: 212.41px; }

  .filters .element .switch-menu li .holder .filter-name {
    font-size: 16px; }
  .filters .btn-switch {
    width: 208px; }

  .vertical-listing .one-element .wrapper .bottom-buttons .buttons a {
    width: 170px;
    height: 30px; }
    .vertical-listing .one-element .wrapper .bottom-buttons .buttons a .icon img {
      width: 16px; }
    .vertical-listing .one-element .wrapper .bottom-buttons .buttons a.link-whatsapp .icon img {
      width: 19px; }

  #boxes .one-box h2 {
    font-size: 30px; }

  #linkbox ul {
    column-count: 4; }

  #main-foto {
    max-width: 600px; }
    #main-foto .one-foto {
      height: 435px; }

  #thumbnails {
    max-width: 642px; }
    #thumbnails .one-foto {
      height: 90px; }

  #main-card .right-box .adress .text p {
    font-size: 18px; }
  #main-card .right-box .adress .navigate img {
    width: 120px; }
  #main-card .right-box .name h2 {
    font-size: 40px; }
  #main-card .right-box .name h3 {
    font-size: 18px; }

  #services .wrapper .inner ul {
    column-count: 4; }
    #services .wrapper .inner ul li {
      font-size: 17px; }

  #inserate-manager .one-element .wrapper .bottom-buttons .buttons .nolink {
    font-size: 14px; }
  #inserate-manager .one-element .wrapper .ad-options .clicks {
    font-size: 15px; }
  #inserate-manager .one-element .wrapper .ad-options .dates div {
    font-size: 13px; }
  #inserate-manager .one-element .wrapper .ad-options .options {
    font-size: 15px; }
  #inserate-manager .one-element .wrapper .ad-options .dropdown-button {
    margin-left: 5px; }

  .dropdown-button, .menu-panel-xs {
    width: 200px; }

  .li-buttons li label {
    font-size: 15px; }

  #messages-options .checkbox-group {
    align-items: flex-start;
    flex-direction: column; }
    #messages-options .checkbox-group .form-group:first-child {
      margin-bottom: 4px; }

  .messages-list .one-message .foto {
    flex: 1 1 24%; }
  .messages-list .one-message .content {
    flex: 1 1 76%; }

  #favorite-listing .one-element .wrapper .bottom-buttons .buttons a {
    width: 131px;
    font-size: 14px; }

  #settings .wrapper label {
    font-size: 13px; }

  .media-reloader .one-foto {
    flex: 1 1 30%;
    max-width: 239.33px; }
  .media-reloader .one-video {
    flex: 1 1 30%;
    max-width: 239.33px; }

  #video-options #video-box .wrapper {
    max-width: 600px; }

  #user-pass .btn-yellow-add {
    width: 300px; }

  #infobox .open-issue, #infobox-info .open-issue {
    min-width: 100%; }

  .btn-yellow-add {
    max-width: 100%; }

  #weblinks .inner a {
    max-width: 218.8px; }

  #board-list .one-board {
    flex: 1 1 30%;
    max-width: 278.67px; } }
@media (min-width: 1505px) {
  .container {
    max-width: 1445px; } }

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