.wm-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.wm-button--color-primary {
    --wm-button-color-bg: #fff;
    --wm-button-color-fg: #000;
    --wm-button-color-fg-secondary: #333;
    --wm-button-overlay-bg-color: rgba(0, 0, 0);
    --wm-button-overlay-hover-opacity: 0.1;
    --wm-button-overlay-active-opacity: 0.2
}

.wm-button--color-inverse {
    --wm-button-color-bg: #191919;
    --wm-button-color-fg: #fff;
    --wm-button-color-fg-secondary: rgba(255, 255, 255, 0.9);
    --wm-button-overlay-bg-color: rgba(255, 255, 255);
    --wm-button-overlay-hover-opacity: 0.15;
    --wm-button-overlay-active-opacity: 0
}

.wm-button--color-green {
    --wm-button-color-bg: #8599FF;
    --wm-button-color-fg: #4c5710;
    --wm-button-color-fg-secondary: #4c5710;
    --wm-button-overlay-bg-color: rgba(0, 0, 0);
    --wm-button-overlay-hover-opacity: 0.15;
    --wm-button-overlay-active-opacity: 0
}

.wm-button--size-s {
    --wm-button-icon-size: 16px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    padding: 8px 12px;
    gap: 4px
}

.wm-button--size-s:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 8px 16px 8px 12px
}

.wm-button--size-s:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 8px 12px 8px 16px
}

.wm-button--size-m {
    --wm-button-icon-size: 16px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    padding: 10px 16px;
    gap: 4px
}

.wm-button--size-m:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 20px 10px 16px
}

.wm-button--size-m:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 16px 10px 20px
}

.wm-button--size-l {
    --wm-button-icon-size: 20px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.5px;
    padding: 10px 16px;
    gap: 8px
}

.wm-button--size-l:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 20px 10px 16px
}

.wm-button--size-l:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 16px 10px 20px
}

.wm-button--size-xl {
    --wm-button-icon-size: 20px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px;
    padding: 10px 20px;
    gap: 8px
}

.wm-button--size-xl:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 24px 10px 20px
}

.wm-button--size-xl:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 20px 10px 24px
}

.wm-button--variant-filled {
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    background-color: var(--wm-button-color-bg);
    color: var(--wm-button-color-fg)
}

.wm-button--variant-filled::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    opacity: var(--wm-button-overlay-opacity, 0);
    left: 0;
    top: 0;
    pointer-events: none;
    background-color: var(--wm-button-overlay-bg-color);
    -webkit-transition: opacity 150ms ease-out;
    transition: opacity 150ms ease-out
}

.wm-button--variant-filled:not(:disabled):hover::after,.wm-button--variant-filled:not(:disabled):focus::after {
    opacity: var(--wm-button-overlay-hover-opacity)
}

.wm-button--variant-filled:not(:disabled):active::after {
    opacity: var(--wm-button-overlay-active-opacity)
}

.wm-button--variant-filled-icon-leading,.wm-button--variant-filled-icon-trailing {
    color: var(--wm-button-color-fg-secondary)
}

.wm-button-icon-leading,.wm-button-icon-trailing {
    font-size: var(--wm-button-icon-size)
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-Thin-c51873c62e.woff2") format("woff2"),url("/static/fonts/inter/Inter-Thin-0f080c40c6.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-ExtraLigvvvht.woff2") format("woff2"),url("/static/fonts/inter/Inter-ExtraLight-7d759358c1.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-Light-4e2e86733e.woff2") format("woff2"),url("/static/fonts/inter/Inter-Light-0f0118feb7.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-Regular-8070997696.woff2") format("woff2"),url("/static/fonts/inter/Inter-Regular-14d1275c67.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-Medium-46d7404e4a.woff2") format("woff2"),url("/static/fonts/inter/Inter-Medium-5ce3e4db96.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-SemiBold-a553f44ac2.woff2") format("woff2"),url("/static/fonts/inter/Inter-SemiBold-1d5bb5c64d.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-Bold-1217aaefdb.woff2") format("woff2"),url("/static/fonts/inter/Inter-Bold-45e58f4054.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-ExtraBold-a0c781a9f8.woff2") format("woff2"),url("/static/fonts/inter/Inter-ExtraBold-45ce9384f5.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 800;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-ExtraBoldItalic-19868d85de.woff2") format("woff2")
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-Black-e11ae7208e.woff2") format("woff2"),url("/static/fonts/inter/Inter-Black-14a450a3d2.woff") format("woff")
}

@font-face {
    font-family: "Inter";
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-BlackItalic-b3ba35b51d.woff2") format("woff2")
}

@font-face {
    font-family: "Inter var";
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
    font-named-instance:"Regular";src: url("/static/fonts/inter/Inter-roman-57fa490cec.var.woff2") format("woff2")
}

@font-face {
    font-family: "Inter var";
    font-style: italic;
    font-weight: 800;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-ExtraBoldItalic-19868d85de.woff2") format("woff2")
}

@font-face {
    font-family: "Inter var";
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url("/static/fonts/inter/Inter-BlackItalic-b3ba35b51d.woff2") format("woff2")
}

*,*:before,*:after {
    font-family: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"
}

@supports(font-variation-settings: normal) {
    *,*:before,*:after {
        font-family:"Inter var",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"
    }
}

@font-face {
    font-family: "Gotham";
    src: url("/static/fonts/gotham/gotham-medium-ace13b8cfc.eot");
    src: url("/static/fonts/gotham/gotham-medium-ace13b8cfc.eot?#iefix") format("embedded-opentype"),url("/static/fonts/gotham/gotham-medium-815a33c8f3.woff") format("woff"),url("/static/fonts/gotham/gotham-medium-7bc67d0cbf.ttf") format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: "Gotham";
    src: url("/static/fonts/gotham/gotham-bold-3f4d3fd72e.eot");
    src: url("/static/fonts/gotham/gotham-bold-3f4d3fd72e.eot?#iefix") format("embedded-opentype"),url("/static/fonts/gotham/gotham-bold-04543a4e7f.woff") format("woff"),url("/static/fonts/gotham/gotham-bold-0b963a480b.ttf") format("truetype");
    font-weight: bold;
    font-style: normal
}

@font-face {
    font-family: "Gotham";
    src: url("/static/fonts/gotham/gotham-light-2a84e71eff.eot");
    src: url("/static/fonts/gotham/gotham-light-2a84e71eff.eot?#iefix") format("embedded-opentype"),url("/static/fonts/gotham/gotham-light-f0bf311652.woff") format("woff"),url("/static/fonts/gotham/gotham-light-d879050665.ttf") format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: "Gotham Book";
    src: url("/static/fonts/gotham/gotham-book-31f5b5f70e.eot");
    src: url("/static/fonts/gotham/gotham-book-31f5b5f70e.eot?#iefix") format("embedded-opentype"),url("/static/fonts/gotham/gotham-book-eff4ba5f36.woff") format("woff"),url("/static/fonts/gotham/gotham-book-6456132eac.ttf") format("truetype");
    font-weight: normal;
    font-style: normal
}

input {
    outline: 0
}

.form-message {
    font-size: 13px;
    line-height: 20px;
    margin-top: 15px
}

.form-success {
    color: #8599FF
}

.form-error {
    color: #ff0056
}

ul.form-message {
    list-style: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0
}

.form-header {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    color: #fff;
    margin-bottom: 20px
}

.input-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

@media(max-width: 640px) {
    .input-row.input-row__mobile-wrap {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.input-row .input-wrapper+.input-wrapper {
    margin-left: 15px;
    margin-top: 0
}

.input-row .input-wrapper.input-wrapper__half {
    max-width: calc(50% - 8px)
}

.input-row .input-wrapper.input-wrapper__quarter {
    max-width: calc(25% - 8px)
}

@media(max-width: 640px) {
    .input-row .input-wrapper.input-wrapper__mobile-half {
        width:calc(50% - 8px);
        max-width: calc(50% - 8px)
    }

    .input-row .input-wrapper.input-wrapper__mobile-half:nth-child(3) {
        margin-left: 0
    }

    .input-row .input-wrapper.input-wrapper__mobile-half:nth-child(3),.input-row .input-wrapper.input-wrapper__mobile-half:nth-child(4) {
        margin-top: 15px
    }
}

@media(max-width: 640px) {
    .input-row .input-wrapper.input-wrapper__mobile-full {
        width:100%;
        max-width: 100%;
        margin-left: 0
    }
}

.input-row+.input-row {
    margin-top: 15px
}

.input-wrapper {
    position: relative;
    width: 100%
}

.input-wrapper+.input-wrapper {
    margin-top: 15px
}

.input-wrapper+.input-wrapper__has-placeholder {
    margin-top: 12px
}

.input-wrapper .text-input {
    background: #0B0C13;
    border: 1px solid rgba(0,0,0,0);
    outline: 0;
    width: 100%;
    height: 40px;
    padding: 4px 14px;
    border-radius: 5px;
    color: #fff
}

.input-wrapper .text-input,.input-wrapper .text-input::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500
}

.input-wrapper .text-input,.input-wrapper .text-input::-moz-placeholder {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500
}

.input-wrapper .text-input,.input-wrapper .text-input::-ms-input-placeholder {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500
}

.input-wrapper .text-input,.input-wrapper .text-input::placeholder {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500
}

.input-wrapper .text-input::-webkit-input-placeholder {
    color: rgba(255,255,255,.5)
}

.input-wrapper .text-input::-moz-placeholder {
    color: rgba(255,255,255,.5)
}

.input-wrapper .text-input::-ms-input-placeholder {
    color: rgba(255,255,255,.5)
}

.input-wrapper .text-input::placeholder {
    color: rgba(255,255,255,.5)
}

.input-wrapper .text-input:focus,.input-wrapper .text-input.focused {
    background: #000;
    border-color: rgba(255,255,255,.1)
}

.input-wrapper .text-input:hover {
    border-color: rgba(255,255,255,.1)
}

.input-wrapper .text-input.error {
    border-color: #ff0056
}

.input-wrapper .text-input:disabled {
    opacity: .4
}

.input-wrapper .text-input.error:not(:focus)+.error-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.input-wrapper .text-input.error:hover+.error-message {
    display: none
}

.input-wrapper .text-input .recurly-hosted-field {
    height: 100%
}

@media(max-width: 480px) {
    .input-wrapper .text-input {
        padding:6px 14px;
        height: 36px
    }

    .input-wrapper .text-input,.input-wrapper .text-input::-webkit-input-placeholder {
        font-size: 16px;
        line-height: 24px
    }

    .input-wrapper .text-input,.input-wrapper .text-input::-moz-placeholder {
        font-size: 16px;
        line-height: 24px
    }

    .input-wrapper .text-input,.input-wrapper .text-input::-ms-input-placeholder {
        font-size: 16px;
        line-height: 24px
    }

    .input-wrapper .text-input,.input-wrapper .text-input::placeholder {
        font-size: 16px;
        line-height: 24px
    }
}

.input-wrapper .text-input.small {
    padding: 3px 6px;
    height: 26px
}

.input-wrapper .text-input.small,.input-wrapper .text-input.small::-webkit-input-placeholder {
    font-size: 13px;
    line-height: 20px
}

.input-wrapper .text-input.small,.input-wrapper .text-input.small::-moz-placeholder {
    font-size: 13px;
    line-height: 20px
}

.input-wrapper .text-input.small,.input-wrapper .text-input.small::-ms-input-placeholder {
    font-size: 13px;
    line-height: 20px
}

.input-wrapper .text-input.small,.input-wrapper .text-input.small::placeholder {
    font-size: 13px;
    line-height: 20px
}

.input-wrapper textarea.text-input {
    display: block;
    height: auto;
    cursor: text;
    resize: none
}

.input-wrapper .error-message {
    font-size: 13px;
    line-height: 20px;
    color: #ff0056;
    background: #0B0C13;
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 12px 4px 14px;
    border-radius: 5px;
    pointer-events: none;
    display: none
}

.input-wrapper.input-wrapper__has-placeholder {
    padding-top: 23px
}

.input-wrapper.input-wrapper__has-icon .text-input {
    padding-right: 40px
}

@media(max-width: 480px) {
    .input-wrapper+.input-wrapper {
        margin-top:30px
    }

    .input-wrapper+.input-wrapper__has-placeholder {
        margin-top: 12px
    }
}

.input-placeholder {
    font-size: 13px;
    line-height: 20px;
    padding: 0 0 0 14px;
    color: rgba(255,255,255,.5);
    position: absolute;
    top: 28px;
    left: 0;
    -webkit-transition-property: font-size,top,opacity;
    transition-property: font-size,top,opacity;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    pointer-events: none;
    opacity: 0
}

.input-placeholder sup {
    color: #fff;
    vertical-align: top;
    font-size: initial
}

.input-icon {
    width: 16px;
    height: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 12px;
    bottom: 12px
}

.input-icon__info {
    background: #11171d;
    border-radius: 50%
}

.input-icon__info,.input-icon__info * {
    cursor: pointer
}

.input-icon__info svg * {
    fill: rgba(255,255,255,.5)
}

.input-icon__info:hover {
    background: #13cfff
}

.input-icon__info:hover svg * {
    fill: #11171d
}

input:not(:placeholder-shown)+.input-placeholder,.input-placeholder.input-placeholder__visible {
    font-size: 13px;
    line-height: 20px;
    top: 0;
    opacity: 1
}

.checkbox {
    position: relative;
    max-width: 340px
}

.checkbox,.checkbox * {
    cursor: pointer
}

.checkbox input {
    display: none
}

.checkbox input:checked+.label:before {
    background: #0B0C13 url(/static/images/icons/checkmark-33636dc6dc.svg) center no-repeat
}

.checkbox .label:before {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 4px;
    position: relative;
    margin-right: 9px;
    background: #0B0C13;
    cursor: pointer
}

.checkbox .label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: rgba(255,255,255,.5)
}

.checkbox .label a {
    color: rgba(255,255,255,.8);
    -webkit-transition: color .15s;
    transition: color .15s
}

.checkbox .label a:hover {
    color: #fff
}

.submit-button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff
}

.submit-button,.submit-button * {
    cursor: pointer
}

.submit-button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.submit-button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.submit-button>*+* {
    margin-left: 9px
}

.submit-button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.submit-button:hover:not(:disabled) {
    background-color: #13cfff
}

@media(max-width: 480px) {
    .submit-button {
        font-size:18px;
        line-height: 30px;
        font-weight: 600;
        height: 38px;
        padding: 0 18px
    }
}

.submit-button__filled {
    background: #13cfff;
    color: #000
}

.submit-button__filled svg * {
    fill: #000
}

.submit-button__filled:hover:not(:disabled) {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
    -webkit-box-shadow: 0 0 15px rgba(19,207,255,.1);
    box-shadow: 0 0 15px rgba(19,207,255,.1)
}

.form-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px -10px -10px
}

.form-actions>* {
    margin: 10px
}

.game-result,.game-result-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.game-result .col+.col,.game-result-header .col+.col {
    margin-left: 25px
}

.game-result .thumbnail,.game-result-header .thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 162px;
    flex: 0 0 162px;
    min-width: 0
}

.game-result .name,.game-result-header .name {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    min-width: 0
}

.game-result .cheats,.game-result .platforms,.game-result .updated,.game-result .status,.game-result-header .cheats,.game-result-header .platforms,.game-result-header .updated,.game-result-header .status {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0
}

.game-result .platforms,.game-result-header .platforms {
    min-width: 90px
}

.game-result .status,.game-result-header .status {
    min-width: 140px
}

.game-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    background: #000;
    height: 75px;
    -webkit-transition: -webkit-box-shadow .15s;
    transition: -webkit-box-shadow .15s;
    transition: box-shadow .15s;
    transition: box-shadow .15s, -webkit-box-shadow .15s
}

.game-result .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .15s;
    transition: color .15s;
    height: 75px
}

.game-result .thumbnail {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    position: relative
}

.game-result .thumbnail:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 26px;
    left: 50%;
    top: 50%;
    margin-top: -13px;
    margin-left: -13px;
    background: url(/static/images/loading-dd2c2e2fb6.webp) center/26px 26px;
    -webkit-animation: game-results-thumbnail 1s linear infinite;
    animation: game-results-thumbnail 1s linear infinite;
    opacity: .25
}

.game-result .thumbnail img {
    width: 162px;
    height: 75px;
    opacity: 0;
    -webkit-transition: opacity .15s;
    transition: opacity .15s
}

.game-result .name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    line-height: 20px
}

.game-result .name div {
    max-height: 60px;
    overflow: hidden
}

@supports(-webkit-line-clamp: 3) {
    .game-result .name div {
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical
    }
}

.game-result .cheats {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: rgba(255,255,255,.4)
}

.game-result .cheats .mobile {
    display: none
}

.game-result .platforms {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.game-result .platforms .platforms-wrapper {
    max-height: 60px;
    overflow: hidden
}

.game-result .platforms img {
    opacity: .5;
    -webkit-transition: opacity .15s;
    transition: opacity .15s;
    margin-right: 9px;
    width: 14px;
    height: 14px
}

.game-result .platforms .platform {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 5px 10px 5px 0
}

.game-result .status img {
    margin-right: 6px;
    width: 15px;
    height: 11px
}

.game-result .platforms,.game-result .updated,.game-result .status {
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(255,255,255,.5)
}

.game-result:hover {
    -webkit-box-shadow: 0 0 0 1.5px #0B0C13;
    box-shadow: 0 0 0 1.5px #0B0C13
}

.game-result:hover .name,.game-result:hover .cheats,.game-result:hover .platforms,.game-result:hover .updated,.game-result:hover .status {
    color: #fff
}

.game-result:hover .platforms img {
    opacity: 1
}

.game-result:hover .status i svg * {
    fill: .15s
}

.game-result+.game-result {
    margin-top: 10px
}

@media(max-width: 900px) {
    .game-result {
        position:relative;
        height: 232px;
        overflow: hidden;
        z-index: 0;
        padding-top: 133px;
        padding-bottom: 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .game-result .col {
        height: auto;
        position: relative;
        z-index: 1
    }

    .game-result .col+.col {
        margin-left: 20px !important
    }

    .game-result .thumbnail {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 0
    }

    .game-result .thumbnail:before {
        display: none
    }

    .game-result .thumbnail:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, #000 0%, #000 40px, transparent 75%);
        cursor: pointer
    }

    .game-result .thumbnail img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center
    }

    .game-result .name {
        font-size: 16px;
        line-height: 24px;
        font-weight: 600;
        color: rgba(255,255,255,.8);
        -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
        height: 48px;
        margin-bottom: 9px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .game-result .name div {
        max-height: 48px
    }

    .game-result .platforms {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
        margin-right: -10px
    }

    .game-result .platforms .platform img {
        margin-right: 0
    }

    .game-result .platforms .platform span {
        display: none
    }

    .game-result .cheats {
        font-size: 13px;
        line-height: 20px;
        font-weight: 600;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
        color: rgba(255,255,255,.5)
    }

    .game-result .cheats .desktop {
        display: none
    }

    .game-result .cheats .mobile {
        display: inline
    }

    .game-result .updated {
        font-size: 13px;
        line-height: 20px;
        font-weight: 600;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        color: rgba(255,255,255,.5)
    }

    .game-result.has-trainer .updated:before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        background: url("/static/images/icons/clock-01786b45cb.svg") center no-repeat;
        opacity: .5;
        margin-right: 9px
    }

    .game-result .status {
        display: none
    }
}

html:not(.js-enabled) .game-result .thumbnail img[data-src] {
    display: none
}

html:not(.js-enabled) .game-result .thumbnail:before {
    -webkit-animation: none;
    animation: none
}

.game-result .thumbnail.loaded img,html:not(.js-enabled) .game-result .thumbnail img {
    opacity: 1
}

.game-result .thumbnail.loaded:before,html:not(.js-enabled) .game-result .thumbnail:before {
    display: none
}

@-webkit-keyframes game-results-thumbnail {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes game-results-thumbnail {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.header-badge {
    display: inline-block;
    border-radius: 5px;
    padding: 0 7.5px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 28px
}

.header-badge__pro {
    background: linear-gradient(225deg, #0bf2f6 0%, #9200ff 100%);
    color: #fff;
    text-transform: uppercase
}

.header-badge__diamond {
    background: #13cfff;
    color: #0B0C13
}

.lightbox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: visibility 0s .3s;
    transition: visibility 0s .3s;
    display: none;
    table-layout: fixed
}

.lightbox .lightbox-inner {
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    background: rgba(0,0,0,0);
    overflow: hidden;
    -webkit-transition: background-color .3s;
    transition: background-color .3s
}

.lightbox.open {
    z-index: 999;
    display: table;
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.lightbox.open .lightbox-inner {
    background: rgba(0,0,0,.5);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.lightbox.open .content {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.lightbox .content {
    display: inline-block;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    position: relative;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
    border: 0;
    border-radius: 5px;
    z-index: 0;
    background: #000
}

.lightbox .content img {
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    overflow: hidden;
    border-radius: 5px
}

.lightbox .content .video {
    width: 600px;
    height: 0;
    padding-top: 56.25%;
    max-width: calc(100vw - 40px);
    position: relative;
    border-radius: 5px;
    overflow: hidden
}

.lightbox .content .video iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    border: none
}

.lightbox .content .close-button {
    position: absolute;
    right: -11px;
    top: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #fff url(/static/images/icons/close-small-1b574d35bb.svg) center no-repeat;
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s;
    z-index: 1
}

.lightbox .content .close-button:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.wm-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.wm-button--color-primary {
    --wm-button-color-bg: #fff;
    --wm-button-color-fg: #000;
    --wm-button-color-fg-secondary: #333;
    --wm-button-overlay-bg-color: rgba(0, 0, 0);
    --wm-button-overlay-hover-opacity: 0.1;
    --wm-button-overlay-active-opacity: 0.2
}

.wm-button--color-inverse {
    --wm-button-color-bg: #191919;
    --wm-button-color-fg: #fff;
    --wm-button-color-fg-secondary: rgba(255, 255, 255, 0.9);
    --wm-button-overlay-bg-color: rgba(255, 255, 255);
    --wm-button-overlay-hover-opacity: 0.15;
    --wm-button-overlay-active-opacity: 0
}

.wm-button--color-green {
    --wm-button-color-bg: #8599FF;
    --wm-button-color-fg: #4c5710;
    --wm-button-color-fg-secondary: #4c5710;
    --wm-button-overlay-bg-color: rgba(0, 0, 0);
    --wm-button-overlay-hover-opacity: 0.15;
    --wm-button-overlay-active-opacity: 0
}

.wm-button--size-s {
    --wm-button-icon-size: 16px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    padding: 8px 12px;
    gap: 4px
}

.wm-button--size-s:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 8px 16px 8px 12px
}

.wm-button--size-s:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 8px 12px 8px 16px
}

.wm-button--size-m {
    --wm-button-icon-size: 16px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    padding: 10px 16px;
    gap: 4px
}

.wm-button--size-m:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 20px 10px 16px
}

.wm-button--size-m:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 16px 10px 20px
}

.wm-button--size-l {
    --wm-button-icon-size: 20px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.5px;
    padding: 10px 16px;
    gap: 8px
}

.wm-button--size-l:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 20px 10px 16px
}

.wm-button--size-l:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 16px 10px 20px
}

.wm-button--size-xl {
    --wm-button-icon-size: 20px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px;
    padding: 10px 20px;
    gap: 8px
}

.wm-button--size-xl:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 24px 10px 20px
}

.wm-button--size-xl:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 20px 10px 24px
}

.wm-button--variant-filled {
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    background-color: var(--wm-button-color-bg);
    color: var(--wm-button-color-fg)
}

.wm-button--variant-filled::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    opacity: var(--wm-button-overlay-opacity, 0);
    left: 0;
    top: 0;
    pointer-events: none;
    background-color: var(--wm-button-overlay-bg-color);
    -webkit-transition: opacity 150ms ease-out;
    transition: opacity 150ms ease-out
}

.wm-button--variant-filled:not(:disabled):hover::after,.wm-button--variant-filled:not(:disabled):focus::after {
    opacity: var(--wm-button-overlay-hover-opacity)
}

.wm-button--variant-filled:not(:disabled):active::after {
    opacity: var(--wm-button-overlay-active-opacity)
}

.wm-button--variant-filled-icon-leading,.wm-button--variant-filled-icon-trailing {
    color: var(--wm-button-color-fg-secondary)
}

.wm-button-icon-leading,.wm-button-icon-trailing {
    font-size: var(--wm-button-icon-size)
}

#onetrust-consent-sdk #onetrust-banner-sdk {
    background-color: rgba(255,255,255,.05) !important;
    -webkit-backdrop-filter: blur(50px) !important;
    backdrop-filter: blur(50px) !important;
    border-radius: 20px !important;
    max-width: 200px !important;
    padding: 12px !important;
    border: none !important
}

#onetrust-consent-sdk #onetrust-banner-sdk .ot-sdk-container {
    margin-top: 24px !important
}

#onetrust-consent-sdk #onetrust-banner-sdk .ot-close-icon {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    background-color: rgba(255,255,255,.1) !important;
    background-size: 9px !important
}

#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-policy-text,#onetrust-consent-sdk #onetrust-banner-sdk :not(.ot-dpd-desc)>.ot-b-addl-desc,#onetrust-consent-sdk #onetrust-banner-sdk .ot-dpd-container,#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group-parent {
    padding: 0 !important
}

#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-policy-text {
    color: rgba(255,255,255,.8) !important;
    padding-bottom: 12px !important
}

#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-policy-text a {
    color: #fff !important;
    padding-left: 4px !important
}

#onetrust-consent-sdk #onetrust-banner-sdk .banner-header,#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-policy {
    margin: 0 !important
}

#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group button {
    font-weight: 500;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 12px;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    border: none;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    font-weight: 500;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 12px;
    line-height: 16px;
    padding: 8px 12px;
    letter-spacing: 0 !important
}

#onetrust-consent-sdk #onetrust-banner-sdk #onetrust-button-group button:hover {
    opacity: .85 !important
}

#onetrust-consent-sdk #onetrust-banner-sdk button {
    margin-bottom: 8px !important
}

#onetrust-consent-sdk #onetrust-banner-sdk *:focus,#onetrust-consent-sdk #onetrust-banner-sdk:focus {
    outline: none !important
}

#onetrust-consent-sdk #onetrust-banner-sdk.ot-wo-title #onetrust-group-container {
    margin-top: 0 !important
}

#onetrust-consent-sdk #onetrust-close-btn-container {
    -webkit-filter: brightness(0) invert(1) !important;
    filter: brightness(0) invert(1) !important;
    top: -28px !important;
    right: -4px !important
}

#onetrust-consent-sdk #onetrust-pc-btn-handler,#onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link,#onetrust-banner-sdk #onetrust-reject-all-handler {
    background-color: rgba(255,255,255,.15) !important;
    color: #fff !important
}

#onetrust-consent-sdk #onetrust-pc-btn-handler:active,#onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link:active,#onetrust-banner-sdk #onetrust-reject-all-handler:active {
    opacity: 0 !important
}

#onetrust-consent-sdk #onetrust-pc-sdk {
    background-color: rgba(255,255,255,.05) !important;
    -webkit-backdrop-filter: blur(50px) !important;
    backdrop-filter: blur(50px) !important;
    border-radius: 16px !important;
    -webkit-box-shadow: 0px 20px 30px rgba(0,0,0,.35) !important;
    box-shadow: 0px 20px 30px rgba(0,0,0,.35) !important;
    border-radius: 16px !important
}

#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content {
    color: rgba(255,255,255,.8) !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255,255,255,.15) rgba(255,255,255,.05) !important
}

#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content h1,#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content h2,#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content h3,#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content h4,#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content h5,#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content h6,#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content a,#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content #onetrust-pc-sdk .ot-cat-item>button,#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content #onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-plus-minus {
    color: #fff !important
}

#onetrust-consent-sdk #onetrust-pc-sdk #close-pc-btn-handler.ot-close-icon {
    top: 10px !important;
    right: 10px !important;
    background-color: rgba(255,255,255,.1019607843) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    -webkit-filter: brightness(0) invert(1) !important;
    filter: brightness(0) invert(1) !important
}

#onetrust-consent-sdk #onetrust-pc-sdk #accept-recommended-btn-handler {
    font-weight: 500;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 12px;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    border: none;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    font-weight: 700;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    letter-spacing: 0 !important;
    background-color: #fff !important;
    color: #000 !important;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important
}

#onetrust-consent-sdk #onetrust-pc-sdk #accept-recommended-btn-handler:hover {
    opacity: .85 !important
}

#onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc,#onetrust-consent-sdk #onetrust-pc-sdk p {
    color: rgba(255,255,255,.6) !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-pc-header,#onetrust-consent-sdk #onetrust-pc-sdk .ot-pc-footer {
    border: none !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-accordion-layout.ot-cat-item {
    border: none !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-grpcntr .ot-subgrp-cntr {
    border-top: .5px solid rgba(255,255,255,.15) !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-switch-nob {
    border: none !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type .ot-acc-hdr {
    border-top-left-radius: 16px !important;
    border-top-right-radius: 16px !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:last-of-type .ot-acc-grpcntr.ot-acc-txt {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:last-of-type button {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:last-of-type button[aria-expanded=false]+.ot-acc-hdr {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-vs-config .ot-acc-hdr {
    background-color: rgba(255,255,255,.1) !important;
    padding: 12px 16px !important;
    width: unset !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-plus-minus span {
    background: #fff !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-always-active {
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 11px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255,255,255,.6) !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-grpcntr.ot-acc-txt {
    background-color: rgba(255,255,255,.05) !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-pc-footer .ot-btn-container button {
    font-weight: 500;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 12px;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    border: none;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    font-weight: 700;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    letter-spacing: 0 !important;
    background-color: #fff !important;
    color: #000 !important;
    justify-self: flex-end !important;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
    margin-right: 42px
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-pc-footer .ot-btn-container button:hover {
    opacity: .85 !important
}

#onetrust-consent-sdk #onetrust-pc-sdk .ot-pc-footer .ot-pc-footer-logo {
    background: rgba(0,0,0,0) !important;
    -webkit-backdrop-filter: blur(50px) !important;
    backdrop-filter: blur(50px) !important
}

body {
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

*,*:before,*:after {
    cursor: default;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

a {
    text-decoration: none
}

a img {
    outline: none;
    border: 0
}

a,img {
    -webkit-user-drag: none
}

a,a *,button,button * {
    cursor: pointer;
    outline: none
}

input[type=text],input[type=email],input[type=password] {
    cursor: initial
}

html,body {
    height: 100%
}

[v-cloak] {
    display: none
}

.tag {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.8);
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255,255,255,.1);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.tag i {
    margin-right: 10px
}

.tag__subscribed {
    background: #000
}

.tag__cta {
    background: #0B0C13;
    -webkit-transition: background-color .15s;
    transition: background-color .15s;
    border: 0;
    outline: none
}

.tag__cta:hover {
    background: #000
}

.text-content-layout {
    max-width: 700px;
    margin: 0 auto;
    padding: 156px 20px 0 20px;
    min-height: 100vh
}

.text-content-title {
    font-size: 68px;
    line-height: 70px;
    margin: 0;
    font-weight: 500;
    color: #fff;
    margin-bottom: 39px;
    text-align: center
}

.text-content {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: rgba(255,255,255,.6)
}

.text-content h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    margin: 0 0 13px 0
}

.text-content h2 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    color: #fff;
    margin: 0 0 20px 0
}

.text-content p {
    margin-bottom: 10px
}

.text-content a {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: #13cfff;
    text-decoration: none;
    -webkit-transition: color .15s;
    transition: color .15s
}

.text-content a:hover {
    color: #fff
}

@media(max-width: 500px) {
    .text-content-layout {
        padding-top:100px
    }

    .text-content-title {
        font-size: 35px;
        line-height: 40px;
        margin: 0
    }
}

.tile {
    background: #000;
    border-radius: 20px;
    padding: 43px 50px;
    overflow: hidden
}

.tile.purple {
    background: linear-gradient(to top, #6844ff 0%, #000 380px)
}

.tile.fade {
    background: -webkit-gradient(linear, left top, left bottom, from(#0B0C13), to(#11171d));
    background: linear-gradient(180deg, #0B0C13 0%, #11171d 100%)
}

.tile.fade-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.55)), to(rgba(17, 23, 29, 0.55)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.55) 0%, rgba(17, 23, 29, 0.55) 100%)
}

.tile.fade-blue h2 em,.tile.fade-blue h3 em,.tile.fade-blue .tile-title em {
    color: #13cfff
}

.tile.fade-blue h2 a,.tile.fade-blue h3 a,.tile.fade-blue .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-blue h2 a:before,.tile.fade-blue h3 a:before,.tile.fade-blue .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-blue h2 a:hover:not(:disabled):before,.tile.fade-blue h3 a:hover:not(:disabled):before,.tile.fade-blue .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(19,207,255,.5)
}

.tile.fade-green {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.5)), to(rgba(17, 23, 29, 0.5)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.5) 0%, rgba(17, 23, 29, 0.5) 100%)
}

.tile.fade-green h2 em,.tile.fade-green h3 em,.tile.fade-green .tile-title em {
    color: #0bf2f6
}

.tile.fade-green h2 a,.tile.fade-green h3 a,.tile.fade-green .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-green h2 a:before,.tile.fade-green h3 a:before,.tile.fade-green .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(11,242,246,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-green h2 a:hover:not(:disabled):before,.tile.fade-green h3 a:hover:not(:disabled):before,.tile.fade-green .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(11,242,246,.5)
}

.tile.no-background {
    padding: 0;
    background: rgba(0,0,0,0);
    border-radius: 0
}

.tile.no-bottom-padding {
    padding-bottom: 0
}

.tile h2,.tile h3,.tile .tile-title {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px
}

.tile h2 em,.tile h3 em,.tile .tile-title em {
    font-style: normal
}

.tile h2.subdued,.tile h3.subdued,.tile .tile-title.subdued {
    color: rgba(255,255,255,.4)
}

.tile h2.with-icon,.tile h3.with-icon,.tile .tile-title.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.tile h2.with-icon img,.tile h3.with-icon img,.tile .tile-title.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .tile h2,.tile h3,.tile .tile-title {
        font-size:24px;
        line-height: 34px
    }
}

.tile p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.5)
}

.tile p a:not(.no-link-hover) {
    position: relative;
    z-index: 0;
    color: #fff;
    white-space: nowrap
}

.tile p a:not(.no-link-hover):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile p a:not(.no-link-hover):hover:not(:disabled):before {
    height: calc(100% - 1px);
    background: rgba(19,207,255,.5)
}

.tile p em {
    font-style: normal;
    color: #fff
}

@media(max-width: 900px) {
    .tile {
        padding:27px 38px
    }

    .tile p {
        font-size: 16px;
        line-height: 24px
    }
}

.tooltip {
    -webkit-box-shadow: 0 0 5px 0 rgba(11,23,42,.5);
    box-shadow: 0 0 5px 0 rgba(11,23,42,.5);
    padding: 6px 11px 2px 11px;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: 8px;
    z-index: 2;
    font-weight: 300;
    font-size: 16px;
    color: rgba(255,255,255,.6);
    line-height: 20px;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
    -webkit-transition: opacity .15s;
    transition: opacity .15s;
    background: #2f3949;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,.05);
    white-space: nowrap
}

.tooltip.error {
    background: #ff0056;
    color: #fff
}

.tooltip.error:after,.tooltip.error:before {
    background: #ff0056
}

.tooltip:after,.tooltip:before {
    content: "";
    display: block;
    background: #2f3949;
    border-radius: 2px
}

.tooltip:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.tooltip:before {
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: -2px;
    z-index: -2;
    border: 1px solid rgba(255,255,255,.05)
}

.clearfix:after {
    content: "";
    display: block;
    clear: both
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.hide {
    display: none
}

.badge {
    line-height: 13px;
    padding: 2px 4px 0 4px;
    font-weight: 900;
    font-size: 12px;
    border-radius: 2px;
    text-transform: uppercase;
    vertical-align: middle
}

.underline {
    text-decoration: underline
}

.view-wrapper {
    display: block;
    position: relative;
    padding-top: 140px;
    z-index: 0
}

@media(max-width: 900px) {
    .view-wrapper {
        padding-top:90px
    }
}

.view-title {
    font-size: 68px;
    line-height: 70px;
    margin: 0;
    color: #fff;
    margin-bottom: 25px
}

@media(max-width: 900px) {
    .view-title {
        font-size:35px;
        line-height: 40px;
        margin: 0
    }
}

.view-background-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 525px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
    opacity: .3
}

.view-background-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#11171d));
    background: linear-gradient(180deg, transparent 0%, #11171d 100%)
}

.view-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px !important
}

.view-header .meta {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0
}

.view-header .breadcrumbs {
    margin-bottom: 9px
}

.view-header .breadcrumbs a {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.6);
    -webkit-transition: color .15s;
    transition: color .15s
}

.view-header .breadcrumbs a:hover {
    color: #fff
}

.view-header .breadcrumbs .divider:before {
    font-size: 13px;
    line-height: 20px;
    content: "/";
    color: rgba(255,255,255,.15)
}

.view-header .view-title {
    margin-bottom: 25px
}

.view-header .thumbnail {
    width: 162px;
    height: 76px;
    margin-left: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.1)
}

.view-header .platforms {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    display: inline-block;
    margin: 0
}

.view-header .platforms img {
    width: 18px;
    height: 18px;
    opacity: .6;
    margin: -2px 0 2px 3px;
    vertical-align: middle
}

.view-header .platforms .platform {
    white-space: nowrap
}

.view-header .x-download-button {
    margin-top: 25px
}

@media(max-width: 900px) {
    .view-header {
        margin-bottom:30px
    }

    .view-header .breadcrumbs,.view-header .thumbnail {
        display: none
    }

    .view-header .view-title {
        margin-bottom: 15px
    }

    .view-header .platforms {
        font-size: 20px;
        line-height: 34px
    }
}

.account-layout {
    width: 100%;
    padding: 143px 30px 139px 30px;
    max-width: 1270px;
    margin: 0 auto
}

.account-layout .account-nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    max-width: 100%;
    overflow: auto
}

.account-layout .account-nav .account-tabs {
    background: #0B0C13;
    padding: 5px;
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.account-layout .account-nav .account-tabs a {
    font-size: 16px;
    line-height: 24px;
    padding: 4px 12px;
    color: rgba(255,255,255,.8);
    -webkit-transition-property: background-color,color;
    transition-property: background-color,color;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    border-radius: 5px
}

.account-layout .account-nav .account-tabs a:hover {
    background-color: #fff;
    color: #0B0C13
}

.account-layout .account-nav .account-tabs a+* {
    margin-left: 15px
}

.account-layout .account-nav .account-tabs a.current {
    background-color: #fff;
    color: #0B0C13
}

.account-layout .account-breadcrumb {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.6);
    margin: 0 0 9px
}

.account-layout .view-title {
    margin: 0 0 43px
}

.account-layout .account-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.account-layout .account-col {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    max-width: 50%
}

.account-layout .account-col+.account-col {
    margin-left: 40px
}

.account-layout .account-col .tile+.tile {
    margin-top: 40px
}

@media(max-width: 1000px) {
    .account-layout .account-content {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .account-layout .account-col {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        max-width: 100%
    }

    .account-layout .account-col+.account-col {
        margin-left: 0;
        margin-top: 20px
    }

    .account-layout .account-col .tile+.tile {
        margin-top: 20px
    }
}

@media(max-width: 480px) {
    .account-layout {
        padding-left:22px;
        padding-right: 22px
    }

    .account-layout .account-breadcrumb {
        display: none
    }

    .account-layout .view-title {
        margin-bottom: 30px
    }

    .account-layout .account-nav {
        margin-bottom: 30px
    }
}

.account-layout-container .diamond-pro {
    margin-bottom: 25px;
    padding: 20px 25px;
    background: #000;
    border-radius: 10px;
    overflow: hidden
}

.account-layout-container .diamond-pro span {
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    color: #fff
}

.account-layout-container .diamond-pro span strong {
    color: #13cfff
}

.account-layout-container .diamond-pro span strong:first-child {
    color: #8599FF
}

.billing-view .form-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.billing-view .form-header .header-badge {
    margin-right: 13px
}

.billing-view .plan-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.billing-view .plan-row .info {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.5)
}

.billing-view .plan-row .info b,.billing-view .plan-row .info strong {
    font-weight: 500;
    color: rgba(255,255,255,.8)
}

.billing-view .plan-row .action {
    font-size: 13px;
    line-height: 20px;
    background: rgba(0,0,0,0);
    padding: 0;
    border: 0;
    outline: none;
    color: rgba(255,255,255,.5);
    -webkit-transition: color .15s;
    transition: color .15s
}

.billing-view .plan-row .action:hover {
    color: #fff
}

.billing-view .plan-row .action__alert {
    color: #ff0056
}

.billing-view .plan-row .separator {
    height: 22px;
    border-left: 1px solid rgba(255,255,255,.1)
}

.billing-view .plan-row>*+* {
    margin-left: 18px
}

.billing-view .plan-row .tag__subscribed svg * {
    fill: #8599FF
}

.billing-view .plan-row+* {
    margin-top: 25px
}

.billing-view .action-button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff
}

.billing-view .action-button,.billing-view .action-button * {
    cursor: pointer
}

.billing-view .action-button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.billing-view .action-button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.billing-view .action-button>*+* {
    margin-left: 9px
}

.billing-view .action-button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.billing-view .action-button:hover:not(:disabled) {
    background-color: #13cfff
}

@media(max-width: 480px) {
    .billing-view .action-button {
        font-size:18px;
        line-height: 30px;
        font-weight: 600;
        height: 38px;
        padding: 0 18px
    }
}

@media(max-width: 640px) {
    .billing-view .plan-row {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap;
        margin-top: -7px;
        margin-bottom: -7px;
        margin-left: -18px
    }

    .billing-view .plan-row>* {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 7px;
        margin-bottom: 7px
    }

    .billing-view .plan-row>*:first-child {
        margin-left: 18px
    }

    .billing-view .plan-row .info {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

    .billing-view .plan-row .separator {
        display: none
    }
}

.connections-view .form-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.connections-view .form-header img {
    width: 28px;
    margin-right: 14px
}

.connections-view .action-button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff
}

.connections-view .action-button,.connections-view .action-button * {
    cursor: pointer
}

.connections-view .action-button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.connections-view .action-button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.connections-view .action-button>*+* {
    margin-left: 9px
}

.connections-view .action-button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.connections-view .action-button:hover:not(:disabled) {
    background-color: #13cfff
}

@media(max-width: 480px) {
    .connections-view .action-button {
        font-size:18px;
        line-height: 30px;
        font-weight: 600;
        height: 38px;
        padding: 0 18px
    }
}

.connections-view .connection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.connections-view .connection>*+* {
    margin-left: 20px
}

.profile-view .profile-image-editor {
    position: relative;
    margin-bottom: 20px
}

.profile-view .profile-image-editor .profile-image {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    overflow: hidden;
    vertical-align: middle
}

.profile-view .profile-image-editor .delete-button {
    position: absolute;
    left: 60px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #000 url(/static/images/icons/close-small-light-587a1f9485.svg) center no-repeat;
    z-index: 1
}

.profile-view .profile-image-editor .label {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.5);
    margin-left: 20px;
    -webkit-transition: color .15s;
    transition: color .15s
}

.profile-view .profile-image-editor .label,.profile-view .profile-image-editor .label * {
    cursor: pointer
}

.profile-view .profile-image-editor .label:hover {
    color: #fff
}

.profile-view .profile-image-editor form {
    display: inline
}

.profile-view .profile-image-editor input {
    display: none
}

.profile-view .form-actions {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.profile-view .form-actions .logout-link {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    color: rgba(255,255,255,.5);
    text-align: right;
    text-decoration: none;
    float: right;
    -webkit-transition: color .15s;
    transition: color .15s
}

.profile-view .form-actions .logout-link:hover {
    color: #fff
}

@media(max-width: 480px) {
    .profile-view .profile-image-editor .profile-image {
        width:60px;
        height: 60px
    }

    .profile-view .profile-image-editor .delete-button {
        left: 40px
    }
}

.auth-view {
    margin-top: 100px;
    padding: 0 30px
}

.auth-view .auth-title {
    font-size: 68px;
    line-height: 70px;
    margin: 0;
    display: block;
    color: #fff;
    text-align: center;
    margin: 0 0 50px 0
}

.auth-view .form {
    width: 100%;
    max-width: 585px;
    margin: 0 auto
}

.auth-view .forgot-link {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    color: rgba(255,255,255,.5);
    text-align: right;
    text-decoration: none;
    float: right;
    -webkit-transition: color .15s;
    transition: color .15s
}

.auth-view .forgot-link:hover {
    color: #fff
}

.auth-view .form-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 585px;
    margin: 40px auto 0 auto;
    padding-bottom: 140px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -12px
}

.auth-view .form-footer .label {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    margin: 0 12px 12px
}

.auth-view .form-footer .form-footer-button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff;
    margin: 0 12px 12px
}

.auth-view .form-footer .form-footer-button,.auth-view .form-footer .form-footer-button * {
    cursor: pointer
}

.auth-view .form-footer .form-footer-button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.auth-view .form-footer .form-footer-button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.auth-view .form-footer .form-footer-button>*+* {
    margin-left: 9px
}

.auth-view .form-footer .form-footer-button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.auth-view .form-footer .form-footer-button:hover:not(:disabled) {
    background-color: #13cfff
}

@media(max-width: 480px) {
    .auth-view .form-footer {
        margin-top:30px
    }

    .auth-view .form-footer .label {
        font-size: 14px;
        line-height: 22px;
        font-weight: 600
    }

    .auth-view .form-footer .form-footer-button {
        font-size: 18px;
        line-height: 30px;
        font-weight: 600;
        height: 38px;
        padding: 0 18px
    }
}

@media(max-width: 480px) {
    .auth-view {
        padding:0 22px
    }

    .auth-view .form {
        padding: 35px
    }

    .auth-view .auth-title {
        font-size: 35px;
        line-height: 40px;
        margin: 0;
        margin: 0 0 33px;
        text-align: left
    }
}

.auth-view .grecaptcha-badge {
    margin-bottom: 10px
}

.check-inbox-view {
    margin-top: 100px;
    padding: 0 30px
}

.check-inbox-view .tile {
    width: 100%;
    max-width: 585px;
    margin: 0 auto;
    background: inherit;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center
}

.check-inbox-view .tile p strong {
    color: #fff;
    opacity: 80%
}

.check-inbox-view .title {
    display: block;
    color: #fff;
    text-align: center;
    margin: 0 0 50px 0
}

.check-inbox-view .title h1 {
    font-size: 68px;
    line-height: 70px;
    margin: 0
}

.check-inbox-view .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 585px;
    margin: 40px auto 0 auto;
    padding-bottom: 140px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -12px
}

.check-inbox-view .button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff
}

.check-inbox-view .button,.check-inbox-view .button * {
    cursor: pointer
}

.check-inbox-view .button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.check-inbox-view .button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.check-inbox-view .button>*+* {
    margin-left: 9px
}

.check-inbox-view .button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.check-inbox-view .button:hover:not(:disabled) {
    background-color: #13cfff
}

.verify-view .tile {
    max-width: 580px;
    margin: 0 auto
}

.verify-view .form .message {
    font-size: 20px;
    line-height: 34px;
    color: #fff;
    margin-bottom: 24px
}

.verify-view .social {
    text-align: center
}

.verify-view .social .message {
    font-size: 24px;
    line-height: 34px;
    color: #fff
}

.verify-view .social .share-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px
}

.verify-view .social .share-buttons .button {
    display: inline-block;
    margin-left: 20px
}

.verify-view .social .share-buttons .button:first-child {
    margin-left: 0
}

.verify-view .social .share-buttons .fb_iframe_widget {
    float: left
}

.verify-view .social .share-buttons .twitter-tweet-button {
    float: left
}

.tile {
    background: #000;
    border-radius: 20px;
    padding: 43px 50px;
    overflow: hidden
}

.tile.purple {
    background: linear-gradient(to top, #6844ff 0%, #000 380px)
}

.tile.fade {
    background: -webkit-gradient(linear, left top, left bottom, from(#0B0C13), to(#11171d));
    background: linear-gradient(180deg, #0B0C13 0%, #11171d 100%)
}

.tile.fade-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.55)), to(rgba(17, 23, 29, 0.55)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.55) 0%, rgba(17, 23, 29, 0.55) 100%)
}

.tile.fade-blue h2 em,.tile.fade-blue h3 em,.tile.fade-blue .tile-title em {
    color: #13cfff
}

.tile.fade-blue h2 a,.tile.fade-blue h3 a,.tile.fade-blue .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-blue h2 a:before,.tile.fade-blue h3 a:before,.tile.fade-blue .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-blue h2 a:hover:not(:disabled):before,.tile.fade-blue h3 a:hover:not(:disabled):before,.tile.fade-blue .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(19,207,255,.5)
}

.tile.fade-green {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.5)), to(rgba(17, 23, 29, 0.5)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.5) 0%, rgba(17, 23, 29, 0.5) 100%)
}

.tile.fade-green h2 em,.tile.fade-green h3 em,.tile.fade-green .tile-title em {
    color: #0bf2f6
}

.tile.fade-green h2 a,.tile.fade-green h3 a,.tile.fade-green .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-green h2 a:before,.tile.fade-green h3 a:before,.tile.fade-green .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(11,242,246,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-green h2 a:hover:not(:disabled):before,.tile.fade-green h3 a:hover:not(:disabled):before,.tile.fade-green .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(11,242,246,.5)
}

.tile.no-background {
    padding: 0;
    background: rgba(0,0,0,0);
    border-radius: 0
}

.tile.no-bottom-padding {
    padding-bottom: 0
}

.tile h2,.tile h3,.tile .tile-title {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px
}

.tile h2 em,.tile h3 em,.tile .tile-title em {
    font-style: normal
}

.tile h2.subdued,.tile h3.subdued,.tile .tile-title.subdued {
    color: rgba(255,255,255,.4)
}

.tile h2.with-icon,.tile h3.with-icon,.tile .tile-title.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.tile h2.with-icon img,.tile h3.with-icon img,.tile .tile-title.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .tile h2,.tile h3,.tile .tile-title {
        font-size:24px;
        line-height: 34px
    }
}

.tile p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.5)
}

.tile p a:not(.no-link-hover) {
    position: relative;
    z-index: 0;
    color: #fff;
    white-space: nowrap
}

.tile p a:not(.no-link-hover):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile p a:not(.no-link-hover):hover:not(:disabled):before {
    height: calc(100% - 1px);
    background: rgba(19,207,255,.5)
}

.tile p em {
    font-style: normal;
    color: #fff
}

@media(max-width: 900px) {
    .tile {
        padding:27px 38px
    }

    .tile p {
        font-size: 16px;
        line-height: 24px
    }
}

.x-achievements-list .minimal-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%
}

.x-achievements-list .minimal-list .achievements {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    overflow: hidden;
    min-width: 0
}

.x-achievements-list .minimal-list .achievement {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7.5px 12px 7.5px 10px;
    background: #000;
    border-radius: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    overflow: hidden;
    min-width: 0
}

.x-achievements-list .minimal-list .achievement+* {
    margin-left: 15px
}

.x-achievements-list .minimal-list .achievement:hover .name {
    color: #fff
}

.x-achievements-list .minimal-list .icon {
    width: 17px;
    height: 17px;
    border-radius: 1px;
    overflow: hidden;
    background: rgba(255,255,255,.1);
    margin-right: 8.5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.x-achievements-list .minimal-list .name {
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255,255,255,.8);
    -webkit-transition: color .15s;
    transition: color .15s;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.x-achievements-list .minimal-list .view-all-link {
    font-size: 14px;
    line-height: 22px;
    padding: 5px 14px 5px 17px;
    color: rgba(255,255,255,.8);
    -webkit-transition: color .15s;
    transition: color .15s;
    background: url('data:image/svg+xml,<svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 9L5 5L1 1" stroke="%2300C7F2" stroke-width="1.5" stroke-linecap="round"/></svg>') center right no-repeat;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.x-achievements-list .minimal-list .view-all-link:hover {
    color: #fff
}

@media(max-width: 640px) {
    .x-achievements-list .minimal-list {
        -webkit-box-align:start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .x-achievements-list .minimal-list .achievements {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -5px 0 0 -15px
    }

    .x-achievements-list .minimal-list .achievement {
        margin: 5px 0 0 15px
    }

    .x-achievements-list .minimal-list .view-all-link {
        margin-top: 10px;
        padding-left: 0
    }
}

.x-achievements-list .full-list .tile {
    padding: 10px
}

.x-achievements-list .full-list h3 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 27px
}

.x-achievements-list .full-list h3 em {
    font-style: normal
}

.x-achievements-list .full-list h3.subdued {
    color: rgba(255,255,255,.4)
}

.x-achievements-list .full-list h3.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.x-achievements-list .full-list h3.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .x-achievements-list .full-list h3 {
        font-size:24px;
        line-height: 34px
    }
}

.x-achievements-list .full-list h3 .title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.x-achievements-list .full-list h3 .legend {
    font-size: 14px;
    line-height: 22px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 235px;
    flex: 0 0 235px;
    color: #fff
}

.x-achievements-list .full-list h3 .legend em {
    font-style: normal;
    color: #8599FF
}

@media(max-width: 1024px) {
    .x-achievements-list .full-list h3 .legend {
        -ms-flex-preferred-size:155px;
        flex-basis: 155px
    }
}

@media(max-width: 640px) {
    .x-achievements-list .full-list h3 .legend {
        display:none
    }
}

.x-achievements-list .full-list .anchor {
    position: relative;
    top: -100px
}

.x-achievements-list .full-list .achievement {
    --icon-size: 64px;
    --padding: 14px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.x-achievements-list .full-list .achievement~.achievement {
    margin-top: 10px
}

.x-achievements-list .full-list .achievement .icon {
    width: var(--icon-size);
    height: var(--icon-size);
    background: rgba(255,255,255,.1);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-transition: opacity .15s;
    transition: opacity .15s;
    margin: var(--padding) 0 var(--padding) var(--padding)
}

.x-achievements-list .full-list .achievement .icon:not([src]) {
    opacity: 0
}

.x-achievements-list .full-list .achievement .meta {
    padding: var(--padding) 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    min-width: 0;
    color: #fff
}

.x-achievements-list .full-list .achievement .meta .name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600
}

.x-achievements-list .full-list .achievement .meta .description {
    font-size: 14px;
    line-height: 22px
}

.x-achievements-list .full-list .achievement .progress {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px;
    height: 3px;
    border-radius: 4px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background: rgba(255,255,255,.2);
    margin-right: 25px;
    position: relative
}

.x-achievements-list .full-list .achievement .progress:before {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px
}

.x-achievements-list .full-list .achievement .progress .bar {
    position: relative;
    height: 3px;
    background: #8599FF;
    border-radius: 4px
}

.x-achievements-list .full-list .achievement .progress .hover {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    position: absolute;
    bottom: 100%;
    right: 0;
    opacity: 0;
    margin-bottom: -5px;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    -webkit-transition: margin-bottom .15s,opacity .15s;
    transition: margin-bottom .15s,opacity .15s
}

.x-achievements-list .full-list .achievement .progress:hover .hover {
    margin-bottom: 0;
    opacity: 1
}

@media(max-width: 1024px) {
    .x-achievements-list .full-list .achievement .progress {
        width:120px
    }
}

@media(max-width: 640px) {
    .x-achievements-list .full-list .achievement {
        position:relative
    }

    .x-achievements-list .full-list .achievement .meta {
        padding: var(--padding) var(--padding) calc(var(--padding)*2) var(--padding)
    }

    .x-achievements-list .full-list .achievement .progress {
        position: absolute;
        right: var(--padding);
        bottom: var(--padding);
        width: calc(100% - var(--icon-size) - var(--padding)*3);
        margin: 0
    }
}

@media(max-width: 480px) {
    .x-achievements-list .full-list .achievement {
        --padding: 10px;
        --icon-size: 36px
    }
}

.x-alt-map-tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 0;
    overflow: hidden
}

.x-alt-map-tile .badges {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.x-alt-map-tile .badges span {
    line-height: 13px;
    padding: 2px 4px 0 4px;
    font-weight: 900;
    font-size: 12px;
    border-radius: 2px;
    text-transform: uppercase;
    vertical-align: middle;
    color: #000;
    background: #00c7f2
}

.x-alt-map-tile .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 20px 0 12px
}

.x-alt-map-tile .map-thumbnail {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 16px;
    overflow: hidden
}

.x-download-attribution-form header h1 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    color: #fff;
    margin: 0 0 25px
}

.x-download-attribution-form footer {
    margin-top: 35px
}

.x-download-attribution-form footer button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #8599FF;
    background: rgba(0,0,0,0);
    color: #fff
}

.x-download-attribution-form footer button,.x-download-attribution-form footer button * {
    cursor: pointer
}

.x-download-attribution-form footer button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.x-download-attribution-form footer button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.x-download-attribution-form footer button>*+* {
    margin-left: 9px
}

.x-download-attribution-form footer button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.x-download-attribution-form footer button:hover:not(:disabled) {
    background-color: #8599FF
}

.x-download-attribution-form footer button:hover:not(:disabled) {
    color: #0B0C13
}

.x-download-attribution-form .options {
    list-style: none;
    margin: 0;
    padding: 0
}

.x-download-attribution-form .options li {
    margin-top: 12px
}

.x-download-attribution-form .options li+li {
    margin-top: 12px
}

.x-download-attribution-form .options li .label .text-input {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 200px;
    margin-left: 12px
}

.x-download-attribution-form .options li .label .text-input[disabled] {
    pointer-events: none
}

.x-download-attribution-form .options li .label.other {
    margin-top: -3px
}

.x-download-attribution-form .confirmation {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    display: none;
    color: #fff;
    text-align: center
}

.x-download-button .button-wrapper {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-right: 40px
}

.x-download-button .button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    background: #8599FF;
    color: #0B0C13
}

.x-download-button .button,.x-download-button .button * {
    cursor: pointer
}

.x-download-button .button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.x-download-button .button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.x-download-button .button>*+* {
    margin-left: 9px
}

.x-download-button .button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.x-download-button .button svg * {
    fill: #0B0C13
}

.x-download-button .button:not(:disabled) {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
    -webkit-box-shadow: 0 0 15px rgba(172,255,53,.1);
    box-shadow: 0 0 15px rgba(172,255,53,.1)
}

.x-download-button .button img {
    width: 18px;
    height: 18px
}

.x-download-button .button .show-mobile {
    display: none
}

.x-download-button .size {
    font-size: 14px;
    line-height: 22px;
    margin-left: 18px;
    text-transform: uppercase;
    color: rgba(172,255,53,.6)
}

.x-download-button.vertical .button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.x-download-button.vertical .button-wrapper .size {
    margin-left: 0;
    margin-top: 14px
}

.x-download-button.no-download-border .no-download {
    border: 1px solid #0B0C13
}

@media(max-width: 700px) {
    .x-download-button .button .show-mobile {
        display:initial
    }

    .x-download-button .button .hide-mobile {
        display: none
    }
}

@media(max-width: 420px) {
    .x-download-button .download .button-wrapper {
        display:none !important
    }

    .x-download-button .download .no-download {
        display: block !important
    }
}

body.os-windows .x-download-button .no-download {
    display: none
}

body.os-windows .x-download-button .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.x-faq-tile {
    margin: 40px 0
}

.x-faq-tile p a {
    position: relative;
    z-index: 0;
    font-style: normal;
    color: #00f3a2
}

.x-faq-tile p a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: rgba(0,243,162,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.x-faq-tile p a:hover:not(:disabled):before {
    height: calc(100% - 1px);
    background: rgba(0,243,162,.5)
}

.x-faq-tile .faq-items {
    margin-top: 10px;
    margin-left: -12px
}

.x-faq-tile header {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255,255,255,.8);
    margin-top: 5px;
    padding: 4px 12px 4px 35px;
    position: relative;
    display: inline-block;
    -webkit-transition: color .15s,background-color .15s;
    transition: color .15s,background-color .15s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.x-faq-tile header,.x-faq-tile header * {
    cursor: pointer
}

.x-faq-tile header:before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url("/static/images/views/title/faq-arrow-39180701d2.svg") center no-repeat;
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s;
    position: absolute;
    left: 12px;
    top: 10px
}

.x-faq-tile header.expanded:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.x-faq-tile header.expanded+article {
    height: auto;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.x-faq-tile header.expanded+article+header {
    margin-top: 10px
}

.x-faq-tile header:hover:not(.expanded) {
    color: #fff;
    background: #11171d;
    border-radius: 5px
}

.x-faq-tile article {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255,255,255,.5);
    height: 0;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: opacity .15s,-webkit-transform .15s;
    transition: opacity .15s,-webkit-transform .15s;
    transition: opacity .15s,transform .15s;
    transition: opacity .15s,transform .15s,-webkit-transform .15s;
    overflow: hidden;
    padding-left: 35px
}

@media(max-width: 900px) {
    .x-faq-tile {
        margin:20px 0
    }

    .x-faq-tile p br {
        display: none
    }
}

.x-featured-title {
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 167px;
    background-color: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: content-box;
    position: relative;
    z-index: 0;
    overflow: hidden
}

.x-featured-title,.x-featured-title * {
    cursor: pointer
}

.x-featured-title:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(0deg, #000 0%, #000 9px, transparent 50%)
}

.x-featured-title:hover .meta {
    color: #fff
}

.x-featured-title:hover .platforms img,.x-featured-title:hover .updated:before {
    opacity: 1
}

.x-featured-title .meta {
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 19px 17px 19px;
    z-index: 1;
    -webkit-transition: color .15s;
    transition: color .15s
}

.x-featured-title .platforms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 58px;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    margin: -15px 0 3px -15px
}

.x-featured-title .platforms img {
    width: 14px;
    height: 14px;
    opacity: .5;
    -webkit-transition: opacity .15s;
    transition: opacity .15s;
    margin: 15px 0 0 15px
}

.x-featured-title .cheats,.x-featured-title .updated {
    margin-left: 19px
}

.x-featured-title .updated {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.x-featured-title .updated:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("/static/images/icons/clock-01786b45cb.svg") center no-repeat;
    opacity: .5;
    margin-right: 9px;
    -webkit-transition: opacity .15s;
    transition: opacity .15s
}

.x-featured-titles h3 {
    margin: 0 0 27px 10px !important
}

.x-featured-titles .titles {
    padding: 10px;
    border-radius: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(#0B0C13), to(transparent));
    background: linear-gradient(180deg, #0B0C13 0%, transparent 100%)
}

.x-featured-titles .titles .x-featured-title+.x-featured-title {
    margin-top: 10px
}

@media(min-width: 900px) {
    .x-featured-titles.condensed-titles .x-featured-title {
        height:131px
    }
}

.x-free-games-list h3 {
    margin-bottom: 27px
}

.x-free-games {
    margin: -25px -25px 0 0
}

.x-free-games .x-featured-title {
    margin: 25px 25px 0 0
}

.title-view .view-header .meta .game-info {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px
}

.title-view .view-header .meta .header-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px
}

.title-view .view-header .meta .thumbnail-container {
    display: block
}

.title-view .view-header .meta .thumbnail {
    margin-left: 0px;
    width: 106px;
    height: 160px;
    border-radius: 12px;
    background-size: cover;
    min-width: 106px;
    -webkit-box-shadow: 0px 0px 0px .5px rgba(255,255,255,.25) inset;
    box-shadow: 0px 0px 0px .5px rgba(255,255,255,.25) inset;
    background-position: center top
}

.title-view .view-header .meta .all-games-link {
    color: #8599FF;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    line-height: 24px
}

.title-view .view-header .meta .view-title {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -2px;
    font-weight: 800;
    margin-bottom: 0
}

.title-view .view-header .meta .platforms {
    color: rgba(255,255,255,.6);
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    margin-bottom: 20px
}

@media(max-width: 500px) {
    .title-view .view-header .meta .header-text {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center
    }
}

@media(max-width: 900px) {
    .title-view .view-header .meta .game-info {
        gap:0px
    }
}

@media(min-width: 1440px) {
    .title-view .view-header .meta .header-text {
        padding:9px
    }

    .title-view .view-header .meta .thumbnail {
        height: 100%;
        border-radius: 12px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 146px;
        height: 220px
    }

    .title-view .view-header .meta .view-title {
        font-size: 48px;
        line-height: 64px;
        letter-spacing: -2px;
        font-weight: 800;
        margin-bottom: 0
    }
}

@media(min-width: 1920px) {
    .title-view .view-header .meta .header-text {
        padding:6px
    }

    .title-view .view-header .meta .view-title {
        font-size: 64px;
        line-height: 70px;
        letter-spacing: -3px
    }
}

.get-started-nonwindows .get-started-nonwindows-main {
    margin-bottom: 10px
}

.get-started-nonwindows .get-started-nonwindows-button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    background: #8599FF;
    color: #0B0C13
}

