@import url(https://fonts.googleapis.com/css?family=Inter:300,400,500,600);

.pw-header-portal {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 80px;
  background: linear-gradient(90deg, #3a2666 51.87%, #223779 100.44%);
  gap: 1rem;
  font-family: Inter, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.pw-header-portal .pw-logo {
  flex: 0.1;
  /*padding-left: 8px;*/
  padding-left: 2px;
}

.pw-header-portal .pw-logo img {
  vertical-align: middle;
  max-width: none;
}

.pw-menu-container {
  position: relative;
  display: inline-block;
  padding-left: 36px;
}

.pw-menu-button {
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  background-color: transparent!important;
}

.pw-menu-button .pw-menu-button-icon {
  width: 28px;
  vertical-align: middle;
}

.pw-menu-button .pw-menu-button-icon:hover {
  transform: scale(1.1);
  background-color: transparent!important;
}

.pw-menu-button .pw-notifications-badge {
  background-color: #e72580;
  display: inline-table;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -8px;
  right: -9px;
  border-radius: 100%;
  color: white;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  line-height: 17px;
  font-weight: 300;
}

.pw-dropdown {
  z-index: 2000;
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 20vw;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  /*padding-top: 12px;*/
  padding-top: 11px;
  margin-top: 12px;
  font-size: 14px;
}

.pw-dropdown .pw-title {
  color: #3b2d6d;
  font-weight: bold;
  /*margin-left: 1rem;*/
  margin-left: 10px;
}

.dropdown .lineDivider {
  display: flex;
  justify-content: center;
}

.pw-dropdown .pw-lineDivider .pw-line {
  border-bottom: 1px solid #e0e0e0;
  /*padding-bottom: 1.25rem;*/
  padding-bottom: 13px;
  width: 100%;
}

.pw-custom-menu {
  background: none;
  border: none;
  display: flex;
  flex-direction: row;
  padding: 24px 40px;
}

.pw-menu-item {
  position: relative;
}

.pw-menu-item .pw-app {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 110px;
}

.pw-menu-item .pw-app .pw-img-container {
  background: #f5f5f5;
  /*padding: 10px;*/
  padding: 0;
  border-radius: 10px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-menu-item .pw-app:hover .pw-img-container {
  background: #e7e6ed;
}

.pw-menu-item .pw-app img {
  max-width: 28px;
  max-height: 28px;
}

.pw-menu-item .pw-app a {
  text-decoration: none;
  display: block;
}

.pw-menu-item .pw-app .pw-app-name {
  color: #766c99;
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.pw-menu-item .pw-app:hover .pw-app-name {
  color: #3b2d6d;
}

.pw-dropdown-background {
  display: none;
  position: fixed;
  z-index: 1999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* background-color: rgba(0,0,0,0.4); */
}