.sbd-account-settings-menu {
  position: absolute;
  top: 50px;
  right: 10px;
  width: 300px;
  height: 400px;
  background-color: white;
  z-index: 999;
  box-shadow: -3px 3px 10px #ccc;
  display: none;
}

.sbd-account-settings-menu .settings-item {
  width: 100%;
  height: 40px;
  cursor: pointer;
  line-height: 40px;
  box-sizing: border-box;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: row;
}

.sbd-account-settings-menu .settings-item .settings-item-icon {
  flex-basis: 40px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-right: 1px solid #eee;
}

.sbd-account-settings-menu .settings-item .settings-item-text {
  flex-grow: 0;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding-left: 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-family: open_sanssemibold;
}

.sbd-account-settings-menu .settings-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.sbd-top-menu {
  width: 100%;
  height: 60px;
  background-color: white;
  position: relative;
}

.sbd-side-menu {
  flex-basis: 220px;
  flex-grow: 0;
  flex-shrink: 0;
  height: 100vh;
  background-color: #3e3e3e;
}

.sbd-side-menu .top-bar {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: white;
  letter-spacing: 2px;
  font-size: 14px;
  box-sizing: border-box;
  padding-left: 20px;
}

.sbd-side-menu .logo-box {
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sbd-side-menu .logo-box .brokerage-logo {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-top:15px;
}

.sbd-side-menu .menu-item {
  width: 100%;
  height: 40px;
  line-height: 40px;
  letter-spacing: 2px;
  font-family: open_sanssemibold;
  background-color: transparent;
  color: white;
  font-size: 12px;
  box-sizing: border-box;
  padding-left: 20px;
  cursor: pointer;
}

.sbd-side-menu .submenu-title {
  background-image: url(../img/svg/caret-down-white.svg);
  background-position: right 9px center;
  background-size: 12px 12px;
  background-repeat: no-repeat;
}

.sbd-side-menu .submenu-title.primary-color-background-lite-1 {
  background-image: url(../img/svg/caret-up-white.svg);
  background-position: right 9px center;
  background-size: 12px 12px;
  background-repeat: no-repeat;
}

.sbd-side-menu .menu-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.sbd-side-menu .submenu {
  display: none;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
}

.sbd-side-menu .submenu .submenu-item {
  width: 100%;
  font-family: open_sansregular;
  color: white;
  font-size: 14px;
  box-sizing: border-box;
  padding-left: 50px;
  padding-right: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  cursor: pointer;
  line-height: 1.2;
}

.sbd-side-menu .submenu-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

a {
  text-decoration: none;
}

/***************************** TOOLTIP STYLING ****************************/

.tooltip-wrapper {
  position: fixed;
  top: 200px;
  left: 235px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 3;
}

#tooltip-container {
  position: fixed;
  top: 5px;
  /* right: 70%; */
  left: 0px;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  width: 300px;
  height: 150px;
  text-align: left;
  font-size: 14px;
  font-family: open_sansregular;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.tooltip-link {
  color: #000;
  padding-bottom: 10px;
  font-family: open_sansregular;
}

.tooltip-button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.tooltip-arrow {
  position: absolute;
  left: -1px;
  /* adjust the arrow width and position */
  top: -17px;
  transform: rotate(225deg);
  content: "";
  display: block;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  /* adjust the arrow width and position */
  border-color: #fff #ddd transparent transparent;
  box-shadow: 0 0 0 1px #ddd;
  z-index: 1;
}