html, body {
  height: 100%;
}
@font-face {
  font-family: titillium;
  src: url('/include/fonts/titillium/TitilliumWeb-Regular.ttf');
}
body {
  font-family: titillium, Arial;
  font-size: 18px;
  line-height: 1.7;
}
a,
a:link,
a:visited,
a:hover,
a:active {
  color: white;
}
.full-height {
  height: 100%;
}
img, svg {
  vertical-align: middle;
  margin: auto;
}
.logo {
  filter: brightness(0) invert(1);
  width: 80%;
  margin: auto;
}
.block {
  display: flex;
  justify-content: center;
  align-items: center;
}
#spinner {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
}
.spinner_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  'width: 100%;
  'height: 100%;
  'text-align: center;
  'display:table-cell;
  'vertical-align:middle;
  'opacity: 1;
  'background-color: white;
}
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #9A0722;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.info-box {
  display: block;
  min-height: 110px;
  background-color: #ffffff;
  width: 100%;
  padding: 0px;
  margin-bottom: 10px;
}
.info-box small {
  font-size: 14px;
}
.info-box-icon {
  display: block;
  float: left;
  height: 110px;
  width: 110px;
  text-align: center;
  line-height: 110px;
}
.box-icon {
  width: 110px;
}
.info-box-content {
  padding: 0px 10px;
  margin-left: 110px;
  line-height: 1.2 !important;
}
.info-box-text {
  text-transform: uppercase;
  line-height: 1.2 !important;
}
.search{
  position: relative;
}
.search input{
  height: 60px;
  text-indent: 35px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
}
.search input:focus{
  box-shadow: none;
  border: 2px solid #b0b0b0;
}
.search .fa-search{
  position: absolute;
  top: 20px;
  left: 16px;
}
.search button{
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  width: 100px;
  border-radius: 50px;
}
