.map {
    position: relative;
    width: 100%;
    height: 488px;
    margin: 32px 0;
    padding: 10px;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .map {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 0;
    }
}

.map__list {
    position: relative;
    z-index: 10;
    width: 228px;
    height: 40px;
    border: 1px solid #CCCCCC;
    background: #FFF;
    overflow: hidden;
    transition: width 0.3s ease 0s, height 0.3s ease 0s;
}
@media (max-width: 1024px) {
    .map__list {
        order: 1;
    }
}

.map__list.show {
    width: 312px;
    height: 468px;
}
@media (max-width: 1024px) {
    .map__list.show {
        width: auto;
        height: 312px;
    }
}

.map__title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px 11px;
    cursor: pointer;
}

.map__title-icon {
    position: relative;
    width: 14px;
    height: 14px;
    background: #005B9B;
    border-radius: 50%;
}
.map__title-icon::before,
.map__title-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 8px;
    background: #FFFFFF;
    transition: transform 0.3s ease 0s;
}
.map__title-icon::before {
    transform: translate(-50%, -50%) rotate(-90deg);
}
.map__title-icon::after {
    transform: translate(-50%, -50%) scale(1);
}
.map__list.show .map__title-icon::after {
    transform: translate(-50%, -50%) scale(0);
}

.map__title span {
    transition: color 0.3s ease 0s;
}
.map__title:hover span {
    color: #398AC4;
}

.map__list-content {
    opacity: 0;
    transition: opacity 0.3s;
    transition-delay: 0s;
}
.map__list.show .map__list-content {
    opacity: 1;
    transition-delay: 0.3s;
}

.map__list-tabs {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 0 10px;
    border-bottom: 1px solid #CCCCCC;
}
.map__list-tabs-mark {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 25px;
    height: 2px;
    background: #005B9B;
    transition: left 0.3s ease 0s, width 0.3s ease 0s;
}
.map__list-tab {
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease 0s;
}
.map__list-tab:hover {
    color: #005B9B;
}
.map__list-tab.active {
    color: #005B9B;
    font-weight: 700;
    pointer-events: none;
}

.map__list-items {
    padding-right: 14px;
    height: 385px;
}
@media (max-width: 1024px) {
    .map__list-items {
        height: 229px;
    }
}
.map__list-items .simplebar-scrollbar.simplebar-visible:before {
    left: 4px;
    width: 4px;
    background: #398AC4;
    border-radius: 4px;
    opacity: 1;
}

.map__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s ease 0s;
}
.map__list-item:hover {
    color: #005B9B;
}
.map__list-item + .map__list-item {
    border-top: 1px solid #CCCCCC;
}

.map__list-item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease 0s;
}
.map__list-item svg path {
    transition: stroke 0.3s ease 0s;
}
.map__list-item:hover svg {
    transform: translateX(5px);
}
.map__list-item:hover svg path {
    stroke: #005B9B;
}

.map__card {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 15;
    width: 360px;
    height: 468px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    transform: translateX(-110%);
    opacity: 0;
    transition: transform 0.3s ease 0s, opacity 0.3s ease 0s;
}
@media (max-width: 1024px) {
    .map__card {
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }
}
.map__card.show {
    transform: translateX(0);
    opacity: 1;
}

.map__card-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    cursor: pointer;
    transition: transform 0.3s ease 0s;
}
.map__card-close:hover {
    transform: rotate(90deg);
}

.map__card-header {
    padding: 10px;
}

.map__card-title {
    font-size: 20px;
    line-height: 24px;
}
.map__card-subtitle {
    margin-top: 5px;
}
.map__card-coords {
    display: inline-block;
    margin-top: 7px;
    padding: 2px 4px;
    border: 1px solid #CCC;
    border-radius: 4px;
}

.map__card-body {
    display: flex;
    gap: 10px;
    padding: 10px 10px 20px;
}

.map__card-image {
    width: 148px;
    height: 250px;
}
.map__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map__card-property {
    padding: 5px 0;
}
.map__card-property-title {
    color: #7F7F7F;
}
.map__card-property-value {
    color: #000000;
}


#map {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
}
@media (max-width: 1024px) {
    #map {
        position: relative;
        order: 2;
        height: 488px;
        margin-top: 10px;
    }
}

.map__list-cluster {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    line-height: 36px;
    text-align: center;
}

.charging-bottom {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin: 32px 0;
}
@media (max-width: 1024px) {
    .charging-bottom {
        flex-direction: column;
    }
}

.charging-qr {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 322px;
}

.charging-qr-image {
    flex-shrink: 0;
    width: 168px;
    height: 168px;
    padding: 15px;
    border: 1px solid #1276BD;
}
.charging-qr-image img {
    width: 100%
}

.charging-qr-text {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}

.charging-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.charging-info-item + .charging-info-item {
    margin-top: 20px;
}

.charging-info-item-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border: 1px solid #1276BD;
    border-radius: 50%;
}

.charging-info-item-text {
    font-size: 20px;
    line-height: 30px;
}

.buttons-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;    
}
.charging-button {
    background: #1276BD;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    transition: .4s;
}
.charging-button:hover {
    background: #005b9b;
}