.get-started-nonwindows .get-started-nonwindows-button,.get-started-nonwindows .get-started-nonwindows-button * {
    cursor: pointer
}

.get-started-nonwindows .get-started-nonwindows-button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.get-started-nonwindows .get-started-nonwindows-button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.get-started-nonwindows .get-started-nonwindows-button>*+* {
    margin-left: 9px
}

.get-started-nonwindows .get-started-nonwindows-button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.get-started-nonwindows .get-started-nonwindows-button svg * {
    fill: #0B0C13
}

.get-started-nonwindows .get-started-nonwindows-button:not(:disabled) {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
    -webkit-box-shadow: 0 0 15px rgba(172,255,53,.1);
    box-shadow: 0 0 15px rgba(172,255,53,.1)
}

@media(max-width: 700px) {
    .get-started-nonwindows .get-started-nonwindows-button {
        display:block;
        line-height: 40px
    }
}

.get-started-nonwindows .get-started-nonwindows-footer {
    font-size: 14px;
    line-height: 22px;
    padding: 6px 0px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: inline-block;
    color: rgba(255,255,255,.5)
}

@media(max-width: 700px) {
    .get-started-nonwindows .get-started-nonwindows-footer {
        text-align:center;
        display: block
    }
}

.get-started-nonwindows .get-started-nonwindows-footer strong {
    font-style: normal;
    color: #fff
}

.x-horizontal-scroller {
    --horizontal-scroller-fade-width: 10px;
    border-radius: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(#0B0C13), to(transparent));
    background: linear-gradient(180deg, #0B0C13 0%, transparent 100%);
    padding: 10px;
    position: relative;
    z-index: 0
}

.x-horizontal-scroller>.content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: overlay;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch
}

.x-horizontal-scroller>.content::-webkit-scrollbar {
    background: rgba(0,0,0,0);
    height: 0px
}

.x-horizontal-scroller>.content>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    scroll-snap-align: start;
    max-width: 100%
}

.x-horizontal-scroller>button {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(17.5px);
    backdrop-filter: blur(17.5px);
    background: rgba(0,0,0,.3) url('data:image/svg+xml,<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.5 15L8.5 8L1.5 1" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>') center no-repeat;
    border: 0;
    outline: none;
    z-index: 1;
    -webkit-transition: opacity .5s,visibility 0s .5s;
    transition: opacity .5s,visibility 0s .5s;
    opacity: 0;
    visibility: hidden
}

.x-horizontal-scroller>button.previous-arrow {
    left: 20px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.x-horizontal-scroller>button.next-arrow {
    right: 20px
}

.x-horizontal-scroller>button.show {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.x-horizontal-scroller>button.next-arrow.show~.content {
    -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(0, transparent), color-stop(#fff), to(#fff));
    -webkit-mask-image: linear-gradient(270deg, transparent 0, #fff var(--horizontal-scroller-fade-width), #fff 100%);
    mask-image: -webkit-gradient(linear, right top, left top, color-stop(0, transparent), color-stop(#fff), to(#fff));
    mask-image: linear-gradient(270deg, transparent 0, #fff var(--horizontal-scroller-fade-width), #fff 100%)
}

.x-horizontal-scroller>button.previous-arrow.show~.content {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(#fff), to(#fff));
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #fff var(--horizontal-scroller-fade-width), #fff 100%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(#fff), to(#fff));
    mask-image: linear-gradient(90deg, transparent 0, #fff var(--horizontal-scroller-fade-width), #fff 100%)
}

.x-horizontal-scroller>button.next-arrow.show~button.previous-arrow.show~.content {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(#fff), color-stop(#fff), to(transparent));
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #fff var(--horizontal-scroller-fade-width), #fff calc(100% - var(--horizontal-scroller-fade-width)), transparent 100%);
    mask-image: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(#fff), color-stop(#fff), to(transparent));
    mask-image: linear-gradient(90deg, transparent 0, #fff var(--horizontal-scroller-fade-width), #fff calc(100% - var(--horizontal-scroller-fade-width)), transparent 100%)
}

.x-loading-indicator {
    opacity: .4;
    display: block;
    width: 30px;
    height: 30px
}

.x-loading-indicator svg {
    -webkit-animation: loading-indicator-rotate 2s linear infinite;
    animation: loading-indicator-rotate 2s linear infinite;
    width: 30px;
    height: 30px
}

.x-loading-indicator circle {
    stroke: #fff;
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    -webkit-animation: loading-indicator-stroke 1.5s ease-in-out infinite;
    animation: loading-indicator-stroke 1.5s ease-in-out infinite
}

.x-loading-indicator.small {
    width: 15px;
    height: 15px;
    overflow: hidden
}

.x-loading-indicator.small svg {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-name: loading-indicator-rotate__small;
    animation-name: loading-indicator-rotate__small
}

@-webkit-keyframes loading-indicator-rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loading-indicator-rotate {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes loading-indicator-rotate__small {
    to {
        -webkit-transform: rotate(360deg) scale(0.5);
        transform: rotate(360deg) scale(0.5)
    }
}

@keyframes loading-indicator-rotate__small {
    to {
        -webkit-transform: rotate(360deg) scale(0.5);
        transform: rotate(360deg) scale(0.5)
    }
}

@-webkit-keyframes loading-indicator-stroke {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124
    }
}

@keyframes loading-indicator-stroke {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124
    }
}

.x-map-tile {
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 20px;
    border: 10px solid #18293a;
    overflow: hidden;
    aspect-ratio: 262/119
}

.x-map-tile .badges {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.x-map-tile .badges span {
    line-height: 13px;
    padding: 2px 4px 0 4px;
    font-weight: 900;
    font-size: 12px;
    border-radius: 2px;
    text-transform: uppercase;
    vertical-align: middle;
    color: #000;
    background: #00c7f2
}

.x-map-tile .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: absolute;
    left: 14px;
    bottom: 9px;
    right: 14px;
    z-index: 1;
    font-size: 14px;
    line-height: 22px;
    color: #fff
}

.x-map-tile .name:after {
    content: " ›"
}

.x-map-tile .map-thumbnail {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.x-map-tile:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000000));
    background: linear-gradient(180deg, transparent 0%, #000000 100%);
    z-index: 1;
    pointer-events: none
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 90px;
    z-index: 1000;
    visibility: hidden;
    overflow: hidden auto;
    -webkit-transition: visibility 0s .2s;
    transition: visibility 0s .2s
}

.modal::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,.1);
    border-radius: 10px
}

.modal::-webkit-scrollbar-thumb:window-inactive,.modal::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,.2);
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,.2);
    background-clip: padding-box
}

.modal::-webkit-scrollbar-thumb:window-inactive:hover,.modal::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255,255,255,.5)
}

@media(max-width: 640px) {
    .modal {
        padding:22px
    }
}

.modal.open {
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-animation: dialog-fade .2s;
    animation: dialog-fade .2s
}

.modal.open .modal-content {
    -webkit-animation: dialog-pop .2s ease-in-out;
    animation: dialog-pop .2s ease-in-out
}

.modal .modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(17,23,29,.75)
}

.modal .modal-wrapper {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-width: 100%;
    margin: auto
}

.modal .modal-content {
    position: relative;
    width: 550px;
    max-width: calc(100% - 25px);
    margin: 0 12.5px;
    -webkit-box-shadow: 0 0 5px rgba(17,23,29,.5);
    box-shadow: 0 0 5px rgba(17,23,29,.5);
    background: -webkit-gradient(linear, left top, left bottom, from(#0B0C13), to(#000));
    background: linear-gradient(180deg, #0B0C13 0%, #000 100%);
    padding: 43px 48px;
    border-radius: 10px
}

@media(max-width: 640px) {
    .modal .modal-content {
        padding:22px
    }
}

.modal .modal-close-button {
    background: #353a3f;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 26px;
    height: 26px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-radius: 50%;
    border: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background-color .15s;
    transition: background-color .15s;
    position: absolute;
    right: -12.5px;
    top: -12.5px;
    z-index: 1
}

.modal .modal-close-button svg * {
    fill: #fff
}

@media(hover: hover) {
    .modal .modal-close-button:hover {
        background-color:#4d5156
    }
}

@-webkit-keyframes dialog-fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes dialog-fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes dialog-pop {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }

    25% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes dialog-pop {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8)
    }

    25% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.wm-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.wm-button--color-primary {
    --wm-button-color-bg: #fff;
    --wm-button-color-fg: #000;
    --wm-button-color-fg-secondary: #333;
    --wm-button-overlay-bg-color: rgba(0, 0, 0);
    --wm-button-overlay-hover-opacity: 0.1;
    --wm-button-overlay-active-opacity: 0.2
}

.wm-button--color-inverse {
    --wm-button-color-bg: #191919;
    --wm-button-color-fg: #fff;
    --wm-button-color-fg-secondary: rgba(255, 255, 255, 0.9);
    --wm-button-overlay-bg-color: rgba(255, 255, 255);
    --wm-button-overlay-hover-opacity: 0.15;
    --wm-button-overlay-active-opacity: 0
}

.wm-button--color-green {
    --wm-button-color-bg: #8599FF;
    --wm-button-color-fg: #4c5710;
    --wm-button-color-fg-secondary: #4c5710;
    --wm-button-overlay-bg-color: rgba(0, 0, 0);
    --wm-button-overlay-hover-opacity: 0.15;
    --wm-button-overlay-active-opacity: 0
}

.wm-button--size-s {
    --wm-button-icon-size: 16px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    padding: 8px 12px;
    gap: 4px
}

.wm-button--size-s:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 8px 16px 8px 12px
}

.wm-button--size-s:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 8px 12px 8px 16px
}

.wm-button--size-m {
    --wm-button-icon-size: 16px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.25px;
    padding: 10px 16px;
    gap: 4px
}

.wm-button--size-m:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 20px 10px 16px
}

.wm-button--size-m:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 16px 10px 20px
}

.wm-button--size-l {
    --wm-button-icon-size: 20px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.5px;
    padding: 10px 16px;
    gap: 8px
}

.wm-button--size-l:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 20px 10px 16px
}

.wm-button--size-l:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 16px 10px 20px
}

.wm-button--size-xl {
    --wm-button-icon-size: 20px;
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.5px;
    padding: 10px 20px;
    gap: 8px
}

.wm-button--size-xl:has(.wm-button-icon-leading):not(:has(.wm-button-icon-trailing)) {
    padding: 10px 24px 10px 20px
}

.wm-button--size-xl:has(.wm-button-icon-trailing):not(:has(.wm-button-icon-leading)) {
    padding: 10px 20px 10px 24px
}

.wm-button--variant-filled {
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    background-color: var(--wm-button-color-bg);
    color: var(--wm-button-color-fg)
}

.wm-button--variant-filled::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    opacity: var(--wm-button-overlay-opacity, 0);
    left: 0;
    top: 0;
    pointer-events: none;
    background-color: var(--wm-button-overlay-bg-color);
    -webkit-transition: opacity 150ms ease-out;
    transition: opacity 150ms ease-out
}

.wm-button--variant-filled:not(:disabled):hover::after,.wm-button--variant-filled:not(:disabled):focus::after {
    opacity: var(--wm-button-overlay-hover-opacity)
}

.wm-button--variant-filled:not(:disabled):active::after {
    opacity: var(--wm-button-overlay-active-opacity)
}

.wm-button--variant-filled-icon-leading,.wm-button--variant-filled-icon-trailing {
    color: var(--wm-button-color-fg-secondary)
}

.wm-button-icon-leading,.wm-button-icon-trailing {
    font-size: var(--wm-button-icon-size)
}

.x-non-windows-email-capture-dialog .hidden {
    display: none
}

.x-non-windows-email-capture-dialog h1,.x-non-windows-email-capture-dialog h2,.x-non-windows-email-capture-dialog p {
    margin: 0
}

.x-non-windows-email-capture-dialog header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.x-non-windows-email-capture-dialog header .overlay-illustration-image {
    width: 250px
}

.x-non-windows-email-capture-dialog header h1 {
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #fff;
    padding: 12px
}

.x-non-windows-email-capture-dialog header h1 em {
    font-style: italic
}

.x-non-windows-email-capture-dialog header h1 img {
    width: 12px;
    height: 12px;
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) brightness(100%) contrast(100%);
    filter: invert(100%) sepia(100%) saturate(0%) brightness(100%) contrast(100%);
    margin: 0px 4px
}

.x-non-windows-email-capture-dialog .success-message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4px
}

.x-non-windows-email-capture-dialog .success-message:not(.hidden) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.x-non-windows-email-capture-dialog .success-message h1 {
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -1px;
    color: #fff
}

.x-non-windows-email-capture-dialog .success-message p {
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #fff
}

.x-non-windows-email-capture-dialog .success-message button {
    margin-top: 22px
}

.x-non-windows-email-capture-dialog .text-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 12px 0
}

.x-non-windows-email-capture-dialog main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.x-non-windows-email-capture-dialog main button {
    margin: 8px 0 6px
}

.x-non-windows-email-capture-dialog main button:disabled {
    background: rgba(255,255,255,.4)
}

.x-non-windows-email-capture-dialog main .input-wrapper input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    padding: 8px 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border-radius: 28px;
    background: rgba(255,255,255,.1);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    color: #fff
}

.x-non-windows-email-capture-dialog main .input-wrapper input,.x-non-windows-email-capture-dialog main .input-wrapper input::-webkit-input-placeholder {
    font-weight: 500;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 24px
}

.x-non-windows-email-capture-dialog main .input-wrapper input,.x-non-windows-email-capture-dialog main .input-wrapper input::-moz-placeholder {
    font-weight: 500;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 24px
}

.x-non-windows-email-capture-dialog main .input-wrapper input,.x-non-windows-email-capture-dialog main .input-wrapper input::-ms-input-placeholder {
    font-weight: 500;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 24px
}

.x-non-windows-email-capture-dialog main .input-wrapper input,.x-non-windows-email-capture-dialog main .input-wrapper input::placeholder {
    font-weight: 500;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 24px
}

.x-non-windows-email-capture-dialog main .input-wrapper input::-webkit-input-placeholder {
    color: rgba(255,255,255,.6)
}

.x-non-windows-email-capture-dialog main .input-wrapper input::-moz-placeholder {
    color: rgba(255,255,255,.6)
}

.x-non-windows-email-capture-dialog main .input-wrapper input::-ms-input-placeholder {
    color: rgba(255,255,255,.6)
}

.x-non-windows-email-capture-dialog main .input-wrapper input::placeholder {
    color: rgba(255,255,255,.6)
}

.x-non-windows-email-capture-dialog h2 {
    font-weight: 700;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0
}

.x-non-windows-email-capture-dialog p {
    font-weight: 500;
    -webkit-font-feature-settings: "liga" off,"clig" off;
    font-feature-settings: "liga" off,"clig" off;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255,255,255,.8);
    margin: 0
}

.x-non-windows-email-capture-dialog footer p {
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    color: rgba(255,255,255,.6);
    text-align: center
}

.x-non-windows-email-capture-dialog-wrapper .modal .modal-close-button {
    background: rgba(255,255,255,.15);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px
}

.x-non-windows-email-capture-dialog-wrapper .modal .modal-close-button:hover,.x-non-windows-email-capture-dialog-wrapper .modal .modal-close-button:focus {
    background: rgba(255,255,255,.2)
}

.x-non-windows-email-capture-dialog-wrapper .modal .modal-content {
    width: 356px;
    overflow: hidden;
    border-radius: 20px;
    padding: 24px;
    border: .5px solid rgba(255,255,255,.15);
    background: #0d0f12;
    -webkit-box-shadow: 0px 40px 60px 0px rgba(0,0,0,.7),0px 10px 20px 0px rgba(0,0,0,.05);
    box-shadow: 0px 40px 60px 0px rgba(0,0,0,.7),0px 10px 20px 0px rgba(0,0,0,.05);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px)
}

.x-non-windows-email-capture-dialog-wrapper .modal .modal-content .dialog-bg {
    content: "";
    width: 711px;
    height: 397px;
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: .5;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 15, 18, 0)), to(#0d0f12)),url("/static/images/views/components/non-windows-email-capture-dialog/landscape-bg-1c6b468e39.webp");
    background: linear-gradient(180deg, rgba(13, 15, 18, 0) 0%, #0d0f12 100%),url("/static/images/views/components/non-windows-email-capture-dialog/landscape-bg-1c6b468e39.webp")
}

.x-non-windows-email-capture-dialog-wrapper .modal .modal-content .dialog-bg-container {
    position: absolute;
    left: -64px;
    top: -16px;
    z-index: -1
}

.x-non-windows-email-capture-dialog-wrapper .modal .modal-content .dialog-bg::before {
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(115, 127, 55, 0)));
    background: linear-gradient(180deg, #fff 0%, rgba(115, 127, 55, 0) 100%);
    width: 484px;
    height: 211px
}

.tile {
    background: #000;
    border-radius: 20px;
    padding: 43px 50px;
    overflow: hidden
}

.tile.purple {
    background: linear-gradient(to top, #6844ff 0%, #000 380px)
}

.tile.fade {
    background: -webkit-gradient(linear, left top, left bottom, from(#0B0C13), to(#11171d));
    background: linear-gradient(180deg, #0B0C13 0%, #11171d 100%)
}

.tile.fade-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.55)), to(rgba(17, 23, 29, 0.55)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.55) 0%, rgba(17, 23, 29, 0.55) 100%)
}

.tile.fade-blue h2 em,.tile.fade-blue h3 em,.tile.fade-blue .tile-title em {
    color: #13cfff
}

.tile.fade-blue h2 a,.tile.fade-blue h3 a,.tile.fade-blue .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-blue h2 a:before,.tile.fade-blue h3 a:before,.tile.fade-blue .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-blue h2 a:hover:not(:disabled):before,.tile.fade-blue h3 a:hover:not(:disabled):before,.tile.fade-blue .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(19,207,255,.5)
}

.tile.fade-green {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.5)), to(rgba(17, 23, 29, 0.5)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.5) 0%, rgba(17, 23, 29, 0.5) 100%)
}

.tile.fade-green h2 em,.tile.fade-green h3 em,.tile.fade-green .tile-title em {
    color: #0bf2f6
}

.tile.fade-green h2 a,.tile.fade-green h3 a,.tile.fade-green .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-green h2 a:before,.tile.fade-green h3 a:before,.tile.fade-green .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(11,242,246,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-green h2 a:hover:not(:disabled):before,.tile.fade-green h3 a:hover:not(:disabled):before,.tile.fade-green .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(11,242,246,.5)
}

.tile.no-background {
    padding: 0;
    background: rgba(0,0,0,0);
    border-radius: 0
}

.tile.no-bottom-padding {
    padding-bottom: 0
}

.tile h2,.tile h3,.tile .tile-title {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px
}

.tile h2 em,.tile h3 em,.tile .tile-title em {
    font-style: normal
}

.tile h2.subdued,.tile h3.subdued,.tile .tile-title.subdued {
    color: rgba(255,255,255,.4)
}

.tile h2.with-icon,.tile h3.with-icon,.tile .tile-title.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.tile h2.with-icon img,.tile h3.with-icon img,.tile .tile-title.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .tile h2,.tile h3,.tile .tile-title {
        font-size:24px;
        line-height: 34px
    }
}

.tile p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.5)
}

.tile p a:not(.no-link-hover) {
    position: relative;
    z-index: 0;
    color: #fff;
    white-space: nowrap
}

.tile p a:not(.no-link-hover):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile p a:not(.no-link-hover):hover:not(:disabled):before {
    height: calc(100% - 1px);
    background: rgba(19,207,255,.5)
}

.tile p em {
    font-style: normal;
    color: #fff
}

@media(max-width: 900px) {
    .tile {
        padding:27px 38px
    }

    .tile p {
        font-size: 16px;
        line-height: 24px
    }
}

.x-other-supported-games>h3 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px
}

.x-other-supported-games>h3 em {
    font-style: normal
}

.x-other-supported-games>h3.subdued {
    color: rgba(255,255,255,.4)
}

.x-other-supported-games>h3.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.x-other-supported-games>h3.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .x-other-supported-games>h3 {
        font-size:24px;
        line-height: 34px
    }
}

.x-other-supported-games>h3>span {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.x-other-supported-games>h3 a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.x-other-supported-games .all-games-desktop,.x-other-supported-games .all-games-mobile {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff
}

.x-other-supported-games .all-games-desktop,.x-other-supported-games .all-games-desktop *,.x-other-supported-games .all-games-mobile,.x-other-supported-games .all-games-mobile * {
    cursor: pointer
}

.x-other-supported-games .all-games-desktop svg *,.x-other-supported-games .all-games-mobile svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.x-other-supported-games .all-games-desktop:disabled,.x-other-supported-games .all-games-mobile:disabled {
    opacity: .4;
    cursor: not-allowed
}

.x-other-supported-games .all-games-desktop>*+*,.x-other-supported-games .all-games-mobile>*+* {
    margin-left: 9px
}

.x-other-supported-games .all-games-desktop i,.x-other-supported-games .all-games-mobile i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.x-other-supported-games .all-games-desktop:hover:not(:disabled),.x-other-supported-games .all-games-mobile:hover:not(:disabled) {
    background-color: #13cfff
}

.x-other-supported-games .all-games-mobile {
    display: none;
    margin-top: 16px
}

@media(max-width: 800px) {
    .x-other-supported-games .all-games-desktop {
        display:none
    }

    .x-other-supported-games .all-games-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.x-other-supported-games>.tile {
    padding: 10px
}

.x-other-supported-games .x-title-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px 0 0 -10px
}

.x-other-supported-games .x-title-list .game-result {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33% - 10px);
    flex: 0 0 calc(33.33% - 10px);
    margin: 10px 0 0 10px
}

@media(max-width: 1200px) {
    .x-other-supported-games .x-title-list .game-result {
        -ms-flex-preferred-size:calc(50% - 10px);
        flex-basis: calc(50% - 10px)
    }
}

@media(max-width: 640px) {
    .x-other-supported-games .x-title-list {
        margin-left:0
    }

    .x-other-supported-games .x-title-list .game-result {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-left: 0
    }
}

.x-overlay-feature {
    position: relative;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.x-overlay-feature:before {
    content: "";
    position: absolute;
    left: 0%;
    right: 0%;
    top: 50%;
    bottom: 0%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0)), color-stop(50%, rgba(137, 231, 255, 0.5)), to(#fff));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0), rgba(137, 231, 255, 0.5) 50%, #fff 100%);
    opacity: .3
}

.x-overlay-feature .left,.x-overlay-feature .right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    position: relative;
    z-index: 1
}

