.rectangle-header {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 40px;
  padding: 32px 60px 36px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--hvid);
  border-radius: 100px;
  border: 3px solid;
  border-color: var(--rd);
  z-index: 9999;
}

.menu-item-header {
  height: 38px;
  padding: 2px 0px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-color: var(--rd);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  z-index: 9999;
}

.menu-item-header-without-underline {
  height: 38px;
  padding: 2px 0px;
  /* border-bottom-width: 2px; */
  border-bottom-style: solid;
  border-color: var(--rd);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  z-index: 9999;
}

.menu-header {
  position: relative;
  width: fit-content;
  margin-top: -2px;
  font-family: var(--menu-tekst-font-family);
  font-weight: var(--menu-tekst-font-weight);
  color: var(--rd);
  font-size: var(--menu-tekst-font-size);
  letter-spacing: var(--menu-tekst-letter-spacing);
  line-height: var(--menu-tekst-line-height);
  font-style: var(--menu-tekst-font-style);
  z-index: 9999;
}

.menu-wrapper-header {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px;
  position: relative;
  flex: 0 0 auto;

  /* when hovering: */
}

.menu-wrapper-header-with-underline {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px;
  position: relative;
  flex: 0 0 auto;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-color: var(--rd);

  /* when hovering: */
}

/*HOOVER ON MENU LINE
.menu-wrapper-header:hover {
  text-shadow: 1px 1px 1px var(--rd);
}*/

.dropbtn-header {
  border: none;
  cursor: pointer;
  background-color: white;

  font-family: var(--menu-tekst-font-family);
  font-weight: var(--menu-tekst-font-weight);
  color: var(--rd);
  font-size: var(--menu-tekst-font-size);
  letter-spacing: var(--menu-tekst-letter-spacing);
  line-height: var(--menu-tekst-line-height);
  font-style: var(--menu-tekst-font-style);
}

.dropdown-content-header {
  display: none;
  position: absolute;
  color: var(--rd);
  min-width: 220px;
  z-index: 1;
  border-radius: 100px;
  border-top: 10px;
  margin-top: 50px;
}

.dropdown-header {
  position: relative;
  display: inline-block;
}

.dropdown-content-container-header {
  position: absolute;
  display: none;
  top: 100%;
  left: -60px;
  width: 200px;
  height: 50px;
}

.dropdown-header:hover .dropdown-content-container-header {
  display: block;
}

.dropdown-content-header a {
  color: var(--rd);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 100px;
  border-color: var(--rd);
  border: 2px solid;
  margin-bottom: 5px;
  text-align: center;
  background-color: white;
}

.dropdown-content-header a:hover {
  background-color: var(--rd);
  color: white;
}

.dropdown-header:hover .dropdown-content-header {
  display: block;
}

.text-wrapper-header {
  position: relative;
  width: fit-content;
  margin-top: -5px;
  font-family: var(--menu-tekst-font-family);
  font-weight: var(--menu-tekst-font-weight);
  color: var(--rd);
  font-size: var(--menu-tekst-font-size);
  letter-spacing: var(--menu-tekst-letter-spacing);
  line-height: var(--menu-tekst-line-height);
  font-style: var(--menu-tekst-font-style);
}

/* Hide the special message by default */
.small-screen-message {
  display: none;
  
}

/* Hide the normal content and show the special message on small screens */
@media screen and (max-width: 999px) {
  .normal-content {
    display: none;
  }
  .small-screen-message {
    display: block;
  }
}

.phone-text {
  font-family: var(--menu-tekst-font-family);
  color: var(--rd);
  font-size: 15px;
  letter-spacing: var(--menu-tekst-letter-spacing);
  line-height: var(--menu-tekst-line-height);
  font-style: var(--menu-tekst-font-style);
  padding: 30px;
  border-radius: 20px;
}

.phone-container {
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}