.NoConnection {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
}

.Message {
    display: inline-block;
    position: relative;
    width: 100%;
    top: 130px;
    color: white;
    font-size: 30px;
    text-transform: uppercase;
}

.Reload {
    display: inline-block;
    position: relative;
    top: 190px;
    color: #89c13c;
    font-size: 18px;
    text-transform: uppercase;
    width: 165px;
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    box-shadow: inset 0 4px 29px 0 rgba(0, 0, 0, 0.5);
    border-style: solid;
    border-width: 3px;
    border-image-source: linear-gradient(to bottom, #bcbcbc, #ffffff, #787878 100%);
    border-image-slice: 1;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), linear-gradient(to bottom, #bcbcbc, #ffffff, #787878 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    cursor: pointer;
}