.x-overlay-feature .left {
    margin-bottom: -43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.x-overlay-feature .right {
    margin-left: 40px;
    padding-left: 48px
}

.x-overlay-feature .screen {
    display: block;
    background: url("../static/images/views/homepage/hero-bg.webp") center/contain no-repeat;
    padding-top: 56%;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.x-overlay-feature .screen .overlay {
    position: absolute;
    bottom: 0;
    left: 5.23%;
    height: 94%;
    width: 36.82%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

@media(max-width: 900px) {
    .x-overlay-feature {
        -webkit-box-orient:vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .x-overlay-feature:before {
        top: 0;
        background: linear-gradient(247.39deg, #fff 0%, rgba(19, 207, 255, 0.5) 35%, rgba(19, 207, 255, 0) 70%)
    }

    .x-overlay-feature .left {
        margin: 0 0 -10px 0
    }

    .x-overlay-feature .right {
        margin: 0 0 22px 0;
        padding: 0
    }
}

@media(max-width: 600px) {
    .x-overlay-feature .left {
        margin-right:-38px;
        overflow: hidden;
        display: block;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial
    }

    .x-overlay-feature .screen {
        width: 487px;
        height: 281px;
        background: url("images/views/features/overlay-screen-mobile-e82909f1c6.webp") center/contain no-repeat;
        padding-top: 57.25%
    }

    .x-overlay-feature .screen .overlay {
        bottom: 6%;
        height: 88%;
        width: 38.75%;
        background-position: center top;
        background-size: 100% auto
    }
}

.x-save-cheats-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 9px 18px 9px 10px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 100px;
    background: rgba(0,0,0,.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px)
}

.x-save-cheats-toggle:before {
    content: "";
    display: inline-block;
    width: 31px;
    height: 20px;
    background: url("images/views/features/save-cheats-toggle-74c79e70c7.svg") center/contain no-repeat;
    margin-right: 10px
}

.x-save-cheats-toggle .label {
    font-size: 13px;
    line-height: 20px;
    color: #fff
}

.x-title-list.name-only .name {
    padding-right: 25px
}

@media(min-width: 901px) {
    .x-title-list .game-result .cheats {
        display:none
    }
}

@media(max-width: 900px) {
    .x-title-list .game-result .name {
        margin-bottom:0
    }
}

.x-title-map-tile {
    display: inline-block;
    position: relative;
    z-index: 0;
    width: 357px;
    height: 172px;
    border-radius: 20px;
    border: 10px solid #18293a;
    overflow: hidden
}

.x-title-map-tile .badges {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px
}

.x-title-map-tile .badges span {
    line-height: 13px;
    padding: 2px 4px 0 4px;
    font-weight: 900;
    font-size: 12px;
    border-radius: 2px;
    text-transform: uppercase;
    vertical-align: middle;
    color: #000;
    background: #00c7f2
}

.x-title-map-tile .badges span.accent {
    background: #8599FF
}

.x-title-map-tile .name {
    font-weight: 700;
    position: absolute;
    left: 20px;
    bottom: 24px;
    right: 125px;
    z-index: 1;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis
}

.x-title-map-tile .title-thumbnail {
    width: 85px;
    height: 40px;
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    border-radius: 5px;
    overflow: hidden
}

.x-title-map-tile .map-thumbnail {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.x-title-map-tile:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000000));
    background: linear-gradient(180deg, transparent 0%, #000000 100%);
    z-index: 1;
    pointer-events: none
}

.x-title-page-download-button {
    color: rgba(255,255,255,.6);
    margin-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    background-color: #4C5385;
    border-radius: 82px;
    min-height: 96px;
    padding: 16px 24px 16px 16px;
    -ms-flex-negative: 2;
    flex-shrink: 2;
    font-size: 14px;
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.x-title-page-download-button .download-button {
    max-height: 64px;
    max-width: 300px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-items: center;
    color: #4C5385;
    background-color: #8599FF;
    gap: 4px;
    border-radius: 32px;
    padding: 16px 32px 16px 24px;
    letter-spacing: -1.5px;
    font-size: 24px;
    font-weight: 900;
    line-height: 24px;
    -webkit-transition: opacity 150ms ease;
    transition: opacity 150ms ease;
    text-align: center
}

.x-title-page-download-button .download-button:hover {
    opacity: .8
}

.x-title-page-download-button .download-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 20px
}

.x-title-page-download-button .download-details a {
    position: relative;
    z-index: 2
}

.x-title-page-download-button .download-details a:visited {
    color: #8599FF
}

.x-title-page-download-button .download-details .windows-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.x-title-page-download-button .download-details .windows-icon::before {
    margin-left: 8px;
    margin-right: 4px;
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    background-image: url("/static/images/icons/windows-icon.svg");
    background-repeat: no-repeat
}

.x-title-page-download-button .no-download {
    display: none
}

@media(min-width: 1440px) {
    .x-title-page-download-button {
        width:-webkit-max-content;
        width: -moz-max-content;
        width: max-content
    }

    .x-title-page-download-button .download-button {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        max-width: unset;
        letter-spacing: -2px;
        font-size: 32px;
        line-height: 32px;
        white-space: nowrap
    }

    .x-title-page-download-button .download-details {
        max-width: 370px;
        width: 100%
    }
}

@media(max-width: 900px) {
    .x-title-page-download-button {
        -webkit-box-align:stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .x-title-page-download-button .download-button {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media(max-width: 600px) {
    .x-title-page-download-button {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: none;
        padding: 16px
    }

    .x-title-page-download-button .download-button {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-width: unset;
        max-width: unset;
        width: auto;
        font-size: 20px;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto
    }

    .x-title-page-download-button .download-details {
        text-align: center
    }

    .x-title-page-download-button .download-details .windows-text {
        width: 100%;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

body:not(.os-windows) .x-title-page-download-button .download-button.no-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

body:not(.os-windows) .x-title-page-download-button .download-details .windows-text.no-download {
    display: inline
}

body:not(.os-windows) .x-title-page-download-button .download-button:not(.no-download),body:not(.os-windows) .x-title-page-download-button .download-details .windows-text:not(.no-download) {
    display: none
}

.metrics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.metrics .metric-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.metrics .metric-item a {
    -webkit-transition: opacity 150ms ease;
    transition: opacity 150ms ease;
    color: #fff
}

.metrics .metric-item a:visited {
    color: #fff
}

.metrics .metric-item a:hover {
    opacity: .8
}

.metrics .metric-header {
    font-size: 24px;
    letter-spacing: -1px;
    font-weight: 700;
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-height: 29px
}

.metrics .metric-header a {
    letter-spacing: inherit;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    display: inherit
}

.metrics .metric-description {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 24px
}

.metrics .divider {
    height: 19px;
    width: 1px;
    border-left: .5px solid rgba(255,255,255,.15)
}

.metrics .avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover
}

@media(max-width: 500px) {
    .metrics {
        display:grid;
        grid-template-columns: 1fr 1fr;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        gap: 14px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .metrics .metric-header {
        font-size: 20px
    }

    .metrics .divider {
        display: none
    }

    .metrics .metric-description {
        font-size: 12px;
        font-weight: 500;
        color: rgba(255,255,255,.9);
        line-height: 24px
    }

    .metrics .avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        -o-object-fit: cover;
        object-fit: cover
    }
}

@media(min-width: 1920px) {
    .metrics .header-text {
        padding:6px
    }

    .metrics .thumbnail {
        min-height: 220px;
        height: 100%;
        border-radius: 12px;
        -o-object-fit: cover;
        object-fit: cover;
        min-width: 146px
    }

    .metrics .view-title {
        font-size: 64px;
        line-height: 70px;
        letter-spacing: -3px
    }
}

.x-trustpilot-rating {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px
}

.x-trustpilot-rating img {
    margin-right: 10px
}

.x-trustpilot-rating a {
    font-size: 16px;
    line-height: 24px;
    color: #fff
}

.example-cheats {
    position: relative;
    z-index: 0;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(79.72%, #000), to(transparent));
    -webkit-mask-image: linear-gradient(180deg, #000 79.72%, transparent 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(79.72%, #000), to(transparent));
    mask-image: linear-gradient(180deg, #000 79.72%, transparent 100%);
    overflow: hidden;
    will-change: opacity
}

.example-cheats .cheats-wrapper {
    width: 100%;
    padding-top: 61%;
    position: relative
}

.example-cheats .save-cheats-icons {
    position: absolute;
    left: 0;
    top: 2.5%;
    width: 2.25%;
    height: auto
}

.example-cheats .background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: top left/100% no-repeat;
    display: none
}

.example-cheats .background-desktop {
    left: 3.9%;
    width: 96.1%
}

.example-cheats .background-mobile {
    left: 8%;
    width: 92%
}

.example-cheats .slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 28%;
    top: 0;
    margin-top: -2.1%;
    width: 43.5%;
    padding-top: 5%;
    height: 0
}

.example-cheats .slider .value {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 15%;
    font-weight: 900;
    color: #fff;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.example-cheats .slider .progress {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 3.15%;
    background: rgba(255,255,255,.1);
    border-radius: 99px;
    position: relative
}

.example-cheats .slider .progress .fill {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(225deg, #0bf2f6 0%, #13cfff 100%)
}

.example-cheats .slider .progress .handle {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -3.63%;
    margin-left: -3.63%;
    width: 7.26%;
    padding-top: 7.26%;
    border-radius: 99px;
    background: #fff
}

@media(min-width: 601px) {
    .example-cheats .background.background-desktop {
        display:block
    }
}

@media(max-width: 600px) {
    .example-cheats {
        padding-right:20px;
        margin-right: -20px
    }

    .example-cheats .background.background-mobile {
        display: block
    }

    .example-cheats .save-cheats-icons {
        top: 1%;
        width: 4.2%
    }

    .example-cheats .cheats-wrapper {
        padding-top: 112%
    }

    .example-cheats .slider {
        bottom: 64.6%;
        left: 52.7%;
        width: 44%;
        padding-top: 6%
    }

    .example-cheats .slider .value {
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5);
        width: 18%
    }

    .example-cheats .slider .progress {
        padding-top: 7%
    }

    .example-cheats .slider .progress .handle {
        width: 15%;
        padding-top: 15%;
        margin-top: -7.5%;
        margin-left: -7.5%
    }
}

.footer-flags {
    margin-top: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px
}

.footer-flags a {
    display: inline-block;
    border-radius: 3px;
    overflow: hidden
}

.footer-flags a img {
    width: 24px;
    float: left
}

.footer-flags a:hover {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1)
}

.app-footer .app-footer-wrapper {
    text-align: center;
    padding: 85px 30px 100px 30px
}

.app-footer .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -24px 0 0
}

.app-footer .links a {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    white-space: nowrap;
    color: rgba(255,255,255,.45);
    -webkit-transition: color .15s;
    transition: color .15s;
    margin: 24px 29px 0 29px
}

.app-footer .links a:hover,.app-footer .links a.current {
    color: #fff
}

.app-footer .links+.social {
    margin-top: 58px
}

@media(max-width: 700px) {
    .app-footer .links {
        max-width:-webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto
    }

    .app-footer .links a {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        margin: 24px 0 0 0 !important;
        padding: 0 10px
    }
}

@media(max-width: 375px) {
    .app-footer .links a {
        -ms-flex-preferred-size:100%;
        flex-basis: 100%
    }
}

.app-footer .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.app-footer .social a {
    display: inline-block
}

.app-footer .social a+a {
    margin-left: 60px
}

.app-footer .social a:hover svg * {
    fill: #13cfff
}

.app-footer .social a svg * {
    fill: rgba(19,207,255,.5);
    -webkit-transition: fill .15s;
    transition: fill .15s
}

@media(max-width: 550px) {
    .app-footer .app-footer-wrapper {
        padding-bottom:60px
    }

    .app-footer .links a+a {
        margin-left: 34px
    }
}

@media(max-width: 480px) {
    .app-footer .app-footer-wrapper {
        padding-left:22px;
        padding-right: 22px
    }
}

@media(max-width: 380px) {
    .app-footer .links a+a {
        margin-left:20px
    }
}

.app-header {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0
}

.app-header .app-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100px
}

@media(max-width: 480px) {
    .app-header .app-header-inner {
        padding:0 22px
    }
}

.app-header .logo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.app-header .logo img {
    width: 57px;
    height: 35px
}

.app-header .logo span {
    color: #fff;
    font-weight: 600;
    font-size: 26.6438px;
    line-height: 32px;
    margin-left: 9px
}

.app-header .mobile-menu-button-wrapper {
    display: none
}

.app-header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.app-header .menu ul {
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 29px;
    border-radius: 99px;
    -webkit-transition: background-color .15s;
    transition: background-color .15s
}

.app-header .menu li+li {
    margin-left: 58px
}

@media(max-width: 1280px) {
    .app-header .menu li+li {
        margin-left:24px
    }
}

.app-header .menu li.current a {
    color: #fff
}

.app-header .menu li a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .15s;
    transition: color .15s
}

.app-header .menu li a:hover {
    color: #fff
}

.app-header .menu li a img {
    width: 20px;
    height: 20px;
    margin-right: 9px;
    border-radius: 50%;
    overflow: hidden
}

.app-header .download {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #8599FF;
    background: rgba(0,0,0,0);
    color: #fff
}

.app-header .download,.app-header .download * {
    cursor: pointer
}

.app-header .download svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.app-header .download:disabled {
    opacity: .4;
    cursor: not-allowed
}

.app-header .download>*+* {
    margin-left: 9px
}

.app-header .download i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.app-header .download:hover:not(:disabled) {
    background-color: #8599FF
}

.app-header .download:hover:not(:disabled) {
    color: #0B0C13
}

.app-header .download:not(.outline) {
    background: #8599FF;
    color: #0B0C13
}

.app-header .download:not(.outline) svg * {
    fill: #0B0C13
}

.app-header .download:not(.outline):not(:disabled) {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
    -webkit-box-shadow: 0 0 15px rgba(172,255,53,.1);
    box-shadow: 0 0 15px rgba(172,255,53,.1)
}

@media(max-width: 1000px) {
    .app-header {
        padding:0
    }

    .app-header .app-header-inner {
        height: 70px
    }

    .app-header:before {
        content: "";
        display: block;
        z-index: -1;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 0;
        background: rgba(0,0,0,.9);
        -webkit-transition: opacity .15s;
        transition: opacity .15s;
        pointer-events: none
    }

    @supports((-webkit-backdrop-filter: blur(25px)) or (backdrop-filter: blur(25px))) {
        .app-header:before {
            background:rgba(0,0,0,.5);
            -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px)
        }
    }

    .app-header .mobile-menu-button-wrapper {
        display: block
    }

    .app-header .mobile-menu-button-wrapper .mobile-menu-button {
        height: 68px
    }

    .app-header .mobile-menu-button-wrapper .mobile-menu-button.close {
        display: none
    }

    .app-header .mobile-menu-button-wrapper.close .mobile-menu-button.open {
        display: none
    }

    .app-header .mobile-menu-button-wrapper.close .mobile-menu-button.close {
        display: block
    }

    .app-header .mobile-menu-button {
        width: 76px;
        height: 90px;
        background: rgba(0,0,0,0) url(/static/images/icons/menu-8be136dc7a.svg) center no-repeat;
        border: 0;
        outline: none;
        padding: 0;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1
    }

    .app-header .mobile-menu-button.close {
        background-image: url(/static/images/icons/menu-close-c51ac698b5.svg)
    }

    .app-header .logo {
        position: absolute;
        top: 22px;
        left: 30px
    }

    .app-header .logo img {
        width: 40px;
        height: 25px
    }

    .app-header .logo span {
        font-size: 19px;
        line-height: 23px;
        margin-left: 6.5px
    }
}

@media(max-width: 1000px)and (max-width: 480px) {
    .app-header .logo {
        left:22px
    }
}

@media(max-width: 1000px) {
    .app-header .menu {
        margin:120px 20px 20px 20px;
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity .15s,visibility 0s .15s;
        transition: opacity .15s,visibility 0s .15s;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        z-index: 0
    }

    .app-header .menu ul {
        display: block;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: rgba(0,0,0,0);
        -webkit-backdrop-filter: none;
        backdrop-filter: none
    }

    .app-header .menu ul li {
        display: block;
        margin: 0 0 25px 0
    }

    .app-header .menu ul li a {
        font-size: 35px;
        line-height: 40px;
        margin: 0;
        font-weight: 700;
        color: #fff
    }

    .app-header .menu ul li a img {
        display: none
    }
}

@media(max-width: 1000px) {
    .app-header .download {
        display:none
    }
}

.app-header .get-started-nonwindows {
    display: none;
    position: absolute;
    left: calc(50% - 77px)
}

@media(max-width: 1000px) {
    .app-header .get-started-nonwindows:not(.hidden) {
        display:block
    }
}

.app-header .get-started-nonwindows .get-started-nonwindows-main {
    margin-bottom: 0
}

.app-header .get-started-nonwindows .get-started-nonwindows-footer {
    display: none
}

@media(max-width: 1000px) {
    body.show-mobile-menu {
        overflow:hidden
    }

    body.show-mobile-menu .app-header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh
    }

    body.show-mobile-menu .app-header:before {
        opacity: 1;
        pointer-events: all
    }

    body.show-mobile-menu .app-header .menu {
        visibility: visible;
        opacity: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s
    }

    body.show-mobile-menu .app-header .mobile-menu-close-button {
        display: block
    }

    body.show-mobile-menu .app-header .mobile-menu-open-button {
        display: none
    }
}

body.scrolled:not(.show-mobile-menu) .app-header {
    background: rgba(17,23,29,.9)
}

@supports((-webkit-backdrop-filter: blur(35px)) or (backdrop-filter: blur(35px))) {
    body.scrolled:not(.show-mobile-menu) .app-header {
        background:rgba(17,23,29,.5);
        -webkit-backdrop-filter: blur(35px);
        backdrop-filter: blur(35px)
    }
}

@media(max-width: 900px) {
    body.scrolled:not(.show-mobile-menu) .app-header {
        padding-bottom:0
    }
}

body:not(.os-windows) .homepage .app-header .download {
    display: none
}

.min-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 30px 75px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.min-footer .footer-flags {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    row-gap: 24px
}

@media(max-width: 480px) {
    .min-footer .footer-flags {
        width:168px
    }
}

.min-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.min-header .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    width: 100%;
    max-width: 1210px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.min-header .logo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.min-header .logo img {
    width: 57px;
    height: 35px
}

.min-header .logo span {
    color: #fff;
    font-weight: 600;
    font-size: 26.6438px;
    line-height: 32px;
    margin-left: 9px
}

.min-header .spacer {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 10px
}

.min-header .user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 6px;
    border-radius: 200px;
    background: rgba(255,255,255,.04);
    min-width: 0
}

.min-header .user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,.1);
    margin-right: 11px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.min-header .user span {
    font-size: 16px;
    padding-right: 10px;
    color: rgba(255,255,255,.4);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0
}

@media(max-width: 400px) {
    .min-header {
        padding:0 22px
    }
}

.title-alternate-header {
    display: none
}

.title-alternate-header .title-alternate-header-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 30px;
    margin-bottom: -10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%
}

.title-alternate-header .title-alternate-header-layout.no-screenshot .meta {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin-right: 0
}

.title-alternate-header .title-alternate-header-layout.no-screenshot .meta p {
    max-width: 100%
}

@media(max-width: 1024px) {
    .title-alternate-header .title-alternate-header-layout .meta,.title-alternate-header .title-alternate-header-layout .screenshot {
        -webkit-box-flex:1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%
    }
}

@media(max-width: 640px) {
    .title-alternate-header .title-alternate-header-layout {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none
    }

    .title-alternate-header .title-alternate-header-layout .meta {
        margin-right: 0;
        width: 100%
    }

    .title-alternate-header .title-alternate-header-layout .meta .download-wrapper,.title-alternate-header .title-alternate-header-layout .meta .trustpilot-rating,.title-alternate-header .title-alternate-header-layout .meta .video-button {
        display: none
    }

    .title-alternate-header .title-alternate-header-layout .meta p {
        font-size: 20px;
        line-height: 34px;
        max-width: 100%;
        margin-bottom: 30px
    }

    .title-alternate-header .title-alternate-header-layout .mobile-actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .title-alternate-header .title-alternate-header-layout .mobile-actions .download {
        display: block
    }

    .title-alternate-header .title-alternate-header-layout .screenshot {
        width: 100%
    }

    .title-alternate-header .title-alternate-header-layout .screenshot a:before {
        width: 28px;
        height: 28px;
        bottom: -10px;
        margin-left: -14px;
        background-size: 12px
    }
}

.title-alternate-header .meta {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 520px;
    flex: 0 0 520px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 30px
}

.title-alternate-header .meta p {
    font-size: 24px;
    line-height: 34px;
    color: rgba(255,255,255,.6);
    display: block;
    max-width: 392px;
    margin: 0
}

.title-alternate-header .screenshot {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.title-alternate-header .screenshot img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(19,207,255,.1)
}

.title-alternate-header .screenshot a {
    position: relative;
    display: block;
    width: 100%
}

.title-alternate-header .screenshot a:before {
    content: "";
    display: block;
    width: 37px;
    height: 37px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: -14px;
    z-index: 1;
    margin-left: -19px;
    pointer-events: none;
    background: rgba(26,40,55,.67) url("/static/images/icons/plus-7b9786c5f2.svg") center no-repeat;
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s
}

.title-alternate-header .screenshot a:hover:before {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.title-alternate-header .x-download-button .button {
    background: #13cfff;
    color: #000
}

.title-alternate-header .x-download-button .button svg * {
    fill: #000
}

.title-alternate-header .x-download-button .button:hover:not(:disabled) {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
    -webkit-box-shadow: 0 0 15px rgba(19,207,255,.1);
    box-shadow: 0 0 15px rgba(19,207,255,.1)
}

.title-alternate-header .x-download-button .size {
    color: rgba(19,207,255,.6)
}

.title-alternate-header .trustpilot-rating {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px
}

.title-alternate-header .trustpilot-rating img {
    margin-right: 10px
}

.title-alternate-header .trustpilot-rating a {
    font-size: 16px;
    line-height: 24px;
    color: #00f3a2
}

.title-alternate-header .video-button {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    background: rgba(0,0,0,0);
    outline: none;
    border: 0;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
    color: #fff
}

.title-alternate-header .video-button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #13cfff;
    margin-right: 13px
}

.title-alternate-header .video-button i svg {
    margin-left: 1px
}

.title-alternate-header .video-button i svg * {
    fill: #13cfff
}

.title-alternate-header .video-button:hover {
    color: #13cfff
}

.title-alternate-header .mobile-actions {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding-top: 45px
}

.title-alternate-header .mobile-actions .download {
    display: none
}

.title-alternate-header .mobile-actions .download-message {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    margin-top: 10px;
    color: rgba(255,255,255,.7)
}

.title-alternate-header .mobile-actions .download-message a {
    color: #0bf2f6;
    text-decoration: none;
    -webkit-transition: color .15s;
    transition: color .15s
}

.title-alternate-header .mobile-actions .download-message a:hover {
    color: #fff
}

.title-alternate-header .scroll-to-cheats-button {
    font-size: 16px;
    line-height: 24px;
    position: fixed;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: calc(100vw - 40px);
    padding: 4px 12px;
    color: rgba(255,255,255,.8);
    border-radius: 100px;
    background: rgba(19,207,255,.15);
    z-index: 1;
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    white-space: nowrap
}

.title-alternate-header .scroll-to-cheats-button svg {
    margin-right: 10px
}

html.show-alternate-title-header .title-view .view-header {
    display: none
}

html.show-alternate-title-header .title-view .title-alternate-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

html.show-alternate-title-header .title-view.cheats-list-visible .scroll-to-cheats-button {
    display: none
}

html.show-alternate-title-header .title-view.cheats-list-above .scroll-to-cheats-button svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.trainer-cheats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.trainer-cheats .column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.trainer-cheats .column+.column {
    margin-left: 40px
}

.trainer-cheats .category header {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    margin-bottom: 12px
}

.trainer-cheats .category .cheats {
    list-style: none;
    margin: 0 0 -5px 0;
    padding: 0
}

.trainer-cheats .category .cheats .cheat {
    padding-bottom: 5px
}

.trainer-cheats .category .cheats .cheat div {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255,255,255,.8);
    padding: 4px 12px;
    border-radius: 5px;
    background: #0B0C13;
    display: inline-block
}

.trainer-cheats .category+.category {
    margin-top: 18px
}

.trainer-cheats.single-category .cheats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px
}

.trainer-cheats.single-category .cheat {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    padding-right: 5px
}

.collection-view .layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px
}

.collection-view .layout .left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.collection-view .description {
    font-size: 18px;
    line-height: 30px;
    color: #fff
}

.collection-view .x-featured-titles {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    margin-left: 40px
}

.collection-view .x-featured-titles h3 {
    margin-top: 43px !important
}

.collection-view .section-how-it-works {
    margin-top: 30px !important
}

.collection-view .x-download-button {
    margin-top: 20px
}

.collection-view .collection-titles h3 {
    margin-bottom: 27px
}

@media(max-width: 1023px) {
    .collection-view .x-featured-titles {
        display:none
    }
}

.creator-application-view .view-title {
    background: -webkit-linear-gradient(10deg, #0bf2f6, #13cfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0);
    margin-bottom: 27px
}

.creator-application-view .main-text {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    margin: 0 0 32px
}

.creator-application-view .main-text em {
    color: #8599FF
}

.creator-application-view .layout-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.creator-application-view .layout-row>.left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.creator-application-view .layout-row>.right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 390px;
    flex: 0 0 390px;
    margin-left: 40px
}

.creator-application-view .layout-row .layout-col>*+* {
    margin-top: 40px
}

.creator-application-view ul.form-message {
    margin-bottom: 15px
}

.creator-application-view .file-selector-wrapper {
    position: relative
}

.creator-application-view .file-selector-wrapper .clear-button {
    position: absolute;
    right: -11px;
    top: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #fff url(/static/images/icons/close-small-1b574d35bb.svg) center no-repeat;
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s;
    z-index: 1
}

.creator-application-view .file-selector {
    width: 100%;
    min-height: 190px;
    padding: 24px;
    border-radius: 5px;
    border: 1px solid #0B0C13;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    -webkit-transition: border-color .15s;
    transition: border-color .15s
}

.creator-application-view .file-selector input {
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    cursor: pointer
}

.creator-application-view .file-selector.error {
    border-color: #ff0056
}

.creator-application-view .file-selector.highlight {
    border-color: #13cfff
}

@media(hover: hover) {
    .creator-application-view .file-selector:hover {
        border-color:#13cfff
    }
}

.creator-application-view .file-selector .label {
    font-size: 18px;
    line-height: 30px;
    color: rgba(19,207,255,.5);
    pointer-events: none;
    max-width: 100%
}

.creator-application-view .file-selector .label em {
    color: #13cfff
}

.creator-application-view .file-selector .label ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.creator-application-view .file-selector .label ul li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block
}

.creator-application-view form button[type=submit] {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff;
    margin-top: 35px
}

.creator-application-view form button[type=submit],.creator-application-view form button[type=submit] * {
    cursor: pointer
}

.creator-application-view form button[type=submit] svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.creator-application-view form button[type=submit]:disabled {
    opacity: .4;
    cursor: not-allowed
}

.creator-application-view form button[type=submit]>*+* {
    margin-left: 9px
}

.creator-application-view form button[type=submit] i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.creator-application-view form button[type=submit]:hover:not(:disabled) {
    background-color: #13cfff
}

.creator-application-view .bullets h2 {
    margin-bottom: 24px
}

.creator-application-view .bullets ul {
    list-style: none;
    margin: 0 0 0 -8px;
    padding: 0
}

.creator-application-view .bullets ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.creator-application-view .bullets ul li img {
    margin-right: 15px;
    width: 66px
}

.creator-application-view .bullets ul li .text {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    max-width: 180px
}

.creator-application-view .bullets ul li .text em {
    font-weight: 600;
    color: rgba(255,255,255,.8)
}

.creator-application-view .bullets ul li+li {
    margin-top: 15px
}

.creator-application-view .our-creators h2 {
    margin: 0 0 27px
}

.creator-application-view .our-creators ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.creator-application-view .our-creators ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.creator-application-view .our-creators ul li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 14px
}

.creator-application-view .our-creators ul li .meta .username {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #fff
}

.creator-application-view .our-creators ul li .meta .cheats {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.2)
}

.creator-application-view .our-creators ul li .meta .cheats em {
    font-weight: 500;
    color: rgba(255,255,255,.4)
}

.creator-application-view .our-creators ul li+li {
    margin-top: 21px
}

@media(max-width: 1024px) {
    .creator-application-view .layout-row {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .creator-application-view .layout-row>.right {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-left: 0
    }

    .creator-application-view .bullets {
        margin-top: 40px
    }

    .creator-application-view .bullets ul li .text {
        max-width: initial
    }
}

.view-diamond {
    background: #fff
}

.view-diamond *,.view-diamond button,.view-diamond input {
    font-family: Gotham
}

.view-diamond section.upgrade {
    background: #fff
}

.view-diamond section.upgrade .section {
    background: #fff
}

.view-diamond section.upgrade .section-title {
    padding: 64px 0;
    margin: 0;
    text-align: center;
    font-weight: 500;
    font-size: 30px;
    color: #152c34;
    letter-spacing: .25px
}

.view-diamond section.upgrade .upgrade-button {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    display: block;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
    text-decoration: none;
    line-height: 70px;
    height: 70px;
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0 4px 0 #dde4eb;
    box-shadow: 0 4px 0 #dde4eb;
    border-radius: 3px;
    text-align: center;
    -webkit-transition: background .15s,-webkit-transform .15s,-webkit-box-shadow .25s;
    transition: background .15s,-webkit-transform .15s,-webkit-box-shadow .25s;
    transition: transform .15s,box-shadow .25s,background .15s;
    transition: transform .15s,box-shadow .25s,background .15s,-webkit-transform .15s,-webkit-box-shadow .25s;
    display: inline-block;
    position: relative
}

.view-diamond section.upgrade .upgrade-button:disabled {
    opacity: .5
}

.view-diamond section.upgrade .upgrade-button:disabled,.view-diamond section.upgrade .upgrade-button:disabled * {
    cursor: default
}

.view-diamond section.upgrade .upgrade-button:hover:not([disabled]) {
    background: #fff;
    -webkit-box-shadow: 0 4px 0 #fdfefe;
    box-shadow: 0 4px 0 #fdfefe
}

.view-diamond section.upgrade .upgrade-button:active:not([disabled]) {
    -webkit-box-shadow: 0 1px 0 #fdfefe;
    box-shadow: 0 1px 0 #fdfefe;
    -webkit-transform: translate(0, 3px);
    -ms-transform: translate(0, 3px);
    transform: translate(0, 3px)
}

.view-diamond section.upgrade .upgrade-button .label {
    display: inline-block;
    font-weight: bold;
    font-size: 17.97px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0 50px
}

.view-diamond section.upgrade .upgrade-button:after {
    content: "";
    display: block;
    float: right;
    width: 68px;
    height: 100%;
    border-left: 1px solid #dde4eb
}

.view-diamond section.upgrade .upgrade-button:hover {
    -webkit-box-shadow: 0 4px 0 #dde4eb,0 0 20px rgba(255,255,255,.3) !important;
    box-shadow: 0 4px 0 #dde4eb,0 0 20px rgba(255,255,255,.3) !important
}

.view-diamond section.upgrade .upgrade-button:active {
    -webkit-box-shadow: 0 1px 0 #dde4eb,0 0 20px rgba(255,255,255,.3) !important;
    box-shadow: 0 1px 0 #dde4eb,0 0 20px rgba(255,255,255,.3) !important
}

@media(max-width: 550px) {
    .view-diamond section.upgrade .upgrade-button .label {
        font-size:14px;
        padding: 0 24px
    }
}

.view-diamond section.upgrade section.top {
    text-align: center;
    padding-top: 100px;
    border-bottom: 1px solid #cecde1
}

.view-diamond section.upgrade section.top h1 {
    font-family: "Gotham Book";
    font-size: 35px;
    color: #fff;
    letter-spacing: .25px;
    max-width: 515px;
    margin: 20px auto
}

.view-diamond section.upgrade section.top .two-months-free {
    display: block;
    margin: 20px auto 50px auto;
    font-family: "Gotham Book";
    font-size: 14px;
    letter-spacing: .25px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0)
}

@media(max-width: 550px) {
    .view-diamond section.upgrade section.top {
        padding-left:24px;
        padding-right: 24px
    }
}

.view-diamond section.upgrade section.features {
    padding: 75px 0 0 50px
}

.view-diamond section.upgrade section.features:after {
    content: "";
    display: block;
    clear: both
}

.view-diamond section.upgrade section.features .row {
    position: relative;
    max-width: 1440px;
    margin: 0 auto
}

.view-diamond section.upgrade section.features .row:after {
    content: "";
    display: block;
    clear: both
}

.view-diamond section.upgrade section.features .feature {
    padding: 32px 32px 32px 176px;
    width: calc(50% - 50px);
    height: 100%;
    float: left;
    margin-right: 50px;
    margin-bottom: 50px;
    background-position: 50px center;
    background-repeat: no-repeat;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}

.view-diamond section.upgrade section.features .feature:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: calc(50% - 50px);
    bottom: 50px;
    border: 1px solid rgba(41,86,102,.25)
}

.view-diamond section.upgrade section.features .feature:first-child:before {
    left: 0
}

.view-diamond section.upgrade section.features .feature:last-child:before {
    right: 50px
}

.view-diamond section.upgrade section.features .feature h2 {
    font-weight: 500;
    font-size: 18.9px;
    color: #152c34;
    letter-spacing: .24px;
    margin: 0 0 8px 0
}

.view-diamond section.upgrade section.features .feature p {
    font-family: "Gotham Book";
    font-size: 15.12px;
    color: #295666;
    letter-spacing: .26px;
    line-height: 28.35px;
    margin: 0
}

.view-diamond section.upgrade section.features .row:first-child .feature:first-child {
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}

.view-diamond section.upgrade section.features .row:first-child .feature:last-child {
    -webkit-transition-delay: .4s;
    transition-delay: .4s
}

.view-diamond section.upgrade section.features .row:last-child .feature:first-child {
    -webkit-transition-delay: .6s;
    transition-delay: .6s
}

.view-diamond section.upgrade section.features .row:last-child .feature:last-child {
    -webkit-transition-delay: .8s;
    transition-delay: .8s
}

.view-diamond section.upgrade section.features.visible .feature {
    opacity: 1
}

@media(max-width: 850px) {
    .view-diamond section.upgrade section.features {
        padding-right:50px
    }

    .view-diamond section.upgrade section.features .feature {
        width: 100%;
        margin-right: 50px;
        position: relative
    }

    .view-diamond section.upgrade section.features .feature:before {
        width: 100%;
        left: 0 !important;
        bottom: 0
    }
}

@media(max-width: 500px) {
    .view-diamond section.upgrade section.features .feature {
        background-position:center 25px;
        padding: 115px 20px 20px 20px;
        text-align: center
    }
}

.view-diamond section.upgrade section.app {
    position: relative;
    opacity: 0;
    -webkit-transition: opacity .5s .2s;
    transition: opacity .5s .2s;
    overflow: hidden;
    padding-bottom: 10px
}

.view-diamond section.upgrade section.app:after {
    content: "";
    display: block;
    clear: both
}

.view-diamond section.upgrade section.app.visible {
    opacity: 1
}

.view-diamond section.upgrade section.app .screenshot {
    width: 50%;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    -webkit-box-shadow: 0 3px 11px 0 rgba(0,0,0,.5);
    box-shadow: 0 3px 11px 0 rgba(0,0,0,.5);
    position: relative;
    z-index: 2
}

.view-diamond section.upgrade section.app .info {
    display: block;
    width: 50%;
    float: right;
    position: relative;
    margin-top: 20px
}

.view-diamond section.upgrade section.app .info .info-header {
    width: 100%;
    height: 154px;
    margin: 22px 0;
    position: relative
}

.view-diamond section.upgrade section.app .info .info-header:after {
    display: block;
    content: "";
    width: 110%;
    height: 100%;
    position: absolute;
    left: -5%;
    top: 0;
    z-index: 0;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg)
}

.view-diamond section.upgrade section.app .info .info-header img {
    vertical-align: middle;
    padding-right: 30px
}

.view-diamond section.upgrade section.app .info .info-header .content {
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 30px;
    color: #fff;
    letter-spacing: .25px;
    padding-left: 100px;
    line-height: 154px
}

.view-diamond section.upgrade section.app .info .info-text {
    font-family: "Gotham Book";
    font-size: 28px;
    color: #295666;
    letter-spacing: .28px;
    line-height: 53px;
    padding: 20px 100px;
    max-width: 700px
}

@media(max-width: 1100px) {
    .view-diamond section.upgrade section.app .info .info-text {
        line-height:30px;
        font-size: 20px
    }
}

@media(max-width: 850px) {
    .view-diamond section.upgrade section.app .screenshot {
        width:calc(100% - 40px);
        margin: 20px;
        border-top-left-radius: 12px
    }

    .view-diamond section.upgrade section.app .info {
        width: 100%;
        top: -30px;
        margin-bottom: -30px;
        margin-top: 0
    }

    .view-diamond section.upgrade section.app .info .info-header {
        margin-top: -5px
    }

    .view-diamond section.upgrade section.app .info .info-header .content {
        max-width: 100%;
        padding: 5px 0 0 50px
    }

    .view-diamond section.upgrade section.app .info .info-text {
        padding: 20px 50px;
        max-width: 100%;
        font-size: 28px;
        line-height: 53px
    }
}

@media(max-width: 475px) {
    .view-diamond section.upgrade section.app .info-header {
        height:80px !important
    }

    .view-diamond section.upgrade section.app .info-header .content {
        line-height: 80px !important;
        font-size: 20px !important
    }
}

@media(max-width: 400px) {
    .view-diamond section.upgrade section.app .info-header .content {
        font-size:20px
    }

    .view-diamond section.upgrade section.app .info-header .content img {
        height: 50px
    }
}

.view-diamond section.upgrade section.lists {
    opacity: 0;
    -webkit-transition: opacity .2s .2s;
    transition: opacity .2s .2s
}

.view-diamond section.upgrade section.lists:after {
    content: "";
    display: block;
    clear: both
}

.view-diamond section.upgrade section.lists .lists {
    width: 100%;
    max-width: 884px;
    margin: 0 auto;
    padding: 0 50px
}

.view-diamond section.upgrade section.lists .list {
    width: calc(50% - 32px);
    max-width: 360px;
    float: left;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    opacity: 0;
    -webkit-transition: opacity .5s .2s,-webkit-transform .5s .2s;
    transition: opacity .5s .2s,-webkit-transform .5s .2s;
    transition: opacity .5s .2s,transform .5s .2s;
    transition: opacity .5s .2s,transform .5s .2s,-webkit-transform .5s .2s
}

.view-diamond section.upgrade section.lists .list .price {
    max-width: 250px;
    margin: 0 auto 16px auto;
    border-bottom: 1px solid rgba(41,86,102,.15)
}

.view-diamond section.upgrade section.lists .list .price h2 {
    font-weight: bold;
    font-size: 30px;
    letter-spacing: .25px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase
}

.view-diamond section.upgrade section.lists .list .price h3 {
    font-weight: 500;
    font-size: 18px;
    color: #295666;
    letter-spacing: .25px;
    text-align: center;
    margin-bottom: 40px
}

.view-diamond section.upgrade section.lists .list .price h3 strong {
    font-weight: 500;
    font-size: 25px
}

.view-diamond section.upgrade section.lists .list ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 250px;
    display: block
}

.view-diamond section.upgrade section.lists .list ul li {
    font-family: "Gotham Book";
    font-size: 18px;
    color: #c9d4d8;
    letter-spacing: .25px;
    line-height: 32px
}

.view-diamond section.upgrade section.lists .list ul li.checked {
    color: #295666
}

.view-diamond section.upgrade section.lists .list .action-button {
    display: block;
    width: 250px;
    margin: 38px auto 50px auto;
    padding: 3px;
    height: 50px;
    border: 0;
    text-decoration: none
}

.view-diamond section.upgrade section.lists .list .action-button,.view-diamond section.upgrade section.lists .list .action-button * {
    cursor: pointer
}

.view-diamond section.upgrade section.lists .list .action-button .button-label {
    background: #fff;
    height: 44px;
    line-height: 44px;
    text-align: center;
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: .25px;
    text-transform: uppercase;
    -webkit-transition: background .15s,color .15s;
    transition: background .15s,color .15s
}

