        @keyframes go2264125279 {
            from {
                transform: scale(0) rotate(45deg);
                opacity: 0;
            }

            to {
                transform: scale(1) rotate(45deg);
                opacity: 1;
            }
        }

        @keyframes go3020080000 {
            from {
                transform: scale(0);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes go463499852 {
            from {
                transform: scale(0) rotate(90deg);
                opacity: 0;
            }

            to {
                transform: scale(1) rotate(90deg);
                opacity: 1;
            }
        }

        @keyframes go1268368563 {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes go1310225428 {
            from {
                transform: scale(0) rotate(45deg);
                opacity: 0;
            }

            to {
                transform: scale(1) rotate(45deg);
                opacity: 1;
            }
        }

        @keyframes go651618207 {
            0% {
                height: 0;
                width: 0;
                opacity: 0;
            }

            40% {
                height: 0;
                width: 6px;
                opacity: 1;
            }

            100% {
                opacity: 1;
                height: 10px;
            }
        }

        @keyframes go901347462 {
            from {
                transform: scale(0.6);
                opacity: 0.4;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .go4109123758 {
            z-index: 9999;
        }

        .go4109123758>* {
            pointer-events: auto;
        }



        .hide {
            display: none !important;
        }


        .loader {
            width: 16px;
            height: 16px;
            border: 3px solid #FFF;
            border-bottom-color: transparent;
            border-radius: 50%;
            display: inline-block;
            box-sizing: border-box;
            animation: rotation 1s linear infinite;
        }

        @keyframes rotation {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }







        .error {
            line-height: 20px;
            background-color: var(--kline-red-bg);
            color: var(--kline-red);
            font-size: 13px;
            padding: 10px;
            margin-top: 10px;
            margin-bottom: 10px;
        }


        #overlay {
            position: fixed;
            display: block;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 999999;
        }

        #overlay-loader {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            margin: 0 auto;
        }

        .lds-spinner,
        .lds-spinner div,
        .lds-spinner div:after {
            box-sizing: border-box;
        }

        .lds-spinner {
            color: white;
            display: inline-block;
            position: relative;
            width: 80px;
            height: 80px;
        }

        .lds-spinner div {
            transform-origin: 40px 40px;
            animation: lds-spinner 1.2s linear infinite;
        }

        .lds-spinner div:after {
            content: " ";
            display: block;
            position: absolute;
            top: 3.2px;
            left: 36.8px;
            width: 6.4px;
            height: 17.6px;
            border-radius: 20%;
            background: currentColor;
        }

        .lds-spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .lds-spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .lds-spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .lds-spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .lds-spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .lds-spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .lds-spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .lds-spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .lds-spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .lds-spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .lds-spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

        @keyframes lds-spinner {
            0% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }



        /*! CSS Used from: https://www.deepcoin.com/static/css/vendor.fbc2c466a6.css */
        * {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -moz-tap-highlight-color: transparent;
            -ms-tap-highlight-color: transparent;
            -o-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            list-style: none;
        }

        em {
            font-style: normal;
            font-weight: 400;
        }

        div {
            margin: 0;
            padding: 0;
        }

        .center {
            -webkit-justify-content: center;
            justify-content: center;
        }

        .center {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: justify;
            -webkit-box-pack: justify;
            box-pack: justify;
            -ms-flex-align: center;
            -webkit-box-align: center;
            box-align: center;
            -webkit-align-items: center;
            align-items: center;
        }

        .flex {
            display: flex;
        }

        .left {
            float: left;
        }

        .right {
            float: right;
        }

        .cb {
            justify-content: space-between;
        }

        .cc {
            justify-content: center;
        }

        .ac {
            align-items: center;
        }

        .flex1 {
            flex: 1;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-track {
            background-color: var(--dialog-bg-color);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--text-color-level4);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:active,
        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--text-color-level3);
        }

        /*! CSS Used from: https://www.deepcoin.com/static/css/89.5010b10953.css */
        .open-auth-container[data-v-b83ba92a] {
            padding: 19px 50px 44px;
            margin-top: -8px;
        }

        .open-auth-container .others-login .left[data-v-b83ba92a],
        .open-auth-container .others-login .right[data-v-b83ba92a] {
            height: 1px;
            background: var(--line-color);
        }

        .open-auth-container .others-login .center[data-v-b83ba92a] {
            margin: 0 17px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-color-level1);
            line-height: 17px;
        }

        .open-auth-container .open-auth-platform[data-v-b83ba92a] {
            margin-top: 25px;
        }

        .open-auth-container .open-auth-platform>div[data-v-b83ba92a] {
            border-radius: 4px;
        }

        .open-auth-container .open-auth-platform>div[data-v-b83ba92a]:hover {
            opacity: .8;
        }

        .open-auth-container .open-auth-platform .google[data-v-b83ba92a],
        .open-auth-container .open-auth-platform .metamask[data-v-b83ba92a] {
            height: 50px;
            background: #292929;
            cursor: pointer;
        }

        .open-auth-container .open-auth-platform .google .icon[data-v-b83ba92a],
        .open-auth-container .open-auth-platform .metamask .icon[data-v-b83ba92a] {
            display: block;
            width: 25px;
            height: 25px;
            background-repeat: no-repeat;
            background-position: 50%;
            background-size: contain;
        }

        .open-auth-container .open-auth-platform .google .name[data-v-b83ba92a],
        .open-auth-container .open-auth-platform .metamask .name[data-v-b83ba92a] {
            margin-left: 7px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-color-level1);
            line-height: 22px;
        }

        .open-auth-container .open-auth-platform .google .icon[data-v-b83ba92a] {
            background-image: url(Google_Icons-09-512.svg);
        }

        .open-auth-container .open-auth-platform .metamask[data-v-b83ba92a] {
            margin-right: 19px;
        }

        .open-auth-container .open-auth-platform .metamask .icon[data-v-b83ba92a] {
            background-image: url(metamask-8c40721e7f19a1f.png);
        }


        * {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -moz-tap-highlight-color: transparent;
            -ms-tap-highlight-color: transparent;
            -o-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            list-style: none;
        }

        .left {
            float: left;
        }

        .flex1 {
            flex: 1;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-track {
            background-color: var(--dialog-bg-color);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--text-color-level4);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:active,
        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--text-color-level3);
        }

        .open-auth-container .others-login .left[data-v-b83ba92a] {
            height: 1px;
            background: #292929;
        }



        * {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -moz-tap-highlight-color: transparent;
            -ms-tap-highlight-color: transparent;
            -o-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
            margin: 0;
            padding: 0;
            border: 0;
            outline: 0;
            list-style: none;
        }

        .right {
            float: right;
        }

        .flex1 {
            flex: 1;
        }

        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-track {
            background-color: var(--dialog-bg-color);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--text-color-level4);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:active,
        ::-webkit-scrollbar-thumb:hover {
            background-color: var(--text-color-level3);
        }

        .open-auth-container .others-login .right[data-v-b83ba92a] {
            height: 1px;
            background: #292929;
        }