@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary-bg: #000;
  --secondary-bg: #000;
  --heading-color: #000;
  --para-color: #000;
  --poppins: "Poppins", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  padding: 0 !important;
}
.header-top {
  background: #282b3099;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 20px;
  position: static;
  width: 100%;
  box-shadow: 0 3px 12px 0 #00000054;
  border-bottom: 0.5px solid #00000030;
  gap: 18px;
}

.user-name {
  display: flex;
  cursor: pointer;
  text-align: center;
  float: right;
  justify-content: end;
}
img.profile-img {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  object-fit: contain;
}
.user-name p {
  color: white;
  text-decoration: none;
}
.profile-dropdown {
  position: absolute;
  right: 0;
  top: 0;
  background: #ffffff;
  padding: 45px 30px 15px 30px;
  transform: translate(0, 66px);
  box-shadow: 1px 1px 10px #000;
  border-radius: 4px;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  width: auto;
  overflow: hidden;
}
.profile-dropdown.active {
  visibility: visible;
  opacity: 1;
}
a.logout-btn {
  color: black;
  font-weight: 500;
  transition: 0.5s;
  width: 100%;
  display: grid;
  padding: 9px 5px;
}

.profile-dropdown:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: -7px;
  left: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  box-shadow: -20px 0 10px 0 #00000073;
  z-index: -9;
}

a.logout-btn:hover {
  background: #9696967d;
}
.flex-dashoad {
  display: flex;
  justify-content: start;
  gap: 0;
  background: transparent;
}
.siderbar-content {
  max-width: 290px;
  width: 100%;
  background: #282b3099;
  display: flex;
  flex-direction: column;
  height: 100vh;
  gap: 23px;
  box-shadow: 3px 0 12px 0 #00000054;
  border-right: 0.5px solid #00000030;
}
.content-area {
  width: 100%;
  padding: 0;
  /* background: #0000005e; */
  height: 100vh;
  overflow: hidden;
  overflow-y: hidden;
}
li.list-area {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
  padding: 3px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
li.list-area:hover {
  background: #ffffff5c;
}
li.list-area:hover button {
  color: white;
}
li.list-area.active button {
  color: white;
}
li.list-area.active {
  background: #ffffff5c;
}
li.list-area a {
  color: white;
  text-decoration: none;
  width: 100%;
}
.logo {
  padding: 30px 30px;
}
h4.board-hd {
  font-size: 23px;
  color: white;
  font-weight: 500;
  padding: 7px 20px;
  margin-bottom: 12px;
}
.button-flex-list button {
  border: none;
  background: transparent;
  padding: 3px 2px;
}

.button-flex-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}
button.start-icon.active i {
  color: yellow;
}

.leave-board-dropdown {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
  max-width: 350px;
  width: 100%;
  background: white;
  transform: translateX(150px);
  padding: 18px 10px 13px;
  border-radius: 10px;
  box-shadow: 1px 1px 10px 0 #000;
  opacity: 0;
  visibility: hidden;
}
.list .title::placeholder {
  color: black;
  text-transform: uppercase;
  width: 96%;
  font-weight: 600;
  margin: 7px;
  padding: 10px;
}

.add-list .title::placeholder {
  color: white;
}
button.closed i {
  color: black;
}
.list input {
  width: 95%;
}
.add-list input {
  padding: 2px !important;
}

.list .title {
  padding: 2px !important;
}
ul.board-list-side {
  position: relative;
}

.title-card {
  text-align: center;
  margin-bottom: 22px;
  font-size: 17px;
}
button.leave-board {
  background: #c1c1c1;
  border: none;
  width: 100%;
  text-align: left;
  padding: 9px 10px;
  font-size: 16px;
  transition: 0.5s;
}

button.leave-board:hover {
  background: red;
  color: white;
}
button.closed {
  color: #2c2a2a;
  border: none;
  background: transparent;
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 18px;
}
.leave-board-dropdown.active {
  opacity: 1;
  visibility: visible;
}

/* Template */

