/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/
.after_price {
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
}

.wraps.hover_shine {
    margin-top: 0px;
}
.slider__contacts{
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}
.owl-carousel__contacts .owl-stage {
    display: flex;
	margin-bottom: 50px;
}
.owl-carousel__contacts {
   /*width: 1500px;*/
}
.owl-carousel__contacts .owl-dots {
	display:none;
}
.owl-carousel__contacts .owl-nav .svg.left {
transform: rotate(-90deg);
}
.owl-carousel__contacts .owl-nav .svg.right {
transform: rotate(90deg);
}
.owl-carousel__contacts .owl-nav {
    display: flex;
    justify-content: space-between;
}
.owl-carousel__contacts .owl-prev, .owl-carousel__contacts .owl-next{
    position: relative;
    bottom: 300px;
}
.owl-carousel__contacts .owl-nav button {
    border-radius: 3px;
	width: 40px;
    height: 40px;
}
.owl-carousel__contacts .owl-nav button:hover {
    color: #FFF;
    background: #9a814e;
}
.owl-carousel__contacts .owl-nav button i svg, .owl-carousel__contacts .owl-nav button i path {
    color: black;
}

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/
@media (max-width:767px) {

	#mobileheader .mobileheader-v2 {display: flex;}
	
	#mobileheader .right-icons {
		display: flex;
		flex-direction: row-reverse;
	}
	body > jdiv > jdiv > jdiv > jdiv {
		bottom: 70px;
	}

	.pull-right .social-icons {
		display: flex;
		align-items: center;
		height: 63px;
	}
	._orientationRight_c98b .button_d794 {
		margin-bottom: 80px !important;
	}

	.social-icons li.max a{
		width: 30px;
		height: 30px;
	}

	.top_mobile_region {display: none !important;}
}
@media (max-width:991px) {
   .social-icons li.max a{
		width: 20px;
		height: 63px;
		display: table-cell;
		vertical-align: middle;
	}
	.social-icons li.max a img {
		margin-top: -3px;
	}
}

.pull-right .social-icons li a {
    margin: 0;
}

.top_big_banners .item .img_block {
	background-position: 100% 50%;
}
.footer_dev {
	display: flex;
    justify-content: flex-end;
    margin: 30px 0 20px;
    padding: 0 10px;
    align-items: center;
}
.footer_dev a {
	margin-left: 6px;
	position: relative;
    top: -2px;
}
@media(min-width:768px) {
	.top_big_banners.short_block .top_slider_wrapp .main-slider {
		max-height: 500px;
		height: auto;
	}
	.top_big_banners.short_block .top_slider_wrapp .main-slider__item, .top_big_banners.short_block .top_slider_wrapp .main-slider__item td {
		height: auto;
		display: flex;
	}
}
@media(min-width: 480px) {
	.swiper-custom-banner-img-mobile {
		display: none;
	}
}
@media screen and (max-width: 479px), projection and (max-width: 479px), tv and (max-width: 479px), handheld and (max-width: 479px) {
	.top_slider_wrapp.view_3 .main-slider, .top_slider_wrapp.view_3 .main-slider__item, .top_slider_wrapp.view_3 .main-slider__item td, .top_slider_wrapp.view_3 .main-slider__item tr {
		height: auto;
		display: flex;
	}
	.swiper-custom-banner-img {
		display: none;
	}
	.swiper-custom-banner-img-mobile {
		display: inline-block;
	}
}
@media(max-width:414px) {
	#mobileheader .wrap_icon {
		padding-left: 7px!important;
		padding-right: 7px!important;
	}
}
.mine .loadings{
	visibility: visible;
}

/* Основные стили блока выбора города */
.mobile-city-selector {
  display: block;
  background: #9D8352;
  color: white;
  padding: 15px 16px;
  font-size: 14px;
  position: relative;
  z-index: 100;
}

.mobile-city-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

/* Левая часть - иконка и текст */
.mobile-city-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  flex-shrink: 0;
}

.mobile-city-icon {
  display: flex;
  align-items: center;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-city-text {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
}

/* Правая часть - город и кнопка */
.mobile-city-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-grow: 1;
  min-width: 0; /* Для правильной работы text-overflow */
}

.mobile-city-name {
  font-weight: 600;
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 150px;
}

.mobile-city-change-btn {
  background: transparent;
  color: white;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 8px 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mobile-city-change-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #9D8352;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 480px) {
  .mobile-city-selector {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .mobile-city-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .mobile-city-content {
    width: 100%;
    justify-content: space-between;
  }
  
  .mobile-city-name {
    font-weight: 400;
    max-width: 240px;
    font-size: 14px;
  }
  
  .mobile-city-change-btn {
    padding: 4px 12px;
    font-size: 12px;
  }
}

/* Анимация появления */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-city-selector {
  animation: slideDown 0.3s ease-out;
}