:root {
    --primary-purple: hsl(247, 90%, 67%);
    --primary-orange: #f73;
    --primary-white: #ffffff;
    --primary-cyan: #35C7B2;
    --selector-active-bg:rgba(115, 97, 247, .20);

    --today-at-blossom-color: var(--primary-purple);
    --your-posts-color: var(--primary-orange);
    --announcements-color: var(--primary-cyan);

    --reddit-color: #FF4500;
    --purple:#7361F7;
    --grid:#E9E9EF;
    --axis:#6B7280;
    --caption:#6B7280;
    --tt-bg: rgba(115,97,247,.18);
    --tt-text:#111827;
}

@font-face {
    font-family: 'VVDSRashfield';
    src: url('../fonts/VVDSRashfield-Normal.woff2') format('woff2'),
        url('../fonts/VVDSRashfield-Normal.woff2') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
  
@font-face {
    font-family: 'VVDSRashfield';
    src: url('../fonts/VVDSRashfield-Medium.woff2') format('woff2'),
        url('../fonts/VVDSRashfield-Medium.woff2') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Medium.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html, body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

a {
    font-family: 'Nunito';
    cursor: auto;
    text-decoration: none;
    color: #000000;
}

h1, h2, h3, h4, h5 {
    font-family: 'Nunito';
}

.bg-primary-orange {
    background-color: var(--primary-orange) !important;
}

.bg-primary-white {
    background-color: var(--primary-white) !important;
}

.bg-primary-purple {
    background-color: var(--primary-purple) !important;
}

.bg-primary-cyan {
    background-color: var(--primary-cyan) !important;
}

.color-primary-orange {
    color: var(--primary-orange) !important;
}

.color-primary-cyan {
    color: var(--primary-cyan) !important;
}

.color-primary-white {
    color: var(--primary-white) !important;
}

.border-primary-orange {
    border: 1px solid var(--primary-orange) !important;
}

.border-primary-cyan {
    border: 1px solid var(--primary-cyan) !important;
}

#your-posts-card {
    height: 375px;
}

#dashboard-your-posts-card {
    height: 375px;
}

#today-at-blossom-card {
    height: 330px;
}

#analytics-card {
    height: 330px;
}

.custom-card {
    background-color: var(--primary-white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: top;
}

.post-status {
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 12px;
}

.status-tooltip {
    cursor: help;
}

.post-title {
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-group {
    font-family: 'Nunito';
    font-weight: 700;
    font-size: 14px;
}

.reddit-color {
    color: var(--reddit-color);
}

.action-required {
    color: var(--primary-purple);
}

@media (max-width: 500px) {
    .custom-card {
        height: auto;
        min-height: 330px;
    }
}

#analytics-card {
    box-shadow: 0 0 50px rgba(115, 97, 247, 0.25);
}

#today-at-blossom-card {
    box-shadow: 0 0 50px rgba(115, 97, 247, 0.25);
    font-size: 14px;
}

#your-posts-card {
    box-shadow: 0 0 50px rgba(255, 119, 51, 0.25);
}

#your-posts-card a {
    font-family: 'Nunito';
    font-size: 14px;
    font-weight: 700;
    color: var(--your-posts-color);
}

#announcements-card a {
    font-family: 'Nunito';
    font-size: 14px;
    font-weight: 700;
    color: var(--announcements-color);
}

#announcements-card {
    box-shadow: 0 0 50px rgba(53, 199, 178, 0.25);
}

.highlight {
    font-family: 'VVDSRashfield';
    font-weight: 500;
    color: var(--primary-purple);
}

.selector {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: none !important;
}

.dropdown {
    z-index: 10 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}
  
.selector-menu {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: none !important;
}

.selector .selector-toggle {
    border: 1px solid #e9e9ef;
    background: none;
    padding: .6rem .9rem;
    box-shadow: var(--selector-shadow);
  }
  
.selector .dropdown-toggle::after{ 
    display:none; 
}
  
.selector .dropdown-menu {
    margin-top: .35rem;
    border-radius: var(--selector-radius);
    border: 1px solid #eee;
    box-shadow: var(--selector-shadow);
    overflow: hidden;
    padding: .25rem 0;
}
  
.selector .dropdown-item {
    padding: .6rem .9rem;
    font-family: 'Nunito';
    font-size: 14px;
}

