html,
body {
    height: 100%;
    background-color: #f0f5fa;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -70px;
    padding: 0 0 70px;
}

.wrap nav {
    padding-bottom: 0px;
    padding-top: 0px;
}

@media(min-width:1300px) {
    .container {
        max-width: 1540px;
    }
}

.wrap > .container {
    padding: 40px 15px 20px;
}

.footer {
    height: 70px;
    background-color: #fff;
    /*background-color: #f5f5f5;
    border-top: 1px solid #ddd;*/
    /*margin-top: 25px;*/
}

.footer-copy {
    margin-top: 25px;
}

.footer-info {
    margin-top: 16px;
    font-size: 13px;
}

.jumbotron {
    text-align: center;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
   content: "";
    display: inline-block;
    background-repeat: no-repeat;
    width: 10px;
    height: 12px;
    margin-left: 7px;
}

a.asc:after {
    background-image: url("../img/icons/sort-asc.svg");
}

a.desc:after {
    content: url("../img/icons/sort-desc.svg");
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding: 15px;
    border: none;
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }

    .navbar .nav-item {
        border-left: none !important;
        padding: 5px 5px 5px 5px !important;
    }

    .navbar ul {
        border-right: none !important;
    }
}

@media(max-width:1750px) {
    .dropdown-menu {
        right: 0;
        left: auto;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.navbar div.navbar-collapse {
    justify-content: flex-end !important;
}

.navbar div.container {
    padding-right: 0px;
}

.navbar ul {
    border-right: 1px grey solid;
}

.navbar .navbar-brand {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 26px;
}
.navbar-brand img{
    width: 700px;
    height: auto;
}

.navbar .nav-item {
    border-left: 1px grey solid;
    padding: 17px 10px 17px 10px;
}

.navbar .nav-link .fas {
    font-size: 18px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

#loadingControl {
    height: 0em;
    overflow: visible;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#loadingControl div {
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 70px;
    height: 70px;
}

div.disabled {
    pointer-events: none;

    /* for "disabled" effect */
    opacity: 0.5;
    background: #fff;
}

.hidden {
    display: none;
}

.table th, .table td {
    padding: 0.3rem;
}

#reservationsTable th, #reservationsTable td, #carsTable th, #carsTable td, #notesTable th, #notesTable td{
    padding: 0.5rem;
}
table thead th.sorting {
    padding: 0.5rem;
    color:#4096f4;
    cursor: pointer;
}

#notesTable {
    font-size: 12.5px;
}

.table a {
    color: #4096f4;
}

.table thead th {
    border-bottom: 2px solid #4096f4;
    background-color: #f0f5fa;
    vertical-align: top;
}

.pagination > li.active > a {
    color: #fff;
    background-color: #4096f4;
    border-color: #4096f4;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}



.volvo-loader,
.volvo-loader:after {
  border-radius: 50%;
  width: 11em !important;
  height: 11em !important;
}

.volvo-loader {
  margin: 50px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(64, 150, 244, 0.2);
  border-right: 1.1em solid rgba(64, 150, 244, 0.2);
  border-bottom: 1.1em solid rgba(64, 150, 244, 0.2);
  border-left: 1.1em solid #4096f4;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  z-index: 10;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.btn-sm, .btn-group-sm > .btn{
    padding: 0.2rem 0.35rem;
    font-size: 0.875rem;
    line-height: 1.2;
    border-radius: 0.2rem;
}

.alertify-notifier.ajs-bottom {
    bottom: 100px;
}

.alertify-notifier.ajs-top {
    top: 100px;
}

#ruleTable .fs-20 {
    font-size: 20px;
    margin-top: 5px;
}

.select2-search__field {
    min-width: 100px !important;
}

.reasonSelect {
    margin-left: 4px;
}

.reasonRequired {
    color: rgba(217,92,92,.95);
    border: 1px solid rgba(217,92,92,.95);
}

.reasonPRequired, .commentPRequired {
    color: rgba(217,92,92,.95);
}

.extra_commentRequired {
    border: 1px solid rgba(217,92,92,.95) !important;
}

.commentPHelp {
    color: rgba(217,92,92,.95);
    font-size: 11px;
    font-weight: bold;
    margin-left: 4px !important;
    display: none;
}

.csvIcon {
    color: green;
    cursor: pointer;
}

#cal2IconExport {
    padding-left: 21px;
    padding-right: 21px;
}

#cal1IconExport, #cal2IconExport {
    cursor: pointer;
}

.fromInputGroup, .toInputGroup {
    margin-top: 5px;
    padding-right: 40px;
    padding-left: 40px;
}

.csvIconDiv {
    display: none;
}

.emergencyServiceColor{
    background-color: #FFFF00;
}

.dropdown-toggle span.caret {
    display: none;
}
ul.yii-export li {
    list-style: none;
}