/* ── Inter font (global) ── */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

* {
    scrollbar-width: thin;
    scrollbar-color: grey #f1f1f100;
    scrollbar-gutter: 22px;
}

/* ══════════════════════════════════════════════
   Premium Toast System — Navy/Slate
   ══════════════════════════════════════════════ */

/* Override Toastify defaults */
.toastify.st-toastify {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 380px;
  min-width: 300px;
  border-radius: 0 !important;
}

/* Toast card */
.st-toast {
  position: relative;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .85rem .7rem .7rem;
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(130,150,180,.1);
  border-left: 3px solid;
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(0,0,0,.35),
    0 2px 8px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.03);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  animation: stIn .3s cubic-bezier(.4,0,.2,1) both;
}

/* Icon */
.st-icon-wrap {
  width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: .7rem;
}

/* Message */
.st-body {
  flex: 1;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(229,231,235,.9);
  line-height: 1.4;
  letter-spacing: .01em;
}

/* Close button */
.st-close {
  position: absolute;
  top: .5rem; right: .5rem;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent;
  color: rgba(255,255,255,.2);
  font-size: .5rem; cursor: pointer;
  border-radius: 4px;
  transition: all .15s;
}
.st-close:hover {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
}

/* Progress bar */
.st-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 100%;
  border-radius: 0 0 12px 12px;
  opacity: .5;
  animation: stProgress linear both;
  transform-origin: left;
}

/* Hover */
.st-toast:hover {
  transform: scale(1.01);
  box-shadow:
    0 12px 40px rgba(0,0,0,.4),
    0 2px 8px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.st-toast:hover .st-progress { animation-play-state: paused; }

/* Animations */
@keyframes stIn {
  from { opacity: 0; transform: translateX(20px) scale(.98); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes stProgress {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

/* Hide Toastify default close */
.st-toastify .toast-close { display: none !important; }

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 17, 24, .65);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1060;
}

.spinner-overlay::before {
    content: '';
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.08);
    border-top-color: #E63946;
    animation: spinnerRotate .7s linear infinite;
}

.spinner-overlay::after {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: rgba(230, 57, 70, .25);
    animation: spinnerRotate 1.2s linear infinite reverse;
}

@keyframes spinnerRotate {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none;
}

.custom-tabs .nav-link {
    /*/background-color: #f0f0f01a;*/
    color: #cecece;
    border-radius: 8px 8px 0 0;
    margin-right: 5px;
    transition: 0.3s;
    border-width: 0px;
}

.custom-tabs .nav-link:hover {
    background-color: #e0e0e0;
    color: #000;
}

.custom-tabs .nav-link.active {
    background-color: #007bff;
    color: #fff !important;
}

.single_element h4 {
    margin-bottom:30px
  }
.single_element .quick_activity_wrap {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-gap:30px;
    margin-bottom:50px
}
@media(max-width:575.98px) {
.single_element .quick_activity_wrap {
    grid-template-columns:repeat(1,1fr);
    grid-gap:15px;
    margin-bottom:30px
}
}
@media only screen and (min-width:576px) and (max-width:767px) {
.single_element .quick_activity_wrap {
    grid-template-columns:repeat(2,1fr);
    grid-gap:15px;
    margin-bottom:30px
}
}
@media(min-width:768px) and (max-width:991.98px) {
.single_element .quick_activity_wrap {
    grid-template-columns:repeat(2,1fr);
    grid-gap:15px;
    margin-bottom:30px
}
}
@media(min-width:992px) and (max-width:1199.98px) {
.single_element .quick_activity_wrap {
    grid-template-columns:repeat(2,1fr);
    margin-bottom:30px
}
}
@media(min-width:1200px) and (max-width:1500px) {
.single_element .quick_activity_wrap {
    grid-template-columns:repeat(2,1fr)
}
}
.single_element .single_quick_activity {
    background-color:#fff;
    border-radius:10px;
    -webkit-transition:.5s;
    transition:.5s;
    padding:41px 30px;
    position:relative;
    background:#0d6efd
}
.single_element .single_quick_activity:nth-child(2) {
    background:#4d87ff
}
.single_element .single_quick_activity:nth-child(3) {
    background:#73a1ff
}
.single_element .single_quick_activity:nth-child(4) {
    background:#2c8986
}

.single_element .single_quick_activity:nth-child(5) {
    background:#70d46d
}

.single_element .single_quick_activity:nth-child(6) {
    background:#407a8b
}

.single_element .single_quick_activity::before {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    content:'';
    background-position:center center;
    background-repeat:no-repeat;
    background-size:auto 100%;
    -webkit-transition:.5s;
    transition:.5s;
    background-size:cover
}
@media(max-width:575.98px) {
.single_element .single_quick_activity {
    padding:20px 15px
}
}
@media only screen and (min-width:576px) and (max-width:767px) {
.single_element .single_quick_activity {
    padding:20px 15px
}
}
.single_element .single_quick_activity h4 {
    font-size:17px;
    margin-bottom:0;
    font-weight:700;
    -webkit-transition:.5s;
    transition:.5s;
    color:#fff;
    margin-bottom:12px
}
.single_element .single_quick_activity h3 {
    font-size:40px;
    line-height:40px;
    margin-bottom:0;
    font-weight:900;
    -webkit-transition:.5s;
    transition:.5s;
    color:#fff;
    margin-bottom:7px
}
.single_element .single_quick_activity p {
    -webkit-transition:.5s;
    transition:.5s;
    font-size:13px;
    font-weight:400;
    color:#fff
}
.single_element .single_quick_activity:hover {
    background:#3b76ef
}

.single_element .single_quick_activity:hover .quick_activity_icon {
    background-color:rgba(255,247,248,.2)
}
.single_element .single_quick_activity:hover .quick_activity_icon i {
    color:#fff
}