<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.timeout-overlay {
    position: fixed;
    top:0; left:0; bottom:0; right:0;
    z-index: 5000;
    background-color: rgba(0,0,0,0.4);
}
.timeout-overlay .wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
}
.timeout-overlay .wrapper .timeout-dialog {
    position: absolute;
    z-index: 5001;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -120px;
    width:272px;
    height:240px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.timeout-dialog .wrapper {
    position: relative;
    width:auto;
    height:100%;
    padding: 20px;
    border-right: 6px;
}

.timeout-dialog .wrapper .timeout-header {
    font-size: 24px;
    font-weight: normal;
    width: 100%;
    margin: 0 0 10px 0;
}

.timeout-dialog .wrapper .timeout-text {
    font-size: 14px;
    font-weight: normal;
    width: 100%;
    margin: 0 0 20px 0;
}

.timeout-dialog .wrapper p {
    font-weight: 100;
    margin: 5px 0;
}

.timeout-dialog .wrapper .timeout-counter {
    display: block;
    margin: 0 0 10px 0;
    color: #97C93C;
}

.timeout-dialog .wrapper .timeout-counter &gt; div {
    display: block;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    height: 50px;
    line-height: 40px;
}

.timeout-dialog .wrapper .timeout-counter span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    margin: 0 0 20px 0;
    width: 100%;
}

.timeout-dialog .wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width:215px;
    margin: 0 auto;
}
.timeout-dialog .wrapper ul li {
    width:50%;
    float:left;
}

.timeout-dialog .wrapper button {
    border: none;
    padding: 8px 15px;
    background-color: #3B6186;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    width: 100px;
    margin: 0 auto;
}
</pre></body></html>