/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --color_base: #000;    
    --color_base_secondary: #444;    
    --color_base_contrast: #fff;
    --color_brand: #FED941;
    --color_brand_contrast: #000;
    --color_brandsecondary: #eee;
    --color_brandsecondary_contrast: #000;
    --color_input: #eee;
    --color_hero_bg: #e5e5e5;
    --color_border: #ddd;
    --color_warning: #FF286C;
    --color_warning_contrast: #fff;
    --border: 1px solid #ddd;    
    
    /* Typography */
    --font_family: "Inter", sans-serif;
    --font_faimly_h: "Sora", sans-serif;
    --font_body: 18px;
    --font_labels: 16px;
    --font_mini: 14px;
    --font_regular: 400;    
    --font_bold: 500;
    --font_black: 600;
    --cta_case: capitalize;
    --h_case: capitalize;
    --heading-h1-letter-spacing: -0.8px;
    --heading-h1-line-height: 130%;
    
    /* Spacing */
    --padding_mobile: 32px;
    --padding_desktop: 24px;
    --nav_height: 80px;
    --gap: 16px;
    --base_unit: 8px;
    
    /* Layout */
    --border_radius: 8px;
    --element_height: 48px;
    --max_content_width: 1080px;
    
    /* Animation */
    --transition: all 250ms cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
html, body {
    -webkit-tap-highlight-color: transparent;
    height: 100%;
    touch-action: pan-y;
}

body {
    background-color: var(--color_base_contrast);
    color: var(--color_base);
    font-family: var(--font_family);
    font-weight: var(--font_regular);
    font-size: var(--font_body);
    line-height: 150%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    direction: ltr;
    text-align: left;
}

body:lang(ar) {
    direction: rtl;
    text-align: right;
}

*, *::before, *::after {
    box-sizing: border-box;
    user-select: none;
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
}

.selectable,
.selectable * {
    user-select: text !important;
}

.invert_colors {
    filter: invert(1) hue-rotate(180deg);
}

.bg_light {
    background-color: var(--color_input) !important;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
    font-weight: var(--font_bold);
    font-family: var(--font_faimly_h);
}

h1, h3 {
    text-transform: var(--h_case);
}

h2 {
    font-size: 32px;
    line-height: 120%;
    font-weight: var(--font_bold);
    margin-bottom: 24px;
    color: var(--color_base);
}

p {
    padding: 0 0 var(--gap);
}

small{
    padding: 0 0 var(--gap);
    font-size: var(--font_regular);
}

strong {
    font-weight: var(--font_black);
}

a {
    color: var(--color_base);
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
}

a:hover, p a {
    text-decoration: underline;
}

ul, ol {
    padding-bottom: 8px;
    text-align: left;
}

li {
    margin: 0 0 8px 24px;
    padding-left: 8px;
}

ul ul li {
    list-style-type: disc;
}

hr {
    border: none;
    height: 1px;
    background-color: var(--color_border);
    margin: var(--gap) 0;
    width: 100%;
}

dl {
    text-align: left;
}
dd {
    margin-bottom: var(--gap);
}
dl ul {
    margin-top: 8px;
    padding-bottom: 0 !important;
}
dl li {
    font-size: var(--font_regular) !important;
    color: var(--color_base) !important;
    line-height: 150% !important;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.disabled {
    pointer-events: none !important;
    opacity: 0.3;
}

.disabled * {
    pointer-events: none !important;
}

.hide {
    display: none !important;
}

.mobile_only {
    display: flex;
}

/*
.desktop_only {
    display: none;
}
*/
.cover_image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.selectable {
    user-select: text !important;
}

#disabler {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: transparent;
}

/* ============================================
   BUTTONS
   ============================================ */
.button {
    background-color: var(--color_brand);
    color: var(--color_brand_contrast);
    font-size: var(--font_body);
    font-weight: var(--font_bold);
    height: var(--element_height);
    line-height: var(--element_height);
    border-radius: var(--border_radius);
    padding: 0 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    text-transform: var(--cta_case);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 8px;
}

