﻿.branch-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
}

.branch-title {
    color: #6d5646;
    font-size: 28px;
    font-weight: 700;
    text-align: right;
    margin-bottom: 25px;
}

.branch-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.branch-item {
    width: 100%;
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fff;
    color: #6d5646;
    font-size: .8rem;
    font-weight: 500;
    text-align: right;
    padding: 0 20px;
    transition: .25s;
    cursor: pointer;
}

    .branch-item:hover {
        background: #f8f8f8;
        border-color: #b59b87;
    }

    .branch-item:focus {
        outline: none;
        box-shadow: none;
    }

#selectbranch .modal-dialog {
    max-width: 520px;
}
