* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

@font-face {
    font-family: 'Roboto Medium';
    src: url('Roboto-Medium.ttf')
    format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    background: #10192d;
    color: #eeeeee;
    font-family: 'Roboto Medium', serif;
    padding-bottom: 110px;
    overflow-x: hidden;
}

ul {
    list-style: none;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

.deftower-logo {
    max-width: 700px !important;
}

.container-fluid {
    max-width: 1100px;
    padding: 0;
}

.card {
    box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.card-header{
    color: #eeeeee;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

a.collapse-graphic {
    position: relative;
    font-size: 15px;
    background-color: rgba(255,255,255,.3);
    color: #eeeeee;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
}

.btn-collapse-graphic-mobile {
    display: none;
}

.status-name {
    font-size: 20px;
    line-height: 1.6em;
}

.status-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.section-header-divider {
    border-bottom: 2px solid #eeeeee;
    width: 100%;
}

.primary-color {
    /*color: #24f8e5;*/
    color: #03a9f4;
}

.bg-primary-color {
    background-color: #24f8e5;
}

.bg-on {
    background-color: #28a745;
}

.bg-off {
    background-color: #696969;
}

.bg-degraded {
    background-color: #ef683d;
}

.bg-error {
    background-color: #dc3545;
}

.text-warning2 {
    color: #ef683d;
}

.text-secondary2 {
    color: #696969;
}

li.incidents-item {
    position: relative;
    width: 100%;
    height: 50px;
    border-right: 5px solid #10192d;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

li.incidents-item:hover {
    background-color: rgba(255, 255, 255, .2);
}

.incidents {
    position: absolute;
    top: calc(100%);
    left: 0px;
    z-index: 3;
    display: none;
    visibility: hidden;
    width: 300px;
    max-height: 180px;
    padding: 0px 20px 0px 20px;
    background-color: #10192d;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

li:nth-child(n + 4) .incidents {
    position: absolute;
    left: calc(-300px + 100%);
}

li.incidents-item:hover .incidents,
li.incidents-item:hover .up-arrow,
.incidents-in-day:hover,
.up-arrow:hover
{
    visibility: visible;
    display: block;
}

.incidents-body{
    overflow-y: auto;
}

.incidents h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.incidents p {
    font-size: 14px;
    color: rgba(255,255,255,.9);
}

.incidents span{
    font-size: 14px;
    color: #3DC8E5;
}

.incidents-footer .spacer {
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.incidents-footer span {
    min-width: 100px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    span.response-time,
    span.latency {
        font-size: 14px;
    }

    .col-12 {
        padding-right: 10px;
        padding-left: 10px;
    }

    .svg {
        width: 20px;
        height: 20px;
    }

    .d-text-none{
        display: none;
    }
}

@media (max-width:  568px) {
    .status-name {
        font-size: 17px;
    }

    .status-circle {
        width: 24px;
        height: 24px;
    }

    .section-header {
        flex-direction: column;
        padding-bottom: 10px;
    }

    .current-server-header {
        width: 100%;
    }

    a.collapse-graphic {
        font-size: 13px;
        padding: 6px 8px;
        margin: 5px 0px 5px 0px;
    }

    .btn-collapse-graphic-mobile {
        display: block;
    }

    .btn-collapse-graphic {
        display: none;
    }

    .past-incidents {
        position: relative;
    }

    .incidents {
        left: 0;
        width: calc(100% - 5px);
        padding: 0px 8px 0px 8px;
    }

    li:nth-child(n + 4) .incidents {
        left: 0;
    }

    li.incidents-item {
        position: static;
    }

    .incidents span {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

}