body {
    padding-top: 15px;
    font-family: "Roboto Condensed Light";
    background: #6f6d8a;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #276bb3;
}

h1 {
    text-align: center;
    color: #424242;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 25px;
    font-size: 22px;
    font-weight: normal;
}

#wrapper {
    width: 600px;
    margin: 0 auto;
    background: #24b2dd;
    border-radius: 10px;
    padding: 15px;
    border: 2px solid #f0f0f0;
    -webkit-box-shadow: 0px 1px 15px 1px rgba(90, 90, 90, 0.08);
    box-shadow: 0px 1px 15px 1px rgba(90, 90, 90, 0.08);
}

table {
    width: 100%;
    padding: 100%;
    border-radius: 600px;
}

table thead th {
    text-align: left;
    padding: 5px 0px 5px 0px;
}

table tbody td {
    padding: 5px 0px;
}

table tbody td:last-child, table thead th:last-child {
    /*text-align: right;*/
}

.label {
    padding: 3px 10px;
    border-radius: 4px;
    color: #fff;

}

.label.label-success {
    background: #4ac700;
}

.label.label-warning {
    background: #dc2020;
}

.label.label-danger {
    background: #F00;
}

.label.label-info {
    background: #8b7de8;
}

.label.label-default {
    background: #3f56ae;
}

.label.label-normal {
    background: #ae3f3f;
}

#loader {
    position: relative;
    width: 44px;
    height: 8px;
    margin: 5px auto;
    padding-top: 35px;
    padding-bottom: 30px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #ccc;
    position: absolute;
}

.dot_1 {
    animation: animateDot11 .5s linear infinite;
    left: 12px;
    background: #e579b8;
}

.dot_2 {
    animation: animateDot21 .5s linear infinite;
    animation-delay: 0.5s;
    left: 24px;
}

.dot_3 {
    animation: animateDot31 .5s linear infinite;
    left: 12px;
}

.dot_4 {
    animation: animateDot41 .5s linear infinite;
    animation-delay: 0.5s;
    left: 24px;
}

.logo {
    margin-bottom: 35px;
    margin-top: 20px;
    display: block;
}

.logo img {
    margin: 0 auto;
    display: block;
}

.installbtn {
    display: none;
    text-align: center;
    margin-top: -25px;
}

.installbtn > a {
    display: INLINE-BLOCK;
    background: #F44336;
    color: white;
    text-decoration: none;
    padding: 6px 43px;
    border-radius: 5px;
    box-shadow: 0px 6px 0px #94170e;
}

@keyframes animateDot1 {
    0% {
        transform: rotate(0deg) translateX(-12px);
    }
    25% {
        transform: rotate(180deg) translateX(-12px);
    }
    75% {
        transform: rotate(180deg) translateX(-12px);
    }
    100% {
        transform: rotate(360deg) translateX(-12px);
    }
}

@keyframes animateDot2 {
    0% {
        transform: rotate(0deg) translateX(-12px);
    }
    25% {
        transform: rotate(-180deg) translateX(-12px);
    }
    75% {
        transform: rotate(-180deg) translateX(-12px);
    }
    100% {
        transform: rotate(-360deg) translateX(-12px);
    }
}

@keyframes animateDot3 {
    0% {
        transform: rotate(0deg) translateX(12px);
    }
    25% {
        transform: rotate(180deg) translateX(12px);
    }
    75% {
        transform: rotate(180deg) translateX(12px);
    }
    100% {
        transform: rotate(360deg) translateX(12px);
    }
}

@keyframes animateDot4 {
    0% {
        transform: rotate(0deg) translateX(12px);
    }
    25% {
        transform: rotate(-180deg) translateX(12px);
    }
    75% {
        transform: rotate(-180deg) translateX(12px);
    }
    100% {
        transform: rotate(-360deg) translateX(12px);
    }
}