.button:hover,
.button_nav:hover,
.datatable_button:hover {
    opacity: 0.8;
    text-decoration: none;
}

.secondary {
    background-color: var(--color_brandsecondary) !important;
    color: var(--color_brandsecondary_contrast) !important;
}

.tertiary {
    background-color: var(--color_brand_contrast) !important;
    color: var(--color_brand) !important;
    box-shadow: inset 0 0 0 2px var(--color_brand);
}
.warning {
    background-color: var(--color_warning) !important;
    color: var(--color_warning_contrast) !important;
}

.button_pair {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    justify-content: flex-start;
    align-items: inherit;
}

.small_button {
    height: 40px;
    line-height: 40px;
    background-color: var(--color_input);
    color: var(--color_base);
    border-radius: var(--border_radius);
    padding: 0 var(--gap);
    cursor: pointer;
    white-space: nowrap;
}

.icn_magic::before {
    content: url(/svg/magic.svg?3);
    margin: 1px 8px 0 0;
    height: 24px;
}

/* Pills */
.pills {
    margin-top: var(--gap);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    flex-wrap: wrap;
}

.pills div {
    height: 40px;
    line-height: 40px;
    background-color: var(--color_input);
    color: var(--color_base);
    border-radius: var(--border_radius);
    padding: 0 var(--gap);
    font-size: var(--font_labels);
    cursor: pointer;
    white-space: nowrap;
}

.pill_on,
.pills div:hover {
    color: var(--color_input) !important;
    background-color: var(--color_base) !important;
}

/* ============================================
   FORM INPUTS
   ============================================ */
input, textarea, select {
    background-color: var(--color_input);
    color: var(--color_base);
    font-size: var(--font_body);
    font-family: var(--font_family);
    font-weight: var(--font_regular);
    border-radius: var(--base_unit);
    height: var(--element_height);
    line-height: var(--element_height);
    border: none;
    outline: none;
    resize: none;
    display: block;
    padding: 0 var(--gap);
    margin: 0 0 var(--gap);
    width: 100%;
    max-width: 600px;
    text-align: initial;
    pointer-events: auto;
    appearance: none;
    user-select: auto;
}

textarea {
    padding: 11px var(--gap) 12px !important;
    line-height: 26px !important;
    height: 76px !important;
    font-size: 18px;
}

select {
    cursor: pointer;
    width: 100%;
    padding-right: 48px;
    padding-left: var(--gap);
}

select:lang(ar) {
    padding-right: var(--gap);
    padding-left: 48px;
}

.frozen_input,
.frozen_input * {
    pointer-events: none;
}

.frozen_input .select_wrapper::before {
    display: none;
}

/* Labels */
.label {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.label_two_cols {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.label_two_cols span {
    font-size: var(--font_labels);
}

/* Select Wrapper */
.select_wrapper {
    position: relative;
}

.select_wrapper:hover {
    opacity: 0.8;
}

.select_wrapper::before {
    content: url(/svg/expand.svg?1);
    position: absolute;
    pointer-events: none;
    right: var(--base_unit);
    top: var(--base_unit);
}

.select_wrapper:lang(ar)::before {
    right: auto;
    left: var(--base_unit);
}

/* Password Input */
.password {
    position: relative;
}

.password span:before {
    content: attr(data-show);
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 14px;
    background-color: transparent;
    color: var(--color_base);
    padding: 0 12px;
    height: 48px;
    line-height: 48px;
    text-transform: uppercase;
}

.password.shown span:before {
    content: attr(data-hide);
    text-transform: uppercase;
}

.password span:lang(ar):before {
    right: auto;
    left: 0;
}

/* Radio & Checkbox Inputs */
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: url(/svg/radio_off.svg?451) no-repeat;
    vertical-align: middle;
    padding: 0 16px;
    margin: 3px 0 0;
    cursor: pointer;
}

input[type="radio"]:checked {
    background: url(/svg/radio_on.svg?451) no-repeat;
}

.switch input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 56px;
    height: 20px;
    background: url(/svg/toggle_off.svg?1) no-repeat;
    vertical-align: middle;
    padding: 0 16px;
    margin: 3px 0 0;
    cursor: pointer;
}

