@font-face {
    font-family: 'ProximaNova';
    src: url(../fonts/ProximaNova-Regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SairaCondensed';
    src: url(../fonts/SairaCondensed-Regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SairaCondensed';
    src: url(../fonts/SairaCondensed-Bold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Serenity';
    src: url(../fonts/Serenity-Bold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

.main-page {
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    overflow-x: hidden;
    background-color: #020534
}

@media (max-width: 767px) {
    .main-page {
        background-image: url("./bg_mob.webp")
    }
}

@media (min-width: 768px) {
    .main-page {
        background-image: url("./bg.webp")
    }
}

.main-container {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    position: relative
}

.main-container:after {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.9;
    left: 50%;
    top: 50%;
    width: 972px;
    height: 724.5px;
    background-image: url("./bg_lights.webp")
}

.main-container.is-result::after {
    top: 50%;
    width: 630px;
    height: 519.75px
}

@media (min-width: 1025px) {
    .main-container {
        width: 100%;
        margin: 0 auto;
        max-width: 1109px
    }
}

.main-view {
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(1);
    transition: all 1s
}

.main-view--hidden {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    opacity: 0;
    transform: scale(0);
    height: 0
}

.main-view__wheel {
    position: relative
}

.main-view__wheel .btn {
    margin-top: 54px
}

.gradient-text {
    background: linear-gradient(to bottom, #ffff3e 5%, #f8bd2c 47%, #f6ae23 62%, #f28d1f 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.25))
}

.title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-width: 330px;
    height: 140px;
    margin: 28px auto 48px;
    padding: 10px 35px;
    background: center/contain no-repeat url("./titile_frame.webp")
}

.title-block__title {
    margin-top: 5px;
    color: #fefeff;
    text-align: center;
    text-shadow: 0 0 10px rgba(182, 187, 255, 0.6), 2px 0 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase
}

.title-block__title-item {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1
}

.title-block__title-item--sub {
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 2px
}

.title-block__subtitle {
    position: absolute;
    bottom: 5px;
    margin: 0 auto;
    width: 204px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: 2px;
    white-space: nowrap
}

.btn {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: 100%;
    height: 52px;
    padding: 0 16px;
    display: block;
    background: linear-gradient(to bottom, #36fa00 0%, #31e000 45%, #26be00 100%);
    color: #fefeff;
    font-family: 'SairaCondensed';
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 52px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 26px;
    max-width: 320px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    overflow: hidden
}

.btn::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.5;
    animation: btnClick 1s infinite alternate;
    mix-blend-mode: overlay
}

.btn:hover {
    filter: contrast(1.3)
}

.btn:hover::after {
    display: none
}

.btn:focus::after, .btn:active::after {
    display: none
}

.round-btn {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: center/cover url("./wheel_btn.webp");
    cursor: pointer;
    font-size: 2.4rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 2px #1bcffa;
    color: #242296;
    -webkit-text-stroke: 1px rgba(20, 235, 255, 0.532);
    -webkit-text-fill-color: #242296;
    transition: all 0.3s ease-in
}

.round-btn:hover, .round-btn:focus, .round-btn:active {
    -webkit-text-stroke: 1px rgba(20, 235, 255, 0.532);
    -webkit-text-fill-color: #fff;
    text-shadow: -1px -1px 3px rgba(0, 0, 0, 0.5)
}

.round-btn:focus {
    transform: scale(0.98) translate(-50%, -50%)
}

@keyframes btnClick {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0.3
    }
}

.wheel-wrapper {
    position: relative;
    z-index: 4;
    margin: 0 auto;
    width: 322px;
    height: 322px
}

.wheel-wrapper:before {
    content: '';
    position: absolute;
    top: -21px;
    left: 137px;
    z-index: 4;
    width: 46.8px;
    height: 52px;
    background: no-repeat url("./pin.webp");
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5))
}

.wheel__frame {
    position: relative
}

.wheel__frame::after {
    content: '';
    position: absolute;
    z-index: 2;
    inset: -24px;
    background: center/cover url("./wheel_frame.webp") no-repeat
}

.wheel__frame img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.wheel--vers1:before {
    content: '';
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background: center/contain no-repeat url("./glare.webp");
    width: 177px;
    height: 177px;
    transition: all 0.5s ease;
    top: 50%;
    right: 46%;
    opacity: 1;
    margin-top: -88.5px;
    margin-right: -88.5px;
    animation: spin 10s infinite alternate-reverse
}

.wheel--vers1:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: center/contain no-repeat url("./wheel_middle.webp");
    width: 70.8px;
    height: 70.8px;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease
}

.wheel {
    height: 100%;
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
    pointer-events: none;
    border-radius: 50%
}

.wheel--active {
    position: relative;
    transition: all 5s ease 0s;
    transform: rotate(1961deg)
}

.wheel--active .wheel__text-gold--active {
    animation: stretchPrize 3s ease-in;
    animation-direction: alternate;
    animation-delay: 5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running
}

.wheel__text {
    font-family: 'Serenity';
    font-weight: bold;
    position: absolute;
    z-index: 5;
    font-size: 26px;
    line-height: 1;
    text-align: right;
    color: #fff;
    min-width: 78px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.5);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3)
}

