body > .session-timeout-container > .session-timeout-lock {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(17, 2, 26, 0.61);
}

html.session-timeout-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.session-timeout {
    z-index: 10000;
    position: fixed;
    background: #ffffff;
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.2);
    top: 150px;
    border-radius: 5px;

    width: 485px;
    left: calc(50% - (485px / 2)) !important;
    font-size: 12px;
}

.session-timeout .close-session-timeout {
    float: right;
    cursor: pointer;
    width: 23px;
    height: 23px;
    margin-bottom: 0;
    background: url(../icons-yellow/x.svg) no-repeat center;
}

.session-timeout .close-session-timeout:hover,
.session-timeout .close-session-timeout:focus {
    background: url(../icons-yellow/x-hover.svg) no-repeat center;
}

.session-timeout > div {
    padding-left: 10px;
    padding-right: 10px;
}

.session-timeout > .content {
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.session-timeout.with-header .content {
    height: calc(100% - 20px);
}

.session-timeout > .header {
    height: 53px;
    background: #F0F0F0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 15px 20px 15px 20px;
}

.session-timeout .session-timeout-title {
    float: left;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}

.session-timeout:not(.with-content) > .content {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.session-timeout > .content {
    max-height: calc(100vh - 150px - 150px - 20px);
}

.ie11 .session-timeout > .content {
    height: calc(100vh - 150px - 150px - 20px);
}

.session-timeout.with-footer > .content,
.session-timeout.with-header > .content {
    max-height: calc(100vh - 150px - 150px - 53px);
}

.ie11 .session-timeout.with-footer > .content,
.ie11 .session-timeout.with-header > .content {
    height: calc(100vh - 150px - 150px - 53px);
}

.session-timeout.with-header.with-footer > .content {
    max-height: calc(100vh - 150px - 150px - 105px);
}

.ie11 .session-timeout.with-header.with-footer > .content {
    height: calc(100vh - 150px - 150px - 105px);
}

.session-timeout > .footer {
    height: 52px;
    padding-top: 10px;
    background: #F0F0F0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.session-timeout > .footer > .buttonRow {
    margin-top: 0;
}

.session-timeout > .footer > .buttonRow {
    clear: both;
}

.session-timeout > .footer > .buttonRow .button:last-of-type {
    margin-right: 0;
}

.session-timeout .session-time-remaining {
    font-weight: bold;
}

@media screen and (max-height: 500px) {
    .session-timeout {
        top: 50px;
    }

    .session-timeout > .content {
        max-height: calc(100vh - 50px - 50px - 20px);
    }

    .ie11 .session-timeout > .content {
        height: calc(100vh - 50px - 50px - 20px);
    }

    .session-timeout.with-footer > .content,
    .session-timeout.with-header > .content {
        max-height: calc(100vh - 50px - 50px - 53px);
    }

    .ie11 .session-timeout.with-footer > .content,
    .ie11 .session-timeout.with-header > .content {
        height: calc(100vh - 50px - 50px - 53px);
    }

    .session-timeout.with-header.with-footer > .content {
        max-height: calc(100vh - 50px - 50px - 105px);
    }

    .ie11 .session-timeout.with-header.with-footer > .content {
        height: calc(100vh - 50px - 50px - 105px);
    }
}