.session-dialog{
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -250px;
    margin-top: -250px;
    background: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 440px;
    z-index: 1001;
    padding: 30px;
    text-align: center;
}
.session-dialog .title {
        font-size: 15px;
        line-height: 24px;
        font-weight: 300;
        padding-bottom: 20px;
}
.session-dialog .timeout {
    display: flex;
    justify-content: center;
    align-items: center;
}
.session-dialog .timeout > span:first-child {
    padding-right: 10px;
    font-weight: 400;
}

.session-dialog .buttons {
    padding: 25px 0 10px 0;
    display: flex;
    
    justify-content: center;
    align-items: center;
}
.session-dialog .buttons a {
    text-transform: uppercase;
    display: inline-block;
    font-family: MuseoSans;
    background: none #a9a9a9;
    color: #fff;
    font-size: 100%;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 2px;
    width: 40%;
}
.session-dialog .buttons a:first-child {
    margin-right: 15px;
}
.session-dialog .buttons a:hover {
    background: none #303030;
    text-decoration: none;
}
.session-dialog .timeout div {
    background-color: #d08d2c;
    color: white;
    width: 30px;
    padding: 5px 0;
    border-radius: 3px;
}

.dialog-background-drop {
    background: rgba(128, 128, 128, .5);
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media all and (max-width: 540px) {
    .session-dialog {
        margin-left: -150px;
        margin-top: -375px;
        width: 240px;
    }
}