.typography-label1 {
    font-weight: 600;
    font-size: 86px;
    line-height: 110%;
    letter-spacing: -1px
}

.typography-label2 {
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    letter-spacing: -1px;
    -webkit-font-feature-settings: "ss04" on;
    font-feature-settings: "ss04" on
}

.typography-label3 {
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    -webkit-font-feature-settings: "ss04" on;
    font-feature-settings: "ss04" on
}

.typography-label4 {
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    -webkit-font-feature-settings: "ss04" on;
    font-feature-settings: "ss04" on
}

.typography-lead {
    font-weight: 400;
    font-size: 24px;
    line-height: 135%
}

.typography-h1 {
    font-weight: 600;
    font-size: 26px;
    line-height: 120%
}

.typography-header {
    font-weight: 500;
    font-size: 22px;
    line-height: 150%
}

.typography-h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%
}

.typography-h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 135%
}

.typography-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%
}

.typography-subhead {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%
}

.typography-body {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%
}

.typography-caption {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%
}

.typography-subcaption {
    font-weight: 500;
    font-size: 12px;
    line-height: 120%
}

@media(max-width: 768px) {
    .typography-label1 {
        font-weight: 700;
        font-size: 36px;
        line-height: 120%
    }
    .typography-label2 {
        font-weight: 700;
        font-size: 36px;
        line-height: 120%
    }
    .typography-label3 {
        font-weight: 700;
        font-size: 26px;
        line-height: 120%
    }
    .typography-label4 {
        font-weight: 700;
        font-size: 26px;
        line-height: 120%
    }
}

:root {
    --elements-main: #000000;
    --elements-contrast: #FFFFFF;
    --elements-default: #33FF66;
    --elements-link: #10C83E;
    --elements-disable: #33FF6640;
    --blue-default: #66FFFF;
    --blue-disable: #66FFFF40;
    --warning-default: #FF9933;
    --warning-disable: #FF993366;
    --gray-default: #575757;
    --gray-disable: #BFBFBF;
    --yellow-default: #FFFF80;
    --yellow-disable: #FFFF80;
    --error-default: #FF6644;
    --error-disable: #FF664440;
    --background-default: #FFFFFF;
    --background-tile: #FAFAFA;
    --background-secondary: #A5A5A51A;
    --background-default-gray: #F6F6F6;
    --separator-default: rgba(165, 165, 165, 0.25);
    --default-white: #ffffff;
    --default-black: #000;
    --shadow-s: 0 7px 15px rgba(10, 10, 20, 0.07);
    --shadow-m: 0 10px 20px rgba(10, 10, 20, 0.15);
    --shadow-l: 0 5px 20px rgba(10, 10, 20, 0.25);
    --shadow-full-s: 0 0 15px rgba(10, 10, 20, 0.07);
    --shadow-full-m: 0 0 20px rgba(10, 10, 20, 0.15);
    --shadow-full-l: 0 0 20px rgba(10, 10, 20, 0.25)
}

.button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    -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 .15s, border-color .15s, -webkit-transform .15s;
    transition: background .15s, border-color .15s, -webkit-transform .15s;
    -o-transition: background .15s, border-color .15s, transform .15s;
    transition: background .15s, border-color .15s, transform .15s;
    transition: background .15s, border-color .15s, transform .15s, -webkit-transform .15s;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--elements-main)
}

