.aimsRMSMenu {
  position: relative;
  width: 100%;
  background: rgb(0, 123, 255);
  padding: 0.6rem;
  color: white;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}
.aimsRMSMenu > .aimsCol {
  display: flex;
  align-items: center;
}
.aimsRMSMenu > .aimsCol:nth-child(1) {
  gap: 1.2rem;
}
.aimsRMSMenu > .aimsCol:nth-child(1) > .logo {
  width: 40px;
  height: 40px;
}
.aimsRMSMenu > .aimsCol:nth-child(1) > .info {
  font-weight: 700;
  letter-spacing: 0.6px;
}
.aimsRMSMenu > .aimsCol:nth-child(2) {
  gap: 1.6rem;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .menu {
  display: flex;
  gap: 0.4rem;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .menu > .menuItem {
  position: relative;
  padding: 0.6rem;
  border-radius: 0.4rem;
  transition: background 0.4s ease;
  cursor: pointer;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .menu > .menuItem:hover {
  transition: background 0.4s ease;
  background: rgb(29, 138, 255);
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .menu > .menuItem.active {
  background: white;
  color: black;
  font-weight: 700;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  position: relative;
  background: white;
  cursor: pointer;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .interest {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 2px;
  right: 0px;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .interest.active {
  background: red;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras {
  position: absolute;
  z-index: -1;
  padding: 1rem;
  width: 300px;
  right: -500px;
  top: 50px;
  transition: right 0.4s ease;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  background: rgb(255, 255, 255);
  box-shadow: 1px 1px 4px rgba(15, 15, 15, 0.4);
  color: black;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerLogo {
  width: 100%;
  height: 100px;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerLogo > img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.6rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerActions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.6rem 0;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerActions > .customerActionButton {
  padding: 0.6rem;
  border-radius: 0.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  border-bottom: 1px solid rgba(15, 15, 15, 0.6);
  transition: color 0.4s ease, background 0.4s ease;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerActions > .customerActionButton:hover {
  transition: color 0.4s ease, background 0.4s ease;
  background: rgb(77, 158, 245);
  color: white;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerActions > .customerActionButton > .buttonInterest {
  position: absolute;
  width: 4px;
  height: 100%;
  right: 0;
  top: 0;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerActions > .customerActionButton > .buttonInterest.active {
  background: red;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerWelcome {
  padding: 0.6rem 0.4rem;
  text-align: center;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerWelcome > .companyName {
  font-weight: 700;
  text-decoration: underline;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras > .customerLogout {
  margin-top: 0.4rem;
  padding: 0.8rem;
  background: rgb(223, 0, 0);
  color: white;
  border-radius: 0.6rem;
  cursor: pointer;
  text-align: center;
}
.aimsRMSMenu > .aimsCol:nth-child(2) > .actions > .extras.active {
  transition: right 0.4s ease;
  right: -10px;
}/*# sourceMappingURL=aimsRMSMenu.css.map */