
* {
  box-sizing: border-box;
}

body {
    font-family: Lato,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
    overflow-x: hidden;
    color: #51616d;
    background-color: #eef2f5;
    margin: 0;
    padding: 0;
}

.container {
  padding-left: 5em;
  padding-right: 5em;
  display: flex;
  justify-content: space-between;
}

.content {
  background-color: white;
  padding: 10px 0;
  box-shadow: rgba(61, 74, 84, 0.12) 0px 4px 12px 0px, rgba(61, 74, 84, 0.06) 0px 4px 16px 0px;
}

.containerBody{
  flex-direction: column;
}

.logo {
  height: 30px;
}

.authentication_buttons {
  align-self: center;
}

.top_bar div ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top_bar div ul li:not(:last-child) {
  margin-right: 16px;
}

.navigation-btn {
  padding: 3px 6px;
  color: #51616d;
  border: 1px solid gray;
  border-radius: 4px;
  text-decoration: none;
}

.navigation-btn a{
  color: inherit;
  text-decoration: none;
}

.navigation-btn:hover, .navigation-btn a:hover {
  border-color: red;
  color: red;
}

.nav-container {
  display: flex;
  margin-top: 20px;
  height: 49px;

  align-items: center;
}

.spacer {
  width: 25%;
  height: 100%;
  border-bottom: 1px solid #627583;
  flex-grow: 2;
}

.tab-container {
  margin: 0 auto;
  height: 100%;
}

.nav-tabs {
  display: flex;
  list-style: none;
  margin: 0;
}

.nav-tabs li:not(:last-child){
  margin-right: 4px;
  padding-right: 4px;
  border-right: 1px solid gray;
}

.nav-tabs li a{
  text-decoration: none;
}

.nav-tabs li a:visited{
  color: black;
}

.nav-tabs li a:hover{
 text-decoration: underline;
}

.dashboardLinks {
  display: flex;
  list-style: none;
  background-color: #eef2f5;
  text-align: left;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1em;
  font-size: 1.2rem
}

.dashboardLinks li{
  padding: 0 30px;
  border-bottom: 1px solid #627583;
  background-color: #f6fafb;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 17px;
}

.dashboardLinks a, .dashboardLinks strong {
  text-decoration: none;
}

.dashboardLinks a {
  background-color: #f6fafb;
}

.dashboardLinks a:hover {
  text-decoration: underline;
}

.dashboardLinks a:visited {
  color: black
}

.selected {
  border-bottom: none !important;
  background-color: #eef2f5 !important;
  border-right: 1px solid #627583;
  border-left: 1px solid #627583;
  border-top: 5px solid #7b8e9d;
}

.frameDisplay {
  height: 3194px;
  width: 1200px;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
}


.filters form {
  display: flex;
  padding: 8px;
  align-items: center;
  width: 1200px;
  justify-content: flex-end;
  margin: 0px auto;
}

.filters label, .filters select, .filters button {
  margin-right: 22px;
}

.filters select {
  /* styling */
  background-color: transparent;
  border-radius: 4px;
  display: inline-block;
  padding: 0.5em 3.5em 0.5em 1em;

  /* reset */
  /* margin: 0; */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 14px) calc(1em ),
    calc(100% - 9px) calc(1em),
    calc(100% - 2.5em) 0.4em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;

}

.filters select:hover {
  color: #0aa7b9;
  border-color: #0aa7b9;
  background-image:
    linear-gradient(45deg, transparent 50%, #0aa7b9 50%),
    linear-gradient(135deg,#0aa7b9 50%, transparent 50%),
    linear-gradient(to right, #0aa7b9, #0aa7b9);
}

.filters option {
  margin: 5px 6px;
}

.submitBtn {
  background-color: transparent;
  border: 1px solid #b8c9d7;
  padding: 5px 6px;
  border-radius: 4px;
  color: #51616d;
}

.submitBtn:hover {
  border-color: #0aa7b9;
  color: #0aa7b9;
}

.loginContiner {
  background-image: url('../images/login.png');
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: row-reverse;
  display: flex;
  box-sizing: border-box;
  height: 100vh;
  width: 100vw;
}

.loginForm {
  width: 35%;
  height: 100%;
  align-self: center;
  background-color: white;
  padding: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loginForm input {
  width: 100%;
  height: 30px;
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid gray;
  padding: 1px 5px;
}

.loginForm input:focus {
  border: 1px solid black;
  outline: none;
}

.loginForm input {
  width: 100%;
  height: 30px;
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid gray;
}

footer {
  padding: 0 15px;
  height: 40px;
  position: static;
  bottom: 0;
  background-color: white;
  display: flex;
  align-items: center;
}

footer p {
  margin: 0;
}