@font-face {
  font-family: avenir;
  src: url("../fonts/Avenir-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: avenir;
  src: url("../fonts/Avenir-Heavy.ttf");
  font-weight: 600;
}

@font-face {
  font-family: avenir;
  src: url("../fonts/Avenir-Black.ttf");
  font-weight: 700;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: avenir;
  scroll-behavior: smooth;
}

header {
  position: relative;
  background: url("../images/section-bg-desktop.webp") 0% 0% / cover no-repeat;
  height: 100vh;
  overflow: hidden;
}

header::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.465);
  z-index: 0;
}

/**
header::before {
  top: 80px;
  transform: rotate(-2deg);
  width: 110%;
  height: 50%;
}
*/

header::after {
  bottom: 15%;
  transform: rotate(1.5deg);
  width: 115%;
  height: 100%;
  margin-left: -10%;
}

.logo img {
  width: 60px;
  height: 60px;
}
.bar {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.bar i {
  font-size: 30px;
  color: rgb(255, 255, 255);
  cursor: pointer;
}

.title h3 {
  font-size: 26px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin: 0px;
  padding-left: 20px;
}

.dropdown-wrapper {
  width: 300px;
  margin: auto;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -35%);
  z-index: 2;
}

.dropdown-title {
  background: rgb(15, 64, 144);
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
  padding: 5px;
}

.dropdown-title h2 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: rgb(255, 255, 255);
  margin: 0px;
}

.dropdown-nav {
  position: relative;
}

.dropdown-select {
  background: rgb(235, 235, 235);
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
  padding: 8px 15px;
}

.dropdown-select a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.dropdown-select a span {
  font-size: 16px;
  font-weight: 500;
  color: rgb(0, 0, 0);
}

.submenu {
  position: absolute;
  width: 100%;
  background: rgb(235, 235, 235);
  margin-top: 10px;
  padding: 10px 10px;
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
  display: none;
  max-height: 190px;
  overflow-y: scroll;
}

.submenu.active {
  display: block;
}

.submenu ul {
  padding: 0px;
}

.submenu ul li {
  list-style: none;
  padding: 10px 5px;
  transition: all 0.3s ease-in-out 0s;
}

.submenu ul li:hover {
  background: rgb(219, 219, 219);
  border-radius: 5px;
}

.submenu ul li a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.submenu ul li a img {
  width: 25px;
  margin-right: 5px;
}

.weather-container {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  position: relative;
  padding-bottom: 10px;
  padding-right: 10px;
  z-index: 22;
}

nav ul {
  margin: 20px 20px 0px;
  list-style-type: none;
  padding: 0px;
  display: flex;
  flex-direction: row;
}

nav li a {
  display: block;
  width: 50px;
  text-align: center;
  color: rgb(170, 170, 170);
  cursor: pointer;
}

nav li a:hover {
  color: rgb(68, 68, 68);
}

nav li a.active {
  color: rgb(0, 115, 208);
}

#card {
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
  overflow: hidden;
  width: 100%;
  padding: 0px;
  height: 35vh;
  min-height: 35vh;
  border-radius: 2px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#card .details {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 5px 15px;
  color: rgb(136, 136, 136);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: color 2s ease 0s;
}

.thunder #card .details {
  color: rgb(221, 221, 221);
}

#card .details .right {
  text-align: right;
}

#card .details #date {
  margin: 4px 0px;
}

#card .details #summary {
  font-weight: 600;
  font-size: 22px;
}

#card .details .temp {
  font-size: 50px;
  line-height: 60px;
}

#card .details .temp span {
  font-size: 18px;
  line-height: 30px;
  vertical-align: top;
  margin-left: 5px;
}

#card .bottom {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 16px 20px;
  color: black;
  flex-direction: row;
  justify-content: space-between;
  transition: color 2s ease 0s;
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
}

.thunder #card .bottom {
  color: rgb(45, 45, 45);
}

#card .bottom .right {
  text-align: right;
}

#card .bottom .left {
  text-align: left;
}


#card .bottom #date {
  margin: 0px;
  margin-bottom: -7.5px;
}

#card .bottom #summary {
  font-weight: 600;
  font-size: 22px;
}

#card .bottom .temp {
  font-size: 60px;
  line-height: 60px;
}

#card .bottom .temp span {
  font-size: 18px;
  line-height: 30px;
  vertical-align: top;
  margin-left: 5px;
}

.weather {
  background-color: rgb(218, 227, 253);
  transition: background-color 2s ease 0s;
}

.thunder .weather {
  background-color: rgb(159, 164, 173);
}

.rain .weather {
  background-color: rgb(216, 216, 216);
}

.sun .weather {
  background-color: rgb(204, 204, 255);
}

.weather #inner {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.5) 10%,
    rgba(255, 255, 255, 0.1) 30%
  );
}

.weather .cloud {
  transition: fill 2s ease 0s;
}

.weather #cloud1 {
  fill: rgb(239, 239, 239);
}

.thunder .weather #cloud1 {
  fill: rgb(159, 164, 173);
}

.weather #cloud2 {
  fill: rgb(230, 230, 230);
}