.button.rotate .button__icon {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.button__icon {
    width: 24px;
    height: 24px;
    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-left: 8px;
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    -o-transition: transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s
}

.button__icon svg {
    fill: var(--elements-main)
}

.button__icon.left {
    margin-left: -8px;
    margin-right: 8px
}

.button__icon.right {
    margin-right: -8px;
    margin-left: 8px
}

.direction-rtl .button__icon {
    margin-left: 0;
    margin-right: 8px
}

.button.large {
    padding: 16px 24px
}

.button.medium {
    padding: 8px 16px
}

.button.medium.icon {
    padding: 8px
}

.button.small {
    padding: 7px 12px
}

.button.small .button__icon {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.button.small .button__icon.left {
    margin: -3px 8px -3px -8px
}

.button.small .button__icon.right {
    margin: -3px -8px -3px 8px
}

.direction-rtl .button.small .button__icon {
    margin: -3px 8px -3px -8px
}

.button.default {
    background-color: var(--elements-main);
    color: var(--elements-contrast);
    -webkit-transition: opacity .15s;
    -o-transition: opacity .15s;
    transition: opacity .15s
}

.button.default:hover {
    opacity: .8
}

.button.default .button__icon svg {
    fill: var(--elements-contrast)
}

.button.tile {
    color: var(--elements-main)
}

.button.tile:hover {
    background-color: var(--background-secondary)
}

.button.secondary {
    background-color: var(--background-secondary);
    -webkit-transition: opacity .15s;
    -o-transition: opacity .15s;
    transition: opacity .15s
}

.button.secondary:hover {
    opacity: .8
}

.button.contrast {
    background-color: var(--elements-contrast);
    color: var(--elements-main);
    -webkit-transition: background-color .15s;
    -o-transition: background-color .15s;
    transition: background-color .15s
}

.button.contrast:hover {
    background-color: #ececec
}

.button.outline {
    border: 1px solid var(--separator-default);
    -webkit-transition: background-color .15s;
    -o-transition: background-color .15s;
    transition: background-color .15s;
    color: var(--elements-main)
}

.button.outline:hover {
    background-color: var(--background-secondary)
}

@media(pointer: coarse) {
    .button.tile:hover {
        background-color: transparent
    }
    .button.default:hover,
    .button.secondary:hover,
    .button.contrast:hover {
        opacity: 1
    }
    .button.secondary:hover {
        opacity: 1
    }
    .button.outline:hover {
        background-color: transparent
    }
}

.input {
    border-radius: 12px;
    padding: 16px;
    background-color: var(--elements-contrast);
    border: 1px solid var(--separator-default);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--elements-main);
    width: 100%;
    outline: none;
    -webkit-transition: border-color .15s;
    -o-transition: border-color .15s;
    transition: border-color .15s
}

.input::-webkit-input-placeholder {
    color: var(--gray-default)
}

.input::-moz-placeholder {
    color: var(--gray-default)
}

.input:-ms-input-placeholder {
    color: var(--gray-default)
}

.input::-ms-input-placeholder {
    color: var(--gray-default)
}

.input::placeholder {
    color: var(--gray-default)
}

.input:focus {
    border-color: var(--gray-default)
}

.input__wrapper.error .error-block {
    display: block
}

.input__wrapper.error .input {
    border-color: var(--error-disable)
}

.input__wrapper.error .input::-webkit-input-placeholder {
    color: var(--error-default)
}

.input__wrapper.error .input::-moz-placeholder {
    color: var(--error-default)
}

.input__wrapper.error .input:-ms-input-placeholder {
    color: var(--error-default)
}

.input__wrapper.error .input::-ms-input-placeholder {
    color: var(--error-default)
}

.input__wrapper.error .input::placeholder {
    color: var(--error-default)
}

.input__wrapper .error-block {
    display: none
}

.hint-block {
    padding: 8px 16px;
    color: var(--gray-default)
}

.error-block {
    padding: 8px 16px;
    color: var(--error-default)
}

textarea.input {
    min-height: 140px;
    resize: vertical
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth
}

img {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

img.js-show-full-image {
    pointer-events: auto;
    cursor: pointer
}

.modal-image {
    position: fixed;
    top: 0;
    left: 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;
    z-index: 20;
    display: none
}

.modal-image__background {
    background-color: rgba(0, 0, 0, .2);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer
}

.modal-image__container {
    z-index: 2;
    background-color: var(--background-default);
    max-width: 100%;
    max-height: 100%;
    padding: 16px;
    border-radius: 28px;
    position: relative;
    overflow: auto
}

.modal-image__container img {
    width: 100%;
    height: 100%;
    border-radius: 28px
}

.modal-image__container.modal-video {
    max-width: 1080px;
    width: 100%
}

.modal-video__box {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 28px;
    z-index: 1
}

.modal-video__box iframe {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0
}

.modal-image__button {
    width: 40px;
    height: 40px;
    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;
    background-color: var(--background-tile);
    -webkit-transition: opacity .15s;
    -o-transition: opacity .15s;
    transition: opacity .15s;
    border-radius: 12px;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2
}

.modal-image__button:hover {
    opacity: .8
}

@media(pointer: coarse) {
    .modal-image__button:hover {
        opacity: 1
    }
}

*,
*::before,
*::after {
    font-family: 'Kulim Park', sans-serif;
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

html.stop-scroll {
    overflow: hidden
}

a {
    text-decoration: none
}

body {
    margin: 0;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--background-tile)
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--elements-contrast);
    z-index: -1
}

main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: var(--elements-contrast);
    border-radius: 0 0 120px 120px;
    padding: 16px 0 64px
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1080px
}

.hide {
    display: none !important
}

.button-app__wrapper .button {
    z-index: 8;
    position: relative
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0
}

@media(max-width: 1200px) {
    main {
        border-radius: 0 0 40px 40px;
        padding: 0 0 40px
    }
}

.features-box__title {
    text-align: center
}

.features-box__header {
    text-align: center;
    margin-top: 8px
}

.features-box__image {
    margin: 24px auto 0;
    max-width: 328px;
    height: 0;
    padding-bottom: 84.75%;
    position: relative
}

