@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/Roboto-Regular.ttf');
    url('./assets/fonts/Roboto-Regular.ttf') format('ttf'),
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Thin';
    src: url('./assets/fonts/Roboto-Thin.ttf');
    url('./assets/fonts/Roboto-Regular-Thin.ttf') format('ttf'),
    font-weight: 400;
    font-style: normal;
}

.crypto-block {
    text-align: center;
}

.crypto-block__desc {
    margin-bottom: 20px;
}

.crypto-block__copy {
    display: flex;
    justify-content: space-between;
    max-width: 350px;
    margin: 0 auto;
    color: #6c9de6;
    border-radius: 20px;
    background-color: #ececec;
    padding: 10px;
}

.crypto-block__icon {
    cursor: copy;
    display: inline;
    width: 20px;
}

.crypto-block__icon svg {
    width: 13px;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

nav {
    margin: 30px auto 0;
    padding: 0 15px;
    max-width: 900px;
    text-align: right;
}

nav a {
    color: #1763D4;
    text-decoration: none;
}

h1, h2, h3 {
    margin: 0;
}

.about a {
    color: #1763D4;
    text-decoration: none;
}

.about li {
    margin-bottom: 20px;
}

.about h1 {
    color: #A6A6A6;
    font-size: 26px;
}

body {
    font-family: Roboto, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 930px;
    padding: 18px 15px;
    margin: auto;
}

.landing {
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.logo {
    width: 200px;
}

.logo img {
    width: 100%;
}

.stores {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.stores div {
    margin: 5px 20px;
}

.title {
    font-size: 16px;
    color: #A6A6A6;
}

.title h1 {
    margin-top: 10px;
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: normal;
}

.subtitle {
    margin-bottom: 30px;
    font-size: 30px;
}

/*-- Support Page Styles --*/
.container__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support__title {
    font-family: Roboto, sans-serif;
    font-size: 29px;
    font-weight: 600;
    color: black;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 30px;

    @media (max-width: 425px) {
        font-size: 22px;
        line-height: 28px;
    }
}

.support__text {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #4E4E4E;
    text-align: center;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;

    @media (max-width: 425px) {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        text-align: left;
    }
}

.support__donuts-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 15px 0 0 0;

    @media (max-width: 425px) {
        flex-direction: row;
        gap: 19px;
        margin: 30px 0 24px 0;
    }

    @media (max-width: 350px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.donuts-count {
    background-color: #6C9DE6;
    border: none;
    padding: 8px 12px;
    border-radius: 45px;
    color: white;
    font-size: 14px;
    font-family: Roboto, sans-serif;
    letter-spacing: 0.25px;

    &:active,
    &:hover {
        background-color: #1B6DE7;
        cursor: pointer;
    }

    @media (max-width: 425px) {
        padding: 5px 12px;
        font-size: 14px;
        line-height: 20px;
    }
}

.support__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;

    @media (max-width: 425px) {
        gap: 0;
    }
}

.support__input-wrap {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;

    & input {
        color: #4E4E4E;
    }

    @media (max-width: 425px) {
        margin-bottom: 80px;
    }
}

.support__label {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #4E4E4E;
    margin-bottom: 4px;
}

.support__input {
    border: 1px solid #6C9DE6;
    padding: 10px 16px;
    border-radius: 4px;
    outline: none;

    &:active,
    &:focus-visible {
        border: 1px solid #1B6DE7;
        outline: none;
    }
}

.support__submit-btn button {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: white;
    background-color: #1B6DE7;
    border-radius: 45px;
    padding: 12px 25px;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px 1px #1B6DE726;

    &:active,
    &:hover {
        background-color: #1162d9;
        cursor: pointer;
    }

    @media (max-width: 425px) {
        font-size: 14px;
        line-height: 20px;
    }
}

.support__donut-btn--active {
    background-color: #1162d9;
}

.support__back-btn {
    text-align: center;
}

.support__back-btn a {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    color: #1B6DE7;

    @media (max-width: 425px) {
        font-size: 14px;
        line-height: 20px;
    }
}

.support__arabic-text {
    font-size: 25px;
}

.loader-active {
    width: 15px;
    height: 15px;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*-- Support Success Page Styles --*/
.container__status {
    display: flex;
    flex-direction: column;
    gap: 130px;
}

.support__success-text {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4E4E4E;
    text-align: center;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;

    @media (max-width: 425px) {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
    }
}

.support__success-content {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #4E4E4E;
    text-align: center;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    @media (max-width: 425px) {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        text-align: left;
    }
}

/*-- Support Failing Page Styles --*/
.support__failing-content {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #4E4E4E;
    text-align: center;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    @media (max-width: 425px) {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        text-align: left;
    }
}

.support__failing-text {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4E4E4E;
    text-align: center;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;

    @media (max-width: 425px) {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
    }
}

.language-switch {
    margin-bottom: 30px;
}
