
.loading-spokes {
    position: relative;
    display: block;
    height: 2rem;
    width: 2rem;
}
.__spoke {
    background: #fbff3a;
    width: 0.2rem;
    height: 0.5rem;
    animation: spoke 1s infinite;
    animation-delay: inherit;
    border-radius: 1rem;
}
.__spoke-wrap {
    position: absolute;
    top: 75%;
    left: 25%;
    transform-origin: 50% -100%;
    margin-left: 0.2rem;
}
.__spoke-wrap:nth-of-type(0n+1) {
    transform: translateX(100%) rotate(-90deg);
    animation-delay: -0.875s;
}

.__spoke-wrap:nth-of-type(0n+2) {
    transform: translateX(100%) rotate(-45deg);
    animation-delay: -0.75s;
}

.__spoke-wrap:nth-of-type(0n+3) {
    transform: translateX(100%);
    animation-delay: -0.625s;
}

.__spoke-wrap:nth-of-type(0n+4) {
    transform: translateX(100%) rotate(45deg);
    animation-delay: -0.5s;
}

.__spoke-wrap:nth-of-type(0n+5) {
    transform: translateX(100%) rotate(90deg);
    animation-delay: -0.375s;
}

.__spoke-wrap:nth-of-type(0n+6) {
    transform: translateX(100%) rotate(135deg);
    animation-delay: -0.25s;
}

.__spoke-wrap:nth-of-type(0n+7) {
    transform: translateX(100%) rotate(180deg);
    animation-delay: -0.125s;
}

.__spoke-wrap:nth-of-type(0n+8) {
    transform: translateX(100%) rotate(225deg);
    animation-delay: 0s;
}


@keyframes spoke {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}

.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.modal.show {
    visibility: visible;
    opacity: 1;
}

.modal-close {
    border: none;
    padding: 0;
    width: 3rem;
    height: 3rem;
    color: #03111C;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.modal-close svg {
    width: 14px;
    height: 14px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--body-bg);
    z-index: -1;
}

.modal-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 24px;
    width: 640px;
    max-width: calc(100% - 24px);
}

.modal-header {
    text-align: center;
    display: flex;
    align-items: center;
    padding: 3rem 3rem 1rem;
    position: relative;
}

.modal-title {
    flex: 1;
    text-align: center;
    padding-left: 3rem;
    font-size: 40px;
    font-weight: bold;
    color: var(--text-secondary);
}

.modal-body {
    border-radius: 24px;
    padding: 24px;
}

.modal-footer {
    padding: 12px 24px 24px;
}

.exist-message,
.success-message {
    color: #fbff3a;
    padding: 12px 0 0;
    text-align: left;
}

.error-message {
    color: #bf4949;
    padding: 12px 0 0;
    text-align: left;
}

.form-control {
    display: inline-block;
    width: 100%;
    background: #E0E7DD;
    box-shadow: none;
    color: var(--text-color);
    border: 1px solid #D3DAD0;
    font-size: 14px;
    line-height: 16px;
    padding: 11px 16px;
    font-weight: 400;
    border-radius: 4px;
}
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active{
    font-family: 'Onest', sans-serif !important;
    transition: background-color 600000s 0s;
    -webkit-text-fill-color: #FFFFFF!important;

}
.form-control:-webkit-autofill::first-line {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.subscription-form__form {
    display: flex;
    align-items: center;
    position: relative;
}

.subscription-form__messages {
    font-size: 14px;
}

.subscription-form__messages > * {
    display: none;
}

.subscription-form .btn {
    margin-left: 12px;
    flex: 0 0 auto;
}

.modal-text {
    font-size: 16px;
    line-height: 1.3;
    color: var(--text-color);
    margin: 0 auto 3rem;
    text-align: center;
    max-width: 70%;
}
.subscription-form .loading-spokes {
    display: none;
    position: absolute;
    right: 160px;
}
.subscription-form.loading .loading-spokes,
.subscription-form.error .error-message,
.subscription-form.success .success-message,
.subscription-form.email-exist .exist-message {
    display: block
}

.fixed-subscribe {
    position: fixed;
    z-index: 1030;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(73, 68, 75, .44);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    width: 3rem;
    height: 3rem;
    font-size: 1.3334rem;
    cursor: pointer;
}
@media(min-width: 768px) {
    .fixed-subscribe {
        width:60px;
        height: 60px;
        font-size: 26px;
        bottom:30px;
        left: 20px
    }
}
.fixed-subscribe.show {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

@media screen and (max-width: 556px) {
    .subscription-form .btn {
        margin-left: 0;
        margin-top: 10px;
        padding: 9px 12px;
        width: 100%;
    }
    .modal-text br {
        display: none;
    }
    .fixed-subscribe {
        right: 16px;
        bottom: 16px;
        left: auto;
        background: #12163B;
    }
    .subscription-form__form {
        flex-direction: column;
    }
    .subscription-form .loading-spokes {
        right: 16px;
        top: 18px;
    }
    .modal-text,
    .subscription-form__messages > * {
        text-align: center;
    }
}

.subscribe-header-btn {
    display: flex;
    align-items: center;
}
.subscribe-header-btn svg {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}
.subscribe-header-btn:focus-visible {
    outline: none;
}

.gh-portal-notification-iframe {
    display: none!important;
}


.chart {
    display: none;
    position: fixed;
    max-height: calc(100vh - 9rem);
    bottom: 24px;
    left: max(4vmin,20px);
    right: max(4vmin,20px);
    margin: 0;
    padding: 0;
    border-radius: 8px;
    text-transform: uppercase;
    background: #000000;
    color: #ffffff;
    background: rgba(13, 9, 26, 0.98);
    box-shadow: none;
    width: auto;
    min-width: calc(50vw - 2rem);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 2147483002;
    font-size: 14px;
    font-weight: 400;
}
@media (min-width: 576px) {
    .chart {
        width: 300px;
        min-width: initial;
        left: auto;
    }

}
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))) {
    .chart {
        background: rgba(13, 9, 26, 0.9);
    }
}
.chart .icon {
    margin-right: 1rem;
}

.chart hr {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin: 1rem 0;
}
.chart-header {
    padding: 11px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    position: relative;
}
.chart-header + .chart-footer {
    border-top: none;
}
.chart-body {
    padding: 20px 24px;
}
.chart-footer-link a {
    color: #b7a2bc;
}
.chart-footer-btn {
    margin-bottom: 16px;
}
@media (min-width: 2560px) {
    .chart-footer {
        padding: 24px 32px;
    }
}
.chart-close {
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    margin-left: auto;
    color: #fbff3a;
    font-size: 2rem;
    transform: translateX(25%);
    line-height: 1;
}
.chart-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.chart-info:last-child {
    margin-bottom: 0;
}
.chart-info span {
    opacity: 0.3;
}

