.search-box{
    width: 60%;
    height: 350px;
    position: absolute;
    top: 150px;
    left: 25%;
    background: rgba(0,0,0,.4);
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-box form{
    width: 90%;
    height: 80%;
}

@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext');

.multiSelect {
    position: relative;
}

.multiSelect *, .multiSelect *::before, .multiSelect *::after {
    box-sizing: border-box;
}

.multiSelect_dropdown {
    font-size: 14px;
    min-height: 35px;
    line-height: 35px;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    background-color: #fff;
    color: #383838;
    border: 1px solid #8d8d8d;
    font-weight: 400;
    padding: 0.5px 13px;
    margin: 0;
    transition: .1s border-color ease-in-out;
    cursor: pointer;
}

.multiSelect_dropdown.-hasValue {
    padding: 5px 30px 5px 5px;
    cursor: default;
}

.multiSelect_dropdown.-open {
    box-shadow: none;
    outline: none;
    padding: 4.5px 29.5px 4.5px 4.5px;
    border: 1.5px solid #4073FF;
}

.multiSelect_arrow::before,
.multiSelect_arrow::after {
    content: '';
    position: absolute;
    display: block;
    width: 2px;
    height: 8px;
    border-radius: 20px;
    border-bottom: 8px solid #99A3BA;
    top: 40%;
    transition: all .15s ease;
}

.multiSelect_arrow::before {
    right: 18px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.multiSelect_arrow::after {
    right: 13px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.multiSelect_list {
    margin: 0;
    margin-bottom: 25px;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    max-height: calc(10 * 31px);
    top: 28px;
    left: 0;
    z-index: 9999;
    right: 0;
    background: #fff;
    border-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: opacity 0.1s ease, visibility 0.1s ease, -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.1s ease, visibility 0.1s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    -webkit-transform: scale(0.8) translate(0, 4px);
    transform: scale(0.8) translate(0, 4px);
    border: 1px solid #d9dbde;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.12);
}

.multiSelect_option {
    margin: 0;
    padding: 0;
    opacity: 0;
    -webkit-transform: translate(6px, 0);
    transform: translate(6px, 0);
    transition: all .15s ease;
}

.multiSelect_option.-selected {
    display: none;
}

.multiSelect_option:hover .multiSelect_text {
    color: #fff;
    background: #4d84fe;
}

.multiSelect_text {
    cursor: pointer;
    display: block;
    padding: 5px 13px;
    color: #525c67;
    font-size: 14px;
    text-decoration: none;
    outline: none;
    position: relative;
    transition: all .15s ease;
}

.multiSelect_list.-open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translate(0, 12px);
    transform: scale(1) translate(0, 12px);
    transition: opacity 0.15s ease, visibility 0.15s ease, -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.15s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

.multiSelect_list.-open + .multiSelect_arrow::before {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
}

.multiSelect_list.-open + .multiSelect_arrow::after {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
}

.multiSelect_list.-open .multiSelect_option {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.multiSelect_list.-open .multiSelect_option:nth-child(1) {
    transition-delay: 10ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(2) {
    transition-delay: 20ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(3) {
    transition-delay: 30ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(4) {
    transition-delay: 40ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(5) {
    transition-delay: 50ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(6) {
    transition-delay: 60ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(7) {
    transition-delay: 70ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(8) {
    transition-delay: 80ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(9) {
    transition-delay: 90ms;
}

.multiSelect_list.-open .multiSelect_option:nth-child(10) {
    transition-delay: 100ms;
}

.multiSelect_choice {
    background: rgba(77, 132, 254, 0.1);
    color: #444f5b;
    padding: 4px 8px;
    line-height: 17px;
    margin: 5px;
    display: inline-block;
    font-size: 13px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
}

.multiSelect_deselect {
    width: 12px;
    height: 12px;
    display: inline-block;
    stroke: #b2bac3;
    stroke-width: 4px;
    margin-top: -1px;
    margin-left: 2px;
    vertical-align: middle;
}

.multiSelect_choice:hover .multiSelect_deselect {
    stroke: #a1a8b1;
}

.multiSelect_noselections {
    text-align: center;
    padding: 7px;
    color: #b2bac3;
    font-weight: 450;
    margin: 0;
}

.multiSelect_placeholder {
    position: absolute;
    left: 20px;
    font-size: 14px;
    top: 8px;
    padding: 0 4px;
    background-color: #fff;
    color: #b8bcbf;
    pointer-events: none;
    transition: all .1s ease;
}

.multiSelect_dropdown.-open + .multiSelect_placeholder,
.multiSelect_dropdown.-open.-hasValue + .multiSelect_placeholder {
    top: -11px;
    left: 17px;
    color: #4073FF;
    font-size: 13px;
}

.multiSelect_dropdown.-hasValue + .multiSelect_placeholder {
    top: -11px;
    left: 17px;
    color: #6e7277;
    font-size: 13px;
}

.price{
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.apartment-btn{
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #f4f5f6;
   background:rgb(148, 123, 58);
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    margin-top: 30px;
}

/*SECTION 2*/

.apartment-sec2{
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
}
.right-filter{
    width: 22%;
    height: 100%;
    padding-left: 10px;
    padding-top: 30px;
    border-right: solid 1px #c9c6c6;
    border-left: solid 1px #c9c6c6;
}
.right-filter label{
    font-size: 14px;
    color: #444;
    font-family: "Noto Sans Armenian","Open Sans","lucida grande",tahoma,arial,sans-serif;
}
.form-select:focus{
    outline: none;
}
.kod-box{
    width: 100%;
}
.kod-box form{
    display: flex;
    justify-content: center;
}
.kod-box form input{
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.kod-box form button{
    margin-right: 10px;
}
.kod-box form input:focus{
    outline: none;
}

.apartment-full{
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.apartment-box-form{
    width: 30%;
    height: 400px;
    margin-left: 30px;
    margin-top: 30px;

}
.apartment-box-form a{
    text-decoration: none;
}

.apartment-box-form:hover{
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    cursor: pointer;
}
.apartment-img{
    width: 100%;
    height: 50%;
    position: relative;
}
.ap-urgent{
    width: 80px;
    height: 30px;
    background: #d93535;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
    color: whitesmoke;
    position: absolute;
    bottom: 10px;
    left: 10px;
}
.apartment-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.apartment-box-sec1{
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #d2d0d0;
}
.apartment-box-sec1 svg{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
.apartment-box-sec1 p{
    font-size: 14px;
    vertical-align: middle;
    color: #858383;
    margin-top: 12px;
    margin-left: 12px;
}
.apartment-box-categoria{
    width: 100px;
    height: 30px;
    margin-top: 5px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    background: rgb(185, 151, 64);
}
.apartment-box-categoria p{
    color: whitesmoke;
}

.apartment-box-sec2{
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #d2d0d0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.apartment-box-price-text span{
    margin-left: 5px;
    color: #858383;
}
.apartment-box-price-text svg{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
.apartment-box-price span{
    margin-right: 15px;
    font-weight: 600;
    font-size: 21px;
    color: #71b200;
}
.apartment-address svg{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
.apartment-address span{
    font-size: 14px;
    font-weight: 500;
}
.apartment-box-bottom{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.apartment-box-bottom span{
    font-weight: 400;
    font-size: 14px;
    font-family: "Noto Sans Armenian","Open Sans","lucida grande",tahoma,arial,sans-serif;
}


                    /*SINGLE PAGE*/
.single2-section1{
    width: 100%;
    height: auto;
    margin-bottom: 70px;
    display: flex;
    justify-content: center;
}
.single2-box{
    width: 80%;
    height: auto;
    display: flex;
}
.single2-block1{
    width: 60%;
    max-height: 570px;
    position: relative;
}
.swiper {
    width: 100%;
    height: 400px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 80%;
    height: 100%;
    object-fit: cover;
}


.swiper {
    width: 100%;
    height: 97%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height:450px;
    width: 100%;
}

.mySwiper {
    height: 18%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 18%!important;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 25px!important;
    color: rgb(59, 59, 58);
}

.single2-title{
    width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.single2-box-title{
    width: 80%;
}
.single2-box-title p{
    width: 60%;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    font-family: "Noto Sans Armenian","Open Sans","lucida grande",tahoma,arial,sans-serif;
}
.single2-block{
    width: 30%;
    height: auto;
}
.single2-block-sec1{
    width: 100%;
    display: flex;
    justify-content: center;
}
.single2-block-sec1-content{
    width: 90%;
    background: #e3dddd;
    border: 1px solid #e4e4e4;
}
.single2-block-sec1-img{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.single2-block-sec1-img img{
    width: 150px;
    height: 130px;
}
.single2-block-sec1-phone{
    width: 100%;
    margin-top:50px ;
    display: flex;
    justify-content: center;
    align-items: center;
}
.single2-block-sec1-phone p{
    text-align: center;
    font-family: "Noto Sans Armenian","Open Sans","lucida grande",tahoma,arial,sans-serif;
}
.single2-block-sec1-phone i{
   color:rgb(148, 123, 58) ;
}
.btn-letter{
    border: solid 2px rgb(148, 123, 58) ;
    color:rgb(148, 123, 58) ;
}
.btn-letter:hover{
    background:rgb(148, 123, 58) ;
    border: solid 2px rgb(148, 123, 58) ;
}
.btn-letter:focus {
    outline:none !important;
    box-shadow: none !important;
}
.send-letter-single2{
    width: 90%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    border: 1px solid rgb(148, 123, 58) ;
    margin-left: 5%;
}
.send-letter-single2 form{
    width: 90%;
    margin-top: 10px;
}

.single2-block-sec2-content{
    width: 90%;
    margin-top: 30px;
    height: auto;
}
.single2-block-sec2-text{
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid #d3d3d3;
    display: flex;
    justify-content: space-between;
}

.single2-block-sec2-key{
    font-size: 13px;
    line-height: 23px;
    padding: 0.9rem 0;
    font-weight: normal;
    color: #707070;
    font-family: "Montserrat_am3",Montserrat,Arial,sans-serif;
}
.single2-block-sec2-value{
    font-size: 13px;
    line-height: 23px;
    font-weight: bold;
    color: #707070;
    font-family: "Montserrat_am3",Montserrat,Arial,sans-serif;
}
.single2-block-sec2-bottom{
    margin-top: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #424242;
    font-family: "Montserrat_am3",Montserrat,Arial,sans-serif;
}
.single2-block-sec2-bottom-block{
    width: 100%;
    height: 1290px;
    margin-top: 20px;
    overflow-y: scroll;
}

.single2-block1-title{
    width: 100%;
    padding: 0 10px;
}
.single2-block1-title p{
   margin-top: 30px;
    font-size: 18px;
    line-height: 23px;
    font-weight: bold;
    color: #707070;
    font-family: "Montserrat_am3",Montserrat,Arial,sans-serif;
}

.single2-block1-text p{
    width: 90%;
    margin-top: 10px;
    font-size: 14px;
    font-weight: normal;
    color: #707070;
    font-family: "Montserrat_am3",Montserrat,Arial,sans-serif;
}
.single2-block1-additional{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
}
.single2-block1-additional p{
    width: 100%;
    margin-left: 0.3%;
    margin-top: 1px;
    font-size: 13px;
    line-height: 1px;
    font-weight: normal;
    color: #707070;
    font-family: "Montserrat_am3", Montserrat, Arial, sans-serif;
}

.single2-block1-additional p:before{
    content: '\2713';
    display: inline-block;
    color: rgb(95, 208, 57);
    font-size: 20px;
    font-weight: 800;
    padding: 0 6px 0 0;
}

.single2-block1-additional .inactive{
    color: #a7a7a7;
}
.single2-block1-additional .inactive:before{
    color: #a7a7a7;
}
@media only screen and (max-width: 1400px) {
    .apartment-box-form{
        width: 40%;
    }
    .search-right-form{
        width: 25%!important;
    }
}
@media only screen and (max-width: 1210px) {
    .apartment-box-form{
        width: 40%;
    }
    .search-box{
        width: 80%!important;
        top: 67px!important;
        left: 10%!important;
        height: 298px!important;
    }
    .single-page-box-bottom{
      height: 105px!important;
    }
    .apartment-btn{
        margin-top: 15px!important;
    }
    .search-right-form{
        width:30%!important;
    }
    .single2-box-title{
        width: 90%;
    }
}
.filter-icon{
    display: none;
}
@media only screen and (max-width: 980px) {
    .filter-icon{
        display: block;
    }
    .right-filter-block{
        width: 99%!important;
    }
    .search-right-form{
        width: 300px!important;
       position: absolute;
        top: 10px;
        z-index: 999999;
        background: whitesmoke;
    }
    .single2-box{
        width: 100%;
    }
    .single2-block-sec2-value{
        font-size: 15px!important;
    }
    .single2-block-sec2-text{
        font-size: 15px;
    }
    .single2-block-sec1-content{
        width: 95%;
    }
    .single2-block-sec1-img img {
        width: 110px;
        height: 90px;
    }
    .single2-block-sec2-bottom {
        font-size: 15px;
    }
    .single2-box{
        display: unset;
    }
    .single2-block1 {
        width: 100%;
    }
    .single2-box-title p {
        width: 90%;
    }
    .single2-block{
        width: 100%;
        position: unset;
    }
    .apartment-media-box{
        width: 100%!important;
    }
    .single2-block1 {
        max-height: 3000px;
    }
}
@media only screen and (max-width: 789px) {
    .label-search {
        display: none;
    }

    .inp-search {
        display: unset !important;
    }

    .room-top {
        margin-top: 10px !important;
    }

    .sel-media {
        width: 80% !important;
        margin-bottom: 10px !important;
        height: 30px;
    }

    .code-btn-search {
        position: absolute;
        top: -8px;
    }

    .multiSelect {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .milti-sel-med {
        width: 100% !important;
    }

    .price-media {
        height: 30px !important;
        font-size: 8px !important;
        margin-left: 0 !important;
    }

    .media-price {
        justify-content: unset !important;
    }

    .regionForm {
        margin-top: -80px;

    }

    .single2-box-title p {
        font-size: 15px;
    }
    .single2-block1-title p {
        font-size: 14px;
    }
    .single2-block1 {
        max-height: 3000px;
    }
    }
@media only screen and (max-width: 692px) {
    .code-btn-search{
       top: 198px!important;
        left: 137px!important;

    }
    .search-block{
        width: 30%!important;
        margin-bottom: 10px;
    }
    .apartment-btn{
        font-size: 0.4rem!important;
    }
    .apartment-box-form{
        width: 60%;
    }
}
@media only screen and (max-width: 527px) {
    .apartment-box-form{
        width: 80%;
    }
    .apartment-address span{
        font-size: 11px;
    }
    .apartment-box-price span{
        font-size: 15px;
    }
}
@media only screen and (max-width: 400px) {
    .search-box form{
        width: 97%;
    }
}


.search-box{
    width: 60%;
    height: 350px;
    position: absolute;
    top: 150px;
    left: 25%;
    background: rgba(0,0,0,.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* #sortable {*/
/*     list-style-type: none;*/
/*     margin: 0;*/
/*     padding: 0;*/
/*     width: 450px;*/
/* }*/
/*#sortable li {*/
/*    margin: 3px 3px 3px 0;*/
/*    padding: 1px;*/
/*    float: left;*/
/*    width: 100px;*/
/*    height: 90px;*/
/*    font-size: 4em;*/
/*    text-align: center;*/
/*    background: #ddd;*/
/*}*/
