﻿html {
    height: 100%;
}

body {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    font-family: 'Raleway';
    background-color: #ededed;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    overflow-y: scroll;
    min-height: 100%;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
}

.dl-horizontal dt {
    white-space: normal;
}

.container > .navbar-header {
    margin-left: 15px;
}

.wizard-page .container > .navbar-header {
    float: left;
}

.navbar-inverse {
    background-color: #78e0cb;
    border-color: #78e0cb;
}

.navbar * {
    text-transform: uppercase;
}

.navbar-nav {
    font-size: 11px;
}

.navbar-inverse .navbar-brand {
    color: #444444;
}

.navbar-inverse .navbar-nav > li > a {
    color: #444444;
}

.footer-block {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 12px;
}

.version {
    position: absolute;
    color: #999999;
    font-size: 9px;
    top: 5px;
    right: 5px;
    text-transform: uppercase;
}

.form-container {
    background: #ffffff;
    width: 470px;
    margin-left: 50%;
    left: -235px;
    padding: 15px;
}

.form-group {
    overflow: hidden;
    margin-bottom: 10px;
}

.form-container label {
    text-transform: uppercase;
    font-size: 12px;
}

.form-group label, .form-group .text {
    margin-top: 7px;
}

.btn {
    text-transform: uppercase;
    font-size: 11px;
}

.btn,
input[type="checkbox"] {
    outline: none !important;
}

img.small {
    max-width: 100px;
    max-height: 100px;
    border: 1px solid #ffffff;
}

.alert {
    text-transform: uppercase;
    font-size: 12px;
}

.alert-success {
    color: #444444;
    background-color: #B2F0E4;
    border-color: #B2F0E4;
}

.alert-danger {
    color: #444444;
    background-color: #FECDD4;
    border-color: #FECDD4;
}

.fa {
    font-family: 'FontAwesome';
    display: inline;
}

.fa:before {
    margin-right: 5px;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #444444;
    cursor: default;
    background-color: #78e0cb;
    border-color: #78e0cb;
}

ul.list-none {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

ul.list-horizontal > li {
    display: inline-block;
    vertical-align: top;
}

.db-state {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

.db-state.large:before {
    font-size: 60px;
}

.db-state:before {
    font-family: 'FontAwesome';
    font-size: 20px;
    content: '\f1c0';
    margin-right: 5px;
    vertical-align: -3px;
}

.db-state.not-configured:before {
    color: lightgray;
}

.db-state.added:before {
    color: #789de0;
}

.db-state.initializing:before {
    color: #f7e487;
}

.db-state.ready:before {
    color: #78e0cb;
}

.db-state.problem:before {
    color: #FDA5B1;
}

.legends li {
    margin-left: 5px;
    margin-right: 5px;
}

.db-details {
    margin-bottom: 5px;
}

.db-details.not-configured {
    color: lightgray;
}

.db-details label {
    margin-bottom: 0;
}

i#togglePassword {
    margin-left: -30px;
    cursor: pointer;
}

.control-password {
    display: inline;
}

#deleteConfirmation .modal-message {
    text-transform: uppercase;
    font-size: 12px;
}

.info-message {
    text-transform: uppercase;
    font-size: 12px;
}

/*#region CHECKBOXES AND RADIOBUTTONS */
.checkbox {
    padding-left: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}

.checkbox.bold label {
    font-weight: bold;
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
}

.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="checkbox"]:focus + input[type="hidden"] + label::before,
.checkbox input[type="radio"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="checkbox"]:checked + input[type="hidden"] + label::after,
.checkbox input[type="radio"]:checked + label::after {
    font-family: "FontAwesome";
    content: "\f00c";
}

.checkbox input[type="checkbox"]:indeterminate + label::after,
.checkbox input[type="checkbox"]:indeterminate + input[type="hidden"] + label::after,
.checkbox input[type="radio"]:indeterminate + label::after {
    display: block;
    content: "";
    width: 10px;
    height: 3px;
    background-color: #555555;
    border-radius: 2px;
    margin-left: -16.5px;
    margin-top: 7px;
}

.checkbox input[type="checkbox"][disabled] + label,
.checkbox input[type="checkbox"][disabled] + input[type="hidden"] + label,
.checkbox input[type="radio"][disabled] + label {
    opacity: 0.65;
}

.checkbox input[type="checkbox"][disabled] + label::before,
.checkbox input[type="checkbox"][disabled] + input[type="hidden"] + label::before,
.checkbox input[type="radio"][disabled] + label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}

.checkbox.checkbox-inline {
    margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="checkbox"]:checked + input[type="hidden"] + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #78e0cb;
    border-color: #78e0cb;
}

