:root {
  color-scheme: only light;
}
.filters i,
.grid i,
.notifications i,
h2 i,
.comm i,
.suggestion-icon,
table i {
  color: #bf2e61;
  font-size: 24px;
}

.btnBar button:hover > i {
  color: #bf2e61;
}

.btnBar button i {
  margin-left: 5px;
}

.grid .flex-col {
  position: relative;
}
.flex-col h2 {
  position: absolute;
  top: -15px;
  /*        background-color: #fff;*/
  color: white;
}
.flex-col p {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    sans-serif,
    "Apple Color Emoji";
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}
.flex-col span {
  font-weight: normal;
}

.dn {
  display: none !important;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #3f51b5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}

.menu-icon {
  color: #bf2e61;
  font-size: 32px;
  margin: 0 25px;
}

.contact {
  position: relative;
}
.contact i {
  top: 45px;
  right: -14px;
  cursor: pointer;
  font-size: 20px;
}

.filters input[type=radio]{
  margin-top: 7px;
}

.card p{
  line-height: 2rem;
}

.relative:focus-within ul {
    display: block; /* Shows the list when the input is focused */
}

.pr100{
  right: 100px;
}

.h2{
  font-size: 32px;
  padding-right: 100px;
}

input[disabled], select[disabled]{
  background-color: #e5e5e5;
}

.contact-icons i{
  font-size: 28px;
}

.contact-filters i{
  font-size: 20px;
}

#notification-dropdown{
  z-index: 10;
}

.confetti {
    position: fixed;
    top: 0;
    left: 50%;
    font-size: 2rem;
    opacity: 1;
    transform: translateX(-50%);
    animation: fall 3s linear forwards;
}

@keyframes fall {
    0% {
        transform: translateX(-50%) translateY(0) rotate(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

#suggestions {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 500px;
    overflow-y: auto;
    margin-top: 3px;
    border-radius: 4px;
    z-index: 48;
    display: none;
}
.suggestion-item {
    padding: 10px;
    cursor: pointer;
}
.suggestion-item:hover {
    background: #f9fafb;
}

.default-text{
  color: #bf2e61;
}

.copy-comment{
  vertical-align: top;
}

.snapi{
  color: #bf2e61;
}