.thunder .weather #cloud2 {
  fill: rgb(139, 142, 152);
}

.weather #cloud3 {
  fill: rgb(213, 213, 213);
}

.thunder .weather #cloud3 {
  fill: rgb(123, 121, 136);
}

#outer,
#back {
  position: fixed;
  pointer-events: none;
}

.weather-header {
  height: 100vh;
}

.weather-content-wrapper {
  margin: auto;
  position: relative;
  padding-top: 25px;
  z-index: 1;
}

.weather-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-top img {
  width: 45px;
}

.weather-top-btn a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: rgb(255, 255, 255);
  background: rgb(15, 64, 144);
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
  padding: 2px 10px;
  margin: 0px;
}

.weather-right-box .box {
  position: relative;
  display: block;
  width: 95%;
  height: 16.5vh;
  background: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
  margin-left: auto;
  margin-right: 0;
}

.bottom-box .box {
  position: relative;
  display: block;
  width: 100%;
  height: 26vh;
  background: rgb(235, 235, 235);
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
  margin-top: 1.5vh;
  z-index: 1;
}
rect {
  width: 100% !important;
}
#outer {
  width: 150% !important;
  height: 100% !important;
  z-index: 4;
}

.sidebar-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 70px;
  height: 100vh;
  background: rgb(15, 64, 144);
  z-index: 100;
}

#sidebar {
  position: fixed;
  top: 0;
  left: -75px;
  height: 100%;
  transition: left 0.5s ease-in-out;
}

#sidebar.active {
  left: 0;
}

.sidebar-logo img {
  width: 45px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.sidebar-menu ul {
  padding: 0px;
  text-align: center;
}

.sidebar-menu li {
  list-style: none;
  padding: 15px 0px;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.sidebar-menu li.active {
  background: rgb(0, 115, 208);
}

.sidebar-menu li i {
  font-size: 25px;
  color: rgb(255, 255, 255);
}

.sidebar-profile {
  position: absolute;
  bottom: 30px;
}

.sidebar-profile img {
  width: 40px;
  border-radius: 100%;
}

.sidebar-profile i {
  color: rgb(255, 255, 255);
}
.bottom-button-wrapper::after {
  position: absolute;
  content: "";
  width: 115%;
  height: 100px;
  background: rgba(255, 255, 255, 0.59);
  left: -10%;
  bottom: -50px;
  transform: rotate(-1.5deg);
  z-index: 1;
}

.bottom-btn {
  position: absolute;
  bottom: 28px;
  z-index: 2;
}

.bottom-btn a {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: rgb(255, 255, 255);
  background: rgb(15, 64, 144);
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 5px;
  padding: 2px 10px;
  margin: 0px;
}
.bottom-btn a:hover {
  background: rgb(0, 115, 208);
  transition: 0.2s;
}
.sidebar-menu li:hover {
  background: rgb(0, 115, 208);
  transition: 0.2s;
}
.nav::after {
  content: "";
  width: 115%;
  height: 230px;
  position: absolute;
  top: -168px;
  margin-left: -10%;
  background: rgb(15, 64, 144);
  transform: rotate(-1.5deg);
  z-index: 1;
}
.container {
  z-index: 2;
}

@media (min-width: 768px) {
  div#sidebarToggle2 {
    display: none;
  }
}
@media (max-width: 768px) {
  body.sb-sidenav-toggled div#sidebarToggle2 {
    display: none !important;
  }
  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav #sidebarToggle2 {
    display: flex !important;
  }
}

#sidebarToggle.active {
  display: block;
}
#sidebarToggle {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: fixed;
  top: 450;
  right: 0;
  left: 70px;
}
.weather-top-btn {
  color: white;
}
.weather-top > img {
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
}
.bottom-logo {
  position: absolute;
  bottom: 1vh;
  z-index: 2;
  padding-left: 75%;
}
@media (min-width: 500px) {
  .bottom-logo {
    padding-left: 80% !important;
  }
}
@media (min-width: 575px) {
  .bottom-logo {
    padding-left: 75% !important;
  }
}
@media (min-width: 625px) {
  .bottom-logo {
    padding-left: 68% !important;
  }
}
@media (min-width: 825px) {
  .bottom-logo {
    padding-left: 65% !important;
  }
}
@media (min-width: 925px) {
  .bottom-logo {
    padding-left: 60% !important;
  }
}
@media (min-width: 1025px) {
  .bottom-logo {
    padding-left: 52% !important;
  }
}
@media (min-width: 1125px) {
  .bottom-logo {
    padding-left: 52% !important;
  }
}
@media (min-width: 1525px) {
  .bottom-logo {
    padding-left: 47% !important;
  }
}
@media (min-width: 1925px) {
  .bottom-logo {
    padding-left: 45% !important;
  }
}
@media (min-width: 2025px) {
  .bottom-logo {
    padding-left: 40% !important;
  }
}
@media (min-width: 2225px) {
  .bottom-logo {
    padding-left: 35% !important;
  }
}
@media (min-width: 2525px) {
  .bottom-logo {
    padding-left: 34% !important;
  }
}

g > path {
  width: 100%;
}
.compass-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
}

.gauge-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
}