.wheel__text--active:before {
    opacity: 1
}

.wheel__text--50 {
    top: 47px;
    right: 101px;
    transform: rotate(-80deg)
}

.wheel__text--100 {
    top: 63px;
    right: 62px;
    transform: rotate(-55deg)
}

.wheel__text--250 {
    top: 96px;
    right: 33px;
    transform: rotate(-32deg)
}

.wheel__text--300 {
    top: 136px;
    right: 19px;
    transform: rotate(-9deg)
}

.wheel__text--500 {
    top: 180px;
    right: 24px;
    transform: rotate(16deg)
}

.wheel__text--600 {
    top: 216px;
    right: 46px;
    transform: rotate(42deg)
}

.wheel__text--800 {
    top: 241px;
    right: 81px;
    transform: rotate(65deg)
}

.wheel__text--900 {
    top: 252px;
    right: 121px;
    transform: rotate(92deg)
}

.wheel__text--bonus {
    top: 244px;
    left: 80px;
    transform: rotate(115deg)
}

.wheel__text--bonus.active {
    animation: stretchPrize 1.5s linear infinite alternate
}

.wheel__text--1250 {
    top: 216px;
    left: 46px;
    transform: rotate(141deg)
}

.wheel__text--1300 {
    top: 179px;
    left: 24px;
    transform: rotate(161deg)
}

.wheel__text--1500 {
    top: 136px;
    left: 19px;
    transform: rotate(185deg)
}

.wheel__text--1600 {
    top: 96px;
    left: 30px;
    transform: rotate(208deg)
}

.wheel__text--1800 {
    top: 63px;
    left: 61px;
    transform: rotate(236deg)
}

.wheel__text--2000 {
    top: 46px;
    left: 100px;
    transform: rotate(258deg)
}

.wheel__text:not(.wheel__text--50):not(.wheel__text--500):not(.wheel__text--1250):not(.wheel__text--2000):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(230, 167, 19, 0.8);
    box-shadow: 0 0 5px 3px #fff;
    opacity: 0;
    transition: 0.3s ease-in
}

.wheel__text:not(.wheel__text--50):not(.wheel__text--500):not(.wheel__text--1250):not(.wheel__text--2000).is-active::before {
    opacity: 1
}

.wheel__text--100:before {
    right: -33px;
    top: -7px
}

.wheel__text--250:before {
    right: -34px;
    top: 13px
}

.wheel__text--300:before {
    right: -32px;
    top: 33px
}

.wheel__text--600:before {
    right: -34px;
    top: -27px
}

.wheel__text--800:before {
    right: -38px;
    top: -10px
}

.wheel__text--900:before {
    right: -36px;
    top: 7px
}

.wheel__text--bonus:before {
    right: -34px;
    top: 26px
}

.wheel__text--1300:before {
    right: -34px;
    top: -28px
}

.wheel__text--1500:before {
    right: -33px;
    top: -12px
}

