:root {
  --blue: #10828c;
  --orange: #eba10c;
  --white: #ffffff;
  --black: #000000;
  --light-grey: #efefef;
  --light-blue: #aacfd3;
  --light-orange: rgba(235, 161, 12, 0.75);
  --medium-blue: #4ca1a9;
  --dark-grey: #676464;
  --body-fonts: "Roboto";
  --logo-fonts: "Sansation", sans-serif;
  --font-size-heading: 2.6vw;
  --font-size-subheading: 1.5vw;
  --font-size-bodytext: 1.2vw;
  --font-size-nav: 50px;
  --font-size-nav-active: 60px;
}

body {
  padding: 0;
  margin: 0;
}
/*LAUNDRY STYLING*/
.laundry-page {
  display: flex;
  flex-direction: row;
}

.main-navigation {
  width: 22vw;
  height: 100vh;
  background-color: var(--blue);
  margin-top: 0vw;
  padding-top: 0.5vw 1vw 0vw 0vw;
  display: flex;
  flex-direction: column;
  position: fixed;
}

.navigation-dateandtime {
  font-family: var(--body-fonts);
  font-size: 1vw;
  color: var(--black);
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 1.6vw;
  margin-right: 1.6vw;
}

.logo-grundfos {
  width: 22vw;
  height: auto;
  margin-top: 1vh;
}

.logo-grundfos-link {
  text-decoration: none;
}

.navigation-links {
  font-size: 1.5vw;
  display: flex;
  flex-direction: column;
  margin-left: 3.5vw;
  margin-top: auto;
  margin-bottom: auto;
  top: 10vw;
  font-family: var(--body-fonts);
  line-height: 4vw;
  color: var(--light-grey);
}

.nav-link {
  color: var(--light-grey);
  text-decoration: none;
}

.nav-link:hover {
  color: white;
  text-decoration: none;
  font-size: 1.6vw;
  font-weight: bolder;
}

.navigation-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: 5vh;
}

.navigation-qr-code-description {
  font-family: var(--body-fonts);
  color: var(--light-grey);
  font-size: 0.99vw;
  line-height: 0vw;
}

.navigation-qr-code-image {
  width: 35%;
  height: 80%;
}
.laundry-content {
  width: 78vw;
  background-color: var(white);
  margin-left: 22vw;
}

.laundry-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.laundry-heading {
  display: block;
  justify-content: center;
  font-family: var(--body-fonts);
  font-size: var(--font-size-heading);
  font-weight: 500;
  letter-spacing: 0.2vw;
  text-align: center;
  flex: 1;
  margin-bottom: 1.5vw;
  margin-left: 2vw;
}
.laundry-search-icon {
  width: 2.8vw;
  margin-right: 2vw;
}

#poll-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 5vw;
  width: 65vw;
  height: 75vh;
  background-color: var(--light-grey);
  border-radius: 15px;
}

#poll-box-top {
  position: relative;
}
.poll-title {
  font-family: var(--body-fonts);
  font-size: 2vw;
  text-align: center;
  padding-top: 3vw;
  margin-left: -1.5vw;
}
#selfie {
  width: 18vw;
  height: 18vw;
  margin-top: 2.6vw;
  border-radius: 15px;
  object-position: center;
  object-fit: cover;
}
.title-line {
  border-bottom: 0.05vw solid var(--dark-grey);
  width: 24vw;
  margin-top: 0.3vh;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
}
.title-line-modal {
  border-bottom: 0.05vw solid var(--dark-grey);
  width: 35vw;
  margin-top: 0.3vh;
  margin-left: auto;
  margin-right: auto;
}
#poll-content {
  display: flex;
  flex-direction: row;
  margin-left: 2vw;
}

#poll-description {
  display: flex;
  flex-direction: column;
  font-family: var(--body-fonts);
  font-size: var(--font-size-bodytext);
  width: 27vw;
  padding: 2vw 5vw;
}
#poll-text {
  text-align: center;
}
.poll-vote-button {
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--body-fonts);
  font-size: var(--font-size-subheading);
  border: none;
  border-radius: 50px;
  padding: 1vh 3vw;
  cursor: pointer;
}
.poll-vote-button:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#vote-heading {
  text-align: center;
  font-weight: 500;
}
#vote-buttons {
  margin-top: 3vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#poll-footer {
  font-family: var(--body-fonts);
  font-size: 1.25vw;
  display: flex;
  justify-content: space-between;
  margin: 3vh 4vw;
}
#contact-RC {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#last-week-poll {
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
#pie-chart-icon {
  width: 5.4vw;
}

#contact-RC-button {
  background-color: var(--white);
  color: var(--orange);
  font-size: var(--font-size-bodytext);
  border-color: var(--orange);
  border-style: solid;
  border-radius: 50px;
  border-width: 0.02vw;
  padding: 1vh 2vw;
  margin-top: 2vh;
  cursor: pointer;
}

#contact-RC-button:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
path:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 22vw;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */

  background-color: rgb(216, 216, 216); /* Fallback color */
  background-color: rgba(229, 226, 226, 0.3); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  margin: 6.2% 5%; /* 15% from the top and centered */
  display: flex;
  flex-direction: column;
  width: 65vw;
  height: 75vh;
  background-color: var(--light-grey);
  border-radius: 15px;
}

/* The Close Button */
.close {
  color: rgb(7, 7, 7);
  font-size: 4vw;
  font-weight: bold;
  padding: 2px 30px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#vote-heading-modal {
  margin: 2vw auto;
  font-family: var(--body-fonts);
  font-size: var(--font-size-subheading);
}
.modal-close {
  display: flex;
  justify-content: right;
}

.graphContainer {
  display: flex;
  position: relative;
  justify-content: center;
  /* Layout Properties */
  width: 24vw;
  height: 24vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: -2vw;
}
#myChart {
  padding: 30px;
  width: 100%;
  object-fit: contain;
}

#poll-title1 {
  font-family: var(--body-fonts);
  font-size: 2vw;
  text-align: center;
  padding-top: 0vw;
  margin-left: -1.5vw;
}

.modalSec {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 22vw;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(216, 216, 216); /* Fallback color */
  background-color: rgba(229, 226, 226, 0.3); /* Black w/ opacity */
}
#poll-title2 {
  font-family: var(--body-fonts);
  font-size: 2vw;
  text-align: center;
  padding-top: 0vw;
  margin-left: -1.5vw;
}

.closeSec {
  color: rgb(7, 7, 7);
  font-size: 4vw;
  font-weight: bold;
  padding: 2px 30px;
}

.closeSec:hover,
.closeSec:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.graphContainerSec {
  display: flex;
  position: relative;
  justify-content: center;
  /* Layout Properties */
  width: 24vw;
  height: 24vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: -2vw;
}
#myChartSec {
  padding: 30px;
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.bottom-page {
  display: flex;
  height: 5vw;
}

#help-icon {
  width: 3.5vw;
  margin-left: 73vw;
}
a {
  margin: 0;
  padding: 0;
}
