.address-info.modal {
    display:none;
}
.address-info {
    background: #fff;
    padding: 0 !important;
    width:100%;
    max-width:1180px !important;
    min-height: 500px;
    position:relative !important;
    vertical-align: middle;
    overflow:visible !important;
    margin: auto;
}
.address-info__tabs {
    list-style-type:none;
    position:absolute;
    top:0;
    right: calc(100% + 10px);
    max-height: 100%;
    overflow-y: auto;
}
.address-info__tab {
    padding: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:2px;
    font-weight:700;
    font-size:26px;
    line-height:30px;
    color:#1f2840;
    background:#fff;
    cursor:pointer;
    transition:all .3s ease
}
.address-info__tab:not(:first-child) {
    margin-top:6px
}
.address-info__tab:hover {
    background:#37abff;
    color:#fff
}
.address-info__tab_active {
    background:#0085ff;
    color:#fff
}
.address-info__head {
    padding:35px 45px 18px 45px;
    border-bottom:1px solid #eceef4;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position: relative;
}
.address-info__head-values {
    width: 526px;
}
.address-info__name {
    font-weight:700;
    font-size:26px;
    line-height:30px;
    color:#1f2840
}
.address-info__name input {
    border: 1px solid var(--input-border-color);
    height: 42px;
    padding: 0 15px;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}
.address-info__price {
    margin-top:5px;
    font-weight:700;
    font-size:18px;
    line-height:21px;
    color:#0085ff
}
.address-info__head-values .address-info__price {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}
.address-info__price span {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}
.address-info__price input {
    border: 1px solid var(--input-border-color);
    height: 42px;
    padding: 0 15px;
    width: 190px;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}
