.imp-object.isReserved, .imp-object-highlighted.isFloorReserved{
    fill: rgba(255, 165, 0, 0.33)
}

.imp-object.isSold, .imp-object-highlighted.isFloorSold{
    fill: rgba(255, 0, 0, 0.33)
}

.imp-object.isFree{
    fill: rgba(43, 255, 0, 0.33)
}

.imp-object-menu.imp-object-menu-left{
    display: none;
}

.apartments-modal{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -9999;
    opacity: 0;
    transition: opacity 0.3s;
}

.apartments-modal.isOpened{
    display: flex;
    z-index: 9999;
    opacity: 1;
}

.apartments-modal-close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.apartments-modal-container{
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    min-height: 300px;
    position: relative;
}


@media (max-width: 600px) {
    .apartments-modal-container{
        width: 90%;
    }

    .imp-ui-top-right {
        top: -60px;
    }

    .apartments-modal-close{
        padding:10px;
    }

    .imp-menu-button{
        display: none;
    }

    .apartments-progress-bar{
        margin-bottom: 80px;
    }

    .apartments-progress-bar-text{
        width: 100%;
    }
}

.modal-apartment_code label{
    font-weight: 700;
}

.apartments-progress-bar {
    width: 100%;
    height: 35px;
    background-color: lightgray;
    margin-bottom: 30px;
    position: relative;
    animation: bgProgressBar 1.5s ease-in-out infinite;
}

.apartments-progress-bar.isLoaded {
    visibility: hidden;
    margin-bottom: 0;
}

.apartments-progress-bar-inner {
    height: 100%;
    background-color: #222;
    width: 0;
    transition: all 0.3s ease;
    padding: 5px;
    text-align: center;
}

.apartments-progress-bar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    color: #747474;
}

@keyframes bgProgressBar{
    0%{
        background-color: lightgray;
    }
    50%{
        background-color: rgb(180, 180, 180);
    }
    100%{
        background-color: lightgray;
    }
}

.apartments-modal-container .modal-apartment-data {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:10px;
    margin-bottom:10px;
    /* border-bottom: 1px solid #ccc; */
}

.modal-apartment-data.isHidden{
    display: none;
}

.modal-apartment-data label{
    font-weight: 700;
    width: 115px;
    margin-bottom: 0;
    border-right: 1px solid #f1f1f1;
    padding-right: 10px;
}

.apartments-modal-container .btn{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.015em;
    line-height: 20px;
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    width: auto;
    margin: 0;
    text-decoration: none;
    text-transform: none;
    border-radius: 0;
    outline: 0;
    transition: color .2s ease-out,background-color .2s ease-out,border-color .2s ease-out;
    padding: 12px 29px 12px 28px;
    color: #fff;
    background-color: #222;
    border: 1.1px solid transparent
}

.modal-apartment_code label {
    font-size: 35px;
}

.modal-apartment-data.modal-apartment_code {
    align-items: baseline;
    display: inline-flex;
}

.modal-apartment_code label {
    width: auto;
}

.modal-apartment_code {
    align-items: flex-end;
}

.modal-apartment_code span {
    line-height: 1;
    font-size: 24px;
}


.modal-apartment_floor {
    font-size: 21px;
}

.modal-apartment_floor label {
    width: auto;
}

.modal-apartment-data.modal-apartment_top_view_url {
    margin-top: 30px;
}

.modal-apartment_area, .modal-apartment_price, .modal-apartment_status {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}