/* Beginning of CSS for spinning the icon */
.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* End of CSS for spinning the icon */

.highlight {
  background-color: yellow;
}

.ReportViewer {
  border: 1px solid grey;
  margin-top: 4em; /* adjusts the top of the report viewer to not be hidden from this default ASP.NET MVC Template - you probably don't need this */
}

.ReportViewerHeader {
  background-color: #ECE9D8;
  width: 100%;
  display: inline-block;
  padding: 0em;
}

.ReportViewerError {
  color: #ff0000;
  font-weight: bold;
  font-size: 120%;
  margin: 1em;
}

.ReportViewerInformation {
  color: #000;
  font-weight: bold;
  font-size: 120%;
  margin: 1em;
}

.ParametersContainer, .ReportViewerToolbar {
  border-bottom: 1px solid #ccc;
  display: flex;
  align-content: center;
}

.ParametersContainer {
  overflow: hidden;
}

.Parameters {
  border-right: 1px solid #ccc;
  padding: .5em;
  display: flex;
  align-content: center;
}

.Parameter .col-sm-4 {
  text-align: right;
  padding-top: .5em;
}

.Parameter input, .Parameter select {
  width: 100% !important;
}

  .Parameter input.hasDatepicker {
    width: 80% !important;
    margin-right: 5px;
  }

.Parameter.col-md-6.col-sm-12 {
  display: flex;
  gap: 1rem;
}

  .Parameter.col-md-6.col-sm-12 .col-sm-8 {
    display: flex;
  }

.PagerNumbers .form-control {
  width: 4em;
}

.SearchText .form-control {
  width: 6em;
}

.SearchText {
  margin: auto 2em;
}

  .SearchText a {
    float: none !important;
  }

.PagerNumbers {
  padding: 0em .5em;
  display: inline-block;
}

.ReportViewerPager {
  padding: .5em 0em;
}

.ReportViewerViewReport {
  padding-top: .5em;
}

span a[disabled=disabled] {
  color: grey;
}

.loadingContainer i {
  margin-right: .5em;
}

.Print, .Refresh, .dropdown-toggle > .fa-floppy-o {
  font-size: 2rem;
}

.dropdown-toggle[title="Export"] {
  display: flex !important;
}

.btn-group {
  display: flex;
  align-items: center;
}

.PagerNumbers, .SearchText {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  text-decoration: none;
}

  .dropdown-menu > li > a {
    font-size: 16px;
    color: #777;
    text-decoration: none;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    /*   color: #333; */
    white-space: nowrap;
  }

.open > .dropdown-menu {
  display: block;
}
