.header {
  grid-area: header;
  position: relative;
  min-height: 250px;
  background: var(--HeaderBkGColor);
  color: var(--HeaderFontColor);
  border-radius: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "logo"
    "title"
    "hamburger"
    "account-icons";
  padding-inline: 1rem;
}

.logo {
  grid-area: logo;
  /* Center the text by using a display: grid */
  display: grid;
  align-items: center;
  justify-items: center;
  margin-bottom: 0.8rem;
}

.account-icons {
  grid-area: account-icons;
  /* Center the text by using a display: grid */
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}

.account-settings {
  cursor: pointer;
}

.account-notifications {
  cursor: pointer;
}

.webPageTitle {
  grid-area: title;
  /* Center the text by using a display: grid */
  display: grid;
  align-items: center;
  justify-items: center;
  position: relative;
}

.webPageTitle p {
  position: absolute;
  text-align: center;
}

@media (min-width: 62em) {
  .header {
    min-height: 125px;
    grid-template-columns: 75px 290px 1fr 250px;
    grid-template-areas: "hamburger logo title account-icons";
  }

  .logo {
    justify-items: center;
    margin-bottom: 0;
  }

  .webPageTitle {
    justify-items: left;
    padding-right: 3rem;
  }
  .webPageTitle p {
    bottom: 25px;
  }

  .account-icons {
    margin-right: 30px;
  }
}

.admin-dropDown {
  grid-column: span 3;
  position: relative;
  overflow-y: auto;
  position: absolute;
  background: rgba(25, 25, 25, 0.5);
  border-radius: 1rem;
  top: 80%;
  left: 0;
  display: none;
  z-index: 999;
}

.theme-choice-title {
  padding: 15.84px 16px 0px;
  display: flex;
  align-items: center;
}

.admin-section-title-text {
  flex: 0 0 auto;
  color: rgb(222, 226, 227);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.01em;
  font-weight: bold;
  margin: 0px 5px 0px 0px;
}

.theme-selector-wrapper-container {
  padding: 12px 16px 24px;
  color: rgb(188, 193, 195);
}

.theme-selector-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.toggle-switch {
  display: none;
}

.toggle-selector__on {
  position: relative;
  width: 32px;
  height: 18px;
  flex: 0 0 32px;
  background: var(--PrimaryColor);
  border: 2px solid var(--PrimaryColor);
  border-radius: 1000px;
  margin-right: 12px;
  transition: all 0.2s ease 0s;
}

.toggle-switch__on {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  background: rgb(255, 255, 255);
  transform: translateX(14px);
  transition: transform 0.2s ease 0s;
}

.toggle-selector__off {
  position: relative;
  width: 32px;
  height: 18px;
  flex: 0 0 32px;
  background: rgb(176, 176, 176);
  border: 2px solid rgb(176, 176, 176);
  border-radius: 1000px;
  margin-right: 12px;
  transition: all 0.2s ease 0s;
}

.toggle-switch__off {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  background: rgb(255, 255, 255);
  transform: translateX(0px);
  transition: transform 0.2s ease 0s;
}

.admin-title-text {
  font-size: 14px;
}

.defaults-title {
  padding: 15.84px 16px 0px;
  display: flex;
  align-items: center;
  border-top: solid 1px var(--PrimaryColor);
}

.defaults-wrapper-container {
  padding: 12px 16px 24px;
  color: rgb(188, 193, 195);
}

.defaults-selector-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1rem;
}

.avatar-wrapper {
  background: transparent 50% / cover no-repeat;
  background-clip: content-box;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background-image: url(../media/defaults/user/userAvatar.png);
}

.profile-avatar {
  width: 80px !important;
  height: 80px !important;
}

.userProfile {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.userNameLabel {
  font-size: 0.8rem;
}

.userDropDown {
  grid-column: span 3;
  position: relative;
  overflow-y: auto;
  position: absolute;
  color: var(--MainFontColor);
  background: var(--BodyBackgroundColor);
  border-radius: 1rem;
  border: 1px solid var(--MainFontColor);
  box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.6);
  padding: 12px 16px 24px;
  top: 80%;
  left: 0;
  display: none;
  width: 100%;
  z-index: 999;
}

.userHeader {
  width: 100%;
  padding: 15.84px 16px 0px;
  display: flex;
  align-items: center;
}

.userDropDown-section {
  border-top: 1px solid;
  color: rgb(188, 193, 195);
}

.userDropDown-section-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  list-style: none;
  font-size: 0.9rem;
  padding: 0.5rem;
}

.userDropDown-section-item:hover {
  background: var(--formBkgColorGradient);
  border-radius: 5px;
  color: #fff;
}

.userDropDownProfile {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: rgb(188, 193, 195);
}

.userDropDownAvatar-wrapper {
  background: transparent 50% / cover no-repeat;
  background-clip: content-box;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 1rem;
  position: relative;
}

.camera_icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