.view-diamond section.upgrade section.lists .list .action-button:hover .button-label {
    background: rgba(0,0,0,0);
    color: #fff !important
}

.view-diamond section.upgrade section.lists .list:before {
    content: "";
    display: block;
    height: 8px;
    width: 100%
}

.view-diamond section.upgrade section.lists .list.free {
    margin-right: 64px
}

.view-diamond section.upgrade section.lists .list:first-child {
    -webkit-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    transform: translate(-100px, 0)
}

.view-diamond section.upgrade section.lists .list:last-child {
    -webkit-transform: translate(100px, 0);
    -ms-transform: translate(100px, 0);
    transform: translate(100px, 0)
}

.view-diamond section.upgrade section.lists.visible {
    opacity: 1
}

.view-diamond section.upgrade section.lists.visible .list {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

@media(max-width: 600px) {
    .view-diamond section.upgrade section.lists .lists {
        padding:0 25px
    }

    .view-diamond section.upgrade section.lists .list {
        max-width: 100% !important;
        width: 100% !important;
        margin-right: 0 !important
    }
}

.view-diamond section.upgrade section.video {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 64px;
    opacity: 0;
    -webkit-transition: opacity .2s .2s;
    transition: opacity .2s .2s
}

.view-diamond section.upgrade section.video.visible {
    opacity: 1
}

.view-diamond section.upgrade section.video .video-wrapper {
    width: 910px;
    max-width: 100%;
    margin: 0 auto;
    position: relative
}

.view-diamond section.upgrade section.video .video-wrapper .video-inner {
    width: 100%;
    height: 0;
    padding-bottom: 56%
}

.view-diamond section.upgrade section.video .video-wrapper object {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.view-diamond section.upgrade footer {
    text-align: center;
    padding-bottom: 86px
}

.view-diamond section.upgrade footer .section-title {
    color: #fff;
    padding-bottom: 30px
}

.view-diamond section.diamond .upgrade-button .label {
    color: #54d1dd;
    background: -webkit-linear-gradient(135deg, #47f3d4, #5abee1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0)
}

.view-diamond section.diamond .upgrade-button:after {
    background: url(/static/images/views/diamond/right-arrow-icon-09f05c3a56.svg) center center no-repeat
}

.view-diamond section.diamond section.top {
    background: url(/static/images/views/diamond/diamond-background-be185d065a.png) top center;
    margin-bottom: -50px
}

.view-diamond section.diamond section.top .two-months-free {
    color: #5abde0;
    background: -webkit-linear-gradient(135deg, #47f3d4, #5abee1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0)
}

.view-diamond section.diamond section.top .diamond {
    display: block;
    max-width: 100%;
    margin: -40px auto auto
}

.view-diamond section.diamond section.features .row:first-child .feature:nth-child(1) {
    background-image: url(/static/images/views/diamond/tools-icon-b2c4fa1dff.svg)
}

.view-diamond section.diamond section.features .row:first-child .feature:nth-child(2) {
    background-image: url(/static/images/views/diamond/unlockers-icon-071c5fbabd.svg)
}

.view-diamond section.diamond section.features .row:last-child .feature:nth-child(1) {
    background-image: url(/static/images/views/diamond/support-icon-815d55c25c.svg)
}

.view-diamond section.diamond section.features .row:last-child .feature:nth-child(2) {
    background-image: url(/static/images/views/diamond/ads-icon-cdb3e07e7c.svg)
}

.view-diamond section.diamond section.app .info .info-header:before {
    background: url(/static/images/views/diamond/app-line-bc083370d3.svg)
}

.view-diamond section.diamond section.app .info .info-header:after {
    background: #e7f5fb
}

.view-diamond section.diamond section.app .info .info-header .content {
    background-image: linear-gradient(135deg, #47f3d4 0%, #5abee1 100%)
}

.view-diamond section.diamond section.lists {
    padding-bottom: 50px
}

.view-diamond section.diamond section.lists .list.free .price h2 {
    color: #eb567b
}

.view-diamond section.diamond section.lists .list.free:before {
    background: #eb567b
}

.view-diamond section.diamond section.lists .list.free li.checked:before {
    background-image: url(/static/images/views/diamond/checkmark-icon-free-982c549eca.svg)
}

.view-diamond section.diamond section.lists .list.free .action-button {
    background-color: #eb567b
}

.view-diamond section.diamond section.lists .list.free .action-button .button-label {
    color: #eb567b
}

.view-diamond section.diamond section.lists .list.pro .price h2 {
    color: #47f3d4;
    background: -webkit-linear-gradient(135deg, #47f3d4, #5abee1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0)
}

.view-diamond section.diamond section.lists .list.pro:before {
    background-image: linear-gradient(135deg, #47f3d4, #5abee1)
}

.view-diamond section.diamond section.lists .list.pro li.checked:before {
    background-image: url(/static/images/views/diamond/checkmark-icon-pro-f38f4313ed.svg)
}

.view-diamond section.diamond section.lists .list.pro .action-button {
    background-image: linear-gradient(135deg, #47f3d4, #5abee1)
}

.view-diamond section.diamond section.lists .list.pro .action-button .button-label {
    color: #47f3d4
}

.view-diamond section.diamond footer {
    background: url(/static/images/views/diamond/diamond-background-be185d065a.png) center center !important
}

@media(max-width: 375px) {
    .view-diamond section.diamond footer .upgrade-button:after {
        display:none
    }
}

.view-error {
    min-width: 100vw;
    min-height: calc(100vh - 285px);
    padding-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.view-error .error-wrapper {
    position: relative
}

.view-error .code {
    font-weight: 700;
    display: inline;
    font-size: 300px;
    color: rgba(255,255,255,.25);
    opacity: .25
}

@supports(-webkit-background-clip: text) and (-webkit-text-fill-color: transparent) {
    .view-error .code {
        background:linear-gradient(228.2deg, #fff 12.98%, #fff 12.98%, rgba(19, 207, 255, 0) 89.25%, #13cfff 89.26%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(0,0,0,0)
    }
}

.view-error .message-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.view-error .message-wrapper .message {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: rgba(255,255,255,.6)
}

.view-error .message-wrapper .message,.view-error .message-wrapper .message * {
    font-weight: 500
}

@media(max-width: 690px) {
    .view-error .error-wrapper {
        width:100%;
        padding: 100px 22px
    }

    .view-error .code {
        display: block;
        width: 200px;
        text-align: center;
        font-size: 200px;
        line-height: 175px;
        word-wrap: break-word;
        margin: 0 auto
    }

    .view-error .message-wrapper {
        padding: 22px
    }

    .view-error .message-wrapper .message {
        font-size: 20px;
        line-height: 34px;
        text-align: center
    }
}

.features-view .view-title {
    margin-bottom: 50px
}

.features-view .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -5px
}

.features-view .links a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: rgba(255,255,255,.8);
    padding: 4px 12px 4px 33px;
    background: #0B0C13 url("/static/images/icons/link.svg") 12px center no-repeat;
    border-radius: 5px;
    margin: 0 5px 5px 0
}

.features-view .links a:hover {
    background-color: #223548
}

.features-view .links a .hide-mobile {
    display: none
}

@media(max-width: 900px) {
    .features-view .links a.hide-mobile {
        display:none
    }

    .features-view .links a.show-mobile {
        display: inline
    }
}

.features-view .tile {
    margin-top: 40px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%
}

.features-view .tile.games a {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #8599FF;
    background: rgba(0,0,0,0);
    color: #fff;
    margin-top: 25px
}

.features-view .tile.games a,.features-view .tile.games a * {
    cursor: pointer
}

.features-view .tile.games a svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.features-view .tile.games a:disabled {
    opacity: .4;
    cursor: not-allowed
}

.features-view .tile.games a>*+* {
    margin-left: 9px
}

.features-view .tile.games a i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.features-view .tile.games a:hover:not(:disabled) {
    background-color: #8599FF
}

.features-view .tile.games a:hover:not(:disabled) {
    color: #0B0C13
}

@media(max-width: 900px) {
    .features-view .tile.games a {
        font-size:18px;
        line-height: 30px;
        font-weight: 600;
        height: 38px;
        padding: 0 18px;
        margin-top: 18px
    }
}

.features-view .tile.remote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    overflow: visible;
    background: #000 linear-gradient(0deg, #709ecf 1px, transparent 50%)
}

.features-view .tile.remote p {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.features-view .tile.remote .remote-graphic {
    position: relative;
    padding-top: 110%;
    margin: 0 -100px -43px -50px;
    border-radius: 20px;
    overflow: hidden
}

.features-view .tile.remote img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%
}

@media(max-width: 900px) {
    .features-view .tile.remote .remote-graphic {
        margin:-27px -38px;
        overflow: hidden;
        padding-top: 70px
    }

    .features-view .tile.remote .remote-graphic img {
        position: relative;
        width: 110%;
        margin-bottom: -20px
    }
}

.features-view .tile.detection .detection-animation {
    height: 150px;
    position: relative;
    overflow: hidden;
    margin: 0 -50px -43px -50px
}

.features-view .tile.detection .detection-animation .lines {
    width: 100%;
    height: 100%
}

.features-view .tile.detection .detection-animation .lines div {
    background: rgba(255,255,255,.15);
    border-radius: 99px;
    padding: 3px 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 100%;
    -webkit-animation-name: detection-line;
    animation-name: detection-line;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

.features-view .tile.detection .detection-animation .lines div span {
    background: rgba(255,255,255,.15);
    height: 2px
}

.features-view .tile.detection .detection-animation .lines div span.highlight {
    background: rgba(255,255,255,.3)
}

.features-view .tile.detection .detection-animation .lines div span+span {
    margin-left: 2px
}

.features-view .tile.detection .detection-animation .meta {
    position: absolute;
    left: 50%;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.features-view .tile.detection .detection-animation .meta .path {
    position: relative;
    border: 3px solid #00f3a2;
    border-radius: 99px;
    height: 29px;
    padding: 3px 6px;
    background: #000
}

.features-view .tile.detection .detection-animation .meta .path .text {
    text-align: center;
    overflow: hidden;
    height: 23px;
    -webkit-animation: detection-path-width 4s linear infinite;
    animation: detection-path-width 4s linear infinite
}

.features-view .tile.detection .detection-animation .meta .path .text span {
    display: block;
    font-weight: 600;
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 2px;
    color: #00f3a2;
    white-space: nowrap;
    -webkit-animation: detection-path-text 4s linear infinite;
    animation: detection-path-text 4s linear infinite
}

.features-view .tile.detection .detection-animation .meta .path .text span:nth-child(2) {
    margin-top: -17px;
    -webkit-animation-delay: -2s;
    animation-delay: -2s
}

.features-view .tile.detection .detection-animation .meta .arrow {
    margin: 0 10px;
    width: 12px;
    height: 11px
}

.features-view .tile.detection .detection-animation .meta .platforms {
    width: 24px;
    height: 24px;
    position: relative
}

.features-view .tile.detection .detection-animation .meta .platforms img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-animation: detection-platform 10s linear infinite both;
    animation: detection-platform 10s linear infinite both
}

.features-view .tile.detection .detection-animation .meta .platforms img:nth-child(1) {
    -webkit-animation-delay: -1.6666666667s;
    animation-delay: -1.6666666667s
}

.features-view .tile.detection .detection-animation .meta .platforms img:nth-child(2) {
    -webkit-animation-delay: -3.3333333333s;
    animation-delay: -3.3333333333s
}

.features-view .tile.detection .detection-animation .meta .platforms img:nth-child(3) {
    -webkit-animation-delay: -5s;
    animation-delay: -5s
}

.features-view .tile.detection .detection-animation .meta .platforms img:nth-child(4) {
    -webkit-animation-delay: -6.6666666667s;
    animation-delay: -6.6666666667s
}

.features-view .tile.detection .detection-animation .meta .platforms img:nth-child(5) {
    -webkit-animation-delay: -8.3333333333s;
    animation-delay: -8.3333333333s
}

.features-view .tile.detection .detection-animation .meta .platforms img:nth-child(6) {
    -webkit-animation-delay: -10s;
    animation-delay: -10s
}

.features-view .tile.interactive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-bottom: 0
}

.features-view .tile.interactive:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(247.39deg, #fff 0%, rgba(19, 207, 255, 0.5) 35%, rgba(19, 207, 255, 0) 70%);
    opacity: .3
}

.features-view .tile.interactive .left,.features-view .tile.interactive .right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0
}

.features-view .tile.interactive .right {
    padding-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.features-view .tile.interactive .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.features-view .tile.interactive .content {
    max-width: 490px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.features-view .tile.interactive .x-save-cheats-toggle {
    margin: 37px 0
}

.features-view .tile.interactive h2.mobile-title {
    display: none
}

.features-view .tile.interactive .example-cheats {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.features-view .tile.safety a {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #4b63fb;
    background: rgba(0,0,0,0);
    color: #fff;
    margin-top: 30px
}

.features-view .tile.safety a,.features-view .tile.safety a * {
    cursor: pointer
}

.features-view .tile.safety a svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.features-view .tile.safety a:disabled {
    opacity: .4;
    cursor: not-allowed
}

.features-view .tile.safety a>*+* {
    margin-left: 9px
}

.features-view .tile.safety a i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.features-view .tile.safety a:hover:not(:disabled) {
    background-color: #4b63fb
}

.features-view .tile.safety a img {
    width: 16px;
    height: 15px
}

.features-view .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.features-view .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 50%
}

.features-view .col+.col {
    margin-left: 40px
}

.features-view .platform-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 28px
}

.features-view .platform-list img {
    width: 22px;
    height: 22px;
    opacity: .5
}

.features-view .platform-list img+img {
    margin-left: 30px
}

@media(max-width: 900px) {
    .features-view .view-title {
        margin-bottom:33px
    }

    .features-view .links {
        margin-bottom: 10px
    }

    .features-view .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .features-view .row .col {
        width: 100%
    }

    .features-view .col+.col {
        margin-left: 0
    }

    .features-view .tile {
        margin-top: 20px
    }

    .features-view .tile.interactive {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 0
    }

    .features-view .tile.interactive .right {
        padding-left: 0;
        margin-top: 30px
    }

    .features-view .tile.interactive .right h2,.features-view .tile.interactive .right p {
        margin-left: 0
    }

    .features-view .tile.interactive .right p {
        padding-bottom: 0
    }

    .features-view .tile.interactive .x-save-cheats-toggle {
        display: none
    }

    .features-view .tile.interactive h2.desktop-title {
        display: none
    }

    .features-view .tile.interactive h2.mobile-title {
        display: block
    }

    .features-view .tile.favorite-platforms {
        background: #000 -webkit-gradient(linear, left bottom, left top, from(rgba(2, 152, 193, 0.55)), color-stop(50%, transparent));
        background: #000 linear-gradient(0deg, rgba(2, 152, 193, 0.55) 0%, transparent 50%)
    }
}

@-webkit-keyframes slider-count {
    0% {
        content: "0"
    }

    1% {
        content: "1"
    }

    2% {
        content: "2"
    }

    3% {
        content: "3"
    }

    4% {
        content: "4"
    }

    5% {
        content: "5"
    }

    6% {
        content: "6"
    }

    7% {
        content: "7"
    }

    8% {
        content: "8"
    }

    9% {
        content: "9"
    }

    10% {
        content: "10"
    }

    11% {
        content: "11"
    }

    12% {
        content: "12"
    }

    13% {
        content: "13"
    }

    14% {
        content: "14"
    }

    15% {
        content: "15"
    }

    16% {
        content: "16"
    }

    17% {
        content: "17"
    }

    18% {
        content: "18"
    }

    19% {
        content: "19"
    }

    20% {
        content: "20"
    }

    21% {
        content: "21"
    }

    22% {
        content: "22"
    }

    23% {
        content: "23"
    }

    24% {
        content: "24"
    }

    25% {
        content: "25"
    }

    26% {
        content: "26"
    }

    27% {
        content: "27"
    }

    28% {
        content: "28"
    }

    29% {
        content: "29"
    }

    30% {
        content: "30"
    }

    31% {
        content: "31"
    }

    32% {
        content: "32"
    }

    33% {
        content: "33"
    }

    34% {
        content: "34"
    }

    35% {
        content: "35"
    }

    36% {
        content: "36"
    }

    37% {
        content: "37"
    }

    38% {
        content: "38"
    }

    39% {
        content: "39"
    }

    40% {
        content: "40"
    }

    41% {
        content: "41"
    }

    42% {
        content: "42"
    }

    43% {
        content: "43"
    }

    44% {
        content: "44"
    }

    45% {
        content: "45"
    }

    46% {
        content: "46"
    }

    47% {
        content: "47"
    }

    48% {
        content: "48"
    }

    49% {
        content: "49"
    }

    50% {
        content: "50"
    }

    51% {
        content: "51"
    }

    52% {
        content: "52"
    }

    53% {
        content: "53"
    }

    54% {
        content: "54"
    }

    55% {
        content: "55"
    }

    56% {
        content: "56"
    }

    57% {
        content: "57"
    }

    58% {
        content: "58"
    }

    59% {
        content: "59"
    }

    60% {
        content: "60"
    }

    61% {
        content: "61"
    }

    62% {
        content: "62"
    }

    63% {
        content: "63"
    }

    64% {
        content: "64"
    }

    65% {
        content: "65"
    }

    66% {
        content: "66"
    }

    67% {
        content: "67"
    }

    68% {
        content: "68"
    }

    69% {
        content: "69"
    }

    70% {
        content: "70"
    }

    71% {
        content: "71"
    }

    72% {
        content: "72"
    }

    73% {
        content: "73"
    }

    74% {
        content: "74"
    }

    75% {
        content: "75"
    }

    76% {
        content: "76"
    }

    77% {
        content: "77"
    }

    78% {
        content: "78"
    }

    79% {
        content: "79"
    }

    80% {
        content: "80"
    }

    81% {
        content: "81"
    }

    82% {
        content: "82"
    }

    83% {
        content: "83"
    }

    84% {
        content: "84"
    }

    85% {
        content: "85"
    }

    86% {
        content: "86"
    }

    87% {
        content: "87"
    }

    88% {
        content: "88"
    }

    89% {
        content: "89"
    }

    90% {
        content: "90"
    }

    91% {
        content: "91"
    }

    92% {
        content: "92"
    }

    93% {
        content: "93"
    }

    94% {
        content: "94"
    }

    95% {
        content: "95"
    }

    96% {
        content: "96"
    }

    97% {
        content: "97"
    }

    98% {
        content: "98"
    }

    99% {
        content: "99"
    }

    100% {
        content: "99"
    }
}

@keyframes slider-count {
    0% {
        content: "0"
    }

    1% {
        content: "1"
    }

    2% {
        content: "2"
    }

    3% {
        content: "3"
    }

    4% {
        content: "4"
    }

    5% {
        content: "5"
    }

    6% {
        content: "6"
    }

    7% {
        content: "7"
    }

    8% {
        content: "8"
    }

    9% {
        content: "9"
    }

    10% {
        content: "10"
    }

    11% {
        content: "11"
    }

    12% {
        content: "12"
    }

    13% {
        content: "13"
    }

    14% {
        content: "14"
    }

    15% {
        content: "15"
    }

    16% {
        content: "16"
    }

    17% {
        content: "17"
    }

    18% {
        content: "18"
    }

    19% {
        content: "19"
    }

    20% {
        content: "20"
    }

    21% {
        content: "21"
    }

    22% {
        content: "22"
    }

    23% {
        content: "23"
    }

    24% {
        content: "24"
    }

    25% {
        content: "25"
    }

    26% {
        content: "26"
    }

    27% {
        content: "27"
    }

    28% {
        content: "28"
    }

    29% {
        content: "29"
    }

    30% {
        content: "30"
    }

    31% {
        content: "31"
    }

    32% {
        content: "32"
    }

    33% {
        content: "33"
    }

    34% {
        content: "34"
    }

    35% {
        content: "35"
    }

    36% {
        content: "36"
    }

    37% {
        content: "37"
    }

    38% {
        content: "38"
    }

    39% {
        content: "39"
    }

    40% {
        content: "40"
    }

    41% {
        content: "41"
    }

    42% {
        content: "42"
    }

    43% {
        content: "43"
    }

    44% {
        content: "44"
    }

    45% {
        content: "45"
    }

    46% {
        content: "46"
    }

    47% {
        content: "47"
    }

    48% {
        content: "48"
    }

    49% {
        content: "49"
    }

    50% {
        content: "50"
    }

    51% {
        content: "51"
    }

    52% {
        content: "52"
    }

    53% {
        content: "53"
    }

    54% {
        content: "54"
    }

    55% {
        content: "55"
    }

    56% {
        content: "56"
    }

    57% {
        content: "57"
    }

    58% {
        content: "58"
    }

    59% {
        content: "59"
    }

    60% {
        content: "60"
    }

    61% {
        content: "61"
    }

    62% {
        content: "62"
    }

    63% {
        content: "63"
    }

    64% {
        content: "64"
    }

    65% {
        content: "65"
    }

    66% {
        content: "66"
    }

    67% {
        content: "67"
    }

    68% {
        content: "68"
    }

    69% {
        content: "69"
    }

    70% {
        content: "70"
    }

    71% {
        content: "71"
    }

    72% {
        content: "72"
    }

    73% {
        content: "73"
    }

    74% {
        content: "74"
    }

    75% {
        content: "75"
    }

    76% {
        content: "76"
    }

    77% {
        content: "77"
    }

    78% {
        content: "78"
    }

    79% {
        content: "79"
    }

    80% {
        content: "80"
    }

    81% {
        content: "81"
    }

    82% {
        content: "82"
    }

    83% {
        content: "83"
    }

    84% {
        content: "84"
    }

    85% {
        content: "85"
    }

    86% {
        content: "86"
    }

    87% {
        content: "87"
    }

    88% {
        content: "88"
    }

    89% {
        content: "89"
    }

    90% {
        content: "90"
    }

    91% {
        content: "91"
    }

    92% {
        content: "92"
    }

    93% {
        content: "93"
    }

    94% {
        content: "94"
    }

    95% {
        content: "95"
    }

    96% {
        content: "96"
    }

    97% {
        content: "97"
    }

    98% {
        content: "98"
    }

    99% {
        content: "99"
    }

    100% {
        content: "99"
    }
}

@-webkit-keyframes slider-handle {
    from {
        left: 0
    }

    to {
        left: 100%
    }
}

@keyframes slider-handle {
    from {
        left: 0
    }

    to {
        left: 100%
    }
}

@-webkit-keyframes slider-progress {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes slider-progress {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@-webkit-keyframes detection-line {
    0% {
        left: 100%;
        opacity: 0
    }

    10%,90% {
        opacity: 1
    }

    100% {
        left: -100%;
        opacity: 0
    }
}

@keyframes detection-line {
    0% {
        left: 100%;
        opacity: 0
    }

    10%,90% {
        opacity: 1
    }

    100% {
        left: -100%;
        opacity: 0
    }
}

@-webkit-keyframes detection-path-text {
    0%,40% {
        opacity: 1
    }

    50%,90% {
        opacity: 0
    }
}

@keyframes detection-path-text {
    0%,40% {
        opacity: 1
    }

    50%,90% {
        opacity: 0
    }
}

@-webkit-keyframes detection-path-width {
    0%,45% {
        width: 81px
    }

    50%,95% {
        width: 176px
    }

    100% {
        width: 81px
    }
}

@keyframes detection-path-width {
    0%,45% {
        width: 81px
    }

    50%,95% {
        width: 176px
    }

    100% {
        width: 81px
    }
}

@-webkit-keyframes detection-platform {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    5%,11.6666666667% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    16.6666666667% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

@keyframes detection-platform {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    5%,11.6666666667% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    16.6666666667% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

.feedback-view .view-title {
    margin-bottom: 50px
}

.feedback-view .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -5px
}

.feedback-view .links a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: rgba(255,255,255,.8);
    padding: 4px 12px 4px 33px;
    background: #0B0C13 url("/static/images/views/features/link-606944de1e.svg") 12px center no-repeat;
    border-radius: 5px;
    margin: 0 5px 5px 0
}

.feedback-view .links a:hover {
    background-color: #223548
}

.feedback-view .links a .hide-mobile {
    display: none
}

@media(max-width: 900px) {
    .feedback-view .links a.hide-mobile {
        display:none
    }

    .feedback-view .links a.show-mobile {
        display: inline
    }
}

.feedback-view h2 {
    font-size: 35px;
    line-height: 40px;
    margin: 0;
    color: #fff;
    margin: 40px 0
}

.feedback-view .feedback-items {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px
}

.feedback-view .feedback-item {
    margin-bottom: 40px;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid
}

.feedback-view .user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px
}

.feedback-view .user .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 14px
}

.feedback-view .user .col {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.feedback-view .user .username {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #fff
}

.feedback-view .user .date {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.35)
}

@media(max-width: 900px) {
    .feedback-view h2 {
        font-size:30px;
        line-height: 36px;
        margin: 0;
        margin: 40px 0
    }
}

@media(max-width: 768px) {
    .feedback-view .feedback-items {
        -webkit-columns:1;
        -moz-columns: 1;
        columns: 1
    }
}

.games-view section.top .view-title {
    margin-bottom: 27px
}

.games-view section.top h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    margin: 0 0 30px 0
}

.games-view section.top h2 strong {
    font-weight: 700;
    color: #8599FF
}

@media(max-width: 900px) {
    .games-view section.top section.top {
        margin-bottom:15px
    }

    .games-view section.top h2 {
        font-size: 20px;
        line-height: 34px
    }
}

.games-view .disabled {
    display: none
}

.games-view .featured-thumbnails-outer {
    overflow: hidden;
    margin: -90px 0 -120px 0;
    height: 400px
}

.games-view .featured-thumbnails-wrapper {
    position: relative;
    top: 100px;
    height: 180px
}

.games-view .featured-thumbnails-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: games-thumbnails-scroll 80s infinite linear;
    animation: games-thumbnails-scroll 80s infinite linear;
    will-change: translate
}

.games-view .featured-thumbnails-inner.paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.games-view .featured-thumbnails {
    position: absolute;
    left: 50%;
    top: 50%;
    padding-top: 30px
}

.games-view .featured-thumbnails a {
    border-radius: 10px;
    overflow: hidden;
    width: 258px;
    height: 120px;
    background: rgba(255,255,255,.1) center/cover no-repeat;
    position: relative;
    margin-left: 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 258px;
    flex: 0 0 258px;
    -webkit-transition: -webkit-box-shadow .15s;
    transition: -webkit-box-shadow .15s;
    transition: box-shadow .15s;
    transition: box-shadow .15s, -webkit-box-shadow .15s
}

.games-view .featured-thumbnails a:nth-child(1) {
    margin-top: -10px
}

.games-view .featured-thumbnails a:nth-child(2) {
    margin-top: -20px
}

.games-view .featured-thumbnails a:nth-child(3) {
    margin-top: -30px
}

.games-view .featured-thumbnails a:nth-child(4) {
    margin-top: -40px
}

.games-view .featured-thumbnails a:nth-child(5) {
    margin-top: -50px
}

.games-view .featured-thumbnails a:nth-child(6) {
    margin-top: -60px
}

.games-view .featured-thumbnails a:nth-child(7) {
    margin-top: -70px
}

.games-view .featured-thumbnails a:nth-child(8) {
    margin-top: -80px
}

.games-view .featured-thumbnails a:nth-child(9) {
    margin-top: -90px
}

.games-view .featured-thumbnails a:nth-child(10) {
    margin-top: -100px
}

.games-view .featured-thumbnails a:nth-child(11) {
    margin-top: -110px
}

.games-view .featured-thumbnails a:nth-child(12) {
    margin-top: -120px
}

.games-view .featured-thumbnails a:nth-child(13) {
    margin-top: -130px
}

.games-view .featured-thumbnails a:nth-child(14) {
    margin-top: -140px
}

.games-view .featured-thumbnails a:nth-child(15) {
    margin-top: -150px
}

.games-view .featured-thumbnails a:nth-child(16) {
    margin-top: -160px
}

.games-view .featured-thumbnails a:nth-child(17) {
    margin-top: -170px
}

.games-view .featured-thumbnails a:nth-child(18) {
    margin-top: -180px
}

.games-view .featured-thumbnails a:nth-child(19) {
    margin-top: -190px
}

.games-view .featured-thumbnails a:nth-child(20) {
    margin-top: -200px
}

.games-view .featured-thumbnails a:hover {
    -webkit-box-shadow: inset 0 0 0 1px #8599FF;
    box-shadow: inset 0 0 0 1px #8599FF
}

.games-view .featured-thumbnails img {
    width: 100%;
    height: 100%
}

.games-view .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0 60px 0
}

.games-view .search-form .input-wrapper {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 595px
}

.games-view .search-form .input-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 43px;
    height: 43px;
    background: url("../static/images/icons/search-icon.svg") center no-repeat;
    opacity: .5;
    pointer-events: none
}

.games-view .search-form input {
    height: 43px;
    background: #15161C;
    border: 1px solid #8599FF;
    padding: 0 14px;
    border-radius: 5px;
    caret-color: #8599FF;
    cursor: text;
    -webkit-appearance: none;
    border-radius: 99px;
    padding-left: 43px;
    width: 100%
}

.games-view .search-form input,.games-view .search-form input::-webkit-input-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.games-view .search-form input,.games-view .search-form input::-moz-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.games-view .search-form input,.games-view .search-form input::-ms-input-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.games-view .search-form input,.games-view .search-form input::placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.games-view .search-form input::-webkit-search-cancel-button {
    width: 43px;
    height: 43px;
    position: absolute;
    right: 0;
    top: 0;
    background: url("/static/images/icons/close-27dac865aa.svg") center no-repeat;
    -webkit-appearance: none;
    cursor: pointer
}

.games-view .search-form input:focus {
    background: #000
}

.games-view .search-form input:focus,.games-view .search-form input:focus::-webkit-input-placeholder {
    color: #fff
}

.games-view .search-form input:focus,.games-view .search-form input:focus::-moz-placeholder {
    color: #fff
}

.games-view .search-form input:focus,.games-view .search-form input:focus::-ms-input-placeholder {
    color: #fff
}

.games-view .search-form input:focus,.games-view .search-form input:focus::placeholder {
    color: #fff
}

.games-view .search-form button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #8599FF;
    background: rgba(0,0,0,0);
    color: #fff;
    margin-left: 10px
}

.games-view .search-form button,.games-view .search-form button * {
    cursor: pointer
}

.games-view .search-form button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.games-view .search-form button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.games-view .search-form button>*+* {
    margin-left: 9px
}

.games-view .search-form button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.games-view .search-form button:hover:not(:disabled) {
    background-color: #8599FF
}

.games-view .search-form button:hover:not(:disabled) {
    color: #0B0C13
}

@media(max-width: 900px) {
    .games-view .search-form .input-wrapper {
        max-width:100%
    }
}

@media(max-width: 900px) {
    .games-view .search-form {
        margin-bottom:82px
    }
}

.games-view .sort-options {
    padding: 5px;
    border-radius: 10px;
    background: #0B0C13;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    left: 30px;
    top: -25px
}

.games-view .sort-options a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 5px;
    color: rgba(255,255,255,.8);
    border: 0;
    text-decoration: none;
    padding: 4px 12px
}

.games-view .sort-options a.current {
    background: #fff;
    color: #15161C
}

.games-view .sort-options a:not(.current):hover {
    background: rgba(255,255,255,.05)
}

.games-view .sort-options a+a {
    margin-left: 5px
}

@media(max-width: 350px) {
    .games-view .sort-options a {
        font-size:14px;
        line-height: 22px
    }
}

@media(max-width: 900px) {
    .games-view .sort-options {
        top:-62px
    }
}

.games-view .search-results {
    -webkit-transform: translateZ();
    transform: translateZ()
}

.games-view .search-results .results-list {
    padding: 10px;
    border-radius: 10px;
    background: url("/static/images/views/games/results-gradient-e9414105e7.svg") top left/100% repeat-y;
    margin-left: -10px;
    margin-right: -10px
}

.games-view .search-results .no-results-message {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    padding: 15px
}

.games-view .search-results .alpha-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
    margin-top: -10px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: sticky;
    top: 99px;
    background: #11171d url("/static/images/views/games/results-gradient-e9414105e7.svg") top left/100% repeat-y;
    z-index: 1
}

