body {
  position: relative;
  background-color: hsl(185, 23%, 39%);
  color: #464646;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.main-wrap-area {
  width: 100vw;
  height: 100vh;
  position: relative;
  padding: 2rem 3rem 3rem 2rem;
}

.content-zone {
  width: 100%;
  height: 100%;
  background: hsl(225, 100%, 99%);
  box-shadow: 1rem 1rem 0 4px hsla(178, 63%, 84%, 0.72);
  border-radius: 1.875rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between;
        align-items: flex-start; */
  gap: 1rem;
}

.logo {
  width: 15rem;
  height: 3rem;
}

.box-16 {
  width: 1rem;
  height: 1rem;
  display: flex;
}

.box-20 {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.box-24 {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.box-40 {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.box-50 {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
}

.box-60 {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.font-20 {
  font-size: 1.25rem !important;
}

.font-22 {
  font-size: 1.375rem !important;
}

.font-24 {
  font-size: 1.5rem !important;
}


.primary-color {
  color: #02D4B4 !important;
}

.secondary-color {
  color: #0077C7 !important;
}

.bg-primary {
  background: #02D4B4 !important;
}

.bg-secondary {
  background: #0077C7 !important;
}

.white-img {
  filter: brightness(0) invert(1)
}

.blue-img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(64%) saturate(1009%) hue-rotate(176deg) brightness(95%) contrast(88%);
}

.border-radius-top-right {
  border-top-right-radius: 1.875rem;
}

.flex-1 {
  flex: 1
}

.flex-2 {
  flex: 2
}

.flex-4 {
  flex: 4
}

.flex-none {
  flex: none
}

.outline-0 {
  outline: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.active-border {
  border: 2px solid #267bc5 !important
}

.min-width-0 {
  min-width: 0
}

.indention {
  word-break: break-word;
  white-space: pre-wrap;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-overflow2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.common-btn {
  padding: 0.5rem 2rem;
  background: #A4A4A4;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

.gray-scroll {
  scrollbar-width: thin;
  /* Makes scrollbar thinner */
  scrollbar-color: gray white;
  /* Thumb color and track color */
}

.gray-scroll::-webkit-scrollbar-thumb {
  background: gray;
  border: 0rem solid hsl(0, 0%, 33%);
  height: 0.4rem;
  border-radius: 0.2rem;
  cursor: pointer;
}

.gray-scroll::-webkit-scrollbar {
  width: 0.3rem;
  border-radius: 0.2rem;
  cursor: pointer;
  height: 0.3rem;
  background: white;
}


.left-part {
  width: 20%;
  height: 100%;
}

.right-part {
  display: flex;
  flex: 1;
  height: 100%;
  overflow: auto;
}

.document-container {
  width: 100%;
  height: 100%;
  background: #FEFEFE;
  border-radius: 0.625rem;
  box-shadow: 0rem 0.25rem 4rem rgba(0, 0, 0, 0.04);
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.left-tabs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 10px;
  background: #FEFEFE;
  box-shadow: 0rem 0rem 1rem 0.5rem rgb(0 0 0 / 2%);
}

.left-tabs.active {
  box-shadow: rgb(0 0 0 / 7%) 0px 10px 15px 5px;
  z-index: 9;
  border-top-right-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
  border-right: 4px solid rgb(0, 176, 188);
  background: rgb(255, 255, 255);
}

.mail-row:hover {
  background: rgba(1, 107, 173, 0.08);
  border-bottom-color: #7fc4ef !important;
}

.mail-row-active,
.mail-row-active:hover {
  background: rgb(1, 107, 173);
  color: #fff !important;
}

.compose-mail-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  border-radius: 50%;
  background: linear-gradient(0deg, #0077C7 0%, #02D4B4 100%);
  padding: 0.5rem;
}

.side-popup {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 35rem;
  height: 100%;
  background: #fff;
  border-top-right-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
  box-shadow: 0rem 0rem 10rem 0px rgb(0 0 0 / 20%);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
}