.wheel__text--1600:before {
    right: -33px;
    top: 10px
}

.wheel__text--1800:before {
    right: -33px;
    top: 24px
}

.footer-wrap {
    margin: auto auto 0;
    max-width: 90%
}

.footer-wrap .ad-disclosure, .footer-wrap .footer {
    color: #6e6e6e
}

@media (min-width: 1024px) {
    .main-container::after {
        left: 50%;
        top: 50%;
        width: 1101.6px;
        height: 821.1px
    }

    .title-block {
        margin-bottom: 84px;
        margin-top: 24px;
        min-width: 380px;
        height: 160px
    }

    .title-block__title {
        margin-bottom: 4px
    }

    .title-block__title-item {
        font-size: 3.7rem
    }

    .title-block__title-item--sub {
        font-size: 2.8rem
    }

    .title-block__subtitle {
        width: 310px;
        font-size: 1.4rem;
        bottom: 10px;
    }

    .main-view__wheel .btn {
        margin-top: 90px
    }

    .wheel-wrapper {
        transform: scale(1.2)
    }

    .round-btn {
        font-size: 3rem;
        width: 120px;
        height: 120px
    }

    .btn {
        min-width: 340px;
        font-size: 2.5rem;
        height: 60px;
        line-height: 60px
    }

    .footer-wrap .footer, .footer-wrap .footer__header-link {
        font-size: 12px
    }
}

@media (min-width: 1441px) {
    .title-block {
        margin-bottom: 124px;
        margin-top: 32px;
        min-width: 460px;
        height: 180px
    }

    .title-block__title {
        margin-bottom: 4px
    }

    .title-block__title-item {
        font-size: 4rem;
    }

    .title-block__title-item--sub {
        font-size: 3.1rem;
    }

    .title-block__subtitle {
        width: 310px;
        font-size: 1.55rem;
        bottom: 5px;
    }

    .wheel-wrapper {
        transform: scale(1.4)
    }

    .round-btn {
        font-size: 3.1rem;
        width: 140px;
        height: 140px
    }

    .main-view__wheel .btn {
        margin-top: 140px
    }

    .btn {
        min-width: 400px;
        font-size: 2.5rem;
        height: 64px;
        line-height: 64px
    }
}

.disclusure {
    position: relative;
    margin: .125rem 0;
    padding-right: .3125rem;
    text-align: right
}

.disclusure__button {
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font-size: .75rem;
    font-family: "aktiv-grotesk", sans-serif;
    color: rgba(255, 255, 255, 0.6);
    transition: color .27s linear
}

.disclusure__button:hover {
    color: #fff
}

@media (min-width: 1024px) {
    .disclusure__button:hover {
        color: rgba(255, 255, 255, 0.5)
    }
}

@keyframes stretchPrize {
    0% {
        transform: rotate(115deg) scale(1)
    }
    100% {
        transform: rotate(115deg) scale(1.2)
    }
}

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