.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="checkbox"]:checked + input[type="hidden"] + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
    color: #444444;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="checkbox"]:checked + input[type="hidden"] + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="checkbox"]:checked + input[type="hidden"] + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
    color: #444444;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="checkbox"]:checked + input[type="hidden"] + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="checkbox"]:checked + input[type="hidden"] + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
    color: #444444;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="checkbox"]:checked + input[type="hidden"] + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="checkbox"]:checked + input[type="hidden"] + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
    color: #444444;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="checkbox"]:checked + input[type="hidden"] + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="checkbox"]:checked + input[type="hidden"] + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
    color: #444444;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before,
.checkbox-primary input[type="checkbox"]:indeterminate + input[type="hidden"] + label::before,
.checkbox-primary input[type="radio"]:indeterminate + label::before {
    background-color: #78e0cb;
    border-color: #78e0cb;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::after,
.checkbox-primary input[type="checkbox"]:indeterminate + input[type="hidden"] + label::after,
.checkbox-primary input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::before,
.checkbox-danger input[type="checkbox"]:indeterminate + input[type="hidden"] + label::before,
.checkbox-danger input[type="radio"]:indeterminate + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::after,
.checkbox-danger input[type="checkbox"]:indeterminate + input[type="hidden"] + label::after,
.checkbox-danger input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::before,
.checkbox-info input[type="checkbox"]:indeterminate + input[type="hidden"] + label::before,
.checkbox-info input[type="radio"]:indeterminate + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::after,
.checkbox-info input[type="checkbox"]:indeterminate + input[type="hidden"] + label::after,
.checkbox-info input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::before,
.checkbox-warning input[type="checkbox"]:indeterminate + input[type="hidden"] + label::before,
.checkbox-warning input[type="radio"]:indeterminate + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::after,
.checkbox-warning input[type="checkbox"]:indeterminate + input[type="hidden"] + label::after,
.checkbox-warning input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::before,
.checkbox-success input[type="checkbox"]:indeterminate + input[type="hidden"] + label::before,
.checkbox-success input[type="radio"]:indeterminate + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::after,
.checkbox-success input[type="checkbox"]:indeterminate + input[type="hidden"] + label::after,
.checkbox-success input[type="radio"]:indeterminate + label::after {
    background-color: #fff;
}

.radio {
    padding-left: 20px;
}

.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
}

.radio input[type="radio"]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.radio input[type="radio"]:disabled + label {
    opacity: 0.65;
    cursor: not-allowed;
}

.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed;
}

.radio.radio-inline {
    margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
    background-color: #78e0cb;
}

.radio-primary input[type="radio"]:checked + label::before {
    border-color: #78e0cb;
}

.radio-primary input[type="radio"]:checked + label::after {
    background-color: #78e0cb;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after,
input[type="checkbox"].styled:checked + input[type="hidden"] + label:after,
input[type="radio"].styled:checked + label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

input[type="checkbox"] .styled:checked + label::before,
input[type="checkbox"] .styled:checked + input[type="hidden"] + label::before,
input[type="radio"] .styled:checked + label::before {
    color: #fff;
}

input[type="checkbox"] .styled:checked + label::after,
input[type="checkbox"] .styled:checked + input[type="hidden"] + label::after,
input[type="radio"] .styled:checked + label::after {
    color: #fff;
}

/*#endregion */

/*#region LOADER */

#global-loading {
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 5000;
}

#global-loading svg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -100px;
    background: none;
}

/*#endregion */

/*#region BLOCK */

.block {
    padding: 10px;
    margin: 5px;
    background-color: white;
}

.block .block-title {
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
}

.block .block-sub-title {
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}
.block .block-body{
    margin:10px;
}

/*#endregion */

/*#region DATA TABLES */

.dataTables_wrapper th,
.dataTables_length,
.dataTables_paginate,
.dataTables_info {
    text-transform: uppercase;
    font-size: 11px;
}

table.dataTable tbody tr {
    background-color: white;
}

    table.dataTable tbody tr:nth-child(even) {
        background-color: #f1f1f1;
    }

table.dataTable tbody td {
    vertical-align: middle;
}

table.dataTable th.dt-right,
table.dataTable td.dt-right {
    text-align: right;
}

table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
    text-align: center;
}

div.dataTables_wrapper div.dataTables_processing {
    width: 300px;
    margin-left: -150px;
}

.td-relative {
    position: relative;
}

.dataTables_empty {
    text-transform: uppercase;
    font-size: 12px;
}

div.dataTables_wrapper div.dataTables_filter .row input {
    margin: 0;
    width: 100%;
}

/*#endregion */

/*#region PLACEHOLDERS */

::-webkit-input-placeholder {
    text-transform: uppercase;
    font-size: 12px;
}

:-moz-placeholder {
    text-transform: uppercase;
    font-size: 12px;
}

::-moz-placeholder {
    text-transform: uppercase;
    font-size: 12px;
}

