.others-options {
  display: flex;
  gap: 1rem;
}
.others-options .optional-item-list .notification-dropdown {
  position: relative;
  display: inline-block;
}
.others-options .optional-item-list .notification-dropdown button:focus {
  background: var(--secondary-Color);
  color: white;
  box-shadow: unset !important;
}
.others-options .optional-item-list .notification-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  border: 2px solid lightgray;
  border-radius: 5px;
  min-width: 400px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.others-options .optional-item-list .notification-dropdown.show .notification-dropdown-content {
  display: block;
}
.others-options .optional-item-list .notification-dropdown:hover .notification-dropdown-content {
  display: block;
}

html:lang(ar) .others-options .optional-item-list .notification-dropdown-content {
  right: unset;
  left: 0;
}
html:lang(en) .others-options .optional-item-list .notification-dropdown-content {
  right: 0;
  left: unset;
}

.notification-floating-panel {
  display: none;
  position: fixed;
  left: 0.5rem;
  right: 0.5rem;
  top: 75px;
  background-color: white;
  border: 2px solid lightgray;
  border-radius: var(--edge-radius);
  transition: ease-in 0.9s;
  z-index: 200;
}
.notification-floating-panel .view-more-notifications-wrapper {
  padding: 15px 0;
  text-align: center;
}
.notification-floating-panel .view-more-notifications-wrapper a {
  color: var(--primary-Color);
  font-weight: bold;
}

.notification-floating-panel.show {
  transition: ease-in 0.9s;
  display: block;
}

.notification-content-wrapper {
  max-height: 400px;
  border-bottom: 1px solid lightgray;
  padding: 10px 20px;
  overflow-y: scroll;
  background-color: rgba(142, 141, 141, 0.1803921569);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.notification-content-wrapper .notification-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  position: relative;
}
.notification-content-wrapper .notification-icon-wrapper i {
  font-size: 24px;
}
.notification-content-wrapper .notification-icon-wrapper .badge {
  position: absolute;
  top: 25%;
  left: 0;
}
.notification-content-wrapper .notification-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.notification-content-wrapper .notification-info .date-wrapper {
  line-height: 1.2;
  font-size: 12px;
  display: flex;
  justify-content: end;
}
.notification-content-wrapper .notification-info .message-wrapper {
  line-height: 1.2;
}
.notification-content-wrapper:hover {
  cursor: pointer;
  background-color: rgba(211, 211, 211, 0.1843137255);
}

.notification-content-wrapper.selected {
  background-color: white;
}
.notification-content-wrapper.selected .notification-icon-wrapper .badge {
  display: none;
}

.view-more-notifications-wrapper {
  padding: 15px 0;
  text-align: center;
}
.view-more-notifications-wrapper a {
  color: var(--primary-Color);
  font-weight: bold;
}