.selector .dropdown-item:hover {
    background-color: rgba(0 ,0 ,0 , .04);
}

.selector .dropdown-item.active, .selector .dropdown-item:active {
    background-color: var(--selector-active-bg) !important;
    color: #000000;
}
  
.selector .selector-toggle:focus {
    outline: 0;
}

.selector-label {
    font-family: 'Nunito';
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-family: 'Nunito';
    font-size: 14px;
    border-radius: 8px;
    width: auto;
    height: 40px;
}

.btn-icon {
    width: 14px;
    height: 14px;
}

.color-orange {
    background: #e75a28;
}
  
#navbar-title {
    font-family: 'VVDSRashfield';
    font-size: 24;
}

.nav-link {
    font-family: 'Nunito' !important;
    font-size: 16px !important;
    color: #000000 !important;
    white-space: nowrap;
}

.input-br-all {
    border-radius: 8px !important;
}
  
.input-br-no-left {
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.input-br-no-right {
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}
  
input, .input-group-text  {
    font-size: 14px !important;
    height: 40px !important;
}

.input-shadow {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.17) !important;
}

input::placeholder {
    color: #A6A6A6 !important;
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input-group-text {
    background-color: #ffffff !important;
}

button {
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
}

.heading-title {
    font-family: 'VVDSRashfield';
}

.chart-container{
    position: relative;
    height: 220px;
    width: 100%;
}
.chart-title {
    font-family: 'Nunito';
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.chartjs-tooltip .tooltip-date {
    font-family: 'Nunito';
    font-size: 10px;
    margin-right: .25rem;
    color: #999999;
}

.chartjs-tooltip .tooltip-amount {
    font-family: 'Nunito';
    font-weight: bold;
    font-size: 12px;
}

.w-275 {
    width: 275px !important;
}

.lp-card {
    width: 275px;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e2e2;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
    font-family: 'Nunito';    
}
  
.lp-media {
    position: relative;
    height: 175px;
    background:#0f0f0f; 
}

.lp-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}
  
.lp-fallback {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 120% at 50% 0%, #1a1a1a 0%, #0e0e0e 100%);
}

.lp-fallback-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3); 
}
  
.lp-bar{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 16px 12px;
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .00) 0%, rgba(0, 0, 0, .10) 20%, rgba(0, 0, 0, .30) 48%, rgba(0, 0, 0, .55) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .40) 60%, rgba(0, 0, 0, .30) 100%);
    color:#ffffff;
    border-top: 0.5px solid rgba(255,255,255,.12);
    min-height: 56px;
}
  
.lp-title{
    font-weight: 700;
    font-size: 14px;
    line-height: 1.15;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}
  
.lp-hostline{
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-host-ico {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex: 0 0 10px;
}

.lp-host{
    font-size: 10px;
    opacity: .9;
    white-space: nowrap;
    overflow: hidden; text-overflow:ellipsis;
    color: rgba(255, 255, 255, .85);
}
  
.lp-hit {
    position: absolute;
    inset: 0
}
  
.lp-card:hover {
    transform: translateY(-1px);
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 16px 36px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.08);
}

.lp-scroller, #today-previews {
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
}

.h-175 {
    height: 175px;
}

.lp-scroller::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 85%, var(--fade, rgba(255, 255, 255,1 )) 100%);
  opacity: 0;
  transition: opacity .5s;
  z-index: 20;
}

.lp-scroller {
    overflow-x: auto;
    overflow-y: hidden;
}

.lp-track {
    width: min-content;
    margin-left: auto;
    margin-right: auto;
}

.lp-item {
    flex: 0 0 auto;
}

.lp-scroller.show-fade::after{ 
    opacity: 1;
}

.lp-item.is-clipped {
    opacity: .55;
    transition: opacity .2s;
}

.modal-title {
    font-family: 'VVDSRashfield' !important;
    font-weight: 400;
}

.modal-body {
    font-family: 'Nunito' !important;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .navbar { --nav-h: 64px; }

    .navbar .navbar-collapse {
        position: absolute;
        top: var(--nav-h);
        left: 0; right: 0;
        height: auto;
        overflow: auto;
        background: #ffffff;
    }
}

.navbar .navbar-collapse {
    z-index: 1000;
}