﻿body {
    background-color: #0a0a0a;
    font-family: Helvetica Neue, Arial, serif;
    padding: 50px;
    text-align: center;
}

.button {
    background-color: #323232;
    border-radius: 10px;
    box-shadow: 0 20px 0 0 #141414, 0 20px 20px 0 rgb(0 0 0 / 40%);
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.45), -2px -3px 5px rgb(153 184 29);
    transition: box-shadow 100ms, transform 100ms;
    border: 3px solid #323232;
    border-top: 1px solid #646464;
    border-bottom: 1px solid #2d2d2d;
    color: white;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    padding: 0.75em 1.2em;
    position: relative;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

    .button:before {
        border-radius: 3px;
        transition: box-shadow 300ms, background 300ms;
        background-color: rgba(255, 0, 0, 0.2);
        bottom: 15px;
        content: "";
        height: 3px;
        left: 20px;
        position: absolute;
        right: 20px;
    }

    .button:hover {
        background-image: radial-gradient(#3c3c3c, #141414);
    }

        .button:hover:before {
            box-shadow: 0 0 5px 0 rgba(255, 0, 0, 0.25);
        }

    .button:active {
        box-shadow: 0 5px 0 0 #141414, 0 5px 20px 0 rgba(255, 255, 255, 0.4);
        transform: translateY(15px);
    }

    .button.loading:before {
        background-image: radial-gradient(45px 45px, #f00 10px, rgba(255, 0, 0, 0.5) 30px);
        -webkit-animation: bg_h_move 5s 20 ease;
        -moz-animation: bg_h_move 5s 20 ease;
        -o-animation: bg_h_move 5s 20 ease;
    }

@-moz-keyframes bg_h_move {
    0% {
        background-position: 120px 0;
    }

    20% {
        background-position: -120px 0;
    }

    40% {
        background-position: 120px 0;
    }

    60% {
        background-position: 120px 0;
    }

    80% {
        background-position: -120px 0;
    }

    100% {
        background-position: 120px 0;
    }
}

@-webkit-keyframes bg_h_move {
    0% {
        background-position: 120px 0;
    }

    20% {
        background-position: -120px 0;
    }

    40% {
        background-position: 120px 0;
    }

    60% {
        background-position: 120px 0;
    }

    80% {
        background-position: -120px 0;
    }

    100% {
        background-position: 120px 0;
    }
}

@-o-keyframes bg_h_move {
    0% {
        background-position: 120px 0;
    }

    20% {
        background-position: -120px 0;
    }

    40% {
        background-position: 120px 0;
    }

    60% {
        background-position: 120px 0;
    }

    80% {
        background-position: -120px 0;
    }

    100% {
        background-position: 120px 0;
    }
}

@keyframes bg_h_move {
    0% {
        background-position: 120px 0;
    }

    20% {
        background-position: -120px 0;
    }

    40% {
        background-position: 120px 0;
    }

    60% {
        background-position: 120px 0;
    }

    80% {
        background-position: -120px 0;
    }

    100% {
        background-position: 120px 0;
    }
}

/**/
:root {
    --main-color: #eaeaea;
    --stroke-color: black;
}
/**/
body {
    background: var(--main-color);
}

a {
    color: inherit;
}

h1 {
    margin: 100px auto 0 auto;
    color: var(--stroke-color);
    font-family: 'Encode Sans Semi Condensed', Verdana, sans-serif;
    font-size: 6rem;
    line-height: 10rem;
    font-weight: 200;
    text-align: center;
}

h2 {
    margin: 20px auto 30px auto;
    font-family: 'Encode Sans Semi Condensed', Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    text-align: center;
}

h1, h2 {
    -webkit-transition: opacity 0.5s linear, margin-top 0.5s linear; /* Safari */
    transition: opacity 0.5s linear, margin-top 0.5s linear;
}

.loading h1, .loading h2 {
    margin-top: 0px;
    opacity: 0;
}

@-webkit-keyframes clockwise {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes anticlockwise {
    0% {
        -webkit-transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes clockwiseError {
    0% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(30deg);
    }

    40% {
        -webkit-transform: rotate(25deg);
    }

    60% {
        -webkit-transform: rotate(30deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes anticlockwiseErrorStop {
    0% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(-30deg);
    }

    60% {
        -webkit-transform: rotate(-30deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-webkit-keyframes anticlockwiseError {
    0% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(-30deg);
    }

    40% {
        -webkit-transform: rotate(-25deg);
    }

    60% {
        -webkit-transform: rotate(-30deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

.gears {
    position: relative;
    margin: 0 auto;
    width: auto;
    height: 0;
}

.gear {
    position: relative;
    z-index: 0;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--stroke-color);
}

    .gear:before {
        position: absolute;
        left: 5px;
        top: 5px;
        right: 5px;
        bottom: 5px;
        z-index: 2;
        content: "";
        border-radius: 50%;
        background: var(--main-color);
    }

    .gear:after {
        position: absolute;
        left: 25px;
        top: 25px;
        z-index: 3;
        content: "";
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 5px solid var(--stroke-color);
        box-sizing: border-box;
        background: var(--main-color);
    }

    .gear.one {
        left: -130px;
    }

    .gear.two {
        top: -75px;
    }

    .gear.three {
        top: -235px;
        left: 130px;
    }

    .gear .bar {
        position: absolute;
        left: -15px;
        top: 50%;
        z-index: 0;
        width: 150px;
        height: 30px;
        margin-top: -15px;
        border-radius: 5px;
        background: var(--stroke-color);
    }

        .gear .bar:before {
            position: absolute;
            left: 5px;
            top: 5px;
            right: 5px;
            bottom: 5px;
            z-index: 1;
            content: "";
            border-radius: 2px;
            background: var(--main-color);
        }

        .gear .bar:nth-child(2) {
            transform: rotate(60deg);
            -webkit-transform: rotate(60deg);
        }

        .gear .bar:nth-child(3) {
            transform: rotate(120deg);
            -webkit-transform: rotate(120deg);
        }

    .gear.one {
        -webkit-animation: anticlockwiseErrorStop 2s linear infinite;
    }

    .gear.two {
        -webkit-animation: anticlockwiseError 2s linear infinite;
    }

    .gear.three {
        -webkit-animation: clockwiseError 2s linear infinite;
    }

.loading .gear.one, .loading .gear.three {
    -webkit-animation: clockwise 3s linear infinite;
}

.loading .gear.two {
    -webkit-animation: anticlockwise 3s linear infinite;
}

#RenderBody {
    margin-top: 400px;
    background-color: darkgray;
    border-radius: 15px;
}

.exeption-style {
    margin: 25px;
    color: red;
    font-size: smaller;
    letter-spacing: .5px;
}

.panel-title {
    margin: 20px;
    padding: 25px;
    letter-spacing: .5px;
}

.list-group {
    padding-bottom: 24px;
}

.route-text {
    margin: 25px;
    color: blue;
    letter-spacing: .5px;
}

.dev-message-style {
    margin: 25px;
    color: forestgreen;
    letter-spacing: .5px;
}

.original-title {
    padding-top: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none !important;
    cursor: default;
}

    .original-title:hover {
        color: #007bff !important;
        cursor: default;
    }

.show-title {
    visibility: hidden;
}