:-ms-input-placeholder {
    text-transform: uppercase;
    font-size: 12px;
}

::placeholder {
    text-transform: uppercase;
    font-size: 12px;
}

/*#endregion */

.table th {
    text-transform: uppercase;
    font-size: 11px;
}

.bottom-actions {
    margin-top: 10px;
    text-align: center;
}

.modal-title {
    text-transform: uppercase;
}

.modal-body .control-label {
    text-transform: uppercase;
    font-size: 12px;
}

.form-group label, .form-group .text {
    margin-top: 7px;
}

.control-label {
    text-transform: uppercase;
    font-size: 11px;
}

label.is-active, label.is-inactive {
    margin-top: 2px;
    margin-bottom: 0;
}

label.is-active:before {
    color: #78e0cb;
    font-family: 'FontAwesome';
    content: "\f00c";
    font-size: 17px;
}

label.audit-statement:before {
    font-family: 'FontAwesome';
    font-size: 17px;
}

label.audit-statement.insert:before {
    color: #78e0cb;
    content: "\f067";
}

label.audit-statement.update:before {
    color: #82A9E2;
    content: "\f044";
}

label.audit-statement.delete:before {
    color: #FDA5B1;
    content: "\f2ed";
}

.file-preview,
.artwork-preview {
    cursor: pointer;
}

.modal-dialog-1000 {
    width: 1000px;
}

.image-preview {
    width: 100%;
}

.logged-user {
    color: #9d9d9d;
    padding: 15px;
    line-height: 20px;
}

.font11 {
    font-size: 11px;
}

.table tr.group {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #cccccc !important;
    font-size: 12px;
}

/*#region SELECT2 */

.select2.select2-container {
    max-width: 100%;
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #cccccc;
    width: 100%;
    z-index: 0;
    color: #000;
    outline: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    line-height: 42px;
}

.select2-container .select2-selection--single {
    height: 34px;
    text-align: left;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 5px 25px 5px 12px;
    line-height: 24px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__clear {
    font-size: 30px;
    font-weight: normal;
    line-height: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px;
    position: absolute;
    top: 1px;
    right: 10px;
    width: 20px;
}

.select2-results__option {
    color: #333e5a;
    padding: 5px 20px;
    border: 1px solid transparent;
    border-left: none;
    border-right: none;
    min-height: 34px;
}

.select2-results__option:first-child {
    border-top: none !important;
}

.select2-results__option:last-child {
    border-bottom: none !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #f1f2f7;
    color: #333e5a;
    border-color: #e3e7f0;
}

.select2-selection--multiple .select2-search__field {
    height: 22px;
    line-height: 22px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: 4px;
    padding: 2px 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: block;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #d9d9d9;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #d9d9d9;
}

.select2-selection__placeholder {
    text-transform: uppercase;
    font-size: 12px;
}

/*#endregion */

/*#region UPLOAD FILES */

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    border: 1px solid #d9d9d9;
    width: 100%;
    z-index: 0;
    color: #000;
    outline: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    height: 34px;
    padding-right: 50px;
    margin-top: 0;
    font-weight: normal;
}

.input-control.file strong {
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    width: 50px;
    position: absolute;
    border-left: 1px solid #ddd;
    text-align: center;
    background: #fff;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
}

.input-control.file strong:hover {
    cursor: pointer;
    opacity: 0.7;
}

.input-control.file strong i {
    font-size: 24px;
    line-height: 32px;
    color: #337ab7;
}

.inputfile + label span {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    line-height: 30px;
}

.inputfile + label span {
    padding: 0 10px;
}

/*#endregion */

.row.metadata {
    background-color: #e0e0e0;
}

/*#region CUSTOM BUTTONS */

.btn-success2 {
    color: #444444;
    background-color: #78e0cb;
    border-color: #73d2bf
}

.btn-success2:hover {
    color: #444444;
    background-color: #54ccb3;
    border-color: #41b59d;
}

.btn-success2:focus,
.btn-success2.focus {
    box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
}

.btn-success2.disabled,
.btn-success2:disabled {
    color: #444444;
    background-color: #78e0cb;
    border-color: #78e0cb
}

.btn-success2:not(:disabled):not(.disabled):active,
.btn-success2:not(:disabled):not(.disabled).active,
.show > .btn-success2.dropdown-toggle {
    color: #444444;
    background-color: #78e0cb;
    border-color: #78e0cb
}

.btn-success2:not(:disabled):not(.disabled):active:focus,
.btn-success2:not(:disabled):not(.disabled).active:focus,
.show > .btn-success2.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
}

.btn-primary2 {
    color: #444444;
    background-color: #82A9E2;
    border-color: #7095cc
}

.btn-primary2:hover {
    color: #444444;
    background-color: #6392d6;
    border-color: #5785c7;
}

