﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.ae-form-inline.form-inline .form-group {
    flex-direction: column !important;
    align-items: start !important;
}
@media (max-width: 576px) {
    .ae-form-inline.form-inline {
        display: block;
    }
}
/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 12px;
}
@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px !important;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

/*From old site*/
.table td {
    padding: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.table.table-wrap td {
    overflow: initial;
    text-overflow: initial;
    white-space: initial;
}

.table caption {
    font-size: 16px;
    font-weight: bold;
}
.ae-scroll {
    overflow-x: auto;
}
    .ae-scroll .fl-scrolls {
        z-index: 10;
    }
.input-group.date .input-group-addon {
    padding: 6px 12px;
    line-height: 20px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px 0px 0px 4px;
    border-right: 0px;
}

caption {
    caption-side: top;
}

.field-validation-error, .validation-summary-errors {
    color: var(--danger);
}

.max-width-350 {
    max-width: 350px;
}

.pagination > li > .page-link {
    background-color: white;
    color: var(--dark);
}

.pagination > li > .page-link:focus,
.pagination > li > .page-link:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    color: var(--dark);
    background-color: #eee;
    border-color: #ddd;
}

.pagination > .active > .page-link {
    color: white;
    background-color: var(--dark);
    border: solid 1px var(--dark);
}

    .pagination > .active > .page-link:hover {
        color: white;
        background-color: var(--dark);
        border: solid 1px var(--dark);
    }

.table tr td .bootstrap-datetimepicker-widget {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-50%);
}
/*------------ loading indicator-------------*/
#ajax-loading-indicator {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 20000;
}

#ajax-loading-indicator-text {
    -ms-transform: translate(-50%, -50%);
    color: #46E8BD;
    font-size: 50px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
/*------------end loading indicator-------------*/
#loading-indicator {
    position: fixed; /* or absolute */
    top: 50%;
    left: 50%;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #101010;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}