.features-box__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.features-box__button {
    width: 100%;
    margin-top: 24px
}

@media(max-width: 768px) {
    .features-box__title {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%
    }
}

.section {
    margin-top: 128px
}

.section__description {
    margin-top: 24px
}

.icon-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.icon-title svg {
    margin-left: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.section__title a {
    color: var(--elements-main) !important
}

.section__image {
    width: 100%
}

.section__image-box {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative
}

.section__image-box img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -24px;
    margin-top: -24px
}

.section__item {
    margin-left: 24px;
    margin-top: 24px
}

@media(max-width: 992px) {
    .section__title,
    .section__description {
        padding: 0 16px
    }
}

@media(max-width: 768px) {
    .section {
        margin-top: 40px
    }
    .section__description {
        margin-top: 16px;
        font-weight: 500;
        font-size: 16px;
        line-height: 150%
    }
    .icon-title svg {
        width: 24px;
        height: 24px
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 16px;
    z-index: 10
}

.modal__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    background-color: rgba(0, 0, 0, .2)
}

.modal__container {
    max-width: 400px;
    width: 100%;
    padding: 16px;
    background-color: var(--elements-contrast);
    border-radius: 28px;
    -webkit-box-shadow: var(--shadow-m);
    box-shadow: var(--shadow-m);
    z-index: 5;
    position: relative
}

.modal__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.modal__title {
    padding: 8px 0 8px 8px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.modal__icon-close {
    width: 40px;
    height: 40px;
    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;
    cursor: pointer;
    border-radius: 12px;
    -webkit-transition: background-color .15s;
    -o-transition: background-color .15s;
    transition: background-color .15s
}

.modal__icon-close:hover {
    background-color: var(--background-secondary)
}

.modal__success-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 8px
}

.modal__button {
    margin-top: 16px
}

.modal__button .button {
    width: 100%
}

.calculator__input-wrapper {
    border: 1px solid var(--separator-default);
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-color: var(--elements-contrast)
}

.calculator__input-box {
    padding: 22px 0 8px 16px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative
}

.calculator__input {
    padding: 0;
    outline: none;
    border: none;
    width: 100%;
    background-color: transparent
}

.calculator__label {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--elements-main);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 16px;
    -webkit-transition: font-size .15s;
    -o-transition: font-size .15s;
    transition: font-size .15s
}

.calculator__label.focused {
    font-size: 12px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    top: 8px
}

.loader__wrap.large {
    width: 40px;
    height: 40px;
    padding: 5px
}

.loader__wrap.medium {
    width: 32px;
    height: 32px;
    padding: 4px
}

.loader__wrap.small {
    width: 24px;
    height: 24px;
    padding: 3px
}

.loader {
    height: 100%;
    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;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.loader-background {
    background: var(--elements-contrast);
    position: absolute;
    -webkit-box-shadow: var(--shadow-l);
    box-shadow: var(--shadow-l)
}

.loader-background.large {
    width: 88px;
    height: 88px;
    border-radius: 20px
}

.loader-background.medium {
    width: 64px;
    height: 64px;
    border-radius: 20px
}

.loader-background.small {
    width: 40px;
    height: 40px;
    border-radius: 16px
}

.loader__svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    -webkit-animation: rotation 1455ms infinite linear;
    animation: rotation 1455ms infinite linear
}

.loader__svg-circle {
    stroke: var(--elements-main);
    stroke-dasharray: 44px;
    stroke-dashoffset: 11px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotatey(180deg) rotate(90deg);
    -ms-transform: rotatey(180deg) rotate(90deg);
    transform: rotatey(180deg) rotate(90deg);
    -webkit-animation: spinner 3850ms infinite ease;
    animation: spinner 3850ms infinite ease;
    stroke-width: 2;
    stroke-linecap: round;
    fill: none
}

.loader__svg-circle.default {
    stroke: var(--elements-contrast)
}

.button.alert .loader__svg-circle {
    stroke: #fff !important
}

