.t888-map-wrapper {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
}

.t888-map-view {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.t888-map-frame {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.t888-map-frame.active {
    opacity: 1;
    pointer-events: auto;
}

.t888-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.title-element-map {
    font-size: 28px;
    line-height: 38px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}
.t888-map-wrapper .container {
    position: relative;
    z-index: 5;
    height: 100%;
}
.t888-map-list {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 5;
    width: 450px;
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    box-shadow: 0px 2px 16px 0px #00000026;
    transform: translateY(-50%);
}

.t888-map-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 10px 0;
    border-bottom: 1px solid #D9D9D9;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.t888-map-item+.t888-map-item {}


.t888-map-address {
    font-size: 14px;
    line-height: 19px;
    color: #000;
    margin-left: 5px;
}
.t888-map-icon-right svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 50% 50%;
}
.t888-map-icon-right svg circle {
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.t888-map-item:hover .t888-map-icon-right svg {
  transform: rotate(45deg);
}

.t888-map-item:hover .t888-map-icon-right svg circle {
  fill: #E90380;
  fill-opacity: 1;
}


@media (max-width: 1024px) {
    .t888-map-list {
        left: 20px;
        width: 320px;
    }
}

@media (max-width: 768px) {

    .t888-map-list {
     padding: 20px;
    }
}

@media (max-width: 575px) {
.t888-map-list{
    width: calc(100% - 40px);
    bottom: 20px;
    top: unset;
    transform: none;
}
.t888-map-item{
    padding: 10px 0 5px 0;
}
.title-element-map{
    margin-bottom: 0;
}
}