.dialog-container,
.loading-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: scroll;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

.dialog-container > div {
    position: relative;
    width: 90%;
    max-width: 800px;
    min-height: 400px;
    margin: 10% auto;
    z-index: 99999;
}

.dialog-container h5{
    font-size: 20px;
    letter-spacing: .005em;
    box-sizing: border-box;
    font-weight: 400;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 64px;
    max-height: 64px;
    padding: 0 16px;
    margin: 0;
    background-color: rgb(96,125,139);
    color: rgb(255,255,255);
}

.dialog-container p{
    padding: 16px;
    font-size: 1.6rem;
}

.dialog-button-bar {
    text-align: center;
    margin-top: 8px;
    position: absolute;
    bottom: 10px;
}

.loading-container > div {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 10% auto;
    z-index: 99999;
}

.loading-container > div > div {
    width: 100%;
    height: 100%;
}

.dialog-button-bar .mdl-button{
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
    width: 40%;
}

.dialog-button-bar .mdl-button.mdl-button--colored#positive{
    background-color: rgb(255,215,64);
    color: #000;
}

.dialog-button-bar .mdl-button.mdl-button--colored#positive:hover{
    background-color: rgb(255,171,0);
}

.dialog-button-bar .mdl-button#negative{
    margin-left: 5%;
    background-color: rgb(250,250,250);
    color: #000;
}