.switch input[type="checkbox"]:checked {
    background: url(/svg/toggle_on.svg?1) no-repeat;
}

.option {
    display: flex;
    flex-direction: row;
    font-size: 16px;
}

.option label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin-bottom: 13px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: sticky;
    z-index: 100;
    height: var(--nav_height);
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding_mobile);
    font-size: var(--font_labels);
}

.nav_logo {
    pointer-events: auto;
    cursor: pointer;
}

.nav_logo img {
    height: 34px;
    margin-top: 12px;
}

.nav_actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    pointer-events: auto;
    gap: 24px;
}

.nav a,
.nav_mobile a {
    text-decoration: none !important;
    text-transform: var(--cta_case);
    font-weight: var(--font_bold);
}

.nav_list_desktop {
    display: none;
}

.nav_list_mobile {
    display: flex;
    flex-direction: row;
    gap: var(--base_unit);
}

.nav_mobile {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    align-items: flex-start;
}

.nav_mobile a {
    padding: calc(var(--gap)/2) var(--gap);
}

/* Nav Buttons */
.button_language,
.button_menu,
.button_account {
    height: 40px;
    line-height: 40px;
    font-size: var(--font_labels);
    color: var(--color_base);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    position: relative;
    pointer-events: auto;
}

.button_language::before {
    content: url(/svg/language.svg?3);
    width: 32px;
    padding: 4px;
}

.button_menu::before {
    content: url(/svg/menu.svg?5);
    padding: 6px;
}

.button_account {
    content: url(/svg/account.svg?2);
    padding: 8px;
}

.button_nav {
    height: 40px;
    line-height: 40px;
    padding: 0 var(--gap);
    font-size: var(--font_labels);
    background-color: var(--color_brand);
    color: var(--color_brand_contrast);
    border-radius: var(--border_radius);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    position: relative;
    pointer-events: auto;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--color_input);
    color: var(--color_base);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px var(--padding_mobile);
    gap: 24px;
    font-size: var(--font_mini);
}

.footer_list {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.footer_list a {
    text-transform: var(--cta_case);
}
.footnote {
    font-size: 14px;
    opacity: 0.7;
    line-height: 150%;
}

/* ============================================
   MODALS & OVERLAYS
   ============================================ */
/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    background-color: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal-open #lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox_modal {
    background-color: var(--color_base_contrast);
    padding: 20px var(--padding_mobile) var(--padding_mobile) var(--padding_mobile);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
}

.lightbox_header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--gap);
    z-index: 100;
    position: relative;
}

.lightbox_title {
    font-size: var(--font_body);
    line-height: 140%;
    margin-top: 4px;
    text-transform: var(--cta_case);
}

.lightbox_body {
    margin: 16px 0 24px;
    height: calc(100% - 124px);
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.lightbox_footer {
    margin-top: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--base_unit);
    justify-content: center;
    align-items: center;
    font-size: var(--font_labels);
}
.lightbox_footer.desktop_only {
    display: none;
}
.lightbox_footer a {
    display: inline-block;
}

.lightbox_footer span a {
    display: inline;
    margin: 0;
}

.lightbox_footer span {
    display: inline-block;
    font-size: var(--font_labels);
    margin: 0 16px 16px;
}

.lightbox_two_buttons {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    position: absolute;
    bottom: var(--padding_mobile);
    right: var(--padding_mobile);
    left: var(--padding_mobile);
    gap: var(--gap);
}

#modal_nav .lightbox_body {
    height: auto;
}

.lightbox_body p {
    font-size: 16px;
}

.button_close {
    width: var(--padding_mobile);
    height: var(--padding_mobile);
    cursor: pointer;
    margin: 4px 4px 0 0;
}

