.modalmg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modalmg-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 60%;
    border-radius: 5px 0px 5px 5px;
}
.close-buttonmg {
    position: absolute;
    right: -35px;
    top: 0;
    background: #ff4444;
    color: #fff;
    font-size: 21px;
    padding: 7px 12px;
    border-radius: 0px 5px 5px 0px;
    cursor: pointer;
}
.close-buttonmg:hover {
    background-color: #ad2f2f;
    color: #ffffff;
}
.show-modalmg {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modalmg-header, .modalmg-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modalmg-title {
    margin: 0;
}

.hidebox{
    display: none;
}

.mg_hide{
    display: none;
}

.flex_center{
    width: 100%;
    justify-content: center;
}

.box_flex{
        display: flex;
    flex-wrap: wrap;
}

.box_col_6{
    width: 50%;
}
.branch_img{
    max-width: 100%;
}
.bracn_name{
    color: #000;
    font-weight: 600;
    font-size: 17px;
}
.bracn_address{
    color: #6d6d6d;
    font-size: 15px;
}
.vertical_center{
        align-self: center;
}
.brach_wrapper{
    padding: 15px;
}