#main {
  display: flex;
  align-items: start;
  margin-top: 0;
  margin-left: 0;
  height: calc(100vh - 86px);
  overflow-x: scroll;
  background: #0000005e;
  padding: 14px 11px;
}

.title {
  font-weight: 600;
  margin: 7px;
  padding: 10px;
}

.editable {
  user-select: none;
  outline: none;
  display: flex;
  justify-content: space-between;
}

.editing {
  background: white;
  color: #172b4d !important;
  box-shadow: inset 0px 0px 0px 2px #0279bf;
}

.editing:hover {
  background: white !important;
}

.card {
  background: white;
  border-bottom: 1px solid #aaa;
  margin: 7px;
  padding: 0;
  cursor: pointer !important;
  min-width: 90px;
}

.list {
  min-width: 290px;
  margin: 10px 5px;
  position: relative;
  background: #c1c1c178;
  border-radius: 10px;
}

.add-list {
  min-width: 280px;
  margin: 10px 5px;
  position: relative;
  background: rgb(0 0 0 / 41%);
  color: hsla(0, 0%, 100%, 0.8);
}

.ghost {
  opacity: 0.1;
  color: #000;
  background-color: #000;
}

.add-card {
  width: calc(100% - 35px);
  display: inline-block;
  padding: 10px;
  margin-top: 0px;
  color: gray;
  text-decoration: none;
  margin: 7px;
  padding: 10px;
  /*   border-bottom: 1px solid #dfe1e6; */
}

.add-card:hover {
  background-color: rgba(9, 30, 66, 0.13);
}

.del {
  font-weight: 600;
  color: gray;
}
.content {
  border-bottom: 1px solid #cecece;
  max-width: 330px;
  width: 100%;
  height: auto;
  overflow-y: scroll; /* Enable vertical scrolling */
  max-height: calc(100vh - 248px); /* Set maximum height */
  overflow-x: unset; /* Reset horizontal overflow */
  position: relative; /* Ensure positioned children are relative to this container */
}
span.del {
  position: absolute;
  right: 10px;
  color: black;
  font-size: 18px;
}
p.para-card {
  font-size: 13px;
  line-height: 1.5;
}
.button-flex {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  margin-top: 10px;
}
.button-flex button {
  background: transparent;
  border: none;
}
button.pen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  width: 35px;
  height: 35px;
  border-radius: 60px;
  color: black;
  border: none;
  transition: 0.5s;
  opacity: 0;
}
.card:hover {
  border: 1px solid black;
}

.card:hover button.pen-btn {
  opacity: 1;
}
.list .title {
  text-transform: uppercase;
  width: 96%;
  font-weight: 600;
  margin: 7px;
  padding: 10px;
}

/* width */
.content::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.content::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.layer-black {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000091;
  top: 0;
  left: 0;
  cursor: pointer;
}
.card-content {
  max-width: 800px;
  width: 100%;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px 20px;
  height: 90%;
  overflow-y: scroll !important;
  border-radius: 13px;
  overflow: hidden;
}

