﻿@@font-face {
    font-family: 'Antenna Regular';
    src: url('/Fonts/AntennaRegular.otf') format('opentype');
    font-weight: normal;
}

/*** Globals ***/
body { font-size: .875rem; }

picture { display: block; }

/*** General ***/

.capitlize { text-transform: capitalize; }

/*** Buttons ***/

.btnSubmit { width: 100%; }

/*** Alert ***/

.alert-pre {
    white-space: pre-wrap;
    word-break: break-all;
    word-wrap: break-word;
}

/*** Validation ***/

.field-validation-valid { display: none; }

.validation-summary-valid { display: none; }

/*** Containers ***/

.formContainer { max-width: 650px; }

/*** Logo ***/

.logo {display:block; color:#fff; font-size:16px; }

.logo_img {
    height: 40px;
    padding-right: 20px;
    margin-top: -4px;
}

/*** Feather ***/

.feather {
    height: 16px;
    vertical-align: text-bottom;
    width: 16px;
}

/*** Sidebar ***/

.sidebar {
    bottom: 0;
    box-shadow: inset -1px 0 0 #000000;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    left: 0;
    min-width: 180px;
    padding: 68px 0 0;
    position: fixed;
    top: 0;
    z-index: 100;
}

.sidebar-sticky {
    height: calc(100vh - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: .5rem;
    position: relative;
    top: 0;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
    }
}

.sidebar .nav-link {
    color: #333;
    font-weight: 500;
}

.sidebar .nav-link .feather {
    color: #999;
    margin-right: 4px;
}

.sidebar .nav-link.active { color: #007bff; }

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather { color: inherit; }

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

main { padding-top: 85px; }

@media (min-width: 580px) {
    main { padding-top: 48px; }
}

/*** Navbar ***/

.navbar-brand {
    background-color: #000000;
    background-color: rgba(0, 0, 0, .25);
    color:#fff;
    font-size: 1rem;
    min-width: 180px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.navbar .form-control {
    border-radius: 0;
    border-width: 0;
    padding: .75rem 1rem;
}

.form-control-dark {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, .1);
    border-color: #ffffff;
    border-color: rgba(255, 255, 255, .1);
    color: #fff;
}

.form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}