/* delete styles */
#map{
  height: 590px!important;
  width: 100%;
  position: relative;
}
.map-marker{
  position: absolute;
  top: 50%;
  left: 50%;
}
.map-marker:nth-child(2){
  top: 10%;
}
.map-marker:nth-child(3){
  left: 10%;
}
.map-marker:nth-child(4){
  left: 90%;
}
.map-marker:nth-child(5){
  left: 30%;
  top: 70%;
}
.map-marker:nth-child(6){
  left: 10%;
  top: 40%;
}
/* /delete styles */
.map-marker{
  width: 24.75px;
  height: 31.6px;
  cursor: pointer;
  transition: 0.2s;
  z-index: 1;
}
.map-marker.map-marker-active{
  width: 62.6px;
  height: 80px;
}
.map-marker.map-marker-blue{
  background: url('../images/map-icons/blue-home.png') center center no-repeat;
  background-size: contain;
}
.map-marker.map-marker-green{
  background: url('../images/map-icons/green-home.png') center center no-repeat;
  background-size: contain;
}
.map-marker.map-marker-orange{
  background: url('../images/map-icons/orange-home.png') center center no-repeat;
  background-size: contain;
}
.site-main-map{
  position: relative;
  overflow-y: hidden;
}
.popup-map{
  position: absolute;
  top: 120px;
  right: -260px;
  /* transform: translateY(-50%); */
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 260px;
  border-radius: 7px 0px 0px 7px;
  background: #fff;
  overflow-y: auto;
  transition: 0.2;
  z-index: 10;
  display: none;
}

.popup-map-close{
  position: absolute;
  content: '';
  background: url('../images/map-icons/popup/close.svg') center center no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
  top: 11px;
  right: 13px;
  cursor: pointer;
  transition: 0.2;
  
}
.popup-map-close:hover{
  transform: rotate(-90deg);
}