.img-banner-card {
  background: rgb(165, 157, 146);
  width: 100%;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.cover-image-area label {
  float: right;
  position: relative;
  cursor: pointer;
}

.cover-image-area {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.cover-image-area input {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.card-banner {
  width: 500px;
  height: 250px;
  object-fit: contain;
  margin-bottom: -2px !important;
}
.card-open-popup {
  visibility: hidden;
}

.card-open-popup.active {
  visibility: visible;
  z-index: 999;
}
button.closedbtn-popup {
  position: absolute;
  right: 8px;
  top: 8px;
  background: white;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: none;
  z-index: 9;
  box-shadow: 1px 1px 10px 0 #000;
  font-size: 23px;
}
.user-commit {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.userlink {
  display: flex;
  gap: 15px;
/*  align-items: center;*/
}

.user-img {
  background: #a97878;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  color: black;
  border-radius: 50%;
  text-transform: uppercase;
}
span.date-user {
  font-size: 12px;
  color: #5e5c5c;
  font-weight: 500;
}
span.title-link {
  color: black;
}
.popup-card-title {
  width: 100%;
  padding-bottom: 33px;
  font-size: 24px;
  line-height: 35px;
  padding-top: 0;
}

/* width */
.card-content::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.card-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.card-content::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.card-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.tox.tox-tinymce.tox-tinymce--toolbar-sticky-off {
  height: 270px !important;
}
body#tinymce p img {
  max-width: 255px !important;
}

.dropdown-rightside {
  position: fixed;
  background: white;
  width: 500px;
  padding: 10px;
  border: 1px solid #cecece;
  border-radius: 5px;
  box-shadow: 1px 1px 10px 0px #0000005e;
  z-index: 999;
  transform: translate(-50%, -50%);
  display: block;
  top: 50%;
  left: 50%;
}

h3.move-title {
  text-align: center;
  margin-bottom: 22px;
  font-size: 17px;
  padding-top: 20px;
}
.carddrop-para {
  font-size: 14px;
  margin-bottom: 5px;
}

.selectInput {
  width: 100%;
  background: #969696a6;
  padding: 7px 2px;
  font-size: 13px;
}

.ul-list-style::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.ul-list-style::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.ul-list-style::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.ul-list-style::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.move {
  margin-bottom: 14px;
}

button.movebtn-drop {
  background: #d62027;
  width: 100px;
  padding: 9px;
  color: white;
}
.closed-bt {
  width: fit-content;
  float: right;
  padding-bottom: 10px;
}
button.closed-right {
  font-size: 23px;
  color: black;
}
.card.removable.active {
  border: 1px solid;
  background: #80808038;
}
.form-login {
  background: url(../images/clone-banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
}
.form-login:before {
  content: '';
  background: #00000085;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.form-login .logo {
  position: relative;
  padding-top: 0;
}
button.loginbtn-now {
  background: #d62027;
  text-align: center;
  border: none;
  font-size: 22px;
  padding: 16px 60px;
  color: white;
  border-radius: 9px;
}
.form-control:focus {
  box-shadow: none;
  border: none;
}
p.para-commit {
  font-size: 14px;
  padding-left: 57px;
  line-height: 1.5;
}
/*.main-commit {
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 32px;
}*/
.activity-info.active {
    border-top: 1px solid #c1c1c1;
    padding: 22px 0 0 0;
    margin-top: 20px;
}
.open-cardz {
  padding: 10px;
}
.trello-box {
 
  background-size: cover;
  background-repeat: no-repeat;
}
input.add-card::placeholder {
  color: white;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #0000005e;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4d4b4bbf;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #4d4b4bbf;
}
.user-name-drop h4 {
  font-size: 26px;
  text-align: center;
  font-weight: 600;
  color: black;
}
.user-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: black;
  padding-top: 22px;
  font-size: 17px;
  font-weight: 500;
}
.logout-area {
  padding: 29px 0 8px 0;
  text-align: center;
}

a.signout-btn {
  position: relative;
  padding: 4px 15px;
  color: black;
  border: 1px solid black;
}
button.profile-dropbtn {
  position: absolute;
  right: 5px;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: transparent;
  border-radius: 50%;
  color: black;
  transition: 0.5s;
}
button.profile-dropbtn:hover {
  background: #00000066;
  color: white;
}
.notification-icon i {
  color: #ffffff;
}
.notification-icon{
  position: relative;
}
span.not-counter {
  color: white;
}

button.notifi-dropbtn {
  position: absolute;
  right: 5px;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: transparent;
  border-radius: 50%;
  color: black;
  transition: 0.5s;
}
button.notifi-dropbtn:hover {
  background: #00000066;
  color: white;
}
.notification-dropdown {
  position: absolute;
  right: 75px;
  top: 0;
  background: #ffffff;
  padding: 17px 10px 15px 10px;
  transform: translate(0, 57px);
  box-shadow: 1px 1px 10px #000;
  border-radius: 4px;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  width: auto;
  overflow: hidden;
}
.notification-dropdown.active {
    visibility: visible;
    opacity: 1;
    height: auto;
    max-height: 400px;
    overflow: auto;
}
.card-not {
  background: white;
  padding: 6px 5px;
  border-radius: 11px;
  margin-bottom: 5px;
  border: 1px solid;
  transition: 0.5s;
}
.move-card {
  margin: 5px 0;
}

.move-card p {
  font-size: 13px;
  gap: 8px;
}
.notify-img {
    width: 9px;
    height: 9px;
    position: absolute;
    left: -3px;
    top: -6px;
}
.move-card {
  gap: 5px;
}

.commit-card-para {
  padding: 0px 0 2px;
  font-size: 13px;
  line-height: 1.5;
}
.commit-card-para p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 275px;
}
.notification-read {
  padding-top: 6px;
  display: flex;
  justify-content: end;
}

button.readbtn {
  border-bottom: 1px solid;
  color: vl;
}
.notifi-list {
  padding: 0 10px;
 
}
.flex-btnz-not {
  display: flex;
  align-items: center;
  margin-top: 14px;
  padding: 10px;
  gap: 26px;
  border-top: 1px solid #00000082;
}
.flex-btnz-not a,
.flex-btnz-not button {
  color: black;
}
.card-not:hover {
  background: #0000004f;
}
input.inputsearch-fields {
  background: #ffffffab;
  padding: 8px 10px;
  width: 100%;
}

input.inputsearch-fields::placeholder {
  color: black;
}
.search-input {
  max-width: 370px;
  width: 100%;
}
.search-input.active {
  max-width: 700px;
}
.card-list-search {
  position: absolute;
  top: 11px;
  right: 0;
  background: white;
  border-radius: 4px;
  text-align: left;
  /* visibility: hidden; */
  /* opacity: 0; */
  height: 0;
  overflow: hidden;
  padding: 0;
  border: navajowhite;
  z-index: 9;
}
.card-list-search.active {
  /* visibility: visible; */
  /* opacity: 1; */
  height: auto;
  overflow: unset;
  padding: 10px 10px;
  border: 1px solid black;
}
.search-alllist {
  position: relative;
}

p.search-card-board {
  font-size: 12px;
  color: black;
}

span.commit {
  font-weight: 500;
  padding-left: 10px;
}

h4.search-title {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 5px;
  color: black;
}
a.searc-card {
  transition: 0.5s;
  display: grid;
  padding: 7px 10px 10px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  border: 1px solid #0000004a;
}

a.searc-card:hover {
  background: #0000004a !important;
}
.search-overflow {
  overflow-y: scroll;
  height: 187px;
  padding-right: 7px;
}
.viewall-search {
  padding: 13px 0 0;
}

.viewall-search a {
  color: black;
}


/* Notification Css */

.notification-sec {
  background: url(../images/clone-banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 0px);
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.notification-area {
    position: relative;
    z-index: 9;
}
.notifi-list-page .card-not:hover {
  background: #ffffffc7;
}
.notifi-list-page a {
  text-decoration: none;
}

.notifi-list-page .readbtn {
  color: black;
  border: none;
  background: transparent;
}
.notifi-list-page .commit-card-para p {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 96%;
}
h1.notification-hd {
  font-size: 30px;
  color: white;
  text-align: left;
  margin-bottom: 17px;
}
.notifi-list-page {
  overflow-y: scroll;
  height: calc(100vh - 268px);
  padding-top: 3px;
}
.notifi-list-page::-webkit-scrollbar-track {
  -webkit-box-shadow: transparent;
  background-color: transparent;
}

.notifi-list-page::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.notifi-list-page::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.notifi-list-page .searc-card {
  background: #fffffffa;
}

.notifi-list-page .searc-card:hover {
  background: #ffffffc9 !important;
}





/* asdasdas asddddddddddddd */



.toolbar {
  padding: 16px;
  background: #eee;
}
.toolbar .head {
  display: flex;
  grid-gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.toolbar .head > input {
  max-width: 100px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 2px solid #ddd;
  outline: none;
}
.toolbar .head select {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
}
.toolbar .head .color {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  grid-gap: 6px;
  padding: 0;
}
.toolbar .head .color span {
  font-size: 14px;
}
.toolbar .head .color input {
  /* border: none; */
  padding: 0;
  /* width: 26px; */
  /* height: 26px; */
  background: #fff;
  cursor: pointer;
}
.color.file-input span {
  display: none;
}
.toolbar .head .color input::-moz-color-swatch {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
}
.toolbar .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 10px;
}
.toolbar .btn-toolbar button {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.toolbar .btn-toolbar button:hover {
  background: #f3f3f3;
}
#content {
  padding: 8px;
  outline: none;
  max-height: calc(100vh - 30px);
  overflow: auto;
  font-size: 15px;
  line-height: 1.5;
  height: 150px;
  border: 1px solid #eeeeee;
  border-top: none;
  border-radius: 9px;
  box-shadow: 0px 4px 10px 0 #0000001c;
}
#show-code[data-active="true"] {
  background: #eee;
}
div#content i {
  font-style: italic;
}
/* 
.color.file-input {
  position: relative;
  width: auto;
}

.color.file-input input {
  position: absolute;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
}
.color.file-input span {
  font-size: 17px !important;
} */

.commit-send {
  background: #d62027;
  padding: 10px 25px;
  display: flex;
  float: right;
  margin-top: 15px;
  color: white;
}
.showdiv-file {
  max-width: 100px;
  max-height: 100px;
  height: 100%;
  width: 100%;
}


.files-layer {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
  padding-left: 47px;
}

.files-layer a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ellipsisbtn {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 10px 10px 0;
}
button.open-sidebtn {
  background: #c1bfbf;
  padding: 0px 5px;
  font-size: 26px;
  color: black;
}
.dropdown-rightside.active {
  display: block;
}
.layer {
  position: absolute;
  top: 0;
  left: 0;
  background: #000000c4;
  width: 100%;
  height: 100%;
}
.movepopup {
  visibility: hidden;
}
.movepopup.active {
  visibility: visible;
}

.activity-info.active{
    display: block;
    
}
.activity-info{
    display: none;
    
}
.attachedment-area input{
    display: none;
}
.attachedment-area {
    margin-bottom: 35px;
}
.file-title p {
    font-size: 13px;
    font-weight: 400;
    margin-right: 20px;
}
.file-title h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}
.all-btn-area ul {
    display: flex;
    padding-left: 13px;
}

