﻿body {
    font-family: 'Roboto', sans-serif;
    overflow-y: scroll;
}

#header {
    background-color: #000;
}

    #header img {
        padding: 20px 0;
        width: 300px;
    }

#content {
    padding-top: 20px;
    padding-bottom: 10px;
    min-height: calc(100vh - 203px);
}

#footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    padding-top: 10px;
}

    #footer a, #footer p {
        display: block;
        text-decoration: none;
        color: white;
        margin-bottom: 0.4rem;
        font-size: 14px;
    }

.required {
    color: rgb(255,0,0);
    font-weight: bolder;
}

#loading-info.show-hide {
    transition: all linear 0.8s;
}

    #loading-info.show-hide.ng-hide {
        opacity: 0;
    }

.form-control {
    height: auto;
}

.ui-select-match {
    padding: 0 !important;
}

    .ui-select-match .btn-outline-secondary {
        border-color: #ced4da !important;
        color: #495057 !important;
    }

    .ui-select-match .ui-select-placeholder.text-muted {
        color: #495057 !important;
    }

form.ng-submitted .form-control.ng-invalid {
    border-color: #e53935;
}

form.ng-submitted .form-check-input.ng-invalid + .form-check-label {
    color: #e53935;
    text-decoration: underline;
    font-weight: bold;
}

form.ng-submitted .ui-select-container.ng-invalid {
    border: 1px solid red;
    border-radius: .25rem;
}

legend {
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 0.7rem;
}

label {
    margin-bottom: 0.3rem;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1100px;
    }
}

@media (max-width: 800px) {
    #header img {
        padding: 10px 0;
        width: 130px;
    }
}
