  .project-2 .dealer-list {
    height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f9f9f9;
}

.project-2 .dealer-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-2 .dealer-list li:hover,
.project-2 .dealer-list li.active {
    background: #00933a;
}

.project-2 .dealer-list li:hover .title,
.project-2 .dealer-list li.active .title,
.project-2 .dealer-list li:hover .address,
.project-2 .dealer-list li.active .address {
    color: white;
}

.project-2 .dealer-list li .title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.project-2 .dealer-list li .address {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    transition: all 0.3s ease;
}

#map_iframe {
    position: relative;
    height: 500px;
    overflow: hidden;
}

#map_iframe iframe {
    height: 100%;
    width: 0;
    min-width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

@media screen and (max-width: 767px) {
    .project-2 .dealer-list {
        height: 345px;
    }
    #map_iframe {
        height: 300px;
    }
}

.total-view-page{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    font-weight: 700;
}

.total-view-page #visits>span{
    display: inline-flex;
    background-color: #333;
    color: #fff;
    line-height: 1;
    padding: 4px;
    border-radius: 3px;
    font-weight: 500;
}

.total-view-page #visits>span +span{
    margin-left: 1px;
}

.RadUpload_Simple .ruStyled .ruFileInput{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}