#branches-page .body{
    padding: 50px 0 100px 0;
}

.branches{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.branches .default-table td div{
    justify-content: flex-start;
}
.branches .default-table tr{
    transition: none;
    cursor: pointer;
}
.branches .default-table tr:hover td div{
    background: #BF1A1F;
    color: #fff;
}
.branches__container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}

#branches-page .switch-box__body-item{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}
.link_tag {
    text-decoration: underline;
}
.branches-map{
    width: 100%;
}
.branches-map iframe{
    height: 413px;
    width: 100%;
}

.branches__list{
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 14px 18px;
    border-radius: 10px;
    background: #FFF;
}
.branches__list-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D2D2D2;
}
.branches__list-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
}
.branches__list-item div{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.branches__list-item div span{
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.14px;
}
.branches__list-item div p{
    color: #282828;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 147.023%; /* 20.583px */
}
@media screen and (max-width: 730px) {
    .branches__list{
        display: flex;
    }
    .branches{
        margin-bottom: 70px;
    }
}