body {
  margin: 0;
  padding: 0;
  font-family: "Inter";
  background-color: #f6f7f8;
  overflow: hidden;
  max-width: 1920px;
  overscroll-behavior: none;
}

input,
textarea {
  font-family: "Inter";
}

header {
  background-color: #ffffff;
  height: 75px;
  position: absolute;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 999;
}

.header_content {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  z-index: 100;
}

.header_img {
  width: 11%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
}

.help_icon:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.profile_initials:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

.menu_header {
  border-radius: 20px 0 20px 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 10px 0px;
  background: #2a3647;
  display: flex;
  flex-direction: column;
  width: 130px;
  height: 130px;
  position: absolute;
  top: 75px;
  right: 15px;
  font-size: 14px;
  margin: 0;
  z-index: 999;
}

.help-link {
  display: none !important;
}

.menu_links {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 10px;
  max-height: 130px;
}

.menu_header a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #a8a8a8;
  padding: 10px;
  font-size: 13px;
  transition: all 0.2s ease;
}

.menu_header a:hover {
  background-color: #2c4972;
  transform: scale(1.03);
}

.resp_menu_closed {
  display: none;
}

.resp_menu_open {
  display: flex;
}

.side_menu {
  background-color: #2a3647;
  width: 250px;
  min-width: 250px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 999;
}

.logo {
  width: 100px;
  position: fixed;
  top: 65px;
}

.menu_bar {
  width: 100%;
  position: relative;
  top: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu_bar img {
  width: 30px;
  margin-right: 10px;
  height: auto;
}

.selection {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  color: #a8a8a8;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.selection span {
  min-width: 70px;
  text-align: start;
}

.selection a {
  color: #a8a8a8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selection:hover {
  width: 96%;
  transform: scale(1.01);
  background-color: #2c4972;
}

.selection_privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  color: #a8a8a8;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.selection_privacy span {
  min-width: 70px;
}

.selection_privacy a {
  color: #a8a8a8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selection_privacy:hover {
  width: 96%;
  transform: scale(1.01);
  background-color: #2c4972;
}

.isActive {
  background-color: #091931;
}

.policy_docs {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: start;
  position: relative;
  top: 300px;
  left: 0px;
}

.menu_bar_login {
  width: 100%;
  position: relative;
  top: 300px;
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.menu_bar_login img {
  width: 30px;
  height: auto;
}

.policy_docs a {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  padding: 5px;
  padding-left: 60px;
  cursor: pointer;
  color: #a8a8a8;
  margin: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.policy_docs a:hover {
  width: 73%;
  transform: scale(1.01);
  color: #29abe2ff;
}

.content {
  display: flex;
  max-width: 1920px;
  height: auto;
}

a,
a:visited,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

.profile_initials {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 3px solid rgb(0, 0, 0);
}
