.create-branch-modal-wrapper {
    background: rgb(245, 245, 245);
    border-radius: 5px;
    width: 900px;
    display: flex;
}

.cbm-left, .cbm-right {
    width: 50%;
    box-sizing: border-box;
    margin: 30px;
    display: flex;
    flex-direction: column;
}

.cbm-right form {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cbm-left {
    background: rgba(100, 100, 255, 0.05);
    border-radius: 5px;
    margin-right: 0;
    padding: 32px;
    box-sizing: border-box;
}

.cbmri-input input {
    width: 100%;
    height: 32px;
    border-radius: 5px;
    border: 1px solid rgb(200, 200, 200);
    box-sizing: border-box;
    padding: 0 10px;
    outline: none;
}

.cbmri-title {
    font-size: 14px;
    color: rgb(100, 100, 100);
    margin-bottom: 6px;
}

.cbmr-item {
    margin: 10px 0;
}

.cbm-right {
    padding-top: 8px;
}

.cbmr-confirm {
    margin-top: auto;
    align-self: end;
    padding: 0 16px;
    background: #0583c7;
    cursor: pointer;
    color: white;
    line-height: 32px;
    user-select: none;
    border-radius: 5px;
    font-size: 14px;
    border: 0 solid transparent;
}

.cbml-title {
    font-size: 24px;
    font-weight: bold;
}

.cbml-item {
    margin: 20px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.cbmli-left {
    width: 50px;
    height: 50px;
    background: gray;
    margin-right: 20px;
}

.cbml-main-svg {
    margin-top: auto;
    margin-bottom: -25px;
}

.field-required {
    color: #E64646;
}

.cbml-desc {
    margin: 20px 0 80px 0;
    font-size: 15px;
}

.cbml-desc span {
    color: #0583c7;
}

.input-active {
    border: 1px solid #0583c7 !important;
}

.cbmrr-bw {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}
.cbmri-input {
    font-size: 15px;
}
.cbmrr-bw .btn{
    font-size: 15px;
}

@media screen and (max-width: 500px) {
    .create-branch-modal-wrapper {
        width: 100%;
        height: 100%;
        flex-direction: column;
    }

    .cbm-left, .cbm-right {
        width: 100%;
        margin: 0;
        padding: 25px;
    }

    .cbml-main-svg {
        display: none;
    }

    .cbml-desc {
        margin-bottom: 25px;
    }

    .cbm-left {
        padding-bottom: 0;
        display: none;
    }

    .cbm-right {
        height: 100%;
    }
    .modal-dialog{
        margin: 0;
    }
    .modal-content{
        height: 100%;
        width: 100%;
    }
}