﻿.table-wraplastcol tr td:last-child {
    width: 1%;
    white-space: nowrap;
}

.modal {
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

.symbolHighlighted {
    background: red;
}


.status.healthy:before {
    background-color: #94E185;
    border-color: #78D965;
    box-shadow: 0px 0px 4px 1px #94E185;
}

.status.degraded:before {
    background-color: #FFC182;
    border-color: #FFB161;
    box-shadow: 0px 0px 4px 1px #FFC182;
}

.status.unhealthy:before {
    background-color: #C9404D;
    border-color: #C42C3B;
    box-shadow: 0px 0px 4px 1px #C9404D;
}

.status:before {
    content: ' ';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border: 1px solid #000;
    border-radius: 7px;
}


.widget-multiplayer-table .widget-multiplayer-table-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    /*height: 135px;*/
    padding: 0.25rem;
    text-align: center;
}

.widget-multiplayer-table .widget-multiplayer-table-name {
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.widget-multiplayer-table .widget-multiplayer-table-game {
    margin-top: 0;
}

.widget-multiplayer-table .widget-multiplayer-table-image {
    left: 50%;
    margin-left: -45px;
    position: absolute;
    top: 80px;
}

.widget-multiplayer-table .description-block {
    margin: 0;
}

.widget-multiplayer-table .card-footer {
    /*padding-top: 50px;*/
    padding: 0.25rem 1.25rem;
}

.widget-multiplayer-table .card-header{
    padding: 0.25rem 0.5rem;
}

.fullscreen{
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--gray-dark);
}

.rotate {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}