body {
    color: white;
    background: #1A1A1D;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    margin: 0;
}

ul {
    list-style: none;
}

.inner {
    position: relative;
}

.language {
    margin: 10px;
    padding: 0 20px;
}

.language h3 {
    font-size: 30px;
    text-transform: capitalize;
    margin: 7px 0;
}

.units {
    padding: 0;
}

.units .unit h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

a.link {
    display: block;
    text-transform: capitalize;
    padding-left: 8px;
    border-left: 3px solid #e0f97d93;
    margin: 3px 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

a.link:hover {
    border-left: 3px solid #f5bf2b;
    background: #e0f97d0F;
}

a.error {
    display: block;
    text-transform: capitalize;
    padding-left: 8px;
    border-left: 3px solid #ee561a93;
    margin: 3px 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

a.error:hover {
    border-left: 3px solid #e23415;
    background: #ee561a93;
}

/* Helper classes */

.hidden {
    display: none;
}

#loading {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*body {
    color: white;
    background: #1A1A1D;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    margin: 0;

}

.sidebar {
    transition: transform 300ms ease-in;
    justify-self: center;
    align-self: center;
    display: inline-block;
    position: relative;
    box-shadow: 0 0 8px #000000;
    //height: 100vh;
    background: rgb(54, 54, 59);
    transform: translateX(calc(-100% - 8px));

    .logo {
        border-bottom: #666666c0 2px solid;
    }

    i {
        font-size: 25px;
    }

    .inner {
        padding: 5px 15px 0 15px;
    }

    &.opened {
        transform: translateX(0);

        #showLinks {
            transform: rotate(180deg);
        }
    }

    #showLinks {
        transition: transform 300ms ease-in;
        color: white;
        font-size: 20px;
        position: absolute;
        cursor: pointer;
        right: -20px;
    }
}

.list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.languages {
    list-style: none;
}

.units {
    list-style: none;
}

.links {
    list-style: none;

    &:hover {
        color: rgb(78, 65, 165);
    }

    &>li {
        transition: color 300ms ease;
        text-transform: capitalize;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 14px;
    }
}

.hidden {
    display: none;
}*/

/*# sourceMappingURL=app.css.map */