.all-btn-area ul li {
    list-style: disc;
    width: 106px;
}
.all-btn-area button, .download-btn{
     font-size: 13px;
     font-weight: 400;
     color: #000;
     cursor: pointer;
}
.file-and-image img {
    width: 127px;
    height: 89px;
    object-fit: cover;
    margin-right: 20px;
}
.attachedment-area h3 {
    font-size: 18px;
    font-weight: 600;
    margin-left: 12px;
}
.file-icon {
    width: 126px;
    height: 90px;
    background-color: #ccc;
    text-align: center;
    font-size: 25px;
    align-items: center;
    line-height: 50px;
    margin-right: 20px;
    border-radius: 5px;
    justify-content: center;
    display: flex;
}
.add-card-area button {
    width: 85px;
    height: 40px;
    background: #eee;
    margin-left: 12px;
    margin-bottom: 13px;
    font-size: 13px;
    font-weight: 400;
}
 .profileImage {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #512DA8;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: flex;
    text-align: center;
    margin-right: 10px;
}
.users-area-tags {
  margin-bottom: 20px;
}
.add-card-area {
  display: flex;
  align-items: center;
      position: relative;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  gap: 10px;
  align-items: end;
}
.tag {
    background-color: #512DA8;
    color: #fff;
    border-radius: 5px;
    position: relative;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    box-shadow: 2px 2px 9px #fff;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: -7px;
    font-size: 13px;
}
.add-mem {
    font-size: 13px;
    margin-bottom: 13px;
    background: #eee;
    padding: 14px;
    display: flex;
    font-weight: 500;
}
.add-mem:last-child{
    margin-bottom: 0;
}
.members-list {
    width: 200px;
    position: absolute;
    padding: 15px 11px;
    right: 0;
    height: auto;
    top: 41px;
    max-height: 300px;
    cursor: pointer;
    background: #fff;
    box-shadow: 1px 4px 10px #8888;
    overflow: auto;
}