@-webkit-keyframes spinner {
    0% {
        stroke-dashoffset: 33px;
        -webkit-transform: rotatey(0deg) rotate(0deg);
        transform: rotatey(0deg) rotate(0deg)
    }
    24.9999% {
        stroke-dashoffset: 11px;
        -webkit-transform: rotatey(0deg) rotate(0deg);
        transform: rotatey(0deg) rotate(0deg)
    }
    25% {
        stroke-dashoffset: 11px;
        -webkit-transform: rotatey(180deg) rotate(270deg);
        transform: rotatey(180deg) rotate(270deg)
    }
    49.9999% {
        stroke-dashoffset: 33px;
        -webkit-transform: rotatey(180deg) rotate(270deg);
        transform: rotatey(180deg) rotate(270deg)
    }
    50% {
        stroke-dashoffset: 33px;
        -webkit-transform: rotatey(0deg) rotate(180deg);
        transform: rotatey(0deg) rotate(180deg)
    }
    74.9999% {
        stroke-dashoffset: 11px;
        -webkit-transform: rotatey(0deg) rotate(180deg);
        transform: rotatey(0deg) rotate(180deg)
    }
    75% {
        stroke-dashoffset: 11px;
        -webkit-transform: rotatey(180deg) rotate(90deg);
        transform: rotatey(180deg) rotate(90deg)
    }
    100% {
        stroke-dashoffset: 33px;
        -webkit-transform: rotatey(180deg) rotate(90deg);
        transform: rotatey(180deg) rotate(90deg)
    }
}

@keyframes spinner {
    0% {
        stroke-dashoffset: 33px;
        -webkit-transform: rotatey(0deg) rotate(0deg);
        transform: rotatey(0deg) rotate(0deg)
    }
    24.9999% {
        stroke-dashoffset: 11px;
        -webkit-transform: rotatey(0deg) rotate(0deg);
        transform: rotatey(0deg) rotate(0deg)
    }
    25% {
        stroke-dashoffset: 11px;
        -webkit-transform: rotatey(180deg) rotate(270deg);
        transform: rotatey(180deg) rotate(270deg)
    }
    49.9999% {
        stroke-dashoffset: 33px;
        -webkit-transform: rotatey(180deg) rotate(270deg);
        transform: rotatey(180deg) rotate(270deg)
    }
    50% {
        stroke-dashoffset: 33px;
        -webkit-transform: rotatey(0deg) rotate(180deg);
        transform: rotatey(0deg) rotate(180deg)
    }
    74.9999% {
        stroke-dashoffset: 11px;
        -webkit-transform: rotatey(0deg) rotate(180deg);
        transform: rotatey(0deg) rotate(180deg)
    }
    75% {
        stroke-dashoffset: 11px;
        -webkit-transform: rotatey(180deg) rotate(90deg);
        transform: rotatey(180deg) rotate(90deg)
    }
    100% {
        stroke-dashoffset: 33px;
        -webkit-transform: rotatey(180deg) rotate(90deg);
        transform: rotatey(180deg) rotate(90deg)
    }
}

@-webkit-keyframes rotation {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotation {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.networks-banner {
    margin-top: 48px;
    border: 1px solid var(--elements-main);
    padding: 32px 24px 32px 176px;
    border-radius: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    background-image: url("/img/pages/cropty-io/fees/coin/v1/image/banner-bg.svg");
    background-position: right center;
    background-color: var(--elements-contrast)
}

.networks-banner__image {
    position: absolute;
    left: 6px;
    bottom: 12px;
    width: 164px;
    height: 140px
}

.networks-banner__image img {
    width: 100%;
    height: 100%
}

.networks-banner__close {
    width: 24px;
    height: 24px;
    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: absolute;
    top: 0;
    right: -32px;
    cursor: pointer
}

.networks-banner__close svg {
    fill: #c1c1c1
}

.networks-banner__description {
    margin-top: 2px
}

.networks-banner__button-box {
    margin-left: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.networks-banner__date {
    padding: 8px 16px;
    border-radius: 86px;
    border: 1px solid var(--elements-main)
}

.networks-banner__date.mobile {
    display: none
}

.networks-banner__button {
    margin-left: 24px
}

.fees-batman {
    position: fixed;
    bottom: 24px;
    z-index: 100;
    width: 100%;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform .15s;
    transition: -webkit-transform .15s;
    -o-transition: transform .15s;
    transition: transform .15s;
    transition: transform .15s, -webkit-transform .15s
}

.fees-batman.hide-batman {
    -webkit-transform: translateY(110%);
    -ms-transform: translateY(110%);
    transform: translateY(110%)
}

@media(max-width: 1200px) {
    .networks-banner__close {
        right: 8px;
        top: -32px
    }
}

@media(max-width: 768px) {
    .networks-banner {
        padding: 16px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .networks-banner__image {
        bottom: auto;
        top: -32px;
        left: -1px
    }
    .networks-banner__main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .networks-banner__info {
        width: 100%;
        margin-top: 75px
    }
    .networks-banner__date {
        display: none
    }
    .networks-banner__date.mobile {
        display: block;
        margin-left: auto
    }
    .networks-banner__button-box {
        margin-left: 0;
        width: 100%
    }
    .networks-banner__button {
        width: 100%;
        margin-top: 16px;
        margin-left: 0
    }
    .networks-banner__button .button {
        width: 100%
    }
    .fees-batman {
        bottom: 16px
    }
}