﻿/*
1600 X 900 ~ WideScreen
1366 X 768 ~ BigLaptop
1280 X 768 ~ MedLaptop
1024 X 768 ~ SmlLaptop
 414 X 736 ~ Mobile (iPhone 6,7,8,X, Pixel, Galaxy S5,  )
 320 X 568 ~ SmlMobile (iPhone 5/SE)
*/
/* 
    $breakpoint argument choices:

    -WideScreen
    -BigLaptop
    -MedLaptop
    -SmlLaptop
    -LgMobile
    -MdMobile
    -Mobile
    -SmlMobile
*/
html {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2)), url("../Images/EV-Refresh.png");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  padding: 0;
}
body header {
  /*        @include display-flex;
  @include justify-content(flex-end);
  @include align-items(flex-end);
  max-width: 100%;
  height: 12vh;*/
  background-color: white;
  border-bottom: 1px solid #0083ad;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}
body header .logo-link {
  display: flex;
}
body header.center {
  -ms-flex-pack: center;
  -webkit-align-content: center;
  justify-content: center;
}
@media (max-width: 960px) {
  body header {
    justify-content: center;
    padding: 0.5rem;
  }
  body header .logo {
    height: 3rem;
  }
}
body header #header-image {
  margin-bottom: 0.5rem;
  width: auto;
  height: auto;
  text-align: center;
}
@media (min-width: 960px) {
  body header #header-image {
    margin-right: 1.5rem;
  }
}
@media (max-width: 960px) {
  body header #header-image {
    width: 100vw;
    max-width: 700px;
    margin: 0.25rem;
  }
}
@media (max-width: 20em) {
  body header #header-image {
    width: inherit;
  }
}
body footer {
  /*        @include display-flex;
  @include justify-content(space-around);
  max-width: 100%;
  height: 12vh;*/
  background-color: #0083ad;
  border-top: 1px solid #f6f6f6;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  min-height: 10vh;
}
body footer a {
  color: #ffffff;
  text-decoration: none;
}
body footer a:visited {
  color: #ffffff;
  text-decoration: none;
}
body footer a:hover {
  color: #ffffff;
  text-decoration: none;
}
body footer a:focus {
  color: #ffffff;
  text-decoration: none;
}
body footer a:hover, body footer a:active {
  color: #bfbfbf;
  text-decoration: none;
}
body footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-align-content: space-between;
  justify-content: space-between;
  width: 460px;
  border-top: none;
}
@media (max-width: 960px) {
  body footer {
    height: auto;
  }
  body footer div {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 0 1.5rem 0;
  }
}
body footer .footer-styles {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
body main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  -webkit-align-content: space-around;
  justify-content: space-around;
  -ms-flex-align: center;
  -webkit-flex-item-align: center;
  align-items: center;
  padding: 0.5rem;
}
@media (max-width: 960px) {
  body main {
    width: 100%;
  }
}
body main .form-group {
  width: 30rem;
}
@media (max-width: 960px) {
  body main .form-group {
    width: 100%;
  }
}
body main .form-group-row {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