h4.firstName {
    margin-right: 5px;
}
button.cover-btn {
    font-size: 14px;
    font-weight: 500;
    margin-top: 11px;
}
.all-btn-area {
    margin-top: 9px;
}

.view-all {
    display: none;
    padding: 10px 20px;
    background: #eee;
    margin-left: 12px;
    margin-bottom: 13px;
    font-size: 13px;
    font-weight: 400;
}
.remove-area {
    position: absolute;
    top: 42px;
    z-index: 999999;
    width: 218px;
    border-radius: 10px;
    height: 112px;
    left: 0;
    display: none;
    background: #fff;
    box-shadow: 0px 1px 5px #8888886b;
    padding: 29px 10px 10px 10px;
}
.remove-area.active{
     display: block;
}
.remove-area button {
    color: #000;
    font-size: 11px;
    padding: 10px;
    width: 100%;
    text-align: start;
}
.remove-area button:hover{
    background: #eee;
}


.showall-member-box {
  max-width: 310px;
  width: 100%;
  background: white;
  padding: 43px 13px 13px 13px;
  position: absolute;
  top: 67px;
  box-shadow: 1px 1px 10px 0 #00000036;
  display: none;
}
.showall-member-box.active{
  display: block;
}
.main-commit {
  position: relative;
/*  z-index: -9;*/
}
.tags-container .tag {
  margin-bottom: 0;
}
.show-all-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c1c1c191;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 17px;
  color: #000000ab;
  cursor: pointer;
}
.show-all-tags:hover {
  background: #c1c1c1;
  color: black;
}
h4.fullname-user {
  color: black;
  font-weight: 600;
}
button.remove-card-pop {
  background: #c1c1c1;
  font-size: 15px;
  margin-top: 10px;
  color: black;
}
button.removeactive-card {
  position: absolute;
  top: -3px;
  right: -1px;
  width: fit-content;
  font-size: 18px;
}
button.closed-nametag {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 16px;
}

