﻿@font-face {
  font-family: "Roboto";
  src: url("/Fonts/RobotoRegular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("/Fonts/RobotoMedium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("/Fonts/RobotoLight.woff2") format("woff2");
  font-weight: 300;
}
.bar {
  border-top: 1px #000 solid;
  height: 20px;
  width: 100%;
  position: relative;
}
.bar .bar-indicator {
  position: absolute;
  z-index: 20;
  background-color: #007CB2;
  height: 6px;
  margin-top: -4px;
}

body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
  position: relative;
}

.page-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url("/Images/HomePageBackground.jpg") no-repeat center center;
  background-size: cover;
  z-index: -100;
}

header {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 100;
  padding: 30px 0;
  max-height: 200px;
  min-height: 200px;
  height: 200px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  transition: 0.4s;
}
header .header-items {
  padding-top: 34px;
  display: flex;
  align-items: center;
}
header .header-items .logo img {
  height: 100px;
}
header .header-items .info {
  margin-left: auto;
  display: flex;
  align-items: center;
}
header .header-items .info .info-item {
  margin-right: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
}
header .header-items .info .info-item:last-of-type {
  margin-right: 0;
}
header .header-items .info .info-item a {
  color: #fff;
  text-decoration: none;
}
header .header-items .info .info-item a:hover {
  color: #d7d7d7;
}
header .header-items .info .info-item i {
  margin-right: 8px;
  font-size: 30px;
}
header.small {
  padding: 0;
  max-height: 100px;
  min-height: 100px;
  height: 100px;
  background: #007CB2;
}
header.small .header-items .logo {
  padding: 0;
}
header.small .header-items .logo img {
  height: 45px;
}
header.small .header-items .info .info-item .text-item {
  display: none;
}

nav {
  background-color: #007CB2;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
nav .menu-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .menu-bar-wrapper .menu-container a {
  margin-right: 10px;
}
nav .menu-bar-wrapper .menu-container a:last-of-type {
  margin-right: 0;
}
nav .menu-bar-wrapper .user-bar-container {
  display: flex;
  align-items: center;
}
nav .menu-bar-wrapper .user-bar-container .user-detail {
  margin-right: 10px;
}

section {
  box-sizing: border-box;
  padding: 50px 0;
}

.site-button {
  font-size: 16px;
  font-weight: 600;
  background-color: #007CB2;
  color: #fff;
  border: 1px #007CB2 solid;
  padding: 7px 15px;
  border-radius: 4px;
  transition: 0.4s;
}
.site-button:hover {
  background-color: #76d9ff;
  color: #444;
}

.menu-button {
  font-size: 14px;
  font-weight: 600;
  background-color: #76D9FF;
  color: #888;
  border: 1px #76D9FF solid;
  padding: 5px 10px;
  border-radius: 4px;
  transition: 0.4s;
  text-decoration: none;
}
.menu-button:hover {
  background-color: #007CB2;
  color: #fff;
}

#ajaxLoading {
  color: #000;
  font-weight: normal;
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  border: 2px #007CB2 solid;
  background-color: #fff;
  padding: 20px 20px 10px 20px;
  border-top-right-radius: 20px;
}
#ajaxLoading #ajaxMessage {
  padding-left: 20px;
}

.spinner {
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 9px solid #007CB2;
  animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
}

@keyframes spinner-bulqg1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes spinner-oaa3wk {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