.address-info__head-buttons {
    display: flex;
    flex-shrink: 0;
}
.address-info__head-buttons .link-info {
    margin-left: 20px;
}
.address-info__toggle-edit {
    background-color: transparent;
    border: none !important;
    height: 40px;
    width: 40px;
    border-radius: 2px;
}
.editable .address-info__toggle-edit {
    background-color: orange;
}
.address-info__content {
    padding:18px 45px 53px 45px;
    display:grid;
    grid-template-areas:"val img" "select map";
    grid-template-columns:repeat(2,1fr);
    gap:38px
}
.hide-select .address-info__content {
    grid-template-areas:"val img" "map map";
}
.address-info__values {
    grid-area:val
}
.address-info__line {
    padding:7px 0 8px 0;
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #d8e2e5;
    align-items: start;
}
.address-info__text {
    text-align: justify;
    white-space: pre-line;
    word-break: break-word;
    font-size:14px;
    line-height:16px;
    color:#1f2840
}
.address-info__line:not(:first-child) .address-info__text:first-child {
    margin-top:10px
}
.address-info__text:nth-child(n+2) {
    margin-left: 10px;
}
.address-info__text .field-control > input {
    border: 1px solid var(--input-border-color);
    height: 42px;
    padding: 0 15px;
    width: 190px;
}
.address-info__img-wrapper {
    grid-area:img;
    position: relative;
    width: 526px;
}
.address-info__img {
    display: flex;
}
.photos__slider {
    overflow: hidden;
}
.photos__slider-item img.enlarge {
    cursor: zoom-in;
}
.address-info__img .photos__slider-item {
    width: 526px;
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.address-info__img .photos__slider-item.active {
    order: 1;
}
.address-info__img img {
    max-width: 526px;
}
.photos__slider-item .img-empty {
    width: 526px;
    height: 250px;
    background-color: #fafafa;
    background-image: url(images/no-photo.png);
    background-position: center;
    background-repeat: no-repeat;
}
.address-info__img .photos__thumbnails {
    margin-top: 19px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.photos__thumbnails .img-empty {
    width: 123px;
    height: 78px;
    cursor: default;
}
.editable .photos__thumbnails .img-empty {
    background-image: url(images/add-photo.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20%;
    background-color: #fafafa;
    cursor: pointer;
}
.editable .photos__thumbnails .img-empty.img-empty-hidden {
    background: none;
    cursor: default;
}
.address-info__img-buttons {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #fff;
    display: none;
    padding: 15px;
}
.editable .address-info__img-buttons {
    display: flex;
    flex-direction: column;
}
.address-info__img-buttons button:nth-child(n+2) {
    margin-top: 7px;
}
.address-info__img-vue {
    display: none;
}
.address-info__select {
    grid-area:select
}
.address-info__legend-title {
    font-weight:500;
    font-size:18px;
    line-height:21px;
    color:#1f2840
}
.address-info__legend-wrap {
    margin-top:33px;
    display:flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.address-info__legend-item {
    display:flex;
}
.editable .address-info__legend-item {
    cursor: pointer;
}
.address-info__legend-mark {
    margin-right:11px;
    width:18px;
    height:18px;
    border-radius:2px
}
.address-info__legend-item.selected .address-info__legend-mark {
    border:2px solid #ab5656
}
.address-info__legend-mark_free {
    background:#88d970
}
.address-info__legend-mark_sold {
    background:#93a2b4
}
.address-info__legend-mark_reserved {
    background:#fda402
}
.address-info__legend-mark_busket {
    border:2px solid #ab5656
}
.address-info__legend-name {
    font-weight:500;
    font-size:16px;
    line-height:19px;
    color:#1f2840
}
.address-info__cal {
    margin-top:30px;
    display:flex;
    gap: 30px;
    justify-content:space-evenly;
}
.address-info__cal-year {
    font-weight:700;
    font-size:18px;
    line-height:21px;
    color:#1f2840
}
.address-info__cal-months {
    margin-top:16px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    column-gap:8px;
    row-gap:16px
}
.address-info__cal-month {
    padding:6px;
    width: 76.7px;
    text-align:center;
    border-radius:8px;
    font-weight:500;
    font-size:16px;
    line-height:18px;
    color:#1f2840;
    background:url(images/month-default.svg) center center/cover no-repeat
}
.editable .address-info__cal-month {
    cursor: pointer;
}
.address-info__cal-month.disabled {
    cursor: not-allowed;
}
.address-info__cal-month_free {
    cursor:pointer;
    background:#88d970
}
.address-info__cal-month_sold {
    background:#93a2b4
}
.address-info__cal-month_reserved {
    background:#fda402
}
.address-info__cal-month_busket {
    cursor:pointer;
    padding-top:3px;
    padding-bottom:3px;
    padding-left: 22px;
    padding-right: 22px;
    border:3px solid #ab5656;
}
.address-info__map {
    grid-area:map;
    min-height: 310px;
    position: relative;
    width: 526px;
    z-index: 0;
}
.hide-select .address-info__map {
    width: 100%;
}
.address-info__map iframe {
    width:100%;
    height:100%;
    border:none
}
.address-info__map .map {
    height: 100%;
}
#placement {
    /*display: none;*/
}
.btn-delete {
    margin-right: 20px;
}
.field-control .select-wrapper {
    width: 190px;
}
.address-info__legend-markp_free {
    background:#7ED321
}
.address-info__legend-markp_sold {
    background:#E30E48
}
.address-info__legend-markp_reserved {
    background:#fda402
}
.address-info__legend-markp_busket {
    background:#1CB1FF
}

.address-info__calp-years {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    margin-top: 10px;
}
.address-info__calp-years span {
    font-size: 20px;
    font-weight: 600;
    margin-right: 40px;
    opacity: 0.3;
    cursor: pointer;
}
.address-info__calp-years span.selected {
    opacity: 1;
}
.address-info__calp-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
}
.address-info__calp-item li {
    max-width: 125px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 9px;
    margin-bottom: 10px;
}
.address-info__calp-item li:nth-child(4n+4) {
    margin-right: 0;
}
.address-info__calp-item li.address-info__calp-month_unavailable {
    opacity: 0.3;
}
.address-info__calp-item li p {
    font-size: 10px;
    font-weight: 500;
    line-height: 13px;
    margin-bottom: 5px;
}
.address-info__calp-item li label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid #EDF0F3;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 3px;
}
.address-info__calp-item li label .date {
    padding: 0 10px;
    padding-top: 5px;
    background-color: #EDF0F3;
    font-weight: 500;
    text-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.address-info__calp-item li label .price {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    text-align: center;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.address-info__calp-item li.address-info__calp-month_free label {
    opacity: 1;
    border: 1px solid #7ED321;
}
.address-info__calp-item li.address-info__calp-month_free label .date {
    background-color: #7ED321;
    color: #FFFFFF;
}
.address-info__calp-item li.address-info__calp-month_free label .price {
    color: #7ED321;
}
.address-info__calp-item li.address-info__calp-month_sold label {
    opacity: 1;
    border: 1px solid #E30E48;
}
.address-info__calp-item li.address-info__calp-month_sold label .date {
    background-color: #E30E48;
    color: #FFFFFF;
}
.address-info__calp-item li.address-info__calp-month_sold label .price {
    color: #E30E48;
}
.address-info__calp-item li.address-info__calp-month_reserved label {
    opacity: 1;
    border: 1px solid #fda402;
}
.address-info__calp-item li.address-info__calp-month_reserved label .date {
    background-color: #fda402;
    color: #FFFFFF;
}
.address-info__calp-item li.address-info__calp-month_reserved label .price {
    color: #fda402;
}
.address-info__calp-item li.address-info__calp-month_busket label {
    opacity: 1;
    border: 1px solid #1CB1FF;
}
.address-info__calp-item li.address-info__calp-month_busket label .date {
    background-color: #1CB1FF;
    color: #FFFFFF;
}
.address-info__calp-item li.address-info__calp-month_busket label .price {
    color: #1CB1FF;
}
.address-info__footer {
    padding: 0 45px;
    text-align: right;
}
@media(max-width: 640px){
    .address-info__cal {
        flex-wrap: wrap;
    }
}
@media(max-width: 1200px){
    .address-info__content {
        display: flex;
        flex-direction: column;
    }
    .address-info__img-wrapper {
        width: 100%;
    }
    .address-info__img .photos__slider-item {
        width: 100%;
    }
    .address-info__map {
        width: 100%;
        height: 310px;
    }
    .photos__slider-item .img-empty {
        width: 100%;
        height: auto;
    }
    .address-info__calp-item li {
        width: auto;
    }
    .address-info__calp-item li,
    .address-info__calp-item li:nth-child(4n+4) {
        margin-right: 5px;
    }
    .address-info__calp-item li label .date {
        padding: 0 2px;
    }
    .address-info__calp-item li label .price {
        padding: 4px 2px;
    }
}
.place-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
}
.place-footer .busket {
    height: auto;
    min-height: 78px;
    background-color: var(--background-color);
}