.games-view .search-results .alpha-nav a {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.45);
    text-transform: uppercase
}

.games-view .search-results .alpha-nav a:hover {
    color: #fff
}

.games-view .search-results header {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: rgba(255,255,255,.45);
    margin-bottom: 15px
}

.games-view section.bottom {
    position: relative
}

@media(max-width: 900px) {
    .games-view .featured-thumbnails-outer {
        height:134px;
        margin: -30px 0
    }

    .games-view .featured-thumbnails-wrapper {
        height: 74px;
        top: 36px
    }

    .games-view .featured-thumbnails-inner {
        -webkit-animation-name: games-thumbnails-mobile-scroll;
        animation-name: games-thumbnails-mobile-scroll
    }

    .games-view .featured-thumbnails a {
        width: 129px;
        height: 60px;
        margin-left: 20px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 129px;
        flex: 0 0 129px
    }

    .games-view .featured-thumbnails a:nth-child(1) {
        margin-top: -7px
    }

    .games-view .featured-thumbnails a:nth-child(2) {
        margin-top: -14px
    }

    .games-view .featured-thumbnails a:nth-child(3) {
        margin-top: -21px
    }

    .games-view .featured-thumbnails a:nth-child(4) {
        margin-top: -28px
    }

    .games-view .featured-thumbnails a:nth-child(5) {
        margin-top: -35px
    }

    .games-view .featured-thumbnails a:nth-child(6) {
        margin-top: -42px
    }

    .games-view .featured-thumbnails a:nth-child(7) {
        margin-top: -49px
    }

    .games-view .featured-thumbnails a:nth-child(8) {
        margin-top: -56px
    }

    .games-view .featured-thumbnails a:nth-child(9) {
        margin-top: -63px
    }

    .games-view .featured-thumbnails a:nth-child(10) {
        margin-top: -70px
    }

    .games-view .featured-thumbnails a:nth-child(11) {
        margin-top: -77px
    }

    .games-view .featured-thumbnails a:nth-child(12) {
        margin-top: -84px
    }

    .games-view .featured-thumbnails a:nth-child(13) {
        margin-top: -91px
    }

    .games-view .featured-thumbnails a:nth-child(14) {
        margin-top: -98px
    }

    .games-view .featured-thumbnails a:nth-child(15) {
        margin-top: -105px
    }

    .games-view .featured-thumbnails a:nth-child(16) {
        margin-top: -112px
    }

    .games-view .featured-thumbnails a:nth-child(17) {
        margin-top: -119px
    }

    .games-view .featured-thumbnails a:nth-child(18) {
        margin-top: -126px
    }

    .games-view .featured-thumbnails a:nth-child(19) {
        margin-top: -133px
    }

    .games-view .featured-thumbnails a:nth-child(20) {
        margin-top: -140px
    }

    .games-view .search-results header {
        display: none !important
    }

    .games-view .search-results .alpha-nav {
        display: none
    }

    .games-view .search-results .results-list {
        margin-left: -20px;
        margin-right: -20px
    }
}

@-webkit-keyframes games-thumbnails-scroll {
    from {
        -webkit-transform: translate3d(-25%, -50px, 0);
        transform: translate3d(-25%, -50px, 0)
    }

    to {
        -webkit-transform: translate3d(-75%, 50px, 0);
        transform: translate3d(-75%, 50px, 0)
    }
}

@keyframes games-thumbnails-scroll {
    from {
        -webkit-transform: translate3d(-25%, -50px, 0);
        transform: translate3d(-25%, -50px, 0)
    }

    to {
        -webkit-transform: translate3d(-75%, 50px, 0);
        transform: translate3d(-75%, 50px, 0)
    }
}

@-webkit-keyframes games-thumbnails-mobile-scroll {
    from {
        -webkit-transform: translate3d(-25%, -35px, 0);
        transform: translate3d(-25%, -35px, 0)
    }

    to {
        -webkit-transform: translate3d(-75%, 35px, 0);
        transform: translate3d(-75%, 35px, 0)
    }
}

@keyframes games-thumbnails-mobile-scroll {
    from {
        -webkit-transform: translate3d(-25%, -35px, 0);
        transform: translate3d(-25%, -35px, 0)
    }

    to {
        -webkit-transform: translate3d(-75%, 35px, 0);
        transform: translate3d(-75%, 35px, 0)
    }
}

.view-homepage-refresh {
    --screenshot-border-radius: 2.5% / 4.5%;
    --screenshot-border: 10px;
    position: relative;
    z-index: 0;
    background: #0d0f12;
    padding: 120px 0 0;
    width: 100%;
    overflow-x: hidden
}

@media screen and (max-width: 800px) {
    .view-homepage-refresh {
        --screenshot-border: 8px
    }
}

@media screen and (max-width: 600px) {
    .view-homepage-refresh {
        --screenshot-border: 6px
    }
}

@media screen and (max-width: 400px) {
    .view-homepage-refresh {
        --screenshot-border: 4px
    }
}

.view-homepage-refresh .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 860px;
    background: url("/static/images/views/homepage/hero-bg.webp") top center/cover no-repeat;
    opacity: 52%
}

.view-homepage-refresh .hero-bg::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 15, 18, 0)), to(rgb(13, 15, 18)));
    background: linear-gradient(180deg, rgba(13, 15, 18, 0) 0%, rgb(13, 15, 18) 100%)
}

.view-homepage-refresh .heading {
    font-size: 48px;
    font-style: italic;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: -2.4px;
    margin: 0 0 12px 0;
    color: #fff;
    text-align: center;
    display: block;
    max-width: 620px;
    width: 100%
}

@media screen and (max-width: 720px) {
    .view-homepage-refresh .heading {
        font-size:32px;
        line-height: 36px;
        letter-spacing: -1.5px
    }
}

.view-homepage-refresh .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    border: none;
    -webkit-transition: opacity 75ms ease-out;
    transition: opacity 75ms ease-out;
    white-space: nowrap
}

.view-homepage-refresh .button i {
    line-height: 1
}

.view-homepage-refresh .button:hover {
    opacity: 80%
}

.view-homepage-refresh .button-primary {
    background: #fff;
    color: #000
}

.view-homepage-refresh .button-secondary {
    background: var(--white-20, rgba(255, 255, 255, 0.2));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff
}

.view-homepage-refresh .button-secondary i svg * {
    fill: #fff
}

.view-homepage-refresh .icon-arrow {
    width: 13px;
    height: 13px
}

.view-homepage-refresh .homepage-section {
    position: relative;
    z-index: 1;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 80px 0
}

.view-homepage-refresh .homepage-section .content {
    width: 100%;
    max-width: 960px;
    padding: 0 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.view-homepage-refresh .homepage-section .content .message {
    display: block;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 40px auto;
    color: rgba(255,255,255,.8);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px
}

@media screen and (max-width: 720px) {
    .view-homepage-refresh .homepage-section .content .message {
        font-size:16px;
        line-height: 20px;
        letter-spacing: -0.5px
    }
}

.view-homepage-refresh .homepage-section:last-child {
    margin: 0
}

@media screen and (max-width: 720px) {
    .view-homepage-refresh .homepage-section {
        margin:0 0 64px 0
    }
}

.view-homepage-refresh .tile-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.view-homepage-refresh .tile-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: var(--white-80, rgba(255, 255, 255, 0.8));
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-align: center
}

.view-homepage-refresh .tile-list h3 {
    color: #fff;
    font-size: 18px;
    font-style: italic;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.75px;
    margin: 0 0 4px
}

.view-homepage-refresh .tile-list p {
    margin: 0
}

.view-homepage-refresh .tile-list .icon {
    margin: 0 0 12px
}

@media screen and (max-width: 720px) {
    .view-homepage-refresh .tile-list {
        grid-template-columns:repeat(1, 1fr)
    }

    .view-homepage-refresh .tile-list li {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 12px;
        text-align: left
    }

    .view-homepage-refresh .tile-list .icon {
        margin: 0
    }
}

.view-homepage-refresh .section-top {
    position: relative;
    overflow: hidden
}

.view-homepage-refresh .section-top .button {
    font-size: 14px
}

.view-homepage-refresh .section-top h1 {
    text-align: left
}

.view-homepage-refresh .section-top .content {
    max-width: 1120px;
    width: 100%;
    margin: 0 0 40px 0;
    position: relative;
    display: block
}

.view-homepage-refresh .section-top .content .message {
    font-weight: 700;
    letter-spacing: -0.75px;
    margin: 0 0 36px 0;
    text-align: left
}

.view-homepage-refresh .section-top .before-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.view-homepage-refresh .section-top .info {
    width: 480px;
    height: 566px;
    position: relative;
    z-index: 1;
    will-change: opacity;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.view-homepage-refresh .section-top .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 0 40px 0
}

.view-homepage-refresh .section-top .actions.nonwindows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px
}

.view-homepage-refresh .section-top .actions.nonwindows .x-trustpilot-rating {
    margin: 0
}

@media screen and (max-width: 440px) {
    .view-homepage-refresh .section-top .actions {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 12px
    }
}

.view-homepage-refresh .section-top .app-screenshot {
    width: 86%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 570px;
    aspect-ratio: 959/534;
    margin: 0 0 50px;
    padding: 0 var(--screenshot-border)
}

.view-homepage-refresh .section-top .app-screenshot::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: var(--screenshot-border-radius);
    overflow: hidden;
    -webkit-box-shadow: 0 0 0 var(--screenshot-border) rgba(255,255,255,.2);
    box-shadow: 0 0 0 var(--screenshot-border) rgba(255,255,255,.2);
    background: url("/static/images/views/homepage/app-screenshot.webp") center/auto 100% no-repeat
}

.view-homepage-refresh .section-top .download-button svg {
    width: 12px;
    height: 12px
}

.view-homepage-refresh .section-top .download-message {
    color: rgba(255,255,255,.8);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px
}

.view-homepage-refresh .section-top .download-message a {
    color: #fff;
    text-decoration: underline
}

.view-homepage-refresh .section-top .after-download {
    margin: 0 0 86px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.view-homepage-refresh .section-top .after-download .share-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 12px;
    margin: 0 0 48px 0
}

.view-homepage-refresh .section-top .after-download .share-buttons .fb_iframe_widget {
    float: left
}

@media screen and (max-width: 1080px) {
    .view-homepage-refresh .section-top h1 {
        font-size:40px;
        line-height: 100%;
        letter-spacing: -2px
    }

    .view-homepage-refresh .section-top .info {
        height: 470px;
        width: 400px
    }

    .view-homepage-refresh .section-top .app-screenshot {
        width: 75%;
        left: 480px
    }
}

@media screen and (max-width: 870px) {
    .view-homepage-refresh .section-top h1 {
        font-size:32px;
        line-height: 36px;
        letter-spacing: -1.5px
    }

    .view-homepage-refresh .section-top .content .message {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: -0.5px
    }

    .view-homepage-refresh .section-top .info {
        height: 372px;
        width: 360px
    }

    .view-homepage-refresh .section-top .actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .view-homepage-refresh .section-top .app-screenshot {
        width: 75%;
        left: 420px
    }
}

@media screen and (max-width: 680px) {
    .view-homepage-refresh .section-top h1 {
        text-align:center
    }

    .view-homepage-refresh .section-top .content .message {
        text-align: center
    }

    .view-homepage-refresh .section-top .message {
        text-align: center
    }

    .view-homepage-refresh .section-top .info {
        height: auto;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .view-homepage-refresh .section-top .actions {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .view-homepage-refresh .section-top .actions.nonwindows {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .view-homepage-refresh .section-top .before-download {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .view-homepage-refresh .section-top .after-download {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .view-homepage-refresh .section-top .app-screenshot {
        position: relative;
        top: 0;
        left: -32px;
        width: 100vw;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.view-homepage-refresh .top-footer {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.view-homepage-refresh .top-footer,.view-homepage-refresh .top-footer a {
    color: rgba(255,255,255,.8)
}

.view-homepage-refresh .top-footer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: center
}

.view-homepage-refresh .top-footer .wrapper>* {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.view-homepage-refresh .top-footer .wrapper>*+*:before {
    content: "·";
    display: inline-block;
    margin: 0 16px
}

@media(max-width: 440px) {
    .view-homepage-refresh .top-footer .wrapper a span {
        width:100%
    }
}

.view-homepage-refresh .top-footer .wrapper a:hover span {
    text-decoration: underline
}

.view-homepage-refresh .top-footer em {
    font-style: normal;
    color: #fff
}

.view-homepage-refresh .top-footer .rating {
    color: #00f3a2
}

.view-homepage-refresh .top-footer img {
    margin: 0 8px;
    width: 82px;
    height: 15px
}

@media screen and (max-width: 900px) {
    .view-homepage-refresh .top-footer .wrapper {
        width:100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .view-homepage-refresh .top-footer .wrapper>* {
        margin: 0 0 12px
    }

    .view-homepage-refresh .top-footer .wrapper>*:before {
        display: none !important
    }

    .view-homepage-refresh .top-footer .wrapper>*:last-child {
        margin: 0
    }
}

.view-homepage-refresh .section-games .content .message {
    max-width: 480px
}

.view-homepage-refresh .section-games .featured-names {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 25px
}

.view-homepage-refresh .section-games .featured-names a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-size: 18px;
    font-style: italic;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.75px;
    text-align: center;
    display: block;
    padding: 0 10px;
    width: 25%;
    margin-bottom: 15px;
    -webkit-transition: opacity 75ms ease-out;
    transition: opacity 75ms ease-out
}

.view-homepage-refresh .section-games .featured-names a:hover {
    opacity: 80%
}

.view-homepage-refresh .section-games .featured-thumbnails {
    width: calc(100vw + 222px);
    max-width: 2100px;
    height: 196px;
    overflow-y: hidden;
    margin: 0 auto 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px
}

.view-homepage-refresh .section-games .featured-thumbnails a:first-child {
    margin-left: -111px
}

.view-homepage-refresh .section-games .featured-thumbnails a {
    border-radius: 16px;
    border: .5px solid rgba(255,255,255,.2);
    overflow: hidden;
    width: 210px;
    height: 92px;
    background: rgba(255,255,255,.1) center/cover no-repeat;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 210px;
    flex: 0 0 210px;
    -webkit-transition: opacity .15s ease-out;
    transition: opacity .15s ease-out
}

.view-homepage-refresh .section-games .featured-thumbnails a:hover {
    opacity: 80%
}

.view-homepage-refresh .section-games .featured-thumbnails img {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 900px) {
    .view-homepage-refresh .section-games {
        margin-top:10px
    }

    .view-homepage-refresh .section-games h2 {
        margin-bottom: 21px
    }

    .view-homepage-refresh .section-games .featured-names a {
        font-size: 18px;
        line-height: 30px;
        width: 50%
    }
}

@media screen and (max-width: 350px) {
    .view-homepage-refresh .section-games .featured-names a {
        width:100%;
        white-space: normal;
        overflow: visible
    }
}

@media screen and (min-width: 2096px) {
    .view-homepage-refresh .section-games .featured-thumbnails {
        overflow:visible;
        -webkit-transform: translateX(55px);
        -ms-transform: translateX(55px);
        transform: translateX(55px)
    }

    .view-homepage-refresh .section-games .featured-thumbnails a:last-child {
        display: none
    }
}

.view-homepage-refresh .section-maps {
    position: relative
}

.view-homepage-refresh .section-maps .maps-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-height: 1600px;
    background: url("/static/images/views/homepage/maps-bg-7a9c3b767c.jpg") center center/cover no-repeat;
    opacity: 20%
}

.view-homepage-refresh .section-maps .maps-bg::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(13, 15, 18)), color-stop(25%, rgba(13, 15, 18, 0)), color-stop(75%, rgba(13, 15, 18, 0)), to(rgb(13, 15, 18)));
    background: linear-gradient(180deg, rgb(13, 15, 18) 0%, rgba(13, 15, 18, 0) 25%, rgba(13, 15, 18, 0) 75%, rgb(13, 15, 18) 100%)
}

.view-homepage-refresh .section-maps .content {
    z-index: 1
}

.view-homepage-refresh .section-maps .map-screenshot {
    position: relative;
    width: 955px;
    max-width: 100%;
    aspect-ratio: 955/468;
    margin: 0 0 40px;
    padding: 0 var(--screenshot-border)
}

.view-homepage-refresh .section-maps .map-screenshot::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--screenshot-border-radius);
    -webkit-box-shadow: 0 0 0 var(--screenshot-border) rgba(255,255,255,.2);
    box-shadow: 0 0 0 var(--screenshot-border) rgba(255,255,255,.2);
    background: url("/static/images/views/homepage/map-screenshot-c288430be0.webp") top right/auto 100% no-repeat
}

.view-homepage-refresh .section-maps .tile-list {
    margin: 0 0 40px
}

.view-homepage-refresh .section-setup-steps .setup-cards {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.view-homepage-refresh .section-setup-steps .setup-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 40px;
    border-radius: 24px;
    color: rgba(255,255,255,.8);
    position: relative
}

.view-homepage-refresh .section-setup-steps .setup-card::before {
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    content: ""
}

.view-homepage-refresh .section-setup-steps .setup-card .card-content {
    max-width: 380px;
    position: relative;
    z-index: 1
}

.view-homepage-refresh .section-setup-steps .setup-card .icon {
    margin: 0 0 12px
}

.view-homepage-refresh .section-setup-steps .setup-card strong {
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.75px;
    margin: 0 0 12px
}

.view-homepage-refresh .section-setup-steps .setup-card h3 {
    color: #fff;
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    line-height: 40px;
    letter-spacing: -2px;
    margin: 0 0 12px
}

.view-homepage-refresh .section-setup-steps .setup-card p {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.75px;
    margin: 0
}

.view-homepage-refresh .section-setup-steps .setup-card.download {
    background: radial-gradient(100% 100% at 50% 100%, rgba(255, 40, 105, 0.6) 0%, rgba(255, 40, 105, 0) 100%),-webkit-gradient(linear, left bottom, left top, from(rgba(255, 230, 28, 0.03)), to(rgba(255, 230, 28, 0.03))),rgba(255,255,255,.05);
    background: radial-gradient(100% 100% at 50% 100%, rgba(255, 40, 105, 0.6) 0%, rgba(255, 40, 105, 0) 100%),linear-gradient(0deg, rgba(255, 230, 28, 0.03) 0%, rgba(255, 230, 28, 0.03) 100%),rgba(255,255,255,.05)
}

.view-homepage-refresh .section-setup-steps .setup-card.download::before {
    width: 78%;
    height: 100%;
    background: url("/static/images/views/homepage/setup-step-1-bg-22816ec8a8.svg") top right/100% auto no-repeat
}

@media screen and (max-width: 960px) {
    .view-homepage-refresh .section-setup-steps .setup-card.download {
        padding-bottom:156px
    }

    .view-homepage-refresh .section-setup-steps .setup-card.download::before {
        width: 100%;
        height: 156px;
        background: url("/static/images/views/homepage/setup-step-1-moweb-bg-f9de53734c.svg") bottom 16px center/auto no-repeat
    }
}

.view-homepage-refresh .section-setup-steps .setup-card.choose-features {
    background: radial-gradient(100% 100% at 50% 100%, rgba(221, 240, 12, 0.3) 0%, rgba(221, 240, 12, 0) 100%),-webkit-gradient(linear, left bottom, left top, from(rgba(221, 240, 12, 0.03)), to(rgba(221, 240, 12, 0.03))),rgba(255,255,255,.05);
    background: radial-gradient(100% 100% at 50% 100%, rgba(221, 240, 12, 0.3) 0%, rgba(221, 240, 12, 0) 100%),linear-gradient(0deg, rgba(221, 240, 12, 0.03) 0%, rgba(221, 240, 12, 0.03) 100%),rgba(255,255,255,.05)
}

.view-homepage-refresh .section-setup-steps .setup-card.choose-features::before {
    width: 76%;
    height: 100%;
    background: url("/static/images/views/homepage/setup-step-2-bg-bffdaa27c5.png") top 14px right 10px/98% auto no-repeat
}

@media screen and (max-width: 960px) {
    .view-homepage-refresh .section-setup-steps .setup-card.choose-features {
        padding-bottom:156px
    }

    .view-homepage-refresh .section-setup-steps .setup-card.choose-features::before {
        width: 100%;
        height: 156px;
        background: url("/static/images/views/homepage/setup-step-2-moweb-bg-6af04f9f45.svg") bottom 16px center/auto no-repeat
    }
}

.view-homepage-refresh .section-setup-steps .setup-card.play-enhanced {
    background: radial-gradient(100% 100% at 50% 100%, rgba(48, 234, 211, 0.3) 0%, rgba(48, 234, 211, 0) 100%),-webkit-gradient(linear, left bottom, left top, from(rgba(48, 234, 211, 0.03)), to(rgba(48, 234, 211, 0.03))),var(--white-5, rgba(255, 255, 255, 0.05));
    background: radial-gradient(100% 100% at 50% 100%, rgba(48, 234, 211, 0.3) 0%, rgba(48, 234, 211, 0) 100%),linear-gradient(0deg, rgba(48, 234, 211, 0.03) 0%, rgba(48, 234, 211, 0.03) 100%),var(--white-5, rgba(255, 255, 255, 0.05))
}

.view-homepage-refresh .section-setup-steps .setup-card.play-enhanced .bg-image {
    position: absolute;
    z-index: 0;
    width: 590px;
    height: 100%;
    top: 0;
    left: 370px;
    background: url("/static/images/views/homepage/setup-step-3-bg-frame-a4224df957.svg") bottom right/auto auto no-repeat
}

.view-homepage-refresh .section-setup-steps .setup-card.play-enhanced .bg-image::before {
    display: block;
    position: absolute;
    bottom: 48px;
    right: 0;
    content: "";
    width: 480px;
    height: 310px;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    background: url("/static/images/views/homepage/setup-step-3-bg-screenshot-48a1a16566.png") center/cover no-repeat
}

.view-homepage-refresh .section-setup-steps .setup-card.play-enhanced .bg-image::after {
    display: block;
    position: absolute;
    bottom: 254px;
    right: 465px;
    content: "";
    width: 126px;
    height: 57px;
    overflow: hidden;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 154px;
    background: url("/static/images/views/homepage/setup-step-3-bg-hotkey-6d26184f43.svg") center/cover no-repeat
}

@media screen and (max-width: 960px) {
    .view-homepage-refresh .section-setup-steps .setup-card.play-enhanced {
        padding-bottom:226px
    }

    .view-homepage-refresh .section-setup-steps .setup-card.play-enhanced .bg-image {
        width: 280px;
        height: 200px;
        bottom: 0;
        top: auto;
        left: 50%;
        margin-left: -140px;
        background: url("/static/images/views/homepage/setup-step-3-moweb-bg-frame-a5f9f48f87.svg") bottom center/cover no-repeat
    }

    .view-homepage-refresh .section-setup-steps .setup-card.play-enhanced .bg-image::before {
        width: 266px;
        height: 158px;
        margin-left: -133px;
        left: 50%;
        right: auto;
        bottom: 36px;
        border-radius: 7px;
        background: url("/static/images/views/homepage/setup-step-3-moweb-bg-screenshot-21b883cfa8.webp") center bottom 1px/cover no-repeat
    }

    .view-homepage-refresh .section-setup-steps .setup-card.play-enhanced .bg-image::after {
        display: none
    }
}

@media screen and (max-width: 960px) {
    .view-homepage-refresh .section-setup-steps .setup-card {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 16px;
        height: auto
    }

    .view-homepage-refresh .section-setup-steps .setup-card::before {
        bottom: 0;
        top: auto
    }

    .view-homepage-refresh .section-setup-steps .setup-card .card-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 500px
    }

    .view-homepage-refresh .section-setup-steps .setup-card h3 {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -1.5px
    }

    .view-homepage-refresh .section-setup-steps .setup-card p {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.5px
    }
}

.view-homepage-refresh .section-trustpilot h2 {
    max-width: 100%;
    margin: 0 0 60px
}

.view-homepage-refresh .section-trustpilot h2 em {
    color: #8599FF;
    white-space: nowrap
}

.view-homepage-refresh .section-trustpilot h2 img {
    width: 32px;
    height: 42px;
    margin: 0 0 -4px 4px
}

.view-homepage-refresh .section-trustpilot .reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px
}

.view-homepage-refresh .section-trustpilot .reviews .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 20px;
    padding: 32px 48px;
    background: var(--white-5, rgba(255, 255, 255, 0.05));
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: rgba(255,255,255,.6);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-align: center
}

.view-homepage-refresh .section-trustpilot .reviews .review h3 {
    color: #fff;
    font-size: 18px;
    font-style: italic;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.75px;
    margin: 0 0 4px
}

.view-homepage-refresh .section-trustpilot .reviews .review p {
    margin: 0 0 12px 0;
    padding: 0
}

.view-homepage-refresh .section-trustpilot .reviews .review .user {
    font-size: 16px;
    line-height: 16px
}

@media screen and (max-width: 720px) {
    .view-homepage-refresh .section-trustpilot .reviews {
        grid-template-columns:repeat(1, 1fr);
        gap: 8px
    }

    .view-homepage-refresh .section-trustpilot .reviews .review {
        padding: 24px
    }
}

@media screen and (min-width: 721px) {
    .view-homepage-refresh .section-accessibility .tile-list {
        grid-template-columns:repeat(2, 1fr)
    }
}

.view-homepage-refresh .section-faq {
    padding: 0 0 80px
}