.showall-member-box.active .tag {
    display: flex !important;
}

.showall-member-box.active {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}
.set {
  background-color: #512DA8;
  color: #fff;
  border-radius: 5px;
  position: relative;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  box-shadow: 2px 2px 9px #fff;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: -7px;
}

.show-all-tags{
  display: none;
}
button.show-all-tags {
  margin-left: 0;
  margin-top: 0;
  font-size: 15px;
  margin-right: -8px;
}
.show-list {
  width: 200px;
  position: absolute;
  padding: 15px 11px;
  left: 0;
  height: auto;
  top: 32px;
  max-height: 332px;
  cursor: pointer;
  background: #fff;
  box-shadow: 1px 4px 10px #8888;
  overflow: auto;
}
.showbtn-plus{
  position: relative;
}
.discription-area .d-flex {
    gap: 10px;
}
.edit-text {
    font-size : 14px;
    font-weight : 500;
    color : #5e5c5c;
    text-decoration : none;
    background-color : transparent;
    border : none;
    padding : 0;    
}
.btn-secondary.edit-text:hover {
    color: #5e5c5c;
    background-color: transparent;
    border-color: none;
}
.discrip-area p {
    line-height : 1.2;
}
.comment-box {
    border-top: 0px  !important;
    padding-bottom: 32px !important;
        border-bottom: 1px solid #c1c1c1 !important;
}
.notification-hd{
  font-size: 0.8rem;
}
.user-notify-img{

}
.action-notify-para {
    font-size: 0.7rem !important;
    color: #000000ad;
    text-overflow: unset !IMPORTANT;
    display: block !IMPORTANT;
}