@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
{
  --navy-deep: #071028;
  --navy-rich: #0a182f;
  --gold: #D4A53A;
  --warm-gold: #E8C46A;
  --warm-white: #FAF8F3;
  --light-sand: #E8DDC7;
  --slate-gray: #8A94A6;
  --soft-purple: #6E5ACD;
  --tabbar-h: 68px;
  --font-fam: "Poppins", sans-serif;
}

html,
body
{
  height: 100%;
  background: #081228;
}

body
{
  font-family: var(--font-fam);
  font-size: 1rem;
  color: var(--slate-gray);
  line-height: 1.6;
}

a
{
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}

.bx
{
  vertical-align: middle;
}

.sidebar_link .bx
{
  font-size: 1.25rem;
  width: 22px;
  text-align: center;
}

.topnav .bx
{
  font-size: 1.25rem;
}

.logo_horizontal
{
  max-width: 160px;
}

.explore_icon .bx
{
  font-size: 1.6rem;
}

.btn_speak .bx,
.featured_meta .bx,
.featured_lesson_icon .bx,
.btn_continue .bx,
.journey_avatar .bx
{
  font-size: 1.25rem;
}

.tab_ai_bubble .bx
{
  display: block !important;
  font-size: 1.5rem;
}

/* =============================================
   LAYOUT Ã¢â‚¬â€ SIDEBAR + MAIN
   ============================================= */
.sidebar
{
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  z-index: 200;
  border-right:1px solid rgba(42,79,157,0.3);
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease, -o-transform 0.3s ease;
}