.view-homepage-refresh .section-faq h2 {
    width: 30%;
    text-align: left;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.view-homepage-refresh .section-faq .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.view-homepage-refresh .section-faq .tile-list {
    grid-template-columns: repeat(1, 1fr)
}

.view-homepage-refresh .section-faq .tile-list li {
    text-align: left
}

.view-homepage-refresh .section-faq .tile-list h3 {
    margin: 0 0 12px 0
}

.view-homepage-refresh .section-faq .tile-list a {
    color: #fff;
    text-decoration: underline
}

.view-homepage-refresh .section-faq .tile-list a:hover {
    opacity: 80%;
    -webkit-transition: opacity 75ms ease-out;
    transition: opacity 75ms ease-out
}

@media screen and (max-width: 720px) {
    .view-homepage-refresh .section-faq h2 {
        width:100%;
        text-align: center
    }

    .view-homepage-refresh .section-faq .content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .view-homepage-refresh .section-faq .tile-list li {
        text-align: center
    }
}

.app-layout.homepage {
    position: relative
}

body.homepage:not(.scrolled) .app-header .download {
    border-color: #8599FF;
    background: rgba(0,0,0,0);
    color: #fff
}

body.homepage:not(.scrolled) .app-header .download:hover:not(:disabled) {
    background-color: #13cfff
}

body.os-windows .section-top .actions.nonwindows {
    display: none
}

body:not(.os-windows) .section-top .actions {
    display: none
}

body:not(.os-windows) .section-top .actions.nonwindows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.view-horizon {
    margin-top: 100px;
    background: #fff
}

.view-horizon *,.view-horizon button,.view-horizon input {
    font-family: Gotham
}

.view-horizon section.horizon .download-button {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    display: block;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
    text-decoration: none;
    line-height: 80px;
    height: 80px;
    background: #63d000;
    border: 0;
    -webkit-box-shadow: 0 5px 0 #2b9002;
    box-shadow: 0 5px 0 #2b9002;
    border-radius: 3px;
    text-align: center;
    -webkit-transition: background .15s,-webkit-transform .15s,-webkit-box-shadow .25s;
    transition: background .15s,-webkit-transform .15s,-webkit-box-shadow .25s;
    transition: transform .15s,box-shadow .25s,background .15s;
    transition: transform .15s,box-shadow .25s,background .15s,-webkit-transform .15s,-webkit-box-shadow .25s;
    display: inline-block;
    background-image: url(/static/images/views/horizon/download-icon-dd1e4eff43.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 27px 23px !important;
    margin-top: 23px;
    font-weight: bold;
    font-size: 22.3px;
    letter-spacing: 3.1px;
    text-transform: uppercase;
    padding: 0 27px 0 107px
}

.view-horizon section.horizon .download-button:disabled {
    opacity: .5
}

.view-horizon section.horizon .download-button:disabled,.view-horizon section.horizon .download-button:disabled * {
    cursor: default
}

.view-horizon section.horizon .download-button:hover:not([disabled]) {
    background: #7bff04;
    -webkit-box-shadow: 0 5px 0 #3ac203;
    box-shadow: 0 5px 0 #3ac203
}

.view-horizon section.horizon .download-button:active:not([disabled]) {
    -webkit-box-shadow: 0 1px 0 #3ac203;
    box-shadow: 0 1px 0 #3ac203;
    -webkit-transform: translate(0, 4px);
    -ms-transform: translate(0, 4px);
    transform: translate(0, 4px)
}

.view-horizon section.horizon .download-button:before {
    content: "";
    width: 1px;
    height: 100px;
    background: rgba(0,0,0,.3);
    position: absolute;
    left: 80px;
    top: 0
}

.view-horizon section.horizon header {
    background: #142328;
    text-align: center;
    padding: 140px 20px 89px 20px
}

.view-horizon section.horizon header img {
    width: 144px;
    height: 169px
}

.view-horizon section.horizon header h1 {
    padding: 37px 0 0 0;
    font-family: "Gotham Book";
    font-size: 30px;
    color: #fff;
    letter-spacing: .25px;
    display: block;
    max-width: 520px;
    margin: 0 auto
}

.view-horizon section.horizon h2 em {
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: .25px;
    color: #169400;
    background: -webkit-linear-gradient(135deg, #169400, #79ee00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0)
}

.view-horizon section.horizon section.points {
    text-align: center;
    padding: 89px 20px 45px 20px;
    background: #fff
}

.view-horizon section.horizon section.points:after {
    content: "";
    display: block;
    clear: both
}

.view-horizon section.horizon section.points h2 {
    font-weight: 500;
    font-size: 40px;
    color: #152c34;
    letter-spacing: .25px;
    display: block;
    margin: 0 auto 84px auto
}

.view-horizon section.horizon section.points .points-wrapper {
    max-width: 1170px;
    margin: 0 auto
}

.view-horizon section.horizon section.points .point {
    text-align: center;
    padding: 0 45px 45px 45px;
    width: 33.33%;
    height: 255px;
    float: left
}

.view-horizon section.horizon section.points .point img {
    display: block;
    margin: 0 auto 14px auto
}

.view-horizon section.horizon section.points .point b {
    display: block;
    font-weight: 500;
    font-size: 20px;
    color: #152c34;
    letter-spacing: .25px;
    margin-bottom: 14px
}

.view-horizon section.horizon section.points .point p {
    display: block;
    font-family: "Gotham Book";
    font-size: 14px;
    color: #295666;
    letter-spacing: .28px;
    line-height: 24px
}

.view-horizon section.horizon section.points .point a,.view-horizon section.horizon section.points .point a:visited {
    color: #63d000
}

.view-horizon section.horizon section.get-started {
    margin: 89px 0;
    background: #e9eeef
}

.view-horizon section.horizon section.get-started .get-started-wrapper {
    display: table;
    max-width: 1440px;
    margin: 0 auto
}

.view-horizon section.horizon section.get-started .screenshot {
    display: table-cell;
    width: 50%
}

.view-horizon section.horizon section.get-started .screenshot img {
    width: 100%;
    background: #fff;
    border-top-right-radius: 12.76px;
    border-bottom-right-radius: 12.76px;
    -webkit-box-shadow: 0 3px 11px 0 rgba(0,0,0,.5);
    box-shadow: 0 3px 11px 0 rgba(0,0,0,.5)
}

.view-horizon section.horizon section.get-started .info {
    display: table-cell;
    width: 50%;
    vertical-align: middle
}

.view-horizon section.horizon section.get-started .info-wrapper {
    width: 395px;
    margin: 0 auto
}

.view-horizon section.horizon section.get-started h2 {
    font-weight: 500;
    font-size: 48px;
    color: #295666;
    letter-spacing: .35px;
    margin: 0;
    padding: 36px 0
}

.view-horizon section.horizon section.list {
    padding: 89px 20px;
    background: #fff
}

.view-horizon section.horizon section.list .list-wrapper {
    max-width: 910px;
    margin: 0 auto
}

.view-horizon section.horizon section.list h2 {
    font-weight: 500;
    font-size: 30px;
    color: #152c34;
    letter-spacing: .25px;
    text-align: center
}

.view-horizon section.horizon section.list h2 strong {
    font-weight: 900
}

.view-horizon section.horizon section.list ul {
    list-style: none;
    margin: 0;
    padding: 48px;
    -webkit-box-shadow: 0 2px 9px 0 rgba(0,0,0,.26);
    box-shadow: 0 2px 9px 0 rgba(0,0,0,.26)
}

.view-horizon section.horizon section.list ul li {
    font-family: "Gotham Book";
    font-size: 18px;
    color: #152c34;
    letter-spacing: .26px;
    line-height: 24px;
    padding: 5px 0 40px 70px;
    background: url(/static/images/views/horizon/checkmark-53447124db.svg) 0 0 no-repeat
}

.view-horizon section.horizon section.list ul li:last-child {
    padding-bottom: 0
}

@media(min-width: 1440px) {
    .view-horizon section.horizon section.get-started .screenshot img {
        border-radius:12.76px
    }
}

@media(max-width: 930px) {
    .view-horizon section.horizon section.points .point {
        width:50%
    }

    .view-horizon section.horizon section.get-started .info-wrapper {
        width: 280px
    }

    .view-horizon section.horizon section.get-started h2 {
        font-size: 32px;
        padding: 20px 0
    }

    .view-horizon section.horizon section.get-started .download-button {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        letter-spacing: 2.5px;
        padding: 0 10px 0 65px;
        background-size: 30px 30px !important;
        background-position: 10px 10px !important
    }

    .view-horizon section.horizon section.get-started .download-button:before {
        left: 50px
    }
}

@media(max-width: 640px) {
    .view-horizon section.horizon section.points {
        padding-top:20px;
        padding-bottom: 0
    }

    .view-horizon section.horizon section.points h2 {
        margin-bottom: 45px
    }

    .view-horizon section.horizon section.points .point {
        width: 100%;
        height: auto;
        padding-bottom: 20px
    }

    .view-horizon section.horizon section.get-started {
        display: block;
        padding: 20px 20px 45px 20px;
        margin: 0
    }

    .view-horizon section.horizon section.get-started .screenshot,.view-horizon section.horizon section.get-started .info {
        display: block;
        width: 100%
    }

    .view-horizon section.horizon section.get-started .screenshot {
        padding: 20px
    }

    .view-horizon section.horizon section.get-started .screenshot img {
        border-radius: 12.76px
    }

    .view-horizon section.horizon section.get-started .info-wrapper {
        width: 100%;
        margin-top: 20px;
        text-align: center
    }

    .view-horizon section.horizon section.list {
        padding: 20px
    }

    .view-horizon section.horizon section.list h2 {
        margin: 0 0 20px 0
    }

    .view-horizon section.horizon header {
        padding: 110px 20px 35px 20px
    }
}

@media(max-width: 450px) {
    .view-horizon section.horizon header .download-button {
        height:50px;
        line-height: 50px;
        font-size: 18px;
        letter-spacing: 2.5px;
        padding: 0 10px 0 65px;
        background-size: 30px 30px !important;
        background-position: 10px 10px !important
    }

    .view-horizon section.horizon header .download-button:before {
        left: 50px
    }

    .view-horizon section.horizon section.list ul {
        padding: 20px
    }

    .view-horizon section.horizon section.list ul li {
        padding-left: 50px
    }
}

@-webkit-keyframes horizon-bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes horizon-bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.games-view section.top .view-title {
    margin-bottom: 27px
}

.games-view section.top h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    margin: 0 0 30px 0
}

.games-view section.top h2 strong {
    font-weight: 700;
    color: #8599FF
}

@media(max-width: 900px) {
    .games-view section.top section.top {
        margin-bottom:15px
    }

    .games-view section.top h2 {
        font-size: 20px;
        line-height: 34px
    }
}

.games-view .disabled {
    display: none
}

.games-view .featured-thumbnails-outer {
    overflow: hidden;
    margin: -90px 0 -120px 0;
    height: 400px
}

.games-view .featured-thumbnails-wrapper {
    position: relative;
    top: 100px;
    height: 180px
}

.games-view .featured-thumbnails-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: games-thumbnails-scroll 80s infinite linear;
    animation: games-thumbnails-scroll 80s infinite linear;
    will-change: translate
}

.games-view .featured-thumbnails-inner.paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.games-view .featured-thumbnails {
    position: absolute;
    left: 50%;
    top: 50%;
    padding-top: 30px
}

.games-view .featured-thumbnails a {
    border-radius: 10px;
    overflow: hidden;
    width: 258px;
    height: 120px;
    background: rgba(255,255,255,.1) center/cover no-repeat;
    position: relative;
    margin-left: 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 258px;
    flex: 0 0 258px;
    -webkit-transition: -webkit-box-shadow .15s;
    transition: -webkit-box-shadow .15s;
    transition: box-shadow .15s;
    transition: box-shadow .15s, -webkit-box-shadow .15s
}

.games-view .featured-thumbnails a:nth-child(1) {
    margin-top: -10px
}

.games-view .featured-thumbnails a:nth-child(2) {
    margin-top: -20px
}

.games-view .featured-thumbnails a:nth-child(3) {
    margin-top: -30px
}

.games-view .featured-thumbnails a:nth-child(4) {
    margin-top: -40px
}

.games-view .featured-thumbnails a:nth-child(5) {
    margin-top: -50px
}

.games-view .featured-thumbnails a:nth-child(6) {
    margin-top: -60px
}

.games-view .featured-thumbnails a:nth-child(7) {
    margin-top: -70px
}

.games-view .featured-thumbnails a:nth-child(8) {
    margin-top: -80px
}

.games-view .featured-thumbnails a:nth-child(9) {
    margin-top: -90px
}

.games-view .featured-thumbnails a:nth-child(10) {
    margin-top: -100px
}

.games-view .featured-thumbnails a:nth-child(11) {
    margin-top: -110px
}

.games-view .featured-thumbnails a:nth-child(12) {
    margin-top: -120px
}

.games-view .featured-thumbnails a:nth-child(13) {
    margin-top: -130px
}

.games-view .featured-thumbnails a:nth-child(14) {
    margin-top: -140px
}

.games-view .featured-thumbnails a:nth-child(15) {
    margin-top: -150px
}

.games-view .featured-thumbnails a:nth-child(16) {
    margin-top: -160px
}

.games-view .featured-thumbnails a:nth-child(17) {
    margin-top: -170px
}

.games-view .featured-thumbnails a:nth-child(18) {
    margin-top: -180px
}

.games-view .featured-thumbnails a:nth-child(19) {
    margin-top: -190px
}

.games-view .featured-thumbnails a:nth-child(20) {
    margin-top: -200px
}

.games-view .featured-thumbnails a:hover {
    -webkit-box-shadow: inset 0 0 0 1px #8599FF;
    box-shadow: inset 0 0 0 1px #8599FF
}

.games-view .featured-thumbnails img {
    width: 100%;
    height: 100%
}

.games-view .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0 60px 0
}

.games-view .search-form .input-wrapper {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 595px
}

.games-view .search-form .input-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 43px;
    height: 43px;
    background: url("../static/images/icons/search-icon.svg") center no-repeat;
    opacity: .5;
    pointer-events: none
}

.games-view .search-form input {
    height: 43px;
    background: #15161C;
    border: 1px solid #8599FF;
    padding: 0 14px;
    border-radius: 5px;
    caret-color: #8599FF;
    cursor: text;
    -webkit-appearance: none;
    border-radius: 99px;
    padding-left: 43px;
    width: 100%
}

.games-view .search-form input,.games-view .search-form input::-webkit-input-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.games-view .search-form input,.games-view .search-form input::-moz-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.games-view .search-form input,.games-view .search-form input::-ms-input-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.games-view .search-form input,.games-view .search-form input::placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.games-view .search-form input::-webkit-search-cancel-button {
    width: 43px;
    height: 43px;
    position: absolute;
    right: 0;
    top: 0;
    background: url("/static/images/icons/close-27dac865aa.svg") center no-repeat;
    -webkit-appearance: none;
    cursor: pointer
}

.games-view .search-form input:focus {
    background: #000
}

.games-view .search-form input:focus,.games-view .search-form input:focus::-webkit-input-placeholder {
    color: #fff
}

.games-view .search-form input:focus,.games-view .search-form input:focus::-moz-placeholder {
    color: #fff
}

.games-view .search-form input:focus,.games-view .search-form input:focus::-ms-input-placeholder {
    color: #fff
}

.games-view .search-form input:focus,.games-view .search-form input:focus::placeholder {
    color: #fff
}

.games-view .search-form button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #8599FF;
    background: rgba(0,0,0,0);
    color: #fff;
    margin-left: 10px
}

.games-view .search-form button,.games-view .search-form button * {
    cursor: pointer
}

.games-view .search-form button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.games-view .search-form button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.games-view .search-form button>*+* {
    margin-left: 9px
}

.games-view .search-form button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.games-view .search-form button:hover:not(:disabled) {
    background-color: #8599FF
}

.games-view .search-form button:hover:not(:disabled) {
    color: #0B0C13
}

@media(max-width: 900px) {
    .games-view .search-form .input-wrapper {
        max-width:100%
    }
}

@media(max-width: 900px) {
    .games-view .search-form {
        margin-bottom:82px
    }
}

.games-view .sort-options {
    padding: 5px;
    border-radius: 10px;
    background: #15161C;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    left: 30px;
    top: -25px
}

.games-view .sort-options a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 5px;
    color: rgba(255,255,255,.8);
    border: 0;
    text-decoration: none;
    padding: 4px 12px
}

.games-view .sort-options a.current {
    background: #fff;
    color: #15161C
}

.games-view .sort-options a:not(.current):hover {
    background: rgba(255,255,255,.05)
}

.games-view .sort-options a+a {
    margin-left: 5px
}

@media(max-width: 350px) {
    .games-view .sort-options a {
        font-size:14px;
        line-height: 22px
    }
}

@media(max-width: 900px) {
    .games-view .sort-options {
        top:-62px
    }
}

.games-view .search-results {
    -webkit-transform: translateZ();
    transform: translateZ()
}

.games-view .search-results .results-list {
    padding: 10px;
    border-radius: 10px;
    background: url("/static/images/views/games/results-gradient-e9414105e7.svg") top left/100% repeat-y;
    margin-left: -10px;
    margin-right: -10px
}

.games-view .search-results .no-results-message {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
    padding: 15px
}

.games-view .search-results .alpha-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
    margin-top: -10px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: sticky;
    top: 99px;
    background: #11171d url("/static/images/views/games/results-gradient-e9414105e7.svg") top left/100% repeat-y;
    z-index: 1
}

.games-view .search-results .alpha-nav a {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.45);
    text-transform: uppercase
}

.games-view .search-results .alpha-nav a:hover {
    color: #fff
}

.games-view .search-results header {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: rgba(255,255,255,.45);
    margin-bottom: 15px
}

.games-view section.bottom {
    position: relative
}

@media(max-width: 900px) {
    .games-view .featured-thumbnails-outer {
        height:134px;
        margin: -30px 0
    }

    .games-view .featured-thumbnails-wrapper {
        height: 74px;
        top: 36px
    }

    .games-view .featured-thumbnails-inner {
        -webkit-animation-name: games-thumbnails-mobile-scroll;
        animation-name: games-thumbnails-mobile-scroll
    }

    .games-view .featured-thumbnails a {
        width: 129px;
        height: 60px;
        margin-left: 20px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 129px;
        flex: 0 0 129px
    }

    .games-view .featured-thumbnails a:nth-child(1) {
        margin-top: -7px
    }

    .games-view .featured-thumbnails a:nth-child(2) {
        margin-top: -14px
    }

    .games-view .featured-thumbnails a:nth-child(3) {
        margin-top: -21px
    }

    .games-view .featured-thumbnails a:nth-child(4) {
        margin-top: -28px
    }

    .games-view .featured-thumbnails a:nth-child(5) {
        margin-top: -35px
    }

    .games-view .featured-thumbnails a:nth-child(6) {
        margin-top: -42px
    }

    .games-view .featured-thumbnails a:nth-child(7) {
        margin-top: -49px
    }

    .games-view .featured-thumbnails a:nth-child(8) {
        margin-top: -56px
    }

    .games-view .featured-thumbnails a:nth-child(9) {
        margin-top: -63px
    }

    .games-view .featured-thumbnails a:nth-child(10) {
        margin-top: -70px
    }

    .games-view .featured-thumbnails a:nth-child(11) {
        margin-top: -77px
    }

    .games-view .featured-thumbnails a:nth-child(12) {
        margin-top: -84px
    }

    .games-view .featured-thumbnails a:nth-child(13) {
        margin-top: -91px
    }

    .games-view .featured-thumbnails a:nth-child(14) {
        margin-top: -98px
    }

    .games-view .featured-thumbnails a:nth-child(15) {
        margin-top: -105px
    }

    .games-view .featured-thumbnails a:nth-child(16) {
        margin-top: -112px
    }

    .games-view .featured-thumbnails a:nth-child(17) {
        margin-top: -119px
    }

    .games-view .featured-thumbnails a:nth-child(18) {
        margin-top: -126px
    }

    .games-view .featured-thumbnails a:nth-child(19) {
        margin-top: -133px
    }

    .games-view .featured-thumbnails a:nth-child(20) {
        margin-top: -140px
    }

    .games-view .search-results header {
        display: none !important
    }

    .games-view .search-results .alpha-nav {
        display: none
    }

    .games-view .search-results .results-list {
        margin-left: -20px;
        margin-right: -20px
    }
}

@keyframes games-thumbnails-scroll {
    from {
        -webkit-transform: translate3d(-25%, -50px, 0);
        transform: translate3d(-25%, -50px, 0)
    }

    to {
        -webkit-transform: translate3d(-75%, 50px, 0);
        transform: translate3d(-75%, 50px, 0)
    }
}

@keyframes games-thumbnails-mobile-scroll {
    from {
        -webkit-transform: translate3d(-25%, -35px, 0);
        transform: translate3d(-25%, -35px, 0)
    }

    to {
        -webkit-transform: translate3d(-75%, 35px, 0);
        transform: translate3d(-75%, 35px, 0)
    }
}

.maps-view section.top .view-title {
    margin-bottom: 27px
}

.maps-view section.top h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.6);
    margin: 0 0 30px 0
}

.maps-view section.top h2 strong {
    font-weight: 700;
    color: #8599FF
}

@media(max-width: 900px) {
    .maps-view section.top section.top {
        margin-bottom:15px
    }

    .maps-view section.top h2 {
        font-size: 20px;
        line-height: 34px
    }
}

.maps-view section.top .view-header {
    margin-bottom: 0 !important
}

.maps-view section.bottom {
    position: relative
}

.maps-view .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 30px
}

.maps-view .search-form .input-wrapper {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 595px
}

.maps-view .search-form .input-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 43px;
    height: 43px;
    background: url("/static/images/icons/search-icon.svg") center no-repeat;
    opacity: .5;
    pointer-events: none
}

.maps-view .search-form input {
    height: 43px;
    background: #0B0C13;
    border: 1px solid #0B0C13;
    padding: 0 14px;
    border-radius: 5px;
    caret-color: #8599FF;
    cursor: text;
    -webkit-appearance: none;
    border-radius: 99px;
    padding-left: 43px;
    width: 100%
}

.maps-view .search-form input,.maps-view .search-form input::-webkit-input-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.maps-view .search-form input,.maps-view .search-form input::-moz-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.maps-view .search-form input,.maps-view .search-form input::-ms-input-placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.maps-view .search-form input,.maps-view .search-form input::placeholder {
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    line-height: 43px
}

.maps-view .search-form input::-webkit-search-cancel-button {
    width: 43px;
    height: 43px;
    position: absolute;
    right: 0;
    top: 0;
    background: url("/static/images/icons/close-27dac865aa.svg") center no-repeat;
    -webkit-appearance: none;
    cursor: pointer
}

.maps-view .search-form input:focus {
    background: #000
}

.maps-view .search-form input:focus,.maps-view .search-form input:focus::-webkit-input-placeholder {
    color: #fff
}

.maps-view .search-form input:focus,.maps-view .search-form input:focus::-moz-placeholder {
    color: #fff
}

.maps-view .search-form input:focus,.maps-view .search-form input:focus::-ms-input-placeholder {
    color: #fff
}

.maps-view .search-form input:focus,.maps-view .search-form input:focus::placeholder {
    color: #fff
}

.maps-view .search-form button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #8599FF;
    background: rgba(0,0,0,0);
    color: #fff;
    margin-left: 10px
}

.maps-view .search-form button,.maps-view .search-form button * {
    cursor: pointer
}

.maps-view .search-form button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.maps-view .search-form button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.maps-view .search-form button>*+* {
    margin-left: 9px
}

.maps-view .search-form button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.maps-view .search-form button:hover:not(:disabled) {
    background-color: #8599FF
}

.maps-view .search-form button:hover:not(:disabled) {
    color: #0B0C13
}

@media(max-width: 900px) {
    .maps-view .search-form .input-wrapper {
        max-width:100%
    }
}

@media(max-width: 480px) {
    .maps-view .search-form input,.maps-view .search-form input::-webkit-input-placeholder {
        font-size:14px !important
    }

    .maps-view .search-form input,.maps-view .search-form input::-moz-placeholder {
        font-size: 14px !important
    }

    .maps-view .search-form input,.maps-view .search-form input::-ms-input-placeholder {
        font-size: 14px !important
    }

    .maps-view .search-form input,.maps-view .search-form input::placeholder {
        font-size: 14px !important
    }
}

.maps-view .sort-options {
    padding: 5px;
    border-radius: 10px;
    background: #0B0C13;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 30px
}

.maps-view .sort-options a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 5px;
    color: rgba(255,255,255,.8);
    border: 0;
    text-decoration: none;
    padding: 4px 12px
}

.maps-view .sort-options a.current {
    background: #fff;
    color: #0B0C13
}

.maps-view .sort-options a:not(.current):hover {
    background: rgba(255,255,255,.05)
}

.maps-view .sort-options a+a {
    margin-left: 5px
}

@media(max-width: 350px) {
    .maps-view .sort-options a {
        font-size:14px;
        line-height: 22px
    }
}

.maps-view section.maps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px
}

@media(max-width: 820px) {
    .maps-view section.maps .x-title-map-tile {
        -ms-flex-preferred-size:100%;
        flex-basis: 100%;
        max-width: 100%
    }
}

@media(max-width: 480px) {
    .maps-view section.maps {
        margin-left:-22px;
        margin-right: -22px
    }
}

.maps-view .no-results-message {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #fff
}

.remote-view .buttons {
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -15px 0 15px -15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.remote-view .buttons .button {
    height: 40px;
    margin-top: 15px;
    margin-left: 15px;
    display: none
}

.remote-view .buttons .button.show {
    display: inline-block
}

.remote-view #app-store-button img {
    height: 40px
}

.remote-view #play-store-button {
    width: 120px
}

.remote-view #play-store-button img {
    margin: -8%;
    width: 128%;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor
}

.remote-view .tile {
    margin-top: 15px
}

.tile {
    background: #000;
    border-radius: 20px;
    padding: 43px 50px;
    overflow: hidden
}

.tile.purple {
    background: linear-gradient(to top, #6844ff 0%, #000 380px)
}

.tile.fade {
    background: -webkit-gradient(linear, left top, left bottom, from(#0B0C13), to(#11171d));
    background: linear-gradient(180deg, #0B0C13 0%, #11171d 100%)
}

.tile.fade-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.55)), to(rgba(17, 23, 29, 0.55)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.55) 0%, rgba(17, 23, 29, 0.55) 100%)
}

.tile.fade-blue h2 em,.tile.fade-blue h3 em,.tile.fade-blue .tile-title em {
    color: #13cfff
}

.tile.fade-blue h2 a,.tile.fade-blue h3 a,.tile.fade-blue .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-blue h2 a:before,.tile.fade-blue h3 a:before,.tile.fade-blue .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-blue h2 a:hover:not(:disabled):before,.tile.fade-blue h3 a:hover:not(:disabled):before,.tile.fade-blue .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(19,207,255,.5)
}

.tile.fade-green {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.5)), to(rgba(17, 23, 29, 0.5)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.5) 0%, rgba(17, 23, 29, 0.5) 100%)
}

.tile.fade-green h2 em,.tile.fade-green h3 em,.tile.fade-green .tile-title em {
    color: #0bf2f6
}

.tile.fade-green h2 a,.tile.fade-green h3 a,.tile.fade-green .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-green h2 a:before,.tile.fade-green h3 a:before,.tile.fade-green .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(11,242,246,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-green h2 a:hover:not(:disabled):before,.tile.fade-green h3 a:hover:not(:disabled):before,.tile.fade-green .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(11,242,246,.5)
}

.tile.no-background {
    padding: 0;
    background: rgba(0,0,0,0);
    border-radius: 0
}

.tile.no-bottom-padding {
    padding-bottom: 0
}

.tile h2,.tile h3,.tile .tile-title {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px
}

.tile h2 em,.tile h3 em,.tile .tile-title em {
    font-style: normal
}

.tile h2.subdued,.tile h3.subdued,.tile .tile-title.subdued {
    color: rgba(255,255,255,.4)
}

.tile h2.with-icon,.tile h3.with-icon,.tile .tile-title.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.tile h2.with-icon img,.tile h3.with-icon img,.tile .tile-title.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .tile h2,.tile h3,.tile .tile-title {
        font-size:24px;
        line-height: 34px
    }
}

.tile p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.5)
}

.tile p a:not(.no-link-hover) {
    position: relative;
    z-index: 0;
    color: #fff;
    white-space: nowrap
}

.tile p a:not(.no-link-hover):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile p a:not(.no-link-hover):hover:not(:disabled):before {
    height: calc(100% - 1px);
    background: rgba(19,207,255,.5)
}

.tile p em {
    font-style: normal;
    color: #fff
}

@media(max-width: 900px) {
    .tile {
        padding:27px 38px
    }

    .tile p {
        font-size: 16px;
        line-height: 24px
    }
}

.x-other-supported-games>h3 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px
}

.x-other-supported-games>h3 em {
    font-style: normal
}

.x-other-supported-games>h3.subdued {
    color: rgba(255,255,255,.4)
}

.x-other-supported-games>h3.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.x-other-supported-games>h3.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .x-other-supported-games>h3 {
        font-size:24px;
        line-height: 34px
    }
}

.x-other-supported-games>h3>span {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.x-other-supported-games>h3 a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.x-other-supported-games .all-games-desktop,.x-other-supported-games .all-games-mobile {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff
}

.x-other-supported-games .all-games-desktop,.x-other-supported-games .all-games-desktop *,.x-other-supported-games .all-games-mobile,.x-other-supported-games .all-games-mobile * {
    cursor: pointer
}

.x-other-supported-games .all-games-desktop svg *,.x-other-supported-games .all-games-mobile svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.x-other-supported-games .all-games-desktop:disabled,.x-other-supported-games .all-games-mobile:disabled {
    opacity: .4;
    cursor: not-allowed
}

.x-other-supported-games .all-games-desktop>*+*,.x-other-supported-games .all-games-mobile>*+* {
    margin-left: 9px
}

.x-other-supported-games .all-games-desktop i,.x-other-supported-games .all-games-mobile i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.x-other-supported-games .all-games-desktop:hover:not(:disabled),.x-other-supported-games .all-games-mobile:hover:not(:disabled) {
    background-color: #13cfff
}

.x-other-supported-games .all-games-mobile {
    display: none;
    margin-top: 16px
}

@media(max-width: 800px) {
    .x-other-supported-games .all-games-desktop {
        display:none
    }

    .x-other-supported-games .all-games-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.x-other-supported-games>.tile {
    padding: 10px
}

.x-other-supported-games .x-title-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px 0 0 -10px
}

.x-other-supported-games .x-title-list .game-result {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33% - 10px);
    flex: 0 0 calc(33.33% - 10px);
    margin: 10px 0 0 10px
}

@media(max-width: 1200px) {
    .x-other-supported-games .x-title-list .game-result {
        -ms-flex-preferred-size:calc(50% - 10px);
        flex-basis: calc(50% - 10px)
    }
}

@media(max-width: 640px) {
    .x-other-supported-games .x-title-list {
        margin-left:0
    }

    .x-other-supported-games .x-title-list .game-result {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-left: 0
    }
}

.title-maps-view .maps>h3 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px
}

.title-maps-view .maps>h3 em {
    font-style: normal
}

.title-maps-view .maps>h3.subdued {
    color: rgba(255,255,255,.4)
}

.title-maps-view .maps>h3.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title-maps-view .maps>h3.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .title-maps-view .maps>h3 {
        font-size:24px;
        line-height: 34px
    }
}

.title-maps-view .maps>h3>span {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.title-maps-view .maps>h3 a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.title-maps-view .maps .all-games-desktop,.title-maps-view .maps .all-games-mobile {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff
}

.title-maps-view .maps .all-games-desktop,.title-maps-view .maps .all-games-desktop *,.title-maps-view .maps .all-games-mobile,.title-maps-view .maps .all-games-mobile * {
    cursor: pointer
}

.title-maps-view .maps .all-games-desktop svg *,.title-maps-view .maps .all-games-mobile svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.title-maps-view .maps .all-games-desktop:disabled,.title-maps-view .maps .all-games-mobile:disabled {
    opacity: .4;
    cursor: not-allowed
}

.title-maps-view .maps .all-games-desktop>*+*,.title-maps-view .maps .all-games-mobile>*+* {
    margin-left: 9px
}

.title-maps-view .maps .all-games-desktop i,.title-maps-view .maps .all-games-mobile i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.title-maps-view .maps .all-games-desktop:hover:not(:disabled),.title-maps-view .maps .all-games-mobile:hover:not(:disabled) {
    background-color: #13cfff
}

.title-maps-view .maps .all-games-mobile {
    display: none;
    margin-top: 16px
}

@media(max-width: 800px) {
    .title-maps-view .maps .all-games-desktop {
        display:none
    }

    .title-maps-view .maps .all-games-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.title-maps-view .maps-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 28px
}

.title-maps-view .maps-list .x-map-tile {
    -ms-flex-preferred-size: calc((100% - 28px * 3)/4);
    flex-basis: calc((100% - 28px * 3)/4)
}

@media(max-width: 1200px) {
    .title-maps-view .maps-list .x-map-tile {
        -ms-flex-preferred-size:calc((100% - 28px * 2)/3);
        flex-basis: calc((100% - 28px * 2)/3)
    }
}

@media(max-width: 900px) {
    .title-maps-view .maps-list .x-map-tile {
        -ms-flex-preferred-size:calc((100% - 28px)/2);
        flex-basis: calc((100% - 28px)/2)
    }
}

@media(max-width: 640px) {
    .title-maps-view .maps-list .x-map-tile {
        -ms-flex-preferred-size:100%;
        flex-basis: 100%;
        max-width: 100%
    }
}

@media(max-width: 480px) {
    .title-maps-view .maps-list {
        margin-left:-22px;
        margin-right: -22px
    }
}

.title-maps-view .maps+.x-other-supported-games {
    margin-top: 50px
}

.title-maps-view .download-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    margin: 25px 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px
}

.title-maps-view .download-wrapper .meta {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255,255,255,.5);
    white-space: nowrap
}

.title-maps-view .download-wrapper .meta strong {
    font-weight: normal;
    color: #8599FF
}

.title-maps-view .download-wrapper .button {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    background: #8599FF;
    color: #0B0C13
}

.title-maps-view .download-wrapper .button,.title-maps-view .download-wrapper .button * {
    cursor: pointer
}

.title-maps-view .download-wrapper .button svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.title-maps-view .download-wrapper .button:disabled {
    opacity: .4;
    cursor: not-allowed
}

.title-maps-view .download-wrapper .button>*+* {
    margin-left: 9px
}

.title-maps-view .download-wrapper .button i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.title-maps-view .download-wrapper .button svg * {
    fill: #0B0C13
}

.title-maps-view .download-wrapper .button:not(:disabled) {
    -webkit-filter: brightness(1.1);
    filter: brightness(1.1);
    -webkit-box-shadow: 0 0 15px rgba(172,255,53,.1);
    box-shadow: 0 0 15px rgba(172,255,53,.1)
}

.title-maps-view .download-wrapper .button img {
    width: 18px;
    height: 18px
}

.title-maps-view .download-wrapper .button+.meta {
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 20px
}

@media(max-width: 1280px) {
    .title-maps-view .download-wrapper {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .title-maps-view .download-wrapper .button+.meta {
        border: none;
        padding-left: 0
    }
}

body:not(.os-windows) .title-maps-view .download-wrapper {
    display: none
}

.tile {
    background: #000;
    border-radius: 20px;
    padding: 43px 50px;
    overflow: hidden
}

.tile.purple {
    background: linear-gradient(to top, #6844ff 0%, #000 380px)
}

.tile.fade {
    background: -webkit-gradient(linear, left top, left bottom, from(#0B0C13), to(#11171d));
    background: linear-gradient(180deg, #0B0C13 0%, #11171d 100%)
}

.tile.fade-blue {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.55)), to(rgba(17, 23, 29, 0.55)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.55) 0%, rgba(17, 23, 29, 0.55) 100%)
}

.tile.fade-blue h2 em,.tile.fade-blue h3 em,.tile.fade-blue .tile-title em {
    color: #13cfff
}

.tile.fade-blue h2 a,.tile.fade-blue h3 a,.tile.fade-blue .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-blue h2 a:before,.tile.fade-blue h3 a:before,.tile.fade-blue .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-blue h2 a:hover:not(:disabled):before,.tile.fade-blue h3 a:hover:not(:disabled):before,.tile.fade-blue .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(19,207,255,.5)
}

.tile.fade-green {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 207, 255, 0.5)), to(rgba(17, 23, 29, 0.5)));
    background: linear-gradient(180deg, rgba(19, 207, 255, 0.5) 0%, rgba(17, 23, 29, 0.5) 100%)
}

.tile.fade-green h2 em,.tile.fade-green h3 em,.tile.fade-green .tile-title em {
    color: #0bf2f6
}

.tile.fade-green h2 a,.tile.fade-green h3 a,.tile.fade-green .tile-title a {
    position: relative;
    z-index: 0;
    color: #fff;
    display: inline-block
}

.tile.fade-green h2 a:before,.tile.fade-green h3 a:before,.tile.fade-green .tile-title a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 3px;
    background: rgba(11,242,246,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile.fade-green h2 a:hover:not(:disabled):before,.tile.fade-green h3 a:hover:not(:disabled):before,.tile.fade-green .tile-title a:hover:not(:disabled):before {
    height: calc(100% - 2px);
    background: rgba(11,242,246,.5)
}

.tile.no-background {
    padding: 0;
    background: rgba(0,0,0,0);
    border-radius: 0
}

.tile.no-bottom-padding {
    padding-bottom: 0
}

.tile h2,.tile h3,.tile .tile-title {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px
}

.tile h2 em,.tile h3 em,.tile .tile-title em {
    font-style: normal
}

.tile h2.subdued,.tile h3.subdued,.tile .tile-title.subdued {
    color: rgba(255,255,255,.4)
}

.tile h2.with-icon,.tile h3.with-icon,.tile .tile-title.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.tile h2.with-icon img,.tile h3.with-icon img,.tile .tile-title.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .tile h2,.tile h3,.tile .tile-title {
        font-size:24px;
        line-height: 34px
    }
}

.tile p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,.5)
}

.tile p a:not(.no-link-hover) {
    position: relative;
    z-index: 0;
    color: #fff;
    white-space: nowrap
}

.tile p a:not(.no-link-hover):before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 2px;
    background: rgba(19,207,255,.33);
    pointer-events: none;
    z-index: -1;
    -webkit-transition: height .15s,background-color .15s;
    transition: height .15s,background-color .15s
}