@font-face {
    font-family: 'ProximaNova';
    src: url(../fonts/ProximaNova-Regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SairaCondensed';
    src: url(../fonts/SairaCondensed-Regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SairaCondensed';
    src: url(../fonts/SairaCondensed-Bold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Serenity';
    src: url(../fonts/Serenity-Bold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

app-result {
    min-height: 90vh
}

.result {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 3s
}

.result--active {
    min-height: 90vh;
    transform: scale(1)
}

.info-frame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: center/300px no-repeat url("./big-frame.webp");
    text-align: center;
    width: 300px;
    height: 280px;
    padding: 0 28px;
}

.info-frame::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 10px;
    right: 10px;
    top: 20px;
    bottom: 22px;
    border-radius: 8px;
    background-color: rgba(2, 5, 52, 0.8);
    filter: blur(2px)
}

.info-frame__title {
    font-family: 'SairaCondensed', sans-serif;
    font-weight: bold;
    font-size: 2.8rem;
    text-align: center;
    text-transform: uppercase
}

.info-frame__subtitle {
    font-family: 'SairaCondensed', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.2px;
}

.info-frame__bonus {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.info-frame__bonus-img {
    width: 55px;
    height: auto
}

.info-frame__bonus-amount {
    margin-left: 6px;
    font-size: 3.7rem;
    line-height: 1;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(77, 136, 244, 0.6), 0 3px 0 #000
}

.info-frame__footer {
    position: relative;
    font-family: 'SairaCondensed';
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    z-index: 2
}

.logo-img {
    margin-top: 15px;
    width: 180px;
    filter: drop-shadow(2px 4px 6px black)
}

.button-wrapper {
    margin-top: 32px;
    width: 100%;
    min-height: 88px
}

@media (min-width: 1025px) {
    .info-frame {
        background-size: 350px;
        min-width: 350px;
        min-height: 310px;
    }

    .info-frame__title {
        font-size: 3rem;
    }

    .info-frame__subtitle {
        font-size: 1.5rem;
        letter-spacing: 1.2px
    }

    .info-frame__bonus-img {
        width: 60px
    }

    .info-frame__bonus-amount {
        font-size: 4rem;
    }

    .info-frame__footer {
        font-size: 3rem;
    }

    .logo-img {
        margin-top: 20px;
        margin-bottom: 0px;
        width: 280px
    }
}

@keyframes shyBtn {
    0% {
    }
    100% {
        text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 20px #0fa, 0 0 40px #0fa
    }
}

@font-face {
    font-family: 'ProximaNova';
    src: url(../fonts/ProximaNova-Regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SairaCondensed';
    src: url(../fonts/SairaCondensed-Regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SairaCondensed';
    src: url(../fonts/SairaCondensed-Bold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Serenity';
    src: url(../fonts/Serenity-Bold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

.progress-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: -12px auto 0;
    height: 88px;
    width: 90%;
    max-width: 298px;
    background: center/contain no-repeat url("./loader-gold-wheel.webp")
}

.progress-line {
    width: 89%;
    height: 28%;
    background-image: linear-gradient(to right, #6269cd, #4a54e0, #323aa7);
    background-repeat: no-repeat;
    border-radius: 55px;
    margin: auto;
    background-size: 0 100%
}

.progress-counter-result {
    position: absolute;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: bold;
    margin: auto;
    bottom: 0;
    top: 84%;
    width: 100%;
    left: 0;
    text-align: center
}

@font-face {
    font-family: 'ProximaNova';
    src: url(../fonts/ProximaNova-Regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SairaCondensed';
    src: url(../fonts/SairaCondensed-Regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SairaCondensed';
    src: url(../fonts/SairaCondensed-Bold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Serenity';
    src: url(../fonts/Serenity-Bold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background-color: transparent
}

a:active, a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

html, body {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent
}

applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure, figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent
}

th {
    text-align: left;
    color: inherit
}

q, blockquote {
    quotes: none
}

q:before, q:after, blockquote:before, blockquote:after {
    content: '';
    content: none
}

ul, ol {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

address {
    font-style: normal
}

*, :before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

img, svg {
    max-width: 100%;
    max-height: 100%
}

img {
    vertical-align: middle
}

svg {
    vertical-align: top
}

input, button, select, textarea, optgroup {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit
}

button, input[type="submit"] {
    cursor: pointer
}

select {
    max-width: 100%
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000
}

a {
    color: inherit;
    text-decoration: none
}

a:focus, img:focus, input:focus, button:focus, select:focus, textarea:focus {
    outline: 0
}

input::-moz-focus-inner, button::-moz-focus-inner {
    outline: 0;
    border: 0;
    padding: 0
}

input[type="search"] {
    -webkit-appearance: textfield
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="submit"], button[type="submit"] {
    -webkit-appearance: none
}

header, footer, nav, article, section, aside, figure, figcaption, main {
    display: block
}

time {
    display: inline
}

small {
    font-size: 0.75em
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    box-shadow: inset 0 0 0 50px #f5f5f5
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    color: #0c1026;
    min-width: 320px;
    line-height: 1.2;
    font-family: "SairaCondensed", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
    overflow-x: hidden;
    background-color: #020534
}

