#cba-dialog-wrapper {
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    transform: translate(-2000px);
}

#cba-dialog-card {
    min-width: 400px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    transform: scale(0);
    margin: auto;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12);
}

#cba-dialog-wrapper.active {
    opacity: 1;
    transform: translate(0);
}

#cba-dialog-wrapper.active #cba-dialog-card {
    transform: scale(1);
}

#cba-dialog-header {
    height: 60px;
    border-radius: 8px 8px 0 0;
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: initial;
    align-items: center;
    padding-left: 30px;
}
#cba-dialog-content {
    padding: 30px;
    min-height: 65px;
}

#cba-dialog-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    min-height: 48px;
    border-top: 1px solid #EEEEEE;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.md-select-menu-container {
  z-index: 1000!important;
}
