﻿.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

body {
    color: white;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    font-family: Geometria, montserrat, sans-serif;
}

@media (orientation: landscape) {
    body {
        background-image: url(../images/background_landscape_mode.png);
    }
}

@font-face {
    font-family: Geometria;
    src: url(../fonts/geometria-cufonfonts/Geometria.ttf);
}

@media (orientation: portrait) {
    body {
        background-image: url(../images/background_portrait_mode.png);
    }
}

.table {
    color: white;
}

.btn {
    color: white;
}

    .btn:hover {
        color: white;
    }

.btn-default {
    background-color: #5089b5;
    color: white;
}

    .btn-default:hover {
        color: white;
    }

.text-danger {
    color: #ff4c4c !important;
}

.text-muted {
    color: #bcccda !important;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #d7dde3;
}

.validation-summary-errors > ul {
    padding: 0;
    margin: 0;
}

    .validation-summary-errors > ul > li {
        list-style: none;
    }

.card {
    background-color: #020f44;
    border: 1px solid #5089b5;
}

.card-header {
    background-color: #0f2b5b;
    border-bottom: 1px solid #5089b5;
}

.card-footer {
    background-color: #0f2b5b;
    border-top-color: #5089b5;
}

.border-bottom {
    border-bottom-color: #5089b5 !important;
}

i.material-icons {
    font-size: 40px;
}

#loading {
    display: none;
}

    #loading.show {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        text-align: center;
        z-index: 10;
        animation-name: ani_loading;
        animation-iteration-count: infinite;
        animation-duration: 2s;
        animation-direction: alternate;
        padding-top: 75%;
    }

@keyframes ani_loading {
    from {
        background-color: #5089b5;
        padding-top: 25%;
    }

    to {
        background-color: #0f2b5b;
        padding-top: 75%;
    }
}

.custom-15vh {
    height: 15vh;
}