body {
    margin: 0px;
    background-color: #FFF;
    font-size: 16px;
    font-family: Tahoma, Calibri, Sans-serif;
}

body>div#startup {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    font-size: 1.3em;
    z-index: 99;
    background-color: #AAA;
    padding-top: 100px;
}

body>div#startup>div#loading>span:first-child {
    margin-right: 15px;
}

body>div#startup>div#loading>span.block {
    border-radius: 4px;
    background-color: #DDD;
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    animation: loadingblock 1.5s infinite;
    animation-timing-function: linear;
    -webkit-animation: loadingblock 1.5s infinite;
    -webkit-animation-timing-function: linear;
}

body>div#startup>div#loading>span.block.block-one {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
}

body>div#startup>div#loading>span.block.block-two {
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

body>div#startup>div#loading>span.block.block-three {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

@-webkit-keyframes loadingblock {
    from {
        background-color: #FFF;
    }

    to {
        background-color: #555;
    }

}

@keyframes loadingblock {
    from {
        background-color: #FFF;
    }

    to {
        background-color: #555;
    }
}




body>div.nettime>div.header {
    background-color: #333;
    height: 60px;
    border-bottom: 5px solid #ff751a;
    color: #FFF;
}

body>div.nettime>div.header>div {
    height: 100%;
    vertical-align: top;
    display: inline-block;
}

body>div.nettime>div.header>div.menu>ul {
    margin: 0px;
    padding: 0px;
    height: 100%;
    list-style: none;
}

body>div.nettime>div.header>div.menu>ul>li {
    display: inline-block;
    font-size: 18px;
    height: 100%;
}




body>div.nettime>div.footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #333;
    padding: 8px;
    font-size: 11px;
    color: #DDD;
}

body>div.nettime>div.footer a {
    color: #DDD;
}

body>div#loading-status {
    position: fixed;
    bottom: 35px;
    right: 15px;
    background-color: #FFF;
    border: 1px solid #333;
    border-radius: 6px;
}

body>div#loading-status>ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

body>div#loading-status>ul {
    padding: 5px 10px;
}

.tariff-group-table {
    border-collapse: collapse;
}

.tariff-group-table tbody tr:not(:first-child):hover {
    cursor: pointer;
    background-color: #ff751a;
}

.tariff-group-table tbody tr:last-child {
    border-bottom: 1px solid black;
}

.tariffs-in-groups-table tr:not(:first-child):hover {
    background-color: #ff751a;
}

.tariffs-in-groups-table tr:last-child {
    border-bottom: 1px solid black;
}

#retake-image {
    background-color: #ff6336;
    /* Green */
    border: none;
    color: white;
    padding: 5px 13px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50%;
}