.btn-primary2:focus,
.btn-primary2.focus {
    box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
}

.btn-primary2.disabled,
.btn-primary2:disabled {
    color: #444444;
    background-color: #82A9E2;
    border-color: #82A9E2
}

.btn-primary2:not(:disabled):not(.disabled):active,
.btn-primary2:not(:disabled):not(.disabled).active,
.show > .btn-primary2.dropdown-toggle {
    color: #444444;
    background-color: #82A9E2;
    border-color: #82A9E2
}

.btn-primary2:not(:disabled):not(.disabled):active:focus,
.btn-primary2:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary2.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
}

.btn-danger2 {
    color: #444444;
    background-color: #FDA5B1;
    border-color: #dc8893;
}

.btn-danger2:hover {
    color: #444444;
    background-color: #ea8996;
    border-color: #cc7580;
}

.btn-danger2:focus,
.btn-danger2.focus {
    box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
}

.btn-danger2.disabled,
.btn-danger2:disabled {
    color: #444444;
    background-color: #FDA5B1;
    border-color: #FDA5B1
}

.btn-danger2:not(:disabled):not(.disabled):active,
.btn-danger2:not(:disabled):not(.disabled).active,
.show > .btn-primary2.dropdown-toggle {
    color: #444444;
    background-color: #FDA5B1;
    border-color: #FDA5B1
}

.btn-danger2:not(:disabled):not(.disabled):active:focus,
.btn-danger2:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary2.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(91, 194, 194, 0.5)
}

/**/

/*#endregion */

.radio, .checkbox {
    margin-top: 0;
    margin-bottom: 0;
}

ul.navbar-nav li a > img {
    width: 20px;
    height: 20px;
}

span.fa:before {
    margin-right: 0px;
}
+
.nav-tabs {
    border: 0;
    margin-bottom: 20px;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    border: 0;
}

.nav-tabs > li.active > a {
    text-decoration: underline;
}

.nav-tabs > li > a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    border: 0 !important;
    color: lightgray;
}

.nav-tabs > li {
    float: none;
}

.nav-tabs > li > a:hover {
    border: 0;
    background-color: transparent;
}

#wizard.nav > li > a {
    padding: 0;
}

#wizard.nav > li:not(:first-child) > a {
    margin-left: 25px;
}

.nav-tabs li:not(:last-child) a:after {
    font-family: 'FontAwesome';
    font-size: 20px;
    content: "\f105";
    margin: 0 10px;
    position: absolute;
    top: -5px;
}

.fa-spin {
    display: inline-block;
}

.btn-check span {
    margin-right: 5px;
}

span.success {
    color: #78e0cb;
}
span.fail {
    color: #fda5b1;
}

.message {
    text-transform: uppercase;
    font-size: 12px;
    padding: 15px;
    border-radius: 5px;
}

.message.success {
    background-color: #78e0cb;
}

.message.fail {
    background-color: #fda5b1;
}

.database-container label {
    text-transform: uppercase;
    font-size: 12px;
}

.wizard-sub-title {
    font-size: 14px;
    text-transform: uppercase;
}

.wizard-summary-item {
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
    font-size: 12px;
}

.wizard-summary-item .wizard-title {
    font-weight: bold;
}

.wizard-summary-item .wizard-message:before {
    font-family: 'FontAwesome';
    font-size: 20px;
    margin-right: 5px;
    vertical-align: -3px;
}

.wizard-summary-item .wizard-message.success:before {
    color: #78e0cb;
    content: '\f00c';
}

.wizard-summary-item .wizard-message.skipped:before {
    color: #6f6f6f;
    content: '\f068';
}

.wizard-summary-item .wizard-message.failed:before {
    color: #fda5b1;
    content: '\f00d';
}

.file-control-container {
    position: relative;
}

    .file-control-container .file-control-real {
        visibility: hidden;
        position: absolute;
        width: 3px;
        height: 3px;
        margin: 0;
        padding: 0;
    }

    .file-control-container label.file-control-decorator {
        margin-top: 0px;
    }

#agency-logo-preview {
    margin-top: 10px;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.input-group > .input-group-btn>.btn{
    height:34px;
}

.wizard-page .navbar-inverse .navbar-brand {
    color: white;
}

.wizard-page .navbar-inverse {
    background-color: black;
    border-color: black;
}

#guide-container {
    float: right;
    margin-right: 15px;
}

#guide-container a {
    color: #9d9d9d;
}

#guide-container a:hover {
    color: #ffffff;
}

#guide-container a:before {
    font-family: 'FontAwesome';
    font-size: 20px;
    content: "\f059";
    position: absolute;
    left: -10px;
    top: 10px;
}

@media (min-width: 768px) {
    #guide-container a:before {
        top: 15px;
    }
}