.button_close::before {
    content: url(/svg/close.svg?1);
    display: block;
    height: var(--padding_mobile);
}
.modal_fullscreen .lightbox_body {
    height: calc(100% - 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Snackbar */
#snackbar {
    font-size: var(--font_labels);
    position: fixed;
    bottom: -200px;
    right: var(--padding_mobile);
    left: var(--padding_mobile);
    border-radius: var(--border_radius);
    padding: 16px 24px;
    background-color: var(--color_base);
    color: var(--color_base_contrast);
    text-align: left;
    z-index: 10000;
    display: flex;
    line-height: 140%;
}

.snackbar_off {
    bottom: -200px;
    transition: var(--transition);
}

.snackbar_on {
    bottom: var(--padding_mobile) !important;
    transition: var(--transition);
}

.snackbar_tick::before {
    content: url(/svg/tinytick.svg?1);
    filter: invert(1);
    transform: scale(1.2);
    width: 18px;
    height: 18px;
    margin: -2px 8px 0 0;
}

/* ============================================
   TABS
   ============================================ */
.tab_links {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.tab_links div {
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    padding: 8px 0;
    margin: 8px 0;
    border-bottom: var(--border);
    border-width: 2px !important;
    display: flex;
    flex-direction: flex-start;
    align-items: center;
    width: 100%;
    justify-content: center;
    color: var(--color_base);
}
.tab_links div span {
    display: none;
}
.tab_links div:hover,
.link_on {
    font-weight: var(--font_bold);
    border-bottom: var(--border);
    border-width: 2px !important;
    border-color: var(--color_base) !important;
    color: var(--color_base) !important;
}

/* ============================================
   FAQS
   ============================================ */
.faq_wrapper {
    max-width: 800px !important;
}
.faq_item {
    border-bottom: var(--border);
    padding: 0;
    width: 100%;
}
.faq_question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    font-size: var(--font_body);
    line-height: 150%;
    color: var(--color_base);
    font-weight: var(--font_regular);
    padding: var(--gap) 0;
    text-align: left;
}
.account_panel .faq_item {
    border-bottom: none;
}
.account_panel .faq_question {
    padding-top: 0;
}
.account_panel .faq_question p{
    padding: 0;
}
.faq_icon {
    color: var(--color_base);
    margin-left: var(--gap)
}
.faq_icon::before {
    content: url(/svg/expand.svg?1);
    height: 32px;
    display: block;
}
.faq_answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 8px;
    font-size: var(--font_labels);
    color: var(--color_base);
    text-align: left;
}
.faq_toggle {
    display: none;
}
.faq_toggle:checked ~ .faq_answer {
    max-height: 1200px;
    padding: 0 40px 0 0;
}
.faq_toggle:checked ~ .faq_question .faq_icon::before {
    content: url(/svg/contract.svg?1);
    height: 32px;
    display: block;
}

/* Content */

main {
    position: relative;
    margin-top: calc(-1 * var(--nav_height));
    min-height: calc(100vh - 80px);
}
.Xcontent {
    position: relative;
    z-index: 10;
    top: 0;
    max-width: var(--max_content_width);
    margin: 0 auto;
    padding: var(--padding_mobile);
    text-align: initial;
    min-height: 100vh;
}
.content h1 {
    margin-bottom: var(--padding_mobile);
}
.content h2 {
   margin: var(--gap) 0;
}
.terms,
.terms * {
    font-size: var(--font_labels);
    text-align: left;
    align-items: flex-start !important;
}
.terms h2 {
    font-family: var(--font_family);
    margin: 8px 0 var(--gap);
}
.terms ul {
    padding: 0;
}
.terms li {
    margin: 0 0 0 16px;
    padding: 0 0 0 8px;
}
.terms li:last-child {
    margin-bottom: 16px;
}

/* Hero */