.popup-map.popup-map-active{
  right: 0;
  transition: 0.2s;
  display: block;
}
.popup-map-title-wrapp{
  padding: 7px;
}
.change-btn-blue .popup-map-title-wrapp{
  background: #1E3859;
}
.change-btn-green .popup-map-title-wrapp{
  background: #61A43B;
}
.change-btn-orange .popup-map-title-wrapp{
  background: #FF6600;
}
.popup-map-title{
  text-align: center;
}
.popup-map-title span{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #FFFFFF;
  display: block;
}
.popup-map-title span.popup-map-title-bottom{
  font-weight: 400;
  font-size: 12px;
}
.popup-map-characteristics{
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.popup-map-center{
  padding: 8px 20px 15px 20px;
  position: relative;
}
.popup-map-item{
  flex-basis: 50%;
  margin-bottom: 15px;
}
.popup-map-item-subtitle{
  font-weight: 500;
  font-size: 12px;
  color: #8D8D8D;
  margin-bottom: 8px;
}
.popup-map-item-title{
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  padding-left: 29px;
  position: relative;
}
.popup-map-item-title img{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.popup-map-links{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 23px 0px 5px 0px;
}
.change-btn-blue .popup-map-links{
  background: #6F89A2;
}
.change-btn-green .popup-map-links{
  background: #8CBE70;
}
.change-btn-orange .popup-map-links{
  background: #FFA163;
}
.popup-map-links a{
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.popup-map-links a::before{
  position: absolute;
  content: '';
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 6px;
  background: #fff;
  transition: 0.2s;
}
.popup-map-links a:hover::before{
  left: -40px;
}
.popup-map-links a .popup-map-img{
  width: 28px;
  margin-right: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.popup-map-link{
  padding: 6px 22px 6px 30px;
  border-bottom: 1px solid #FFFFFF;
}
.popup-map-link:last-child{
  padding-bottom: 0px;
  border-bottom: 0px solid #FFFFFF;
}
.popup-map-descr{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
  padding-left: 41px;
  position: relative;
  margin-bottom: 10px;
}
.popup-map-descr::before{
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 29px;
  height: 29px;
}
.change-btn-blue .popup-map-descr::before{
  background: url('../images/map-icons/popup/change/blue-home.svg') center center no-repeat;
  background-size: contain;
}
.change-btn-green .popup-map-descr::before{
  background: url('../images/map-icons/popup/change/green-home.svg') center center no-repeat;
  background-size: contain;
}
.change-btn-orange .popup-map-descr::before{
  background: url('../images/map-icons/popup/change/orange-home.svg') center center no-repeat;
  background-size: contain;
}
.popup-map-center .btn{
  max-width: 220px;
  width: 100%;
  height: 32px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 13px;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
}
.change-btn-blue .popup-map-center .btn{
  background: #1E3859;
  transition: 0.2s;
}
.change-btn-blue .popup-map-center .btn:hover{
  color: #1E3859;
  border: 1px solid #1E3859;
  background: #fff;
}
.change-btn-green .popup-map-center .btn{
  background: #61A43B;
}
.change-btn-green .popup-map-center .btn:hover{
  color: #61A43B;
  border: 1px solid #61A43B;
  background: #fff;
}
.change-btn-orange .popup-map-center .btn{
  background: #FF6600;
}
.change-btn-orange .popup-map-center .btn:hover{
  color: #FF6600;
  border: 1px solid #FF6600;
  background: #fff;
}
.main-map-filters{
  position: relative;
}
.main-map-filters .filter-group-wrapp{
  position: absolute;
  display: flex;
  top: 100px;
  z-index: 1;
}
.main-map-filters .filter-group-wrapp .filter-group:last-child{
  /*margin-left: 130px;*/

  font-size: 16px;
  font-family: "Montserrat", sans-serif !important;

}
.main-map-filters .dropdown-select{
  min-width: 250px;
}
.dropdown-select.dropdown-select-list{
  min-width: 180px;
}
.dropdown-select.dropdown-select-list .dropdown-select__top::before {
  content: url('../images/map-icons/dropdown-select-list.svg');
  width: 14px;
  height: 10px;
  right: 15px;
  transform: translateY(50%);
  top: 50%;
}
.dropdown-select.dropdown-select-list .dropdown-select__bottom{
  border-top: 2px solid #1E3859;
  padding: 3px 0;
}
.filter-group .dropdown-select .dropdown-select__top{
  font-weight: 400;
  font-size: 12px;
  color: #8D8D8D;
}
.dropdown-select.dropdown-select-list .dropdown-select__bottom a{
  padding: 6px 20px;
  border-bottom: 0.1px solid 0.1px solid #8D8D8D;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1E3859;
  text-decoration: none;
  display: block;
}
.dropdown-select.dropdown-select-list .dropdown-select__bottom a:first-child{
  border-top: 0.1px solid 0.1px solid #8D8D8D;
}
.site-main-map .page-head{
  margin-top: 11px;
  margin-bottom: 20px;
}
.main-map-filters .page-title{
  font-size: 24px;
  margin-bottom: 0px;
}
.main-map-filters .page-text{
  font-size: 15px;
}
.map-header .site-header__search input{
  max-width: 110px;
}
.map-header .site-header__bottom{
  padding: 15px 0;
}
.map-header .site-header__top{
  display: none;
}
.main-map-filters{
  height: calc(100vh - 168.8px);
}
#map {
  height: calc(100vh - 168.8px)!important;
}
.popup-map-wrapp .popup-map-close-btn{
  color: #000;
  font-size: 14px;
  font-weight: 500;
  background: #F3F3F3;
  display: flex;
  padding: 10px;
  justify-content: center;
  cursor: pointer;
  border-radius: 0px 0px 7px 7px;
}
@media (max-width: 1199.98px){
  .main-map-filters .filter-group-wrapp .filter-group:last-child{
    margin-left: 0px;
  }
  .main-map-filters .filter-group-wrapp{
    display: none;
  }
}
@media (max-width: 992px){
  .site-main-map #map{
    min-height: 726px;
  }
  .map-header .site-header__top{
    display: flex;
  }
}
@media (max-width: 576px) {
  .popup-map{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    border-radius: 7px;
    background: transparent;
    overflow-y: auto;
    transition: 0.2;
    z-index: 9999999999999;
  }
  .popup-map-center{
    background: #fff;
  }
  .popup-map-current.blocker .popup-map, .popup-map.popup-map-active{
    display: flex;
    right: 50%;
    height: 100%;
    max-height: 520px;
  }
}
