﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

@font-face{
    font-family: TitiliumExtraLight;
    src: url(../fonts/TitilliumWeb-Light.ttf);
}

@font-face{
    font-family: TitiliumLight;
    src: url(../fonts/TitilliumWeb-Light.ttf);
}

@font-face{
    font-family: TitiliumRegular;
    src: url(../fonts/TitilliumWeb-Regular.ttf);
}

@font-face{
    font-family: TitiliumSemiBold;
    src: url(../fonts/TitilliumWeb-SemiBold.ttf);
}

@font-face{
    font-family: TitiliumBold;
    src: url(../fonts/TitilliumWeb-Bold.ttf);
}

@font-face{
    font-family: RussoOne;
    src: url(../fonts/RussoOne-Regular.ttf);
}

@font-face{
    font-family: PressStart;
    src: url(../fonts/PressStart2P-Regular.ttf);
}

html, body {
    font-family: TitiliumRegular, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #0e232e;
    color: white;
}

#app{
    overflow-x: hidden;
    opacity:0;
    -webkit-animation: appFade 1s forwards;
    animation: appFade 1s forwards;
}

@keyframes appFade {
    100% { opacity: 1; }
}

.loading .chargement{
    font-family: PressStart, serif;
    text-align: center;
    font-size: 1.8em;
    margin-top: 150px;
    width: 100%;
    position: absolute;
    top: 50%;
}

.loading img{
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    width: 250px;
    left: 50%;
    margin-top: -250px;
    margin-left: -125px;
    position: absolute;
    top: 50%;
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 425px) {
    .loading .chargement{
        font-size: 1.2em;
        margin-top: 100px;
    }
    .loading img{
        height: 200px;
        width: 200px;
        margin-top: -125px;
        margin-left: -100px;

    }
}

a{
    color: white;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    color: white;
    background: #b40f0f;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.form-control,
input{
    border: 1px solid white;
    background-color: #0e232e;
    color: white;
}

.form-control:focus,
input:focus{
    background-color: #0e232e;
    color: white;
}

.brs-form label{
    width: 100%;
}

h4.sub-stats-title {
    font-family: TitiliumLight, serif;
    padding: 10px 0;
    background-color: #16384a;
    border-bottom: 1px solid #3c7694;
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 375px) {
    .content{
        padding: 1px;
    }
}