@import "./palette.css";
@import "./scale.css";
@import "./fonts-ar.css";
@import "./reusable-components/first-visit-popup.css";
@import "./reusable-components/faqs.css";
@import "./reusable-components/footer.css";
@import "./reusable-components/header.css";
@import "./reusable-components/slick-theme.css";
@import "./reusable-components/newsletter.css";
@import "./reusable-components/support-form.css";
@import "./reusable-components/download-app-section.css";
@import "./reusable-components/sticky-bottom-tab.css";

* {
    box-sizing: border-box;
    direction: rtl;
}

html {
    background-color: #000;
}

body,
.main-container {
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-900);
    border-radius: var(--radius-xl);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-700);
    border-radius: var(--radius-xl);
    width: 3px;
    max-height: var(--space-sm);
    height: 60% !important;
}

.content {
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    padding-bottom: 60px;
    margin-top: var(--header-height);
}

.green-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-700);
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    height: fit-content;
    width: 130px;
    cursor: pointer;
    font-weight: 900;
    text-wrap: nowrap;
    text-decoration: none;
    color: var(--neutral-50);
}

.green-button:hover {
    background: var(--primary-500);
}

.green-button span {
    color: #fff !important;
    line-height: var(--font-size-lg);
    font-size: var(--font-size-md);
    font-weight: 900;
    text-wrap: nowrap;
    text-align: center;
}

.outlined-button {
    height: fit-content;
    border-radius: 4px;
    border: 1px solid white;
    padding: 11px 23px;
    color: white;
    background: none;
    font-size: var(--font-size-md);
    font-weight: 900;
    line-height: var(--font-size-lg);
    cursor: pointer;
    font-family: "29LTazer";
    text-wrap: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outlined-button:hover {
    background: var(--primary-700);
    border: none;
    padding: var(--space-md-s) var(--space-lg);
}

.error-message {
    color: red;
    display: none;
    margin-top: 5px;
}

.language-switch-button {
    position: fixed;
    bottom: 0;
    left: 160px;
    min-width: 100px;
    background: var(--primary-900) !important;
    font-weight: bold !important;
    opacity: 0.95;
    line-height: 32px !important;
    z-index: 10;
    display: none;
}

.language-switch-button span {
    font-size: var(--font-size-md) !important;
    font-family: "Acumin";
    font-weight: 900;
}

.slashed-amount {
    text-decoration: line-through;
    color: #FFB4AA !important;
    font-size: var(--font-size-md) !important;
    font-weight: 700 !important;
    line-height: 20px !important;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    color: var(--neutral-300);
    font-size: var(--font-size-sm);
    z-index: 5;
    align-self: flex-start;
}

.breadcrumbs span,
.breadcrumbs a {
    color: var(--neutral-300);
    font-size: var(--font-size-sm);
    text-decoration: none;
}

.alert-box-container {
    display: none;
    left: var(--space-lg);
    right: auto;
    bottom: var(--space-lg);
    position: fixed;
    z-index: 9999;
}

.alert-box-inner {
    background: var(--background-800);
    display: flex;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 400;
    line-height: 1.43;
    border-radius: var(--radius-base);
    letter-spacing: 0.01071em;
}

.alert-box-svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: var(--font-size-2xl);
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
}

.alert-box-icon {
    display: flex;
    opacity: 0.9;
    padding: 7px 0;
    font-size: var(--font-size-xl);
    margin-right: var(--space-md-s);
    justify-content: center;
    align-items: center;
}

.alert-box-message {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
}

.alert-box-inner-icon {
    display: none;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1079px) {

    .language-switch-button {
        left: 50px;
    }

}

@media (max-width: 539px) {

    .language-switch-button {
        left: var(--space-xl);
    }

}