a {
  color: inherit;
  text-decoration: none;
}
.header__dropdown a:not(.button--ghosted):hover {
  color: inherit;
  text-decoration: none;
}
.header__dropdown a:not(.button--ghosted) {
  color: inherit;
  text-decoration: none;
}

.modal-footer a:visited,
a:hover,
a:focus {
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: white;
  transition: all 0.3s ease;
}
.site-header.active {
  height: 70px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.162);
}
.header__container {
  padding: 0 20px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__desktop {
  display: none;
}
.header__menu {
  display: grid;
  align-content: center;
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 997;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header__menu.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.header__menu-side {
  height: 100%;
  width: 100%;
  z-index: 998;
  position: fixed;
  top: 0;
  background: white;
  transform: translateX(100%);
  transition: all 0.3s ease;
  display: grid;
  align-content: center;
  text-align: center;
  gap: 20px;
  padding: 30px;
}
.header__menu-side.active {
  transform: translateX(0);
  transition: all 0.3s ease;
}
.header__menu-side.global__button {
  width: fit-content;
}
div.pt-4 {
  padding-top: 16px;
}
div.pb-4 {
  padding-bottom: 16px;
}

.header__menu-link {
  font-size: 24px;
  max-width: fit-content;
  justify-self: center;
  color: gray;
}
.header__dropdown--mobile {
  font-size: 18px;
  padding: 10px;
  color: gray;
}
.header__clinic {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.header__clinic p {
  margin-bottom: 0;
  font-size: 16px;
  text-transform: uppercase;
  color: #4a5f9e;
  font-weight: 500;
}
.header__logo-turnos {
  width: auto;
  height: 60%;
  border-radius: 100%;
  border: 2px solid #4a5f9e;
  padding: 2px;
  overflow: hidden;
  transition: all 300ms;
}
.header__logo-turnos img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .header__logo-turnos {
    height: 80%;
  }
  .header__container {
    padding: 0 80px;
  }
  .header__hamburger {
    display: none;
  }
  .header__desktop {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .header__dropdown {
    position: relative;
    height: fit-content;
    width: fit-content;
  }
  .header__dropdown div {
    width: fit-content;
    min-width: 100%;
  }
  .header__dropdown a,
  .header__dropdown div a {
    width: 100%;
  }

  .header__dropdown div a {
    display: flex;
  }
  .dropdown__items * {
    padding: 10px;
  }
  .dropdown__items .dropdown__items {
    padding: 0;
  }

  .header__dropdown .header__dropdown a {
    padding: 0;
  }
  .header__dropdown .header__dropdown .dropdown__items a {
    padding: 10px;
  }

  .dropdown__items a:hover {
    background: #f1f1f1;
    transition: 0.2s ease;
  }
  .header__dropdown .header__dropdown:hover {
    border-radius: 5px;
    background: #f1f1f1;
    transition: 0.2s ease;
  }
  .dropdown__items--account {
    width: 120px!important;
  }
  .dropdown__items {
    position: absolute;
    z-index: 0;
    top: 110%;
    left: -20px;
    width: 150px;
    background: white;
    border-top: 2px solid #4a5f9e;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.162);
    opacity: 0;
    visibility: hidden;
    display: grid;
    transition: all 0.3s ease;
    align-content: start;
  }
  .dropdown__items .header__dropdown .dropdown__items a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.077);
  }
  .dropdown__items .header__dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, 0.077);
  }
  .dropdown__items--account a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.077);
  }
  .header__dropdown:hover > .dropdown__items {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 10;
  }
  .header__dropdown--active > .dropdown__items {
    right: 100%;
    left: auto;
    top: 0;
  }
  .header__dropdown--active:hover > .dropdown__items {
    z-index: 10;
  }
}