.tile p a:not(.no-link-hover):hover:not(:disabled):before {
    height: calc(100% - 1px);
    background: rgba(19,207,255,.5)
}

.tile p em {
    font-style: normal;
    color: #fff
}

@media(max-width: 900px) {
    .tile {
        padding:27px 38px
    }

    .tile p {
        font-size: 16px;
        line-height: 24px
    }
}

body.os-windows .title-view .title-guide-section .x-title-page-download-button .download-details {
    display: none
}

body:not(.os-windows) .title-view .title-guide-section .guide-card.download .learn-more {
    display: none
}

@media(max-width: 1200px) {
    .title-view .title-guide-section {
        padding:0 30px
    }

    .title-view .title-guide-section .section-header,.title-view .guide-cards {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.title-view .title-guide-section {
    padding: 0 30px;
    max-width: 1270px;
    margin: 0 auto
}

.title-view .title-guide-section .guide-cards {
    display: grid;
    grid-template-columns: 1fr;
    margin: 40px auto auto auto
}

@media(max-width: 768px) {
    .title-view .title-guide-section .guide-cards .guide-card {
        max-width:300px;
        margin: 0 auto
    }

    .title-view .title-guide-section .guide-cards .guide-card .header {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
        padding: 0px
    }

    .title-view .title-guide-section .guide-cards .guide-card .step-image {
        margin: 0 auto
    }

    .title-view .title-guide-section .guide-cards .guide-card .content {
        text-align: center
    }
}

@media(min-width: 768px) {
    .title-view .title-guide-section .guide-cards {
        grid-template-columns:repeat(2, 1fr);
        width: 680px;
        justify-items: center;
        gap: 8px
    }

    .title-view .title-guide-section .guide-cards .guide-card .header {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto;
        padding: 0px
    }

    .title-view .title-guide-section .guide-cards .guide-card .step-image {
        margin-left: 12px;
        margin-bottom: 0px
    }

    .title-view .title-guide-section .guide-cards .guide-card .content {
        text-align: center
    }

    .title-view .title-guide-section .guide-cards .guide-card.download {
        margin-left: -24px
    }
}

@media(min-width: 1200px) {
    .title-view .title-guide-section .guide-cards {
        grid-template-columns:repeat(4, 1fr);
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        gap: 0px
    }

    .title-view .title-guide-section .guide-cards .guide-card.download {
        margin-left: 0px
    }

    .title-view .title-guide-section .guide-cards .guide-card {
        width: 300px !important;
        max-width: 300px !important
    }

    .title-view .title-guide-section .guide-cards .guide-card .header {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        margin: initial
    }

    .title-view .title-guide-section .guide-cards .guide-card .content {
        text-align: start
    }

    .title-view .title-guide-section .guide-cards .guide-card .step-image {
        margin-left: -8px;
        margin-bottom: -8px
    }
}

.title-view .title-guide-section .guide-cards .guide-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    padding: 24px;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 24px;
    background: rgba(255,255,255,.05);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    width: 340px;
    max-width: 340px;
    position: relative;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: auto
}

.title-view .title-guide-section .guide-cards .guide-card .header {
    margin-top: auto
}

.title-view .title-guide-section .guide-cards .guide-card .step-image {
    position: relative;
    width: 266px;
    height: 188px
}

.title-view .title-guide-section .guide-cards .guide-card .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.title-view .title-guide-section .guide-cards .guide-card .header .step {
    margin: 0;
    color: rgba(255,255,255,.6);
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px
}

.title-view .title-guide-section .guide-cards .guide-card .header .title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: -1.5px
}

.title-view .title-guide-section .guide-cards .guide-card .content {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0
}

.title-view .title-guide-section .guide-cards .guide-card.download .learn-more {
    border-radius: 64px;
    background: #4C5385;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    color: #8599FF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.5px;
    max-height: 48px;
    height: 48px
}

.title-view .title-guide-section .guide-cards .guide-card.download .learn-more:hover {
    background: rgba(221,240,12,.2)
}

.title-view .title-guide-section .guide-cards .guide-card.download .x-title-page-download-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: none;
    width: 100%;
    margin-top: 0;
    gap: 10px;
    text-align: center;
    padding: 0;
    min-height: 0
}

.title-view .title-guide-section .guide-cards .guide-card.download .x-title-page-download-button .download-details {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title-view .title-guide-section .guide-cards .guide-card.download .x-title-page-download-button .download-details .windows-text:not(.no-download) {
    display: none
}

.windows-text .title-view .title-guide-section .guide-cards .guide-card.download .x-title-page-download-button:not(.no-download) {
    display: none
}

.title-view .title-guide-section .guide-cards .guide-card.download .x-title-page-download-button .download-button {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-height: 64px;
    height: 64px;
    font-size: 24px
}

.title-view .title-guide-section .guide-cards .guide-card.download .x-title-page-download-button .short-mod-info {
    display: none
}

.title-view .title-guide-section .guide-cards .guide-card.download .content strong {
    color: rgba(255,255,255,.8)
}

.title-view .title-guide-section .guide-cards .guide-card.download .content em {
    color: #8599FF;
    font-style: normal;
    font-weight: 800
}

.title-view .title-guide-section .guide-cards .guide-card.open,.title-view .title-guide-section .guide-cards .guide-card.play {
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg)
}

.title-view .title-guide-section .guide-cards .guide-card.open .step-image {
    background: url("/static/images/icons/guide-open-steps.webp") center no-repeat;
    background-size: contain;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg)
}

.title-view .title-guide-section .guide-cards .guide-card.open .step-image .open-cursor {
    position: absolute;
    bottom: 24px;
    left: 80px;
    z-index: 3
}

.title-view .title-guide-section .guide-cards .guide-card.open .step-image .open-game {
    position: absolute;
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 20px;
    left: 92px;
    z-index: 2;
    border-radius: 6px;
    background: #fff;
    color: #0d0f12;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.75px;
    text-align: center;
    padding: 4px
}

.title-view .title-guide-section .guide-cards .guide-card.open .step-image .my-games {
    position: absolute;
    top: 40px;
    left: 24px;
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 20px;
    letter-spacing: -1.2px
}

.title-view .title-guide-section .guide-cards .guide-card.open .step-image .capsule-wrapper {
    position: absolute;
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    width: 70px;
    height: 70px;
    border-top-right-radius: 5.5px;
    border-top-left-radius: 5.5px;
    bottom: 18px;
    left: 20px;
    overflow: hidden
}

.title-view .title-guide-section .guide-cards .guide-card.open .step-image .capsule-wrapper:has(.fallback-capsule)::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: "";
    width: 100%;
    height: 100%;
    background: url("/static/images/views/title/guide-fallback-capsule-e53ece9a44.webp") center no-repeat;
    width: 100%;
    background-size: cover
}

.title-view .title-guide-section .guide-cards .guide-card.open .step-image .capsule-wrapper .fallback-capsule {
    display: none
}

.title-view .title-guide-section .guide-cards .guide-card.open .step-image .capsule-wrapper .capsule-art {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0px;
    left: 0px
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image {
    background: url("/static/images/icons/guide-toggle-steps.webp") center no-repeat;
    background-size: contain;
    -webkit-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg)
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .unlimited-health {
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    color: rgba(255,255,255,.8);
    font-size: 10px;
    position: absolute;
    z-index: 1;
    bottom: 43px;
    left: 42px
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .unlimited-stamina {
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    color: rgba(255,255,255,.8);
    font-size: 10px;
    position: absolute;
    z-index: 1;
    bottom: 18px;
    left: 42px
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .open-cursor {
    position: absolute;
    bottom: 30px;
    right: 90px;
    z-index: 3
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .on,.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .off {
    position: absolute;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    color: #fff;
    font-size: 7px
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .on {
    bottom: 50px;
    left: 164px
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .off {
    bottom: 49px;
    left: 140px
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .toggle-mods {
    position: absolute;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    border-radius: 6px;
    background: #fff;
    color: #0d0f12;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.75px;
    text-align: center;
    padding: 4px
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .your-game {
    position: absolute;
    top: 50px;
    left: 54px;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 20px;
    letter-spacing: -1.2px
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .capsule-wrapper {
    position: absolute;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    height: 36px;
    width: 30px;
    border-top-right-radius: 5.5px;
    border-top-left-radius: 5.5px;
    top: 64px;
    left: 20px;
    overflow: hidden
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .capsule-wrapper:has(.fallback-capsule)::after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    content: "";
    width: 100%;
    height: 100%;
    background: url("/static/images/views/title/guide-fallback-capsule-e53ece9a44.webp") center no-repeat;
    width: 100%;
    background-size: cover
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .capsule-wrapper .fallback-capsule {
    display: none
}

.title-view .title-guide-section .guide-cards .guide-card.toggle .step-image .capsule-wrapper .capsule-art {
    position: absolute;
    width: 100%;
    height: 36px;
    width: 30px;
    top: 0px;
    left: 0px
}

.title-view .title-guide-section .guide-cards .guide-card.play .step-image {
    background: url("/static/images/icons/guide-play-steps.webp") center no-repeat;
    background-size: contain;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg)
}

.title-view .title-guide-section .guide-cards .guide-card.play .step-image .mods-enabled {
    max-height: 64px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-items: center;
    color: #4C5385;
    background-color: #8599FF;
    gap: 4px;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    bottom: 36px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(3deg);
    -ms-transform: translateX(-50%) rotate(3deg);
    transform: translateX(-50%) rotate(3deg);
    padding: 8px;
    font-family: Inter;
    font-size: 20px;
    font-weight: 800;
    line-height: 16px;
    letter-spacing: -1px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content
}

.title-view.alternate-layout section.info .left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.title-view.alternate-layout section.info .right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    margin-top: 0 !important;
    margin-left: 0
}

.title-view.alternate-layout section.info .alternate-title {
    margin-bottom: 30px
}

.title-view.alternate-layout section.info .alternate-title h3 {
    margin-bottom: 0;
    line-height: 30px
}

.title-view.alternate-layout section.info .alternate-title h3+p {
    margin-top: 10px
}

.title-view section.info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.title-view section.info .left,.title-view section.info .right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    min-width: 0
}

.title-view section.info .right {
    margin-left: 40px
}

.title-view section.info .retired-explanation {
    margin-bottom: 30px
}

.title-view section.info .retired-explanation h2,.title-view section.info .retired-explanation p {
    color: rgba(255,255,255,.5)
}

.title-view section.info .retired-explanation h2 {
    display: inline-block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title-view section.info .retired-explanation h2 svg {
    margin-right: 8px
}

.title-view section.info .cheats p a {
    color: rgba(255,255,255,.5);
    border-bottom: 1px solid rgba(19,207,255,.33)
}

.title-view section.info .cheats p a:hover {
    border-color: #13cfff
}

.title-view section.info .cheats .fade {
    opacity: .4
}

.title-view section.info .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.title-view section.info .video {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 121px;
    flex: 0 0 121px
}

.title-view section.info .video a {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.title-view section.info .video a:before {
    content: "";
    display: block;
    width: 37px;
    height: 37px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    margin-top: -19px;
    margin-left: -19px;
    pointer-events: none;
    background: rgba(26,40,55,.67) url("/static/images/icons/play-3499919f6a.svg") center no-repeat;
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s
}

.title-view section.info .video a:hover:before {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.title-view section.info .video img {
    width: 121px;
    height: 68px;
    float: left
}

.title-view section.info .cheats-placeholder {
    margin-top: 11px
}

.title-view section.info .x-free-games-list {
    margin-top: 40px
}

@media(max-width: 900px) {
    .title-view section.info {
        -webkit-box-orient:vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .title-view section.info .left {
        margin-top: 13px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }

    .title-view section.info .right {
        margin-left: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }

    .title-view section.info .media {
        margin-bottom: 20px
    }

    .title-view.alternate-layout section.info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .title-view.alternate-layout section.info .left {
        margin-top: 0
    }
}

@media(max-width: 700px) {
    .title-view section.info .media .video {
        -webkit-box-flex:0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%
    }

    .title-view section.info .media .video img {
        width: 100%;
        height: auto;
        max-width: 320px
    }

    .title-view section.info .media .screenshot {
        margin-right: 0;
        margin-bottom: 20px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%
    }
}

@media(max-width: 480px) {
    .title-view section.info .cheats-placeholder .column:last-child {
        display:none
    }
}

.title-view .title-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 30px 0
}

.title-view .title-stats .stat {
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.title-view .title-stats .stat+.stat {
    margin-top: 5px
}

.title-view .title-stats .stat .label {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255,255,255,.5);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    margin-right: 10px
}

.title-view .title-stats .stat .value {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0
}

.title-view .title-stats .stat .value span {
    display: inline-block;
    color: rgba(255,255,255,.8);
    padding: 4px 12px;
    border-radius: 5px;
    background: #0B0C13
}

.title-view .title-stats.mobile {
    display: none;
    margin: 30px 22px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.title-view .title-stats.mobile .stats {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

@media(max-width: 900px) {
    .title-view .title-stats.desktop {
        display:none !important
    }

    .title-view .title-stats.mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.title-view .title-info .text p {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    color: rgba(255,255,255,.5)
}

.title-view .title-info .text p+p {
    margin-top: 20px
}

.title-view .title-info .text p.highlight {
    color: rgba(255,255,255,.8)
}

.title-view .title-info .text p.collection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title-view .title-info .text p.collection .thumbnail {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.title-view .title-info .text p.collection .thumbnail img {
    border-radius: 10px;
    margin-right: 10px
}

.title-view .title-info .text p.collection .text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.title-view section.bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.title-view section.bottom .discussion {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.title-view section.bottom .discussion h3 {
    margin-bottom: 25px
}

.title-view section.bottom .discussion .loading-message {
    font-size: 18px;
    line-height: 30px;
    color: rgba(255,255,255,.6)
}

.title-view section.bottom .discussion .post+.post {
    margin-top: 28px
}

.title-view section.bottom .discussion .post .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 14px
}

.title-view section.bottom .discussion .post .meta .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 14px
}

.title-view section.bottom .discussion .post .meta .col {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.title-view section.bottom .discussion .post .meta .username {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #fff
}

.title-view section.bottom .discussion .post .meta .date {
    font-size: 13px;
    line-height: 20px;
    color: rgba(255,255,255,.35)
}

.title-view section.bottom .discussion .post .content {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255,255,255,.6);
    margin-left: 54px
}

.title-view section.bottom .discussion .post .content hr {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    margin: 0;
    padding: 0
}

.title-view section.bottom .discussion .post .content h1,.title-view section.bottom .discussion .post .content h2,.title-view section.bottom .discussion .post .content h3,.title-view section.bottom .discussion .post .content h4,.title-view section.bottom .discussion .post .content h5,.title-view section.bottom .discussion .post .content h6 {
    color: #fff
}

.title-view section.bottom .discussion .post .content a {
    font-size: 14px;
    line-height: 22px;
    font-size: 15px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.25)
}

.title-view section.bottom .discussion .post .content a:hover {
    border-bottom: 1px solid #fff
}

.title-view section.bottom .discussion .post .content p {
    font-size: 14px;
    line-height: 22px
}

.title-view section.bottom .discussion .post .content p+p {
    margin-top: 10px
}

.title-view section.bottom .discussion .post .content img.emoji {
    width: 16px;
    height: 16px
}

.title-view section.bottom .discussion .post .content .avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 9px;
    vertical-align: middle
}

.title-view section.bottom .discussion .post .content .quote * {
    color: rgba(255,255,255,.4)
}

.title-view section.bottom .discussion .more-link {
    font-size: 20px;
    line-height: 34px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 43px;
    background: rgba(0,0,0,0);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    white-space: nowrap;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,-webkit-filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s;
    transition: background-color .15s,color .15s,border-color .15s,filter .15s,-webkit-filter .15s;
    border-color: #13cfff;
    background: rgba(0,0,0,0);
    color: #fff;
    margin-top: 34px
}

.title-view section.bottom .discussion .more-link,.title-view section.bottom .discussion .more-link * {
    cursor: pointer
}

.title-view section.bottom .discussion .more-link svg * {
    fill: #fff;
    -webkit-transition: fill .15s;
    transition: fill .15s
}

.title-view section.bottom .discussion .more-link:disabled {
    opacity: .4;
    cursor: not-allowed
}

.title-view section.bottom .discussion .more-link>*+* {
    margin-left: 9px
}

.title-view section.bottom .discussion .more-link i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.title-view section.bottom .discussion .more-link:hover:not(:disabled) {
    background-color: #13cfff
}

.title-view section.bottom .x-featured-titles {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 377px;
    flex: 0 0 377px;
    margin-left: 40px
}

@media(max-width: 900px) {
    .title-view section.bottom {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .title-view section.bottom .discussion h3 {
        margin-bottom: 15px
    }

    .title-view section.bottom .discussion .loading-message {
        font-size: 14px;
        line-height: 22px
    }

    .title-view section.bottom .discussion .post+.post {
        margin-top: 23px
    }

    .title-view section.bottom .discussion .post .meta {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 14px
    }

    .title-view section.bottom .discussion .post .meta .avatar {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        margin-right: 12px
    }

    .title-view section.bottom .discussion .post .meta .col {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .title-view section.bottom .discussion .post .meta .username {
        font-size: 14px;
        line-height: 22px
    }

    .title-view section.bottom .discussion .post .meta .date {
        font-size: 11px;
        margin-left: 10px
    }

    .title-view section.bottom .discussion .post .content {
        margin-left: 34px
    }

    .title-view section.bottom .discussion .more-link {
        font-size: 18px;
        line-height: 30px;
        font-weight: 600;
        height: 38px;
        padding: 0 18px;
        margin-top: 30px
    }

    .title-view section.bottom .x-featured-titles {
        display: none
    }
}

.title-view .you-may-also-like {
    margin: 40px 0 -10px
}

.title-view .you-may-also-like>h3 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px
}

.title-view .you-may-also-like>h3 em {
    font-style: normal
}

.title-view .you-may-also-like>h3.subdued {
    color: rgba(255,255,255,.4)
}

.title-view .you-may-also-like>h3.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title-view .you-may-also-like>h3.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .title-view .you-may-also-like>h3 {
        font-size:24px;
        line-height: 34px
    }
}

.title-view .you-may-also-like .x-featured-title {
    --horizontal-scroller-fade-width: 10px;
    display: inline-block;
    width: 360px
}

.title-view .you-may-also-like .x-featured-title+* {
    margin-left: 10px
}

@media(max-width: 900px) {
    .title-view .you-may-also-like {
        margin-top:20px
    }
}

.title-view .x-other-supported-games {
    margin-top: 58px
}

.title-view .min-achievements {
    margin: 53px 0 0
}

.title-view .min-achievements>h3 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    font-weight: 700;
    color: #fff;
    margin-bottom: 11px
}

.title-view .min-achievements>h3 em {
    font-style: normal
}

.title-view .min-achievements>h3.subdued {
    color: rgba(255,255,255,.4)
}

.title-view .min-achievements>h3.with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.title-view .min-achievements>h3.with-icon img {
    margin-right: 9px;
    vertical-align: middle
}

@media(max-width: 900px) {
    .title-view .min-achievements>h3 {
        font-size:24px;
        line-height: 34px
    }
}

.title-view .maps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0 0
}

.title-view .maps-list .x-alt-map-tile {
    max-width: 585px
}

@media(max-width: 600px) {
    .title-view .maps-list {
        grid-template-columns:1fr
    }
}

html:has(.title-view) {
    background-color: #0b0c0f
}

html:has(.title-view) body {
    background: none
}

html:has(.title-view) .title-view {
    overflow-x: hidden
}

html:has(.title-view) .title-view .x-horizontal-scroller {
    background: rgba(255,255,255,.04)
}

html:has(.title-view) .title-view .x-achievements-list.minimal-list.achievement {
    background: rgba(255,255,255,.04)
}

html:has(.title-view) .title-view .x-faq-tile.tile {
    background: rgba(255,255,255,.04)
}

html:has(.title-view) .title-view .x-faq-tile .faq-item header:hover:not(.expanded) {
    background: rgba(255,255,255,.04)
}

html:has(.title-view) .title-view .view-background-image {
    height: 505px;
    z-index: -1
}

html:has(.title-view) .title-view .view-background-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgb(11, 12, 15)));
    background: linear-gradient(180deg, transparent 0%, rgb(11, 12, 15) 100%)
}

html:has(.title-view) .title-view .view-header {
    position: relative
}

html:has(.title-view) .title-view .view-header .meta {
    grid-template-columns: 1fr;
    gap: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

html:has(.title-view) .title-view .view-header .desktop-image-column {
    display: none
}

html:has(.title-view) .title-view .view-header .desktop-image {
    width: 100%;
    height: auto;
    -webkit-transform: translate(-14%, 0);
    -ms-transform: translate(-14%, 0);
    transform: translate(-14%, 0)
}

html:has(.title-view) .title-view .view-header .desktop-image-container {
    position: absolute;
    top: -135px;
    z-index: 1;
    width: 240%;
    min-width: 1000px
}

html:has(.title-view) .title-view .view-header .program-image {
    width: 53%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 12px;
    position: absolute;
    left: 30%;
    -webkit-transform: translate(-39%, -57.2%);
    -ms-transform: translate(-39%, -57.2%);
    transform: translate(-39%, -57.2%);
    top: 50%;
    z-index: 2
}

@media(max-width: 500px) {
    html:has(.title-view) .title-view .view-header .game-info-container {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media(min-width: 900px) {
    html:has(.title-view) .title-view .view-header .meta {
        display:grid;
        grid-template-columns: 3fr 1fr;
        gap: 60px
    }

    html:has(.title-view) .title-view .view-header .desktop-image-column {
        display: block;
        position: relative
    }
}

@media(min-width: 1000px) {
    html:has(.title-view) .title-view .view-header .meta {
        grid-template-columns:1.75fr 1fr
    }

    html:has(.title-view) .title-view .view-header .desktop-image-column {
        position: relative
    }
}

@media(min-width: 1440px) {
    html:has(.title-view) .title-view .view-header .meta {
        gap:40px
    }

    html:has(.title-view) .title-view .view-header .desktop-image-container {
        width: 280%;
        top: -185px
    }
}

@media(min-width: 1920px) {
    html:has(.title-view) .title-view .view-header .meta {
        grid-template-columns:3fr 1fr
    }

    html:has(.title-view) .title-view .view-header .desktop-image-container {
        width: 420%
    }
}

@media(min-width: 2440px) {
    html:has(.title-view) .title-view .view-header .desktop-image-container {
        width:440%
    }
}

html:has(.title-view) .title-view .info {
    display: grid;
    grid-template-columns: 1.5fr .1fr;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 20px
}

html:has(.title-view) .title-view .info .left {
    margin: 0
}

html:has(.title-view) .title-view .info .right {
    margin-top: 20px
}

html:has(.title-view) .title-view .info .right .x-featured-titles {
    margin-top: 20px
}

@media(max-width: 1150px) {
    html:has(.title-view) .title-view .info {
        grid-template-columns:1fr .75fr
    }
}

@media(max-width: 800px) {
    html:has(.title-view) .title-view .info {
        grid-template-columns:1fr;
        gap: 0px
    }

    html:has(.title-view) .title-view .info .left {
        margin-bottom: 60px
    }

    html:has(.title-view) .title-view .info .collection-wrapper {
        grid-template-columns: auto
    }
}

html:has(.title-view) .title-view .yellow-green-text {
    color: #8599FF
}

html:has(.title-view) .title-view .highlight-text {
    color: #fff;
    font-weight: 800
}

html:has(.title-view) .title-view .section-header {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 70px;
    letter-spacing: -2.5px;
    width: 100%;
    grid-column: 1/-1;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

html:has(.title-view) .title-view .section-header .count {
    font-weight: 500;
    color: rgba(255,255,255,.5);
    margin-left: 8px
}

html:has(.title-view) .title-view .section-header .link {
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.5px;
    color: #fff;
    text-align: right;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

html:has(.title-view) .title-view .section-header .link:after {
    content: "→";
    margin-left: 4px
}

html:has(.title-view) .title-view .section-header-link {
    text-decoration: none
}

html:has(.title-view) .title-view .section-header-link:hover .link {
    color: #13cfff
}

html:has(.title-view) .title-view .cheats .cheats-col-1 {
    display: block
}

html:has(.title-view) .title-view .cheats .cheats-col-2 {
    display: none
}

html:has(.title-view) .title-view .cheats .cheats-col-3 {
    display: none
}

html:has(.title-view) .title-view .cheats .cheats-col-4 {
    display: none
}

@media(min-width: 620px) {
    html:has(.title-view) .title-view .cheats .cheats-col-1 {
        display:none
    }

    html:has(.title-view) .title-view .cheats .cheats-col-2 {
        display: block
    }
}

@media(min-width: 1200px) {
    html:has(.title-view) .title-view .cheats .cheats-col-2 {
        display:none
    }

    html:has(.title-view) .title-view .cheats .cheats-col-3 {
        display: block
    }
}

@media(min-width: 1920px) {
    html:has(.title-view) .title-view .cheats .cheats-col-3 {
        display:none
    }

    html:has(.title-view) .title-view .cheats .cheats-col-4 {
        display: block
    }
}

html:has(.title-view) .title-view .category {
    border-radius: 16px;
    gap: 1px
}

html:has(.title-view) .title-view .category header {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: -0.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 0px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px
}

html:has(.title-view) .title-view .category header::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 12px
}

html:has(.title-view) .title-view .category ul.cheats {
    margin: 0;
    padding: 0;
    border-radius: 16px;
    overflow-y: hidden
}

html:has(.title-view) .title-view .category .cheat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 12px;
    margin-bottom: 1px;
    font-size: 16px;
    font-weight: 500
}

html:has(.title-view) .title-view .category .cheat div {
    color: rgba(255,255,255,.9);
    width: 100%;
    background: none;
    padding: 0
}

html:has(.title-view) .title-view .category.teleport header::before {
    background-image: url("/static/images/icons/mod-teleport-icon.svg")
}

html:has(.title-view) .title-view .category.teleport .cheat {
    background-color: rgba(31,197,58,.05)
}

html:has(.title-view) .title-view .category.vehicles header::before {
    background-image: url("/static/images/icons/mod-vehicle-icon.svg")
}

html:has(.title-view) .title-view .category.vehicles .cheat {
    background-color: rgba(25,186,255,.05)
}

html:has(.title-view) .title-view .category.enemies header::before {
    background-image: url("/static/images/icons/mod-enemies-icon.svg")
}

html:has(.title-view) .title-view .category.enemies .cheat {
    background-color: rgba(255,77,0,.05)
}

html:has(.title-view) .title-view .category.player header::before {
    background-image: url("/static/images/icons/mod-player-icon.svg")
}

html:has(.title-view) .title-view .category.player .cheat {
    background-color: rgba(245,64,168,.05)
}

html:has(.title-view) .title-view .category.game header::before {
    background-image: url("/static/images/icons/mod-game-icon.svg")
}

html:has(.title-view) .title-view .category.game .cheat {
    background-color: rgba(242,190,1,.05)
}

html:has(.title-view) .title-view .category.stats header::before {
    background-image: url("/static/images/icons/mod-teleport-icon.svg")
}

html:has(.title-view) .title-view .category.stats .cheat {
    background-color: rgba(221,240,12,.05)
}

html:has(.title-view) .title-view .category.weapons header::before {
    background-image: url("/static/images/icons/mod-weapons-icon.svg")
}

html:has(.title-view) .title-view .category.weapons .cheat {
    background-color: rgba(255,55,67,.05)
}

html:has(.title-view) .title-view .category.physics header::before {
    background-image: url("/static/images/icons/mod-physics-icon.svg")
}

html:has(.title-view) .title-view .category.physics .cheat {
    background-color: rgba(158,112,255,.05)
}

html:has(.title-view) .title-view .category.inventory header::before {
    background-image: url("/static/images/icons/mod-inventory-icon.svg")
}

html:has(.title-view) .title-view .category.inventory .cheat {
    background-color: rgba(48,234,211,.05)
}

html:has(.title-view) .title-view .category.challenge header::before {
    background-image: url("/static/images/icons/mod-challenge-icon.svg")
}

html:has(.title-view) .title-view .category.challenge .cheat {
    background-color: rgba(255,115,36,.05)
}

html:has(.title-view) .title-view .category.gameplay-video {
    width: 100%;
    cursor: pointer
}

html:has(.title-view) .title-view .category.gameplay-video header::after {
    content: ""
}

html:has(.title-view) .title-view .category.gameplay-video .media {
    margin-bottom: 0px
}

html:has(.title-view) .title-view .category.gameplay-video .media a {
    border-radius: 16px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 0px .5px rgba(255,255,255,.25) inset;
    box-shadow: 0px 0px 0px .5px rgba(255,255,255,.25) inset
}

html:has(.title-view) .title-view .category.gameplay-video .media a::before {
    width: 74px;
    height: 74px;
    background: rgba(255,255,255,.4) url("/static/images/views/title/play-arrow-icon-rounded-d438789168.svg") center no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
    margin: 0;
    -webkit-backdrop-filter: blur(19px);
    backdrop-filter: blur(19px);
    z-index: 3
}

html:has(.title-view) .title-view .category.gameplay-video .media a::after {
    content: "";
    display: block;
    background: url("/static/images/views/title/wemod-mark-white-0973569bb8.svg") center no-repeat;
    position: absolute;
    left: 20px;
    top: 20px;
    width: 32.5px;
    height: 20px;
    border: none;
    margin: 0;
    z-index: 3
}

html:has(.title-view) .title-view .category.gameplay-video .gameplay-media-label {
    display: block;
    color: rgba(255,255,255,.9);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 32px
}

html:has(.title-view) .title-view .category.gameplay-video .video {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    overflow: hidden
}

html:has(.title-view) .title-view .category.gameplay-video .video img {
    position: relative;
    width: 100%;
    min-height: 160px;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: opacity 150ms ease;
    transition: opacity 150ms ease;
    opacity: .5
}

html:has(.title-view) .title-view .category.gameplay-video .video img:hover {
    opacity: .25
}

html:has(.title-view) .title-view .collection-wrapper {
    background-color: rgba(255,255,255,.04);
    border-radius: 24px;
    padding: 16px;
    justify-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    grid-column: 1/-1
}

html:has(.title-view) .title-view .collection-wrapper .collection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin: 0;
    height: 45px;
    color: rgba(255,255,255,.6)
}

html:has(.title-view) .title-view .collection-wrapper .collection .text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

html:has(.title-view) .title-view .collection-wrapper .collection img {
    border-radius: 8px
}

html:has(.title-view) .title-view .collection-wrapper .collection a {
    color: #8599FF;
    text-decoration: none
}

html:has(.title-view) .title-view .collection-wrapper .collection a.thumbnail {
    height: 45px
}

html:has(.title-view) .title-view .discussion.tile.fade {
    background: rgba(255,255,255,.04)
}

html:has(.title-view) .title-view .titles {
    background: rgba(255,255,255,.04)
}

@media(max-width: 900px) {
    html:has(.title-view) .title-view section.info .category.gameplay-video {
        width:100%
    }

    html:has(.title-view) .title-view section.info .category.gameplay-video .media .video a {
        width: 100%
    }

    html:has(.title-view) .title-view section.info .category.gameplay-video .media .video img {
        max-width: none;
        width: 100%;
        height: auto
    }
}

@media(min-width: 1440px) {
    html:has(.title-view) .title-view .section-header {
        font-size:48px
    }

    html:has(.title-view) .title-view .right {
        margin-bottom: 30px
    }

    html:has(.title-view) .title-view .left {
        margin-bottom: 60px
    }
}

body {
    background: #0B0C13
}

body.no-scroll,body.modal-open {
    overflow: hidden
}

.app-layout .app-top {
    min-height: calc(100vh - 285px)
}

.app-layout .app-content-container {
    position: relative;
    z-index: 0
}

.section-wrapper {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 30px
}

@media(max-width: 480px) {
    .section-wrapper {
        padding:0 22px
    }
}

.internal-link-target {
    position: relative;
    top: -100px;
    display: inline-block
}
