.branch-list-wrapper {
    flex-direction: column;
    min-width: 800px;
    height: 100%;
    display: flex;
}

.branch-list-item {
    background: white;
    margin: 25px;
    display: flex;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.03);
}

.bli-image-wrapper {
    width: 300px;
    background: rgb(200, 200, 200);
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    overflow: hidden;
}

.bli-info-wrapper {
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
    flex: auto;
}

.bli-ii-title {
    font-size: 22px;
}

.bli-ii-address, .bli-ii-title {
    width: fit-content;
}

.bli-ii-address {
    margin-top: 10px;
    font-size: 15px;
}

.bli-ii-show-on-map {
    font-size: 14px;
    margin-top: 5px;
    color: #0583c7;
    cursor: pointer;
    width: fit-content;
}

.bli-ii-bottom-wrapper {
    display: flex;
    justify-content: right;
    align-self: flex-end;
    margin-top: auto;
    width: 100%;
}

.bli-bii-item {
    color: #0583c7;
    font-size: 15px;
    background: transparent;
    border-radius: 5px;
    padding: 5px 15px;
    cursor: pointer;
    border: 1px solid #0583c7;
}

.bli-bii-item:hover {
    background: #0583c7;
    color: white;
    transition: 0.1s;
}

.branch-list-header {
    padding: 0px 25px;
    height: 75px;
    font-size: 20px;
    border-bottom: 1px solid rgb(200, 200, 200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blh-search {
    height: 30px;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 0 10px;
    width: 350px;
    font-size: 14px;
}

.branch-list-body {
    position: relative;
    flex: 1;
    height: 100%;
}

.blb-scrollable {
    position: absolute; /* <------------------------- required */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0; /* <------- required */
    overflow-y: auto; /* <--------------------------- required */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.blb-scrollable::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.branch-list-body-wrapper {
    display: flex;
}

.blh-search-wrapper {
    display: flex;
    align-items: center;
}

.blh-location-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 25px;
}

.blh-location-wrapper:hover {
    color: #0583c7;
    fill: #0583c7;
}

.blh-location-ico svg {
    height: 15px;
}

.blh-location-ico {
    margin-right: 5px;
    display: flex;
    align-items: flex-end;
}

.blh-location-text {
    line-height: 32px;
    font-size: 15px;
}

.branch-list-item-template {
    pointer-events: none;
    user-select: none;
}

.branch-list-item-template .bli-info-item {
    background: rgb(200, 200, 200);
    color: transparent;
}

.branch-list-item-template .bli-ii-bottom-wrapper {
    background: transparent;
}

.branch-list-item-template .bli-bii-item {
    border: 1px solid rgb(200, 200, 200);
    color: transparent;
    background: rgb(200, 200, 200);
}

.blh-left {
    display: flex;
}

.blh-right {
    font-size: 15px;
    cursor: pointer;
}
.nf-button-wrapper{
    display: flex;
    justify-content: space-around;
    margin: 25px;
}
.nf-button{
    width: 100%;
}
.scm-footer{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1000px) {
    .branch-list-wrapper {
        min-width: 400px;
    }
}

@media screen and (max-width: 500px) {
    .branch-list-wrapper {
        width: 100%;
        min-width: unset;
    }

    .blh-search {
        width: 100%;
    }

    .blh-right {
        display: none;
    }

    .blh-left {
        width: 100%;
    }

    .branch-list-item {
        flex-direction: column;
        width: calc(50% - 10px);
        margin: 5px;
        height: fit-content;

    }
    .bli-image-wrapper{
        width: 100%;
    }
    .modal-dialog{
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-content{
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .blb-scrollable{
        display:flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    .nfbwr{
        display: block;
        width: 100%;
        height: fit-content;
        align-self: flex-end;
    }
    .bli-ii-address, .bli-ii-show-on-map{
        font-size: 12px;
    }
    .bli-ii-bottom-wrapper{
        margin-top: 15px;
        display: block;
    }
    .bli-bii-item {
        width: 100%;
    }

}