    /*@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,600);*/

@font-face {
    font-family: 'Gamer';
    src: url('/css/fonts/gamer-webfont.woff2') format('woff2'),
    url('/css/fonts/gamer-webfont.woff') format('woff'),
    url('/css/fonts/Gamer.ttf')  format('truetype')
}

@font-face {
    font-family: 'Gamer Zig';
    src: url('/css/fonts/zig.woff2') format('woff2'),
    url('/css/fonts/zig.woff') format('woff'),
    url('/css/fonts/zig.ttf')  format('truetype')
}

@font-face {
    font-family: 'Yoster';
    src: url('/css/fonts/yoster.woff2') format('woff2'),
    url('/css/fonts/yoster.woff') format('woff'),
    url('/css/fonts/yoster.ttf')  format('truetype')
}

.login-panel {
    background-color: #424242;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 1px 0px 17px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 0px 17px 0px rgba(0, 0, 0, 0.75);
    color: #ffffff;
    justify-content: center;
}

.login-content {
    margin-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.login-content-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 24px;
}

.login-content-buttons-oauth {
    display: flex;
    justify-content: space-around;
    padding-bottom: 24px;
    width: 100%;
    align-items: center;
}

.navbar-laravel {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.button-content-login {
    margin: 5px;
}

html,
#application-content,
body {
    padding: 0px;
    margin: 0px;
    height: 100%;
    font-family: Roboto, sans-serif;
    background-color: #303030;
    scroll-behavior: smooth;
}

html a {
    text-decoration: none;
    color: inherit;
}

html a:visited
{
    text-decoration: none;
    decoration: none;
    color: inherit;
}

.main-content {
    border: 1px solid #000;
}

.main-box {
    height: 100%;

}

.row-button {
    display: none;
}

.buttons-row {
    display: flex;
    justify-content: space-around;
}

.show-buttons:hover .row-button {
    display: block;
}

.custom-modal {
    position: absolute;
    background-color: rgb(66, 66, 66);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 5px 8px 0px, rgba(0, 0, 0, 0.12) 0px 1px 14px 0px;
    top: 50%;
    left: 50%;
    padding: 24px;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

@media only screen and (max-width: 600px) {
    .login-panel {
        height: 100%;
        width: 100%;
        padding: 12px;
    }
    .login-content-buttons-oauth {
        flex-direction: column;
    }
}



