/* Base styles with defaults */
:root {
  --default-color: #808080; /* Fallback color */
  --profile-color: var(--default-color);
  --theme-color: #3171f6;
}
/* Add the themed loader styles */
.loader {
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 50%;
  animation: l5 1s infinite linear alternate;
}
@keyframes l5 {
    0%  {box-shadow: 40px 0 #3171f6, -40px 0 #3171f633; background: #3171f6; }
    33% {box-shadow: 40px 0 #3171f6, -40px 0 #3171f633; background: #3171f633; }
    66% {box-shadow: 40px 0 #3171f633, -40px 0 #3171f6; background: #3171f633; }
    100%{box-shadow: 40px 0 #3171f633, -40px 0 #3171f6; background: #3171f6; }
}

[data-profile-type].text, [data-profile-type] .text {
}

section#announcements comment-post,
#add-comment-popover comment-post{
  background: #f4e38b;
}
.profile-image {
  background-color: var(--profile-color);
}
.profile-card::before {
    content: '';
    width: 5px;
    align-self: stretch;
    border-radius: 4px 0 0 4px;
    background: var(--profile-color);
    max-height: 56px;
}
@media (max-width: 330px){
  role-pill {
    position: absolute;
    top: -6px;
    right: -8px;
    padding: 1px 5px;
  }
  .profile-card::before{
    content: none;
  }
}
.flip-card .top {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: var(--theme-color);
  border-radius: 4px;
  position: absolute;
  backface-visibility: hidden;
}

.flip-card.time-remaining .top {
  background: white;
  border: 1.5px solid var(--theme-color);
  color: var(--theme-color);
}

/* Dynamic Profile Type Styles */
[data-profile-type="Attendee"] {
  --profile-color: #000;
}

profile-name-header[data-profile-type="Attendee"] {
  color: #000;
}

role-pill[data-profile-type="Attendee"] {
  color: #000;
  border: 1.5px solid #000;
}
.ticketed_events_element{
  display: none !important;
}
