﻿.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  transition: opacity 0.5s ease-out 0s; }

.overlay.cloak {
  opacity: 0;
  z-index: -1; }

.overlay .loader {
  display: inline-block;
  position: absolute;
  width: 64px;
  height: 64px;
  top: 50%;
  margin-top: -32px;
  left: 50%;
  margin-left: -32px; }

.overlay .loader div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px; }

.overlay .loader div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #666;
  margin: -3px 0 0 -3px; }

.overlay .loader div:nth-child(1) {
  animation-delay: -0.036s; }

.overlay .loader div:nth-child(1):after {
  top: 50px;
  left: 50px; }

.overlay .loader div:nth-child(2) {
  animation-delay: -0.072s; }

.overlay .loader div:nth-child(2):after {
  top: 54px;
  left: 45px; }

.overlay .loader div:nth-child(3) {
  animation-delay: -0.108s; }

.overlay .loader div:nth-child(3):after {
  top: 57px;
  left: 39px; }

.overlay .loader div:nth-child(4) {
  animation-delay: -0.144s; }

.overlay .loader div:nth-child(4):after {
  top: 58px;
  left: 32px; }

.overlay .loader div:nth-child(5) {
  animation-delay: -0.18s; }

.overlay .loader div:nth-child(5):after {
  top: 57px;
  left: 25px; }

.overlay .loader div:nth-child(6) {
  animation-delay: -0.216s; }

.overlay .loader div:nth-child(6):after {
  top: 54px;
  left: 19px; }

.overlay .loader div:nth-child(7) {
  animation-delay: -0.252s; }

.overlay .loader div:nth-child(7):after {
  top: 50px;
  left: 14px; }

.overlay .loader div:nth-child(8) {
  animation-delay: -0.288s; }

.overlay .loader div:nth-child(8):after {
  top: 45px;
  left: 10px; }

@keyframes lds-roller {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.blurred {
  filter: blur(2px); }

@-webkit-keyframes spin {
  0%, 100% {
    box-shadow: 10px 10px #4f4d49, -10px 10px #dfdfdf, -10px -10px #4f4d49, 10px -10px #dfdfdf; }
  25% {
    box-shadow: -10px 10px #dfdfdf, -10px -10px #4f4d49, 10px -10px #dfdfdf, 10px 10px #4f4d49; }
  50% {
    box-shadow: -10px -10px #4f4d49, 10px -10px #dfdfdf, 10px 10px #4f4d49, -10px 10px #dfdfdf; }
  75% {
    box-shadow: 10px -10px #dfdfdf, 10px 10px #4f4d49, -10px 10px #dfdfdf, -10px -10px #4f4d49; } }

/* react-pager */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }

.pagination > li {
  display: inline; }

.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; }

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px; }

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd; }

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7; }

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none; }

.pager li {
  display: inline; }

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px; }

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee; }

.pager .next > a,
.pager .next > span {
  float: right; }

.pager .previous > a,
.pager .previous > span {
  float: left; }

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff; }

.btn-numbered-page.active {
  color: #FFF !important;
  font-weight: bold; }

/* end of react-pager*/
.ta-right {
  text-align: right; }

.mb-2 {
  margin-bottom: 5px; }

.mb-3 {
  margin-bottom: 15px; }

.w-100pc {
  width: 100%; }

.mox-search label {
  display: block;
  font-weight: normal !important; }

.mox-search label span {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold; }

.mox-results {
  text-align: left !important; }

.mox-results .mox-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
  margin-top: 25px; }

.mox-results .mox-item .area {
  color: #A93226;
  font-size: 1.15em; }

.mox-results .mox-item .title {
  color: #2E86C1;
  font-size: 1.2em;
  line-height: 1.2; }

.mox-results .mox-item .author {
  font-size: 1.1em;
  line-height: 1.3; }

.mox-results .mox-item .desc {
  font-size: 0.9em;
  line-height: 1.2; }

.mox-results .mox-item .footer {
  font-style: italic;
  font-size: 0.95em;
  color: #333; }

.mox-results .mox-item .download {
  font-size: 1.2em;
  margin-bottom: 25px;
  margin-top: 15px; }

.mox-results .mox-item .download i.fa {
  margin-right: 10px; }

.mox-results .mox-item > div {
  margin-bottom: 10px; }

.pdf {
  color: #F40F02; }

.link-auth {
  color: darkgreen;
  display: block;
  font-size: 0.9em; }

.highlight {
  background-color: #FFF176 !important;
  color: #000; }