.block_hero {
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 112px 0 64px;
    width: 100%;
    color: var(--color_base);
    position: relative;
    /*filter: invert(1);*/
}
.block_hero.cover_image::before {
  content: ""; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/images/hero.jpg);
  background-size: cover; /* Adjust as needed */
  background-position: center left; /* Adjust as needed */
  opacity: 0.9; /* Adjust for desired transparency */
  z-index: -1; /* Places the pseudo-element behind the content */
}
.block_hero h1 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: var(--font_bold);
    color: var(--color_base);
    letter-spacing: var(--heading-h1-letter-spacing);
    line-height: var(--heading-h1-line-height);
    /*
    mix-blend-mode: exclusion;
    Xcolor: #fff;
    */
}
.block_hero h2 {
    font-size: 22px;
    margin-bottom: 32px;
    line-height: 150%;
    font-weight: var(--font_regular);
    color: var(--color_base);
}
.block_hero_text {
    width: 100%;
    padding: 0 var(--padding_mobile);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero_left {
    align-items: flex-start;
    text-align: left;
}
.content .block_hero {
    justify-content: flex-start;
    padding: 88px var(--padding_mobile) 0;
}
.content .block_hero h1 {
    font-size: 32px;
} 

/* Stories */

.block_story {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.block_story_cell {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10% var(--padding_mobile);
}
.block_story .cover_image {
    height: 100vw;
    background-color: var(--color_input);
}
.column_reverse {
    flex-direction: column-reverse;
}
.block_story_details {
    border-left: var(--border);
    padding-left: 24px;
    font-size: 16px;
}
.block_story_details h3 {
    font-size: 28px;
    margin-bottom: 8px;
}
.block_story_details .button {
    margin: 16px 0;
}
.block_story_details h2 {
font-size: 32px;
}

/* Content blocks */

.block_content {
    background-color: var(--color_base_contrast);
    color: var(--color_base);
    text-align: center;
    padding: 64px 0;        
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.block_content h3 {
    font-weight: var(--font_regular);
}
.block_content_float {
    width: 100%;
    padding: 0 var(--padding_mobile);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.compact {
    padding: 0 0 64px !important;
}
.block_grid {
    display: flex;
    flex-direction: column;    
    align-items: center;
    gap: 24px;
    min-width: 80%;
            margin-bottom: var(--gap);
}
.block_grid_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.block_grid_item h3 {
    font-size: var(--font_body);
    font-weight: var(--font_bold);
    margin: 0 16px 16px !important;
    text-transform: none;
}
.block_content_float p,
.block_content_float li {
    font-size: var(--font_labels);
    line-height: 150%;
    color: var(--color_base_secondary);
}
.feature_visual {
    border-radius: 24px;
    margin-bottom: 24px;
    height: 0;
    padding-bottom: 100%; 
    width: 100%;
}
.big_number {
    font-weight: var(--font_bold);
    font-size: 48px; 
    line-height: 120%;
    margin-bottom: 8px;
}
.logo_list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-column-gap: 40px;
    grid-row-gap: 24px;
    filter: grayscale(1);
}
.logo_list img {
    max-height: 88px;
    max-width: 120px;
}
.align_left,
.align_left * {
    text-align: left;
    align-items: flex-start;
}
.align_left h3 {
    margin: 0 0 16px 0 !important;
}

/* Pricing */

.pricing_card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    align-items: flex-start;
    border-radius: 24px;
    background-color: var(--color_base_contrast);
    color: var(--color_base);
    position: relative;
}
.pricing_card .button {
    width: 100%;
}
.price_highlight {
    Xfilter: invert(1);
    padding: 24px 24px 8px;
    xbox-shadow: 0px 0px 0px 2px var(--color_base);
    background-color: #f5f5f5;
}
.price_highlight::before {
    content: 'Popular';
    position: absolute;
    top: -16px;
    right: 16px;
    color: var(--color_brand_contrast);
    background-color: var(--color_brand);
    height: 32px;
    line-height: 32px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 16px;
}
.price_value {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-size: 18px;
    margin: 18px 0;
}
.price_value div:nth-child(1) {
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    margin: 0 4px 0 0;
    /*font-variant-numeric: tabular-nums;*/
}
.pricing_card p {
    font-size: 16px;
}
.pricing_card ul {
    margin-top: 16px;
    list-style-type: none;
}
.pricing_card li {
    margin: 0 0 8px 16px;
    padding-left: 8px;
    list-style-image: url('/svg/tinytick.svg');
    font-size: 14px;
    line-height: 160%;
}

/* Account */

.account_layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}
.account_links {
    display: flex;
    min-width: 20%;
    flex-direction: row;
    width: 100%;
}
.account_links div {
    text-transform: var(--cta_case);
    cursor: pointer;
    position: relative;
    padding: 8px 0;
    margin: 8px 0;
    border-bottom: var(--border);
    border-width: 2px !important;
    display: flex;
    flex-direction: flex-start;
    align-items: flex-end;    
    width: 100%;
    justify-content: center;
    color: #333;
    font-size: 18px;
}
.account_panels {
    width: 100%;
    text-align: left;
}
.account_panel {
    display: flex;
    flex-direction: column;
}
.datatable {    
    width: 100%;
    border: none;
    border-collapse: collapse;
}
.datatable td {
    padding: 0;
    font-size: 14px;
    line-height: 160%;
    word-break: break-word;
}
.datatable tr:not(:first-child) td:nth-last-child(-n + 1){
    padding: 16px 0;
}
.datatable tr:nth-child(1) {
    display: none;
}
.datatable tr {
    padding-top: 16px;
    border-bottom: var(--border);
    vertical-align: top;
    display: grid;
}
.datatable_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-top: 16px;
    gap: var(--gap);
}
.datatable_button {
    display: inline-block;
    text-transform: var(--cta_case);
    height: 32px;
    line-height: 32px;
    background-color: var(--color_base);
    color: var(--color_base_contrast);
    padding: 0 16px;
    border-radius: calc(0.5 * var(--border_radius));
    cursor: pointer;
    font-weight: var(--font_bold);
    font-size: 14px;
    text-align: center;
    width: 100%;
}
.datatable select {
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    font-weight: var(--font_bold);
    border-radius: 4px;
    margin: 0;
}
.datatable .select_wrapper {
    width: max-content;
}
.datatable .select_wrapper::before{
    transform: scale(0.8);
    top: 0;
    right: 2px;
}
/*
.datatable_button:hover,
.datatable .select_wrapper:hover {
    filter: invert(1);
}
*/
#team_emails {
    max-width: 100%;
    font-size: 16px;
}
.team_delete {
    content: url(/svg/delete.svg?1);
    padding: 6px;
    filter: invert(1);
}