.sidebar.sidebar_collapsed
{
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.main_wrapper
{
  margin-left: 220px;
  min-height: 100vh;
  background-color: var(--navy-deep);
  -webkit-transition: margin-left 0.3s ease;
  -o-transition: margin-left 0.3s ease;
  -moz-transition: margin-left 0.3s ease;
  transition: margin-left 0.3s ease;
}

/* =============================================
   SIDEBAR INTERNALS
   ============================================= */
.brand_wise
{
  color: var(--warm-white);
}

.sidebar_nav
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.sidebar_link
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  color: var(--slate-gray);
  font-size: 0.95rem;
  font-weight: 400;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  -moz-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

.sidebar_link i
{
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
}

.sidebar_link:hover
{
  background: #122035;
  color: var(--warm-white);
}

.sidebar_link.active
{
  background: #122035;
  color: #fff;
}

.sidebar_link.active .bx
{
  color:var(--warm-gold);
}

.sidebar_link_ai
{
  color: var(--soft-purple) !important;
}

.sidebar_link_ai:hover
{
  background: rgba(110,90,205,0.2) !important;
  color: #a48ee0 !important;
}

.sidebar_footer
{
  background: var(--navy-deep);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  font-size: 0.8rem;
  text-align: center;
  border:1px solid #352f2a;
  color: var(--slate-gray);
}

.sidebar_footer_brand
{
  font-size: 1rem;
  font-weight: 700;
}

.sidebar_footer_tagline
{
  color: var(--slate-gray);
  font-size: 0.7rem;
  line-height: 1.5;
}

.sidebar_divider
{
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.7rem;
}

/* =============================================
   TOP NAV
   ============================================= */
.topnav
{
  height: 64px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-transition: background 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  -o-transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  -moz-transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -moz-box-shadow 0.3s ease;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 18, 40, 0.96)), to(rgb(8 18 40 / 0%)));
  background: -webkit-linear-gradient(top, rgba(8, 18, 40, 0.96) 0%, rgb(8 18 40 / 0%) 100%);
  background: -moz-linear-gradient(top, rgba(8, 18, 40, 0.96) 0%, rgb(8 18 40 / 0%) 100%);
  background: -o-linear-gradient(top, rgba(8, 18, 40, 0.96) 0%, rgb(8 18 40 / 0%) 100%);
  background: linear-gradient(180deg, rgba(8, 18, 40, 0.96) 0%, rgb(8 18 40 / 0%) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  -moz-box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.topnav_greeting
{
  color: var(--warm-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.topnav_sub
{
  color: var(--slate-gray);
  font-size: 0.78rem;
}

.topnav_search
{
  background: #0f1e33;
  border: #0f1e33;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  padding: 7px 16px;
  gap: 8px;
  min-width: 260px;
}

.topnav_search i
{
  color: var(--slate-gray);
  font-size: 0.9rem;
}

.topnav_search input
{
  background: none;
  border: none;
  outline: none;
  color: var(--warm-white);
  font-size: 0.85rem;
  width: 100%;
}

.topnav_search input::-webkit-input-placeholder
{
  color: var(--slate-gray);
}

.topnav_search input:-moz-placeholder
{
  color: var(--slate-gray);
}

.topnav_search input::-moz-placeholder
{
  color: var(--slate-gray);
}

.topnav_search input:-ms-input-placeholder
{
  color: var(--slate-gray);
}

.topnav_search input::-ms-input-placeholder
{
  color: var(--slate-gray);
}

.topnav_search input::placeholder
{
  color: var(--slate-gray);
}

.mobile_search_bar
{
  display: none;
  position: -webkit-sticky;
  position: absolute;
  top: 0;
  z-index: 99;
  padding: 10px 16px 12px;
  background: rgba(8, 18, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  left: 0;
  width: 100%;
}

.mobile_search_bar.is_open
{
  display: block;
}

.mobile_search_inner
{
  height: 46px;
  background: #0f1e33;
  border: 1px solid rgba(42,79,157,0.35);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.mobile_search_inner i
{
  color: var(--slate-gray);
  font-size: 1.2rem;
}

.mobile_search_inner input
{
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: none;
  border: 0;
  outline: 0;
  color: var(--warm-white);
  font-size: 0.85rem;
}

.mobile_search_inner input::-webkit-input-placeholder
{
  color: var(--slate-gray);
}

.mobile_search_inner input:-moz-placeholder
{
  color: var(--slate-gray);
}

.mobile_search_inner input::-moz-placeholder
{
  color: var(--slate-gray);
}

.mobile_search_inner input:-ms-input-placeholder
{
  color: var(--slate-gray);
}

.mobile_search_inner input::-ms-input-placeholder
{
  color: var(--slate-gray);
}

.mobile_search_inner input::placeholder
{
  color: var(--slate-gray);
}

#mobileSearchClose
{
  background: none;
  border: 0;
  color: var(--slate-gray);
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 30px;
}

.topnav_icon_btn
{
  width: 36px;
  height: 36px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--slate-gray);
  font-size: 1.1rem;
  cursor: pointer;
}

.avatar_icon
{
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0 6px rgba(212,165,58,0.3));
  filter: drop-shadow(0 0 6px rgba(212,165,58,0.3));
  vertical-align: middle;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.avatar_image
{
  width: 50px;
  height: 50px;
  background-position: center;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
}

.sidebar_toggle
{
  background: none;
  border: none;
  color: var(--warm-white);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

/* =============================================
   HERO CARD
   ============================================= */
.hero_card
{
  background: #152a46;
  background-image: url(../images/hakim.png);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  min-height: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: right 26px;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero_overlay
{
  position: absolute;
  inset: 0;
  background: -webkit-radial-gradient(70% 50%, ellipse, rgba(240,217,122,0.08) 0%, rgba(0,0,0,34%) 70%);
  background: -moz-radial-gradient(70% 50%, ellipse, rgba(240,217,122,0.08) 0%, rgba(0,0,0,34%) 70%);
  background: -o-radial-gradient(70% 50%, ellipse, rgba(240,217,122,0.08) 0%, rgba(0,0,0,34%) 70%);
  background: radial-gradient(ellipse at 70% 50%, rgba(240,217,122,0.08) 0%, rgba(0,0,0,34%) 70%);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.hero_content
{
  z-index: 2;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 60%;
}

.hero_label
{
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}

.hero_quote
{
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
}

.hero_ref
{
  font-size: 0.7rem;
  color: #cfcfcf;
  font-style: italic;
}

.hero_figure
{
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  border-radius: 0 20px 20px 0;
}

.hero_figure_inner
{
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(315deg, rgba(27,77,138,0.6) 0%, rgba(10,22,53,0.8) 100%);
  background: -moz-linear-gradient(315deg, rgba(27,77,138,0.6) 0%, rgba(10,22,53,0.8) 100%);
  background: -o-linear-gradient(315deg, rgba(27,77,138,0.6) 0%, rgba(10,22,53,0.8) 100%);
  background: linear-gradient(135deg, rgba(27,77,138,0.6) 0%, rgba(10,22,53,0.8) 100%);
  background-image: url(../images/hakim.png);
  background-position: center 26px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section_title
{
  color: var(--warm-white);
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: capitalize;
}

.section_title_main
{
  color: var(--warm-white);
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: capitalize;
}

.section_subtitle
{
  font-size: 0.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.see_all_link
{
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.see_all_link:hover
{
  color: var(--warm-gold);
}

/* =============================================
   STORY CARDS
   Bootstrap columns: col-12 col-md-6 col-lg-3
   ============================================= */
.story_scroll_wrap
{
  width: 100%;
}

.story_scroll_inner
{

  /* Bootstrap row handles the columns */
}

.story_card
{
  min-height: 270px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  border: 1px solid rgba(42,79,157,0.25);
  overflow: hidden;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.story_card:hover
{
  border-color: rgba(212,165,58,0.4);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.story_info
{
  background: -webkit-gradient( linear, left top, left bottom, from(rgba(7, 21, 46, 0)), color-stop(45%, rgba(7, 21, 46, 0.75)), to(rgba(7, 21, 46, 0.98)) );
  background: -webkit-linear-gradient( top, rgba(7, 21, 46, 0) 0%, rgba(7, 21, 46, 0.75) 45%, rgba(7, 21, 46, 0.98) 100% );
  background: -moz-linear-gradient( top, rgba(7, 21, 46, 0) 0%, rgba(7, 21, 46, 0.75) 45%, rgba(7, 21, 46, 0.98) 100% );
  background: -o-linear-gradient( top, rgba(7, 21, 46, 0) 0%, rgba(7, 21, 46, 0.75) 45%, rgba(7, 21, 46, 0.98) 100% );
  background: linear-gradient( 180deg, rgba(7, 21, 46, 0) 0%, rgba(7, 21, 46, 0.75) 45%, rgba(7, 21, 46, 0.98) 100% );
  padding-top: 80px !important;
}

.story_name
{
  color: var(--warm-white);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.story_meta
{
  color: var(--slate-gray);
  font-size: 0.73rem;
  margin-top: 2px;
}

.story_progress_bar
{
  height: 4px;
  background: rgba(42,79,157,0.35);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}

.story_progress_fill
{
  height: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* =============================================
   STORY FILTER
   ============================================= */
.story_filter_area
{
  width: 100%;
}

.story_filter_row
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.story_filter_buttons
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.story_filter_btn
{
  background: #0f1e33;
  border: 1px solid rgba(42,79,157,0.35);
  color: var(--warm-white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  -moz-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

.story_filter_btn:hover
{
  border-color: rgba(212,165,58,0.45);
  color: var(--warm-gold);
}

.story_filter_btn.active
{
  background: #f4e5d6;
  color: var(--navy-deep);
  border-color: #f4e5d6;
}

.story_filter_actions
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.story_result_count
{
  color: var(--light-sand);
  font-size: 1rem;
  font-weight: 300;
}

/* List view */
.story_grid.list_view > .story_item
{
  -webkit-box-flex: 0 !important;
  -webkit-flex: 0 0 100% !important;
  -moz-box-flex: 0 !important;
  -ms-flex: 0 0 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

.story_grid.list_view .story_card
{
  min-height: 180px;
}

.story_sort_filter
{
  position: relative;
  height: 46px;
  min-width: 170px;
  background: #0f1e33;
  border: 1px solid rgba(42,79,157,0.35);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.story_sort_label
{
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: 18px;
  pointer-events: none;
}

.story_filter_icon_btn
{
  width: 54px;
  height: 100%;
  border: 0;
  background: var(--gold);
  color: var(--navy-deep);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
}

.story_filter_icon_btn i
{
  font-size: 1.45rem;
}

/* De echte select ligt onzichtbaar over alles */
.story_sort_native
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* =============================================
   EXPLORE
   Bootstrap columns handle responsiveness
   ============================================= */
.explore_scroll_wrap
{
  width: 100%;
}

.explore_scroll_inner
{

  /* Bootstrap row handles the columns */
}

.explore_card
{
  height: 100%;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  border: 1px solid rgba(42,79,157,0.25);
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.explore_card:hover
{
  border-color: rgba(212,165,58,0.4);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.explorer_bg_1
{
  background: #0a1a31;
}

.explorer_bg_2
{
  background: #0d1c2a;
}

.explorer_bg_3
{
  background: #0d1934;
}

.explorer_bg_4
{
  background: #151b21;
}

.explorer_bg_5
{
  background: #0a1730;
}

.explore_icon
{
  width: 52px;
  height: 52px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.4rem;
}

.explore_icon_blue
{
  background: rgba(42,79,157,0.4);
  color: #7aaaff;
}

.explore_icon_green
{
  background: rgba(27,138,80,0.3);
  color: #5de0a0;
}

.explore_icon_purple
{
  background: rgba(110,90,205,0.35);
  color: #beafee;
}

.explore_icon_gold
{
  background: rgba(212,165,58,0.25);
  color: var(--warm-gold);
}

.explore_icon_ai
{
  background: #432790;
  color: #ffffff;
}

.explore_label
{
  color: var(--warm-white);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
}

/* =============================================
   FEATURED STORY (right col, desktop only)
   ============================================= */
.featured_card
{
  background: var(--navy-rich);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.featured_thumb
{
  height: 260px;
  overflow: hidden;
}

.featured_thumb_img
{
  position: absolute;
  inset: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.featured_thumb_content
{
  position: relative;
  z-index: 2;
  padding: 24px;
  max-width: 70%;
}

.featured_badge
{
  display: inline-block;
  background: var(--soft-purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 14px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.featured_title
{
  color: var(--warm-white);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.35;
}

.featured_meta
{
  color: var(--slate-gray);
  font-size: 0.82rem;
}

.featured_meta i
{
  font-size: 1rem;
}

.featured_part
{
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 300;
}

.featured_body
{
  background: var(--navy-rich);
}

.featured_desc
{
  color: var(--warm-white);
  font-size: 0.95rem;
  line-height: 1.7;
}

.featured_lesson
{
  background: #0f1e34;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.featured_lesson_icon
{
  width: 38px;
  height: 38px;
  min-width: 38px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgba(212,165,58,0.12);
  color: var(--gold);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.3rem;
}

.featured_lesson_title
{
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 5px;
}

.featured_lesson_text
{
  color: var(--slate-gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

.btn_continue
{
  background: #f4e5d6;
  color: var(--navy-deep);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn_continue:hover
{
  background: var(--light-sand);
  color: var(--navy-deep);
}

/* =============================================
   MY JOURNEY
   ============================================= */
.journey
{
  background: #0f1e34;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 14px 16px;
}

.journey_card
{
  background: var(--navy-rich);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border: none;
}

.journey_name
{
  color: var(--warm-white);
  font-size: 1rem;
  font-weight: 700;
}

.journey_tagline
{
  color: var(--slate-gray);
  font-size: 0.78rem;
}

.journey_stat
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.journey_stat_icon
{
  width: 35px;
  height: 35px;
  min-width: 35px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
}

.stat_fire
{
  background: rgba(255, 105, 40, 0.18);
}

.stat_fire>.bx
{
  color:#d85624;
}

.stat_check
{
  background: rgba(65, 210, 120, 0.18);
}

.stat_check>.bx
{
  color:#56a358;
}

.stat_medal
{
  background: rgba(70, 120, 255, 0.18);
}

.stat_medal>.bx
{
  color:#7093d9;
}

.journey_stat_text
{
  text-align: left;
}

.journey_stat_num
{
  color: var(--warm-white);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}

.journey_stat_label
{
  color: var(--slate-gray);
  font-size: 0.6rem;
  margin-top: 2px;
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 300;
  text-align: center;
}

.prog_label
{
  color: var(--slate-gray);
  font-size: 0.82rem;
}

.prog_count
{
  color: var(--warm-white);
  font-size: 0.82rem;
  font-weight: 600;
}

.prog_bar
{
  height: 6px;
  background: rgba(42,79,157,0.25);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.prog_fill
{
  height: 100%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.prog_dot
{
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
}

.prog_green
{
  background: #5de0a0;
}

.prog_gold
{
  background: var(--gold);
}

.prog_purple
{
  background: var(--soft-purple);
}

.progress_row
{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 42px 150px 1fr 55px;
  grid-template-columns: 42px 150px 1fr 55px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.progress_icon
{
  width: 38px;
  height: 38px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.progress_icon i
{
  font-size: 20px;
  color: #fff;
}

.progress_green .progress_icon
{
  background: #114729;
}

.progress_green .progress_icon i
{
  color:#5de0a0;
}

.progress_purple .progress_icon
{
  background: #3e3476;
}

.progress_purple .progress_icon i
{
  color:#beafee;
}

.progress_gold .progress_icon
{
  background: #5d481b;
}

.progress_gold .progress_icon i
{
  color: var(--warm-gold);
}

.progress_blue .progress_icon
{
  background: #1a3364;
}

.progress_blue .progress_icon i
{
  color:#7aaaff;
}

.prog_label
{
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 300;
  white-space: nowrap;
}

.prog_count
{
  color: var(--warm-white);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
}

.prog_bar
{
  height: 7px;
  background: #152945;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  overflow: hidden;
}

.prog_fill
{
  height: 100%;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

/* ==
/* =============================================
   BOTTOM TAB BAR (mobile only)
   ============================================= */
.bottom_tabbar
{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--tabbar-h);
  background: var(--navy-rich);
  border-top: 1px solid rgba(42,79,157,0.4);
  z-index: 300;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 0 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tab_item
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: var(--slate-gray);
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  padding: 0 4px;
  -webkit-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
  position: relative;
}

.tab_item i
{
  font-size: 1.3rem;
  display: block;
}

.tab_item:hover
{
  color: var(--warm-white);
}

.tab_item.active
{
  color: var(--gold);
}

.tab_item.active i
{
  color: var(--gold);
}

/* AI Teacher centre bubble */
.tab_item_ai
{
  margin-top: -18px;
}

.tab_ai_bubble
{
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: -webkit-linear-gradient(315deg, var(--gold), var(--warm-gold));
  background: -moz-linear-gradient(315deg, var(--gold), var(--warm-gold));
  background: -o-linear-gradient(315deg, var(--gold), var(--warm-gold));
  background: linear-gradient(135deg, var(--gold), var(--warm-gold));
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy-deep);
  -webkit-box-shadow: 0 4px 18px rgba(212,165,58,0.5);
  -moz-box-shadow: 0 4px 18px rgba(212,165,58,0.5);
  box-shadow: 0 4px 18px rgba(212,165,58,0.5);
  margin-bottom: 3px;
}

.tab_item_ai i
{
  display: none;
}

/* icon inside bubble only */
.tab_item.active .tab_ai_bubble
{
  -webkit-box-shadow: 0 6px 24px rgba(212,165,58,0.7);
  -moz-box-shadow: 0 6px 24px rgba(212,165,58,0.7);
  box-shadow: 0 6px 24px rgba(212,165,58,0.7);
}

.footer,
.footer a
{
  color: var(--slate-gray);
  font-size: 0.73rem;
  margin-top: 2px;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile_popup
{
  position: absolute;
  inset: 0;
  z-index: 9999;
  height: 100vh;
}

.profile_popup_overlay
{
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 24, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile_popup_box
{
  position: relative;
  z-index: 2;
  width: -webkit-calc(100% - 32px);
  width: -moz-calc(100% - 32px);
  width: calc(100% - 32px);
  max-width: 520px;
  margin: 80px auto;
  background: #0a182f;
  border: 1px solid rgba(42,79,157,0.35);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 28px;
  -webkit-box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  -moz-box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.profile_popup_close
{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(42,79,157,0.35);
  background: #071028;
  color: var(--warm-white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.profile_popup_title
{
  color: var(--warm-white);
  font-size: 1.35rem;
  font-weight: 600;
}

.profile_popup_subtitle
{
  color: var(--slate-gray);
  font-size: 0.85rem;
  margin-top: 4px;
  margin-bottom: 22px;
}

.profile_popup_avatar_area
{
  text-align: center;
  margin-bottom: 24px;
}

.profile_popup_avatar
{
  width: 118px;
  height: 118px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-color: #f4e5d6;
  border: 3px solid rgba(245,240,230,0.9);
  margin: 0 auto 14px;
}

.profile_upload_btn
{
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: #0f1e33;
  border: 1px solid rgba(42,79,157,0.45);
  color: var(--warm-white);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.85rem;
  cursor: pointer;
}

.profile_form_group
{
  margin-bottom: 16px;
}

.profile_form_group label
{
  display: block;
  color: var(--warm-white);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.profile_form_group input,
.profile_form_group textarea
{
  width: 100%;
  background: #0f1e33;
  border: 1px solid rgba(42,79,157,0.45);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  color: var(--warm-white);
  padding: 12px 14px;
  font-size: 0.9rem;
  outline: none;
}

.profile_popup_actions
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.profile_save_btn,
.profile_cancel_btn
{
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 0.85rem;
  cursor: pointer;
}

.profile_save_btn
{
  border: 0;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
}

.profile_cancel_btn
{
  background: #0f1e33;
  color: var(--warm-white);
  border: 1px solid rgba(42,79,157,0.45);
}

body.popup_open
{
  overflow: auto;
}

.profile_hero_card,
.profile_stat_card,
.profile_panel
{
  background: #0a182f;
  border: 1px solid rgba(42,79,157,0.25);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 30px rgba(0,0,0,0.16);
  -moz-box-shadow: 0 8px 30px rgba(0,0,0,0.16);
  box-shadow: 0 8px 30px rgba(0,0,0,0.16);
}

.profile_hero_card
{
  padding: 28px;
}

.profile_intro
{
  min-height: 170px;
}

.profile_avatar_wrap
{
  position: relative;
  width: 138px;
  min-width: 138px;
  height: 138px;
}

.profile_avatar
{
  width: 138px;
  height: 138px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-color: #f4e5d6;
  border: 3px solid rgba(245,240,230,0.9);
}

.profile_camera_btn
{
  position: absolute;
  right: 4px;
  bottom: 6px;
  width: 38px;
  height: 38px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(42,79,157,0.55);
  background: #071028;
  color: var(--warm-white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.profile_name
{
  color: var(--warm-white);
  font-size: 1.7rem;
  font-weight: 600;
}

.profile_bio
{
  color: var(--warm-white);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 440px;
}

.profile_edit_btn
{
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: var(--warm-white);
  border: 1px solid rgba(42,79,157,0.45);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 0.85rem;
}

.profile_edit_btn:hover
{
  border-color: rgba(212,165,58,0.55);
  color: var(--warm-gold);
}

.profile_info_list
{
  border-left: 1px solid rgba(42,79,157,0.25);
  padding-left: 32px;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.profile_info_item
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.profile_info_icon,
.profile_stat_icon,
.profile_progress_icon,
.achievement_icon
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.profile_info_icon
{
  width: 40px;
  height: 40px;
  min-width: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 1.2rem;
}

.profile_info_label
{
  color: var(--slate-gray);
  font-size: 0.78rem;
}

.profile_info_value
{
  color: var(--warm-white);
  font-size: 0.9rem;
}

.profile_stat_card
{
  min-height: 110px;
  padding: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
}

.profile_stat_icon
{
  width: 58px;
  height: 58px;
  min-width: 58px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 1.8rem;
}

.profile_stat_num
{
  color: var(--warm-white);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.profile_stat_title
{
  color: var(--warm-white);
  font-size: 0.9rem;
  margin-top: 8px;
}

.profile_stat_text
{
  color: var(--slate-gray);
  font-size: 0.78rem;
  margin-top: 2px;
}

.profile_panel
{
  padding: 22px;
}

.profile_panel_header
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 18px;
}

.activity_list
{
  display: -ms-grid;
  display: grid;
  gap: 0;
}

.activity_item
{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 58px 1fr auto;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(42,79,157,0.18);
}

.activity_thumb
{
  width: 58px;
  height: 44px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

.activity_title,
.achievement_title,
.profile_progress_top span
{
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 600;
}

.activity_sub,
.achievement_sub,
.profile_progress_desc
{
  color: var(--slate-gray);
  font-size: 0.78rem;
  line-height: 1.45;
}

.activity_time
{
  color: var(--slate-gray);
  font-size: 0.75rem;
  text-align: right;
  white-space: nowrap;
}

.profile_progress_item
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.profile_progress_item:last-child
{
  margin-bottom: 0;
}

.profile_progress_icon
{
  width: 42px;
  height: 42px;
  min-width: 42px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  font-size: 1.35rem;
}

.profile_progress_content
{
  width: 100%;
}

.profile_progress_top
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
}

.profile_progress_top strong
{
  color: var(--warm-white);
  font-size: 0.85rem;
}

.profile_bar
{
  height: 6px;
  background: rgba(42,79,157,0.35);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 10px;
}

.profile_bar_fill
{
  height: 100%;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.achievement_item
{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 46px 1fr 22px;
  grid-template-columns: 46px 1fr 22px;
  gap: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(42,79,157,0.18);
}

.achievement_item:last-child
{
  border-bottom: 0;
}

.achievement_icon
{
  width: 44px;
  height: 44px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 1.35rem;
}

.achievement_check
{
  color: #55c96f;
  font-size: 1.25rem;
}

.blue
{
  background: rgba(70,120,255,0.18);
  color: #6fa2ff;
}

.gold,
.orange
{
  background: rgba(212,165,58,0.18);
  color: var(--warm-gold);
}

.green
{
  background: rgba(65,210,120,0.18);
  color: #5de0a0;
}

.purple
{
  background: rgba(110,90,205,0.22);
  color: #beafee;
}

.pink
{
  background: rgba(255,70,140,0.18);
  color: #ff5b9d;
}

.profile_bar_fill.blue
{
  background: #5d83ff;
}

.profile_bar_fill.gold
{
  background: #f4a51c;
}

.profile_bar_fill.green
{
  background: #38b958;
}

.profile_bar_fill.purple
{
  background: #7a68ff;
}

.profile_panel_scroll
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.achievement_scroll
{
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
}

/* nice scrollbar */
.achievement_scroll::-webkit-scrollbar
{
  width: 5px;
}

.achievement_scroll::-webkit-scrollbar-track
{
  background: rgba(42,79,157,0.15);
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.achievement_scroll::-webkit-scrollbar-thumb
{
  background: rgba(212,165,58,0.65);
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.achievement_scroll::-webkit-scrollbar-thumb:hover
{
  background: var(--warm-gold);
}

/* Firefox */
.achievement_scroll
{
  scrollbar-width: thin;
  scrollbar-color: rgba(212,165,58,0.65) rgba(42,79,157,0.15);
}

.achievement_item.disabled
{
  opacity: 0.45;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  cursor: not-allowed;
}

.achievement_item.disabled .achievement_icon
{
  background: rgba(138,148,166,0.12);
  color: var(--slate-gray);
}

.achievement_item.disabled .achievement_title
{
  color: var(--slate-gray);
}

.achievement_item.disabled .achievement_sub
{
  color: rgba(138,148,166,0.75);
}

.achievement_lock
{
  color: var(--slate-gray);
  font-size: 1.25rem;
}

/* =============================================
   AI TEACHER WIDGET PAGE
   ============================================= */
.ai_teacher_layout
{
  max-width: 1180px;
  margin: 0 auto;
}

.ai_teacher_widget_col
{
  background: #0a182f;
  border: 1px solid rgba(42,79,157,0.28);
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  padding: 18px;
  -webkit-box-shadow: 0 14px 45px rgba(0,0,0,0.24);
  -moz-box-shadow: 0 14px 45px rgba(0,0,0,0.24);
  box-shadow: 0 14px 45px rgba(0,0,0,0.24);
  overflow: hidden;
}

/* Main imported UNITH widget container */
#talking-head
{
  width: 100%;
  min-height: -webkit-calc(100vh - 245px);
  min-height: -moz-calc(100vh - 245px);
  min-height: calc(100vh - 245px);
  max-height: 760px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: -webkit-radial-gradient(50% 25%, circle, rgba(212,165,58,0.08), transparent 35%), -webkit-linear-gradient(315deg, #071028 0%, #0f1e33 100%);
  background: -moz-radial-gradient(50% 25%, circle, rgba(212,165,58,0.08), transparent 35%), -moz-linear-gradient(315deg, #071028 0%, #0f1e33 100%);
  background: -o-radial-gradient(50% 25%, circle, rgba(212,165,58,0.08), transparent 35%), -o-linear-gradient(315deg, #071028 0%, #0f1e33 100%);
  background: radial-gradient(circle at 50% 25%, rgba(212,165,58,0.08), transparent 35%), linear-gradient(135deg, #071028 0%, #0f1e33 100%);
  border: 1px solid rgba(42,79,157,0.25);
  position: relative;
}

/* If widget creates iframe/video/canvas inside */
#talking-head iframe,
#talking-head video,
#talking-head canvas
{
  width: 100% !important;
  height: 100% !important;
  min-height: -webkit-calc(100vh - 245px);
  min-height: -moz-calc(100vh - 245px);
  min-height: calc(100vh - 245px);
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  overflow: hidden;
}

/* Try to keep widget content full size */
#talking-head > div,
#talking-head > section,
#talking-head > main
{
  width: 100%;
  min-height: -webkit-calc(100vh - 245px);
  min-height: -moz-calc(100vh - 245px);
  min-height: calc(100vh - 245px);
}

/* Widget suggestions */
#talking-head .suggestion-wrapper,
.suggestion-wrapper
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px 12px !important;
}

#talking-head .suggestion,
.suggestion
{
  background: #0f1e33 !important;
  border: 1px solid rgba(42,79,157,0.4) !important;
  color: var(--warm-white) !important;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  border-radius: 30px !important;
  padding: 10px 16px !important;
  font-size: 0.85rem !important;
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  -moz-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

#talking-head .suggestion:hover, .suggestion:hover
{
  border-color: rgba(212,165,58,0.55) !important;
  color: var(--warm-gold) !important;
}

/* Widget buttons */
#talking-head button
{
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  border-radius: 999px;
}

/* =============================================
   LOGIN PAGE - BOOTSTRAP 5 MOBILE FIRST
   ============================================= */
.login_body
{
  min-height: 100vh;
  background: -webkit-radial-gradient(20% 10%, circle, rgba(42,79,157,0.22), transparent 32%), -webkit-radial-gradient(80% 15%, circle, rgba(212,165,58,0.08), transparent 28%), #071028;
  background: -moz-radial-gradient(20% 10%, circle, rgba(42,79,157,0.22), transparent 32%), -moz-radial-gradient(80% 15%, circle, rgba(212,165,58,0.08), transparent 28%), #071028;
  background: -o-radial-gradient(20% 10%, circle, rgba(42,79,157,0.22), transparent 32%), -o-radial-gradient(80% 15%, circle, rgba(212,165,58,0.08), transparent 28%), #071028;
  background: radial-gradient(circle at 20% 10%, rgba(42,79,157,0.22), transparent 32%), radial-gradient(circle at 80% 15%, rgba(212,165,58,0.08), transparent 28%), #071028;
  overflow-x: hidden;
}

.login_shell
{
  max-width: 1500px;
  min-height: auto;
  background: -webkit-linear-gradient(315deg, rgba(7,16,40,0.95), rgba(8,27,57,0.92));
  background: -moz-linear-gradient(315deg, rgba(7,16,40,0.95), rgba(8,27,57,0.92));
  background: -o-linear-gradient(315deg, rgba(7,16,40,0.95), rgba(8,27,57,0.92));
  background: linear-gradient(135deg, rgba(7,16,40,0.95), rgba(8,27,57,0.92));
  border: none;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  -webkit-box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  -moz-box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.login_brand_panel
{
  min-height: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7,14,36,0)), color-stop(55%, rgba(7,14,36,0.45)), color-stop(82%, #070e24), to(#070e24)), -webkit-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7,14,36,0)), color-stop(55%, rgba(7,14,36,0.45)), color-stop(82%, #070e24), to(#070e24)), -moz-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7,14,36,0)), color-stop(55%, rgba(7,14,36,0.45)), color-stop(82%, #070e24), to(#070e24)), -o-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7,14,36,0)), color-stop(55%, rgba(7,14,36,0.45)), color-stop(82%, #070e24), to(#070e24)), radial-gradient(circle at 45% 24%, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -webkit-linear-gradient(top, rgba(7,14,36,0) 0%, rgba(7,14,36,0.45) 55%, #070e24 82%, #070e24 100%), -webkit-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -moz-linear-gradient(top, rgba(7,14,36,0) 0%, rgba(7,14,36,0.45) 55%, #070e24 82%, #070e24 100%), -moz-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -o-linear-gradient(top, rgba(7,14,36,0) 0%, rgba(7,14,36,0.45) 55%, #070e24 82%, #070e24 100%), -o-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: linear-gradient(180deg, rgba(7,14,36,0) 0%, rgba(7,14,36,0.45) 55%, #070e24 82%, #070e24 100%), radial-gradient(circle at 45% 24%, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #070e24;
}

.login_brand_content
{
  max-width: 620px;
}

.login_logo
{
  max-width: 280px;
  -webkit-filter: drop-shadow(0 12px 35px rgba(0,0,0,0.35));
  filter: drop-shadow(0 12px 35px rgba(0,0,0,0.35));
}

.login_tagline
{
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.login_divider
{
  color: var(--gold);
  letter-spacing: 8px;
}

.login_intro
{
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  border-top:1px solid rgba(42, 79, 157, 0.18);
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}

.login_feature_icon
{
  width: 58px;
  height: 58px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  background: rgba(42,79,157,0.35);
  color: var(--warm-gold);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
}

.login_feature_icon.green
{
  color: #5de0a0;
}

.login_feature_icon.purple
{
  color: #beafee;
}

.login_feature_title
{
  color: var(--warm-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.login_form_panel
{
  min-height: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 14, 36, 0)), color-stop(55%, rgba(7, 14, 36, 0.45)), color-stop(82%, #070e24), to(#070e24)), -webkit-radial-gradient(45% 24%, circle, rgba(27, 77, 138, 0.42), transparent 30%), url(../images/login_bg.jpg);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7,14,36,0)), color-stop(55%, rgba(7,14,36,0.45)), color-stop(82%, #070e24), to(#070e24)), -moz-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7,14,36,0)), color-stop(55%, rgba(7,14,36,0.45)), color-stop(82%, #070e24), to(#070e24)), -o-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 14, 36, 0)), color-stop(55%, rgba(7, 14, 36, 0.45)), color-stop(82%, #070e24), to(#070e24)), -moz-radial-gradient(45% 24%, circle, rgba(27, 77, 138, 0.42), transparent 30%), url(../images/login_bg.jpg);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 14, 36, 0)), color-stop(55%, rgba(7, 14, 36, 0.45)), color-stop(82%, #070e24), to(#070e24)), -o-radial-gradient(45% 24%, circle, rgba(27, 77, 138, 0.42), transparent 30%), url(../images/login_bg.jpg);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 14, 36, 0)), color-stop(55%, rgba(7, 14, 36, 0.45)), color-stop(82%, #070e24), to(#070e24)), radial-gradient(circle at 45% 24%, rgba(27, 77, 138, 0.42), transparent 30%), url(../images/login_bg.jpg);
  background: -webkit-linear-gradient(top, rgba(7, 14, 36, 0) 0%, rgba(7, 14, 36, 0.45) 55%, #070e24 82%, #070e24 100%), -webkit-radial-gradient(45% 24%, circle, rgba(27, 77, 138, 0.42), transparent 30%), url(../images/login_bg.jpg);
  background: -moz-linear-gradient(top, rgba(7,14,36,0) 0%, rgba(7,14,36,0.45) 55%, #070e24 82%, #070e24 100%), -moz-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -o-linear-gradient(top, rgba(7,14,36,0) 0%, rgba(7,14,36,0.45) 55%, #070e24 82%, #070e24 100%), -o-radial-gradient(45% 24%, circle, rgba(27,77,138,0.42), transparent 30%), url("../images/login_bg.jpg");
  background: -moz-linear-gradient(top, rgba(7, 14, 36, 0) 0%, rgba(7, 14, 36, 0.45) 55%, #070e24 82%, #070e24 100%), -moz-radial-gradient(45% 24%, circle, rgba(27, 77, 138, 0.42), transparent 30%), url(../images/login_bg.jpg);
  background: -o-linear-gradient(top, rgba(7, 14, 36, 0) 0%, rgba(7, 14, 36, 0.45) 55%, #070e24 82%, #070e24 100%), -o-radial-gradient(45% 24%, circle, rgba(27, 77, 138, 0.42), transparent 30%), url(../images/login_bg.jpg);
  background: linear-gradient(180deg, rgba(7, 14, 36, 0) 0%, rgba(7, 14, 36, 0.45) 55%, #070e24 82%, #070e24 100%), radial-gradient(circle at 45% 24%, rgba(27, 77, 138, 0.42), transparent 30%), url(../images/login_bg.jpg);
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #070e24;
}

.login_card
{
  max-width: 560px;
  min-height: auto;
  background: -webkit-radial-gradient(50% 5%, circle, rgba(42,79,157,0.18), transparent 28%), rgba(10,24,47,0.50);
  background: -moz-radial-gradient(50% 5%, circle, rgba(42,79,157,0.18), transparent 28%), rgba(10,24,47,0.50);
  background: -o-radial-gradient(50% 5%, circle, rgba(42,79,157,0.18), transparent 28%), rgba(10,24,47,0.50);
  background: radial-gradient(circle at 50% 5%, rgba(42,79,157,0.18), transparent 28%), rgba(10,24,47,0.50);
  border: 1px solid rgba(42,79,157,0.42);
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  padding: 42px 22px 28px;
  -webkit-box-shadow: inset 0 0 40px rgba(42,79,157,0.08), 0 20px 60px rgba(0,0,0,0.28);
  -moz-box-shadow: inset 0 0 40px rgba(42,79,157,0.08), 0 20px 60px rgba(0,0,0,0.28);
  box-shadow: inset 0 0 40px rgba(42,79,157,0.08), 0 20px 60px rgba(0,0,0,0.28);
}

.login_card_icon
{
  width: 86px;
  height: 86px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgb(190 175 238 / 15%);
  color: #7a68ff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.login_card_icon i
{
  font-size: 2.4rem;
}

.login_title
{
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  font-size: 1.2rem;
}

.login_subtitle
{
  color: #c7ccd6;
  font-size: 0.9rem;
  line-height: 1.2;
}

.login_label
{
  color: var(--warm-white);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.login_input
{
  height: 62px;
  background: rgba(7,16,40,0.35) !important;
  border: 1px solid rgba(42,79,157,0.42);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  color: var(--warm-white) !important;
  font-size: 0.95rem;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.login_input:focus
{
  border-color: rgba(212,165,58,0.65);
}

.login_input::-webkit-input-placeholder
{
  color: var(--slate-gray);
}

.login_input:-moz-placeholder
{
  color: var(--slate-gray);
}

.login_input::-moz-placeholder
{
  color: var(--slate-gray);
}

.login_input:-ms-input-placeholder
{
  color: var(--slate-gray);
}

.login_input::-ms-input-placeholder
{
  color: var(--slate-gray);
}

.login_input::placeholder
{
  color: var(--slate-gray);
}

.login_phone_group
{
  height: 62px;
  background: rgba(7,16,40,0.35);
  border: 1px solid rgba(42,79,157,0.42);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.login_phone_group:focus-within
{
  border-color: rgba(212,165,58,0.65);
}

.login_phone_group .login_input
{
  height: 60px;
  background: transparent !important;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.login_prefix
{
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(138,148,166,0.35);
  color: var(--warm-white);
  padding-left: 14px;
  padding-right: 14px;
}

.login_submit_btn
{
  height: 62px;
  border: 0;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  margin-top: 24px;
  background: -webkit-linear-gradient(315deg, #326dff, #2454ec);
  background: -moz-linear-gradient(315deg, #326dff, #2454ec);
  background: -o-linear-gradient(315deg, #326dff, #2454ec);
  background: linear-gradient(135deg, #326dff, #2454ec);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  -webkit-box-shadow: 0 14px 35px rgba(36,84,236,0.28);
  -moz-box-shadow: 0 14px 35px rgba(36,84,236,0.28);
  box-shadow: 0 14px 35px rgba(36,84,236,0.28);
  -webkit-transition: 0.25s all ease;
  -o-transition: 0.25s all ease;
  -moz-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

.login_submit_btn:hover
{
  color: #fff;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 18px 42px rgba(36,84,236,0.36);
  -moz-box-shadow: 0 18px 42px rgba(36,84,236,0.36);
  box-shadow: 0 18px 42px rgba(36,84,236,0.36);
}

.signup_link a
{
  color: var(--gold);
  font-size: 0.9rem;
}

.signup_link a:hover
{
  color: var(--warm-gold);
}

.login_secure_text
{
  color: var(--slate-gray);
  font-size: 0.78rem;
}

.login_secure_text i
{
  font-size: 1.15rem;
  margin-right: 8px;
}

@media screen and (min-width: 576px)
{
  .hero_card
  {
    background-image: none;
  }

  .login_card
  {
    padding: 48px 36px 34px;
  }

  .login_logo
  {
    max-width: 330px;
  }

  .login_tagline
  {
    font-size: 1.25rem;
  }

  .login_intro
  {
  }
}

/* Medium devices and up */
@media (min-width: 768px)
{
  .login_shell
  {
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
  }

  .login_logo
  {
    max-width: 390px;
  }

  .login_tagline
  {
    font-size: 1.35rem;
  }

  .login_card
  {
    padding: 60px 52px 38px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    border-radius: 22px;
  }

  .login_card_icon
  {
    width: 104px;
    height: 104px;
  }

  .login_card_icon i
  {
    font-size: 2.8rem;
  }

  .login_title
  {
    font-size: 1.65rem;
  }

  .login_subtitle
  {
    font-size: 0.98rem;
  }

  .login_input, .login_phone_group
  {
    height: 68px;
  }

  .login_phone_group .login_input
  {
    height: 66px;
  }

  .login_submit_btn
  {
    height: 68px;
  }

  .login_secure_text
  {
    font-size: 0.86rem;
  }
}

@media screen and (min-width: 992px)
{
  .login_form_panel
  {
    background: -webkit-radial-gradient(50% 10%, circle, rgba(42,79,157,0.16), transparent 30%);
    background: -moz-radial-gradient(50% 10%, circle, rgba(42,79,157,0.16), transparent 30%);
    background: -o-radial-gradient(50% 10%, circle, rgba(42,79,157,0.16), transparent 30%);
    background: radial-gradient(circle at 50% 10%, rgba(42,79,157,0.16), transparent 30%);
  }

  .login_shell
  {
    border: 1px solid rgba(42,79,157,0.38);
  }
}

@media screen and (min-width: 1200px)
{
  .hero_figure_inner
  {
    -webkit-background-size: 330px 330px;
    -moz-background-size: 330px;
    -o-background-size: 330px;
    background-size: 330px;
  }

  .section_title_main
  {
    font-size: 2rem;
  }

  .login_shell
  {
    min-height: -webkit-calc(100vh - 48px);
    min-height: -moz-calc(100vh - 48px);
    min-height: calc(100vh - 48px);
  }

  .login_brand_panel
  {
    min-height: 720px;
  }

  .login_card
  {
    min-height: 720px;
    padding: 72px 64px 42px;
  }

  .login_logo
  {
    max-width: 430px;
  }

  .login_tagline
  {
    font-size: 1.45rem;
  }

  .login_card_icon
  {
    width: 112px;
    height: 112px;
  }

  .login_card_icon i
  {
    font-size: 3rem;
  }

  .login_title
  {
    font-size: 1.75rem;
  }

  .login_subtitle
  {
    font-size: 1rem;
  }

  .login_input, .login_phone_group
  {
    height: 68px;
  }

  .login_submit_btn
  {
    height: 70px;
  }
}

@media screen and (min-width: 1500px)
{
  .hero_figure
  {
    width: 100%;
  }
}

@media (max-width: 991.98px)
{
  .sidebar
  {
    display: none !important;
  }

  .main_wrapper
  {
    margin-left: 0 !important;
  }

  .story_scroll_inner::-webkit-scrollbar
  {
    display: none;
  }

  .hero_quote
  {
    font-size: 0.95rem;
    text-shadow: 3px 5px 4px rgba(0, 0, 0, 0.3);
  }

  .hero_content
  {
    max-width: 92%;
  }

  .hero_figure_inner::after
  {
    font-size: 3.5rem;
  }

  .footer
  {
    padding-bottom: 120px;
  }

  .hero_overlay
  {
    background: -webkit-radial-gradient(70% 50%, ellipse, rgba(240,217,122,0.08) 0%, rgba(0,0,0,50%) 70%);
    background: -moz-radial-gradient(70% 50%, ellipse, rgba(240,217,122,0.08) 0%, rgba(0,0,0,50%) 70%);
    background: -o-radial-gradient(70% 50%, ellipse, rgba(240,217,122,0.08) 0%, rgba(0,0,0,50%) 70%);
    background: radial-gradient(ellipse at 70% 50%, rgba(240,217,122,0.08) 0%, rgba(0,0,0,50%) 70%);
  }

  .ai_teacher_widget_col
  {
    padding: 12px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
  }

  #talking-head
  {
    min-height: -webkit-calc(100vh - 220px);
    min-height: -moz-calc(100vh - 220px);
    min-height: calc(100vh - 220px);
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;
  }

  #talking-head iframe, #talking-head video, #talking-head canvas, #talking-head > div, #talking-head > section, #talking-head > main
  {
    min-height: -webkit-calc(100vh - 220px);
    min-height: -moz-calc(100vh - 220px);
    min-height: calc(100vh - 220px);
  }

  .profile_hero_card
  {
    padding: 22px;
  }

  .profile_intro
  {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -moz-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .profile_info_list
  {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(42,79,157,0.25);
    padding-top: 20px;
  }
}

@media (max-width: 645px)
{
  .story_filter_buttons
  {
    display: none;
    width: 100%;
  }

  .story_filter_buttons.is_open
  {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .story_sort_filter
  {
    width: 100%;
  }

  .ai_teacher_widget_col
  {
    padding: 8px;
    margin-bottom: 80px;
  }

  #talking-head
  {
    min-height: -webkit-calc(100vh - 190px);
    min-height: -moz-calc(100vh - 190px);
    min-height: calc(100vh - 190px);
  }

  #talking-head iframe, #talking-head video, #talking-head canvas, #talking-head > div, #talking-head > section, #talking-head > main
  {
    min-height: -webkit-calc(100vh - 190px);
    min-height: -moz-calc(100vh - 190px);
    min-height: calc(100vh - 190px);
  }

  .suggestion-wrapper
  {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .suggestion
  {
    white-space: nowrap;
  }

  .profile_intro
  {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .profile_avatar_wrap
  {
    margin: 0 auto;
  }

  .profile_bio
  {
    max-width: 100%;
  }

  .activity_item
  {
    -ms-grid-columns: 54px 1fr;
    grid-template-columns: 54px 1fr;
  }

  .activity_time
  {
    -ms-grid-column: 2;
    grid-column: 2;
    text-align: left;
  }

  .profile_stat_card
  {
    padding: 18px;
  }
}