/* ============================================
   DESKTOP RESPONSIVE STYLES (min-width: 760px)
   ============================================ */
@media all and (min-width: 760px) {
    
    /* ============================================
    ANIMATIONS
    ============================================ */
    .shake {
        animation: shake_keyframes 0.2s ease-out both;
    }

    @keyframes shake_keyframes {
        0%, 100% {
            transform: translateX(0);
        }
        10%, 45% {
            transform: translateX(8px);
        }
        25%, 70% {
            transform: translateX(-8px);
        }
    }
    .account_layout {
        flex-direction: row;
        gap: 40px;
    }
    .account_links {
        flex-direction: column;
        width: auto;
    }
    .account_links div {
        padding: 8px 0;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }
    .account_panel {
        align-items: flex-start;
    }

    .block_content_float {
        max-width: 80vw;
        padding: 0;
    }
    .block_grid {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
    }

    h2 {
        font-size: 48px;
        margin-bottom: 40px;
    }

    /* Utility Classes */
    .mobile_only {
        display: none;
    }
    
    /*
    .desktop_only {
        display: flex;
    }
    */

    /* Navigation */
    .nav_list_desktop {
        display: flex;
        flex-direction: row;
        gap: 32px;
        align-items: center;
    }
    
    .nav_list_mobile {
        display: none;
    }
    
    .nav_actions {
        gap: 32px;
    }
    
    /* Footer */
    footer {
        flex-direction: row;
        height: var(--nav_height);
        padding: 0 var(--padding_mobile);
        align-items: center;
    }
    
    .footer_list {
        flex-direction: row;
    }
    
    /* Content Layout */
    .Xcontent {
        min-height: calc(100vh - 160px);
        padding: var(--padding_desktop);
    }
    
    /* Hero Sections */
    .block_hero {
        min-height: 90vh;
        padding: 20vh 0 10vh;
    }
    .block_hero h1 {
        font-size: 62px;
    }    
    .block_hero_text {
        max-width: 50vw;
        padding: 0 var(--padding_desktop);
    } 
    .hero_left {
        max-width: 80vw;
        padding: 0 32% 5% var(--padding_desktop);
    }
    .content .block_hero {
        min-height: auto;
        max-width: 80vw;
        margin: 0 auto;
        padding: 112px 0 24px;
    }
    .content .block_hero h1 {
        font-size: 32px;
    } 
    
    /* Story Image Block */
    .block_story {
        flex-direction: row;
        min-height: 90vh;
        height: auto;
    }
    
    .block_story_cell {
        width: 50%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 10%;
    }
    
    .block_story .cover_image {
        height: auto;
    }
    
    .big_number {
        font-size: 72px;
    }

    /* Buttons */
    .button_pair {
        flex-direction: row;
    }
    
    .pills {
        flex-direction: row;
    }
    
    /* Tabs */
    .tab_links {
        min-width: 20%;
        flex-direction: column;
        width: auto;
    }
    
    .tab_links div {
        padding: 8px 0;
        justify-content: flex-start;
    }
    
    .lightbox_body .tab_links {
        min-width: initial;
        flex-direction: initial;
        width: initial;
    }
    
    .lightbox_body .tab_links div {
        justify-content: center;
    }
    
    /* Lightbox */
    .lightbox_modal {
        padding: 32px;
        position: relative;
        width: 540px;
        border-radius: var(--border_radius);
        top: -5%;
        bottom: auto;
        left: auto;
        right: auto;
    }
    
    .lightbox_body {
        margin: 16px 0 8px;
        height: calc(100% - 104px);
        overflow: visible;
    }
    
    .lightbox_footer p {
        margin: 0;
    }
    .lightbox_footer.desktop_only {
        display: flex;
    }
    .lightbox_one_button {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
    }
    
    .lightbox_two_buttons {
        flex-direction: row;
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
    }
    
    .lightbox_two_buttons .button {
        flex: none;
    }
    
    .lightbox_two_buttons .secondary {
        bottom: auto;
        margin-bottom: 0;
    }
    
    .button_close {
        margin: 0 -8px 0 0;
    }
    
    .button_close:hover {
        background-color: var(--color_input);
        border-radius: 32px;
        box-shadow: 0px 0px 0px 4px var(--color_input);
    }
    .modal_fullscreen {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .modal_fullscreen .lightbox_body {
        justify-content: center;
        height: 75vh;
    }

    /* Snackbar */
    #snackbar {
        right: auto;
        cursor: pointer;
        max-width: 35vw;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    #snackbar:lang(ar) {
        right: var(--padding_mobile);
        left: auto;
    }
    
    .snackbar_on::after,
    .snackbar_off::after {
        content: url(/svg/close.svg?1);
        filter: invert(1);
        transform: scale(0.6);
        width: 18px;
        height: 18px;
        margin: -1px 0 0 8px;
    }

    .pricing_card {
        padding: 24px 24px 8px;
        max-width: 420px;
    }

    .datatable tr:nth-child(1) {
        display: table-row;
        pointer-events: none;
        font-weight: var(--font_bold);
        border-bottom: var(--border);
        white-space: nowrap;
        text-transform: var(--h_case);
    }
    .datatable tr {
        padding: 0;
        display: table-row;
    }
    .datatable td {
        padding: 12px 8px 12px;
        word-break: normal;
    }
    .datatable_number {
        text-align: right;
    }
    .datatable tr:not(:first-child) {
        white-space: nowrap;
    }
    .datatable td:first-child{
        width: 99%;
    }
    .datatable tr:not(:first-child) td:nth-last-child(-n + 1){
        padding: 8px;
        text-align: right;
    }
    .datatable_button {
        width: auto;
    }
}