@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');

@import 'ns-style-vars.css';
@import 'ns-style-control.css';
@import 'gotg-wallet-dialog.css';

/* --------------------------- section: global -------------------------------------- */
* {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    overscroll-behavior: none;
}

html, body {
    width: 100%;
    height: 100%;
}

body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, select, table, td, textarea, th, ul {
}

body, button, input, select, table, textarea {
    font-size: var(--font-size-normal);
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    background: transparent
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

button, input {
    border-radius: 0;
}

button {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button:active, button:focus {
    border: none;
    outline: none;
    background: none;
}

input:active, input:focus, input:focus-visible, input:hover {
    outline: none;
    border: none;
    border-color: inherit;
    box-shadow: none;
}

ol, ul, li, dl, dt, dd {
    list-style: none;
}

address, em, i {
    font-style: normal;
}

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

fieldset {
    border: 0;
}

a {
    text-decoration: none;
}

a:link {
    text-decoration: none;
}

img {
    vertical-align: middle;
    border: 0;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

.neoul-content.content {
    z-index: 1000;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.attach-hidden-box {
    width: 0px !important;
    height: 0px !important;
    overflow: hidden;
    position: relative;
}

.wrap {
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    width: 100vw;
    height: 100vh;
    background-color: #030a0e;
}

.wrap.after-onload {
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity 0.4s, left 0s;
    background-color: #030a0e;
}

.gotg-wallet * {
    font-family: 'Open Sans', sans-serif;
}

.gotg-wallet .hide {
    display: none !important;
}

.gotg-wallet .copyright {
    color: #818a8f;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-normal);
}

.gotg-wallet .bg-section {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 999;
    background-color: #030a0e;
}

.gotg-wallet .bg-section .bg-gradient {
    height: calc(100vh - 240px);
    width: 100vw;
    background-image: linear-gradient(to bottom, #030a0e, rgba(3, 10, 14, 0.80) 48%, rgba(3, 10, 14, 0.3));
    position: fixed;
    top: 240px;
    left: 0;
    right: 0;
    z-index: 998;
}

.gotg-wallet .bg-section .bg-gradient.bottom {
    height: 240px;
    width: 100vw;
    background-image: linear-gradient(to top, #030a0e, rgba(3, 10, 14, 0.34) 48%, rgba(3, 10, 14, 0));
    position: fixed;
    top: calc(100vh - 240px);
    left: 0;
    right: 0;
    z-index: 998;
}

.gotg-wallet .bg-section .bg-hide-block {
    height: 240px;
    width: 100vw;
    background: #030a0e;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
}

/* --------------------------- section: global -------------------------------------- */

.gotg-wallet .gotg-wallet-main {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.gotg-wallet-main .content-wrapper {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gotg-wallet-main .content-wrapper.fixed {
    position: fixed;
}

.gotg-wallet-main .content-wrapper.fixed.top {
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    height: 80px;
    background-color: #030a0e;
    box-sizing: border-box;
    border-bottom: 1px solid #1c466c;
}

.gotg-wallet-main .content-wrapper.fixed.bottom {
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    height: 60px;
    background-color: #030A0E;
    box-sizing: border-box;
    border-top: 1px solid #354553;
}

.gotg-wallet-main .content-wrapper.body {
    height: calc(100vh - 80px - 60px);
    margin-top: 80px;
    overflow: hidden;
    padding-bottom: 32px;
    box-sizing: border-box;
}

.gotg-wallet-main .intro {
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    position: relative;
    transition: opacity 1s;
}

.gotg-wallet-main .intro.showing {
    opacity: 1;
    transition-delay: 1s;
    transition: opacity 2s;
}

.gotg-wallet-main .intro .copyright {
    font-size: 7px;
    line-height: 2.29;
    color: #657886;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 32px;
    width: 100vw;
    text-align: center;
    display: inline-block;
}

.gotg-wallet-main .login-box {
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: opacity 1s;
    padding-bottom: 96px;
}

.gotg-wallet-main .login-box.showing {
    opacity: 1;
    transition-delay: 1s;
    transition: opacity 2s;
}

/* side-panel */
#side-panel-container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 29900;
}

#side-panel-container.hide {
    display: none;
}

#side-panel-container .side-panel-dim {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s;
    position: fixed;
    z-index: 0;
    cursor: pointer;
}

#side-panel-container .side-panel-dim.active {
    opacity: 1;
    transition: opacity 0.4s;
}

#side-panel-container .side-panel-content.left {
    width: var(--panel-outer-factor);
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: calc(var(--panel-outer-factor) * (-1));
    top: 0;
    bottom: 0;
    transition: left 0.4s;
}

#side-panel-container .side-panel-content.left.active {
    left: 0;
    transition: left 0.4s;
}

#side-panel-container .side-panel-content.right {
    width: var(--panel-outer-factor);
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    right: calc(var(--panel-outer-factor) * (-1));
    top: 0;
    bottom: 0;
    transition: right 0.4s;
}

#side-panel-container .side-panel-content.right.active {
    right: 0;
    transition: right 0.4s;
}

#side-panel-container .side-panel-content.bottom {
    width: 100%;
    height: var(--panel-outer-factor);
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: calc(var(--panel-outer-factor) * (-1));
    left: 0;
    right: 0;
    transition: bottom 0.4s;
}

#side-panel-container .side-panel-content.bottom.active {
    bottom: 0;
    transition: bottom 0.4s;
}

/* --------------------------- section: dialog design -------------------------------------- */
.wrap #dialog-wrap {
    position: fixed;
    z-index: 999999;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--text-color);
}

.wrap #dialog-wrap.active {
    display: block;
}

.wrap .neoul-dialog-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--text-color);
}

.wrap .neoul-dialog-container.active {
    display: flex;
}

.wrap .neoul-dialog-container .dialog-main {
    width: 640px;
    height: 320px;
    background-color: #1c2a36;
    border-radius: 12px;
    box-sizing: border-box;
    color: #fff;
}

.wrap .neoul-dialog-container .dialog-main .dialog-header {
    height: 54px;
    background-color: #1c2a36;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #2c3566;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #354553;
    padding: 0px 20px;
    z-index: 9999;
    box-sizing: border-box;
}

.wrap .neoul-dialog-container .dialog-main .dialog-header > h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.wrap .neoul-dialog-container .dialog-main .dialog-header .dialog-close {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.wrap .neoul-dialog-container .dialog-main .dialog-content {
    width: 100%;
    height: calc(100% - 122px);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    background-color: #1c2a36;
    padding: 12px 16px;
}

.wrap .neoul-dialog-container .dialog-main .dialog-content .dialog-message {
    margin: auto;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    box-sizing: border-box;
    color: #c6c6c6;
}

.wrap .neoul-dialog-container .dialog-main .dialog-action {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    padding: 0px 20px;
    box-sizing: border-box;
}

.wrap .neoul-dialog-container .dialog-main .dialog-action button {
    border: none;
    outline: none;
    border-radius: 18px;
    height: 36px;
    padding: 0px 16px;
    color: #ffffff;
    min-width: 120px;
    font-size: var(--font-size-normal);
    margin: 0px 8px;
}

.wrap .neoul-dialog-container .dialog-main .dialog-action button:focus,
.wrap .neoul-dialog-container .dialog-main .dialog-action button:active {
    outline: none;
    border: none;
}

.wrap .neoul-dialog-container .dialog-main .dialog-action button.btn-secondary {
    background-color: #394752;
    border: 1px solid #394752;
    color: #fff;
}

.wrap .neoul-dialog-container .dialog-main .dialog-action button.btn-primary {
    background-color: #ff4a9c;
}

.wrap .neoul-dialog-container .dialog-main.alert {
    width: 320px;
    height: 290px;
}

.wrap .neoul-dialog-container .dialog-main.reset-pass-cancel,
.wrap .neoul-dialog-container .dialog-main.app-alert {
    width: 320px;
    height: 290px;
}

.wrap .neoul-dialog-container .dialog-main.app-confirm {
    width: 320px;
    height: 290px;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp {
    width: 276px;
    height: 369px;
}

.wrap .neoul-dialog-container .dialog-main.item-purchase-popUp {
    width: 276px;
    height: 304px;
}

/* 로그인창 */
.wrap .neoul-dialog-container .dialog-main.login {
    width: 480px;
    height: 520px;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-header {
    height: 50px !important;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-header > h2 {
    font-size: 21px;
}

/* 닫기버튼 */
.wrap .neoul-dialog-container .dialog-main > .dialog-header > .icon-close {
    content: url("/assets/images/ic-close.png");
    width: 22.8px;
    height: 22.8x;
    cursor: pointer;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-content {
    height: 260px;
    background-color: #ffffff !important;
    justify-content: flex-start !important;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-content > .login-logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 35px 0;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-content > .login-field-wrapper {
    width: 100%;
    height: 45px;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-content > .login-field-wrapper > input {
    width: 320px;
    height: 45px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    outline: none;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-content > .login-field-wrapper > input#login-user-id {
    padding: 0 10px;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-content > .login-field-wrapper > input#login-user-password {
    padding: 0 43px 0 10px;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-content > .login-field-wrapper > i.show-password {
    content: url("/assets/images/svgs/ic-show-password.svg");
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 60px;
    display: inline-block;
    width: 21px;
    height: 18px;
    cursor: pointer;
    transform: translateY(-50%);
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-action {
    height: 120px !important;
    border-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-action > .btn-ripple {
    width: 320px;
    height: 50px;
    border: solid 1px #3869bf;
    border-radius: 4px;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-action > .btn-ripple > span {
    font-size: 18px;
    font-weight: bold;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-action > .find-pass-contact {
    width: 320px;
    height: 60px;
    margin: 10px 0 0;
    border-radius: 4px;
    border: solid 1px #eaeaea;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
}

.wrap .neoul-dialog-container .dialog-main.login > .dialog-action > .find-pass-contact > em {
    color: #000;
    font-size: 14px;
}

.wrap .neoul-dialog-container .dialog-main.alert .dialog-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap .neoul-dialog-container .dialog-main.login .dialog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrap .neoul-dialog-container .dialog-main.reset-pass-cancel .dialog-content,
.wrap .neoul-dialog-container .dialog-main.app-alert .dialog-content,
.wrap .neoul-dialog-container .dialog-main.app-confirm .dialog-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap .neoul-dialog-container .dialog-main.reset-pass-cancel .dialog-header,
.wrap .neoul-dialog-container .dialog-main.app-alert .dialog-header,
.wrap .neoul-dialog-container .dialog-main.app-confirm .dialog-header,
.wrap .neoul-dialog-container .dialog-main.login .dialog-header {
    position: relative;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-header {
    width: 100%;
    height: 20px;
    border-bottom: none;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content {
    padding: 0 20px 0 20px;
    width: 100%;
    height: 280px !important;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item {
    width: 236px;
    height: 176px;
    background: radial-gradient(rgba(0, 154, 255, 0.2), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(20, 206, 230, 0.3);
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8px;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item > .item-num {
    width: 100%;
    text-align: right;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item > .item-num > .no {
    font-size: 9px;
    font-weight: 500;
    color: #14cee6;
    font-family: NanumSquare;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item > .item-num > .num {
    font-size: 11px;
    font-weight: bold;
    color: #ffffff;
    font-family: NanumSquare;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item > img {
    width: 116px;
    height: 116px;
    margin: 8px 0;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info {
    width: 100%;
    margin-top: 20px;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .sub-title {
    font-size: 11px;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .title {
    font-size: 16px;
    font-weight: bold;
    color: #14cee6;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .point-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 7px;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .point-info i.icon-tari-point {
    content: url("/assets/images/ic-tari-point.png");
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .point-info ul li {
    display: flex;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .point-info .tari-point {
    color: #ffd350;
    font-size: 16px;
    font-weight: bold;
    font-family: NanumSquare;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .point-info .tari-point:after {
    content: "TARI";
    color: #ffd350;
    font-size: 11px;
    font-weight: bold;
    margin-left: 4px;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .point-info .item-buy {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background-color: rgb(45, 55, 62);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-content > .item-title-info > .point-info i.icon-buy {
    content: url("/assets/images/ic-buy.png");
    width: 16px;
    height: 16px;
}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp > .dialog-action > .btn-ripple {
    padding: 0;
}

/*comming soon*/
.wrap .neoul-dialog-container .dialog-main.item-buy-popUp .dialog-action > .btn-ripple {
    width: 100% !important;
    min-width: 100% !important;
    background-color: #ff4a9c;
    margin: 0 !important;

}

.wrap .neoul-dialog-container .dialog-main.item-buy-popUp .dialog-action > .btn-ripple > span {
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
}

#dialog-wrap .stakable-item {
    width: calc(100% - 16px);
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    display: flex;
    flex-direction: column;
    padding: 12px;
    margin: 0 auto;
}


#dialog-wrap .stakable-item .btn-ripple.square > em,
#dialog-wrap .staking-item .btn-ripple.square > em {
    white-space: nowrap;
}

#dialog-wrap .stakable-item .staking-card,
#dialog-wrap .staking-item .staking-card {
    width: 100%;
    display: flex;
    flex-direction: row;
}

#dialog-wrap .stakable-item .staking-card .profile-section,
#dialog-wrap .staking-item .staking-card .profile-section {
    width: 112px;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#dialog-wrap .stakable-item .staking-card .profile-section .profile-image,
#dialog-wrap .staking-item .staking-card .profile-section .profile-image {
    width: 112px !important;
    height: 112px !important;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}

#dialog-wrap .stakable-item .staking-card .profile-section .profile-image.hide,
#dialog-wrap .staking-item .staking-card .profile-section .profile-image.hide {
    display: none;
}

#dialog-wrap .stakable-item .staking-card .profile-section .profile-image > img,
#dialog-wrap .staking-item .staking-card .profile-section .profile-image > img {
    opacity: 0;
    display: block;
    border: none;
    outline: none;
    white-space: nowrap;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
}

#dialog-wrap .stakable-item .staking-card .profile-section .profile-image.render > img,
#dialog-wrap .staking-item .staking-card .profile-section .profile-image.render > img {
    opacity: 1;
    transition: opacity 0.4s;
}

#dialog-wrap .staking-item .staking-card .profile-section .d-day {
    font-size: 25px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
    display: inline-block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: 4px;
}

#dialog-wrap .stakable-item .staking-card .asset-section,
#dialog-wrap .staking-item .staking-card .asset-section {
    display: flex;
    flex-direction: column;
    width: calc(100% - 112px - 12px);
    height: 100%;
}

#dialog-wrap .stakable-item .staking-card .asset-section .item-name,
#dialog-wrap .staking-item .staking-card .asset-section .item-name {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    line-height: 1.5;
}

#dialog-wrap .stakable-item .staking-card .asset-section .asset-item > em:nth-child(1),
#dialog-wrap .staking-item .staking-card .asset-section .asset-item > em:nth-child(1) {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    margin-top: 8px;
}

#dialog-wrap .stakable-item .staking-card .asset-section .asset-item > em.coin-type,
#dialog-wrap .staking-item .staking-card .asset-section .asset-item > em.coin-type {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
}

#dialog-wrap .stakable-item .full-description {
    margin-top: 10px;
    font-weight: 400;
    border-radius: 8px;
    padding: 8px;
    background-color: #e4ebef;
    color: #030a0e;
}

/* --------------------------- section: dialog design -------------------------------------- */

/* --------------------------- section: sub-page -------------------------------------- */
#sub-page-area {
    display: block;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 19900;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#sub-page-area.hide {
    display: none;
}

#sub-page-area > div {
    width: 100%;
    height: 100%;
    position: relative;
}

#sub-page-area .sub-page-container {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    left: 100%;
    top: 0;
    bottom: 0;
    right: -100%;
    background-color: #ffffff;
}

#sub-page-area .sub-page-container.showing {
    left: 0;
    transition: left 0.4s;
}

#sub-page-area .sub-page-container.hiding {
    left: 100%;
    transition: left 0.4s;
}

#sub-page-area .sub-page-container .sub-page-header {
    height: 60px;
    background-color: #030a0e;
    width: 100%;
    max-width: 1600px;
    position: fixed;
    left: 100%;
    z-index: 19999;
    box-sizing: border-box;
    padding: 14px 16px;
    display: flex;
    align-items: center;
}

#sub-page-area .sub-page-container.showing .sub-page-header {
    left: 0;
    transition: left 0.4s;
}

#sub-page-area .sub-page-container.hiding .sub-page-header {
    left: 100%;
    transition: left 0.4s;
}

#sub-page-area .sub-page-container .sub-page-header.dark-mode {
    background-color: #000000;
}

#sub-page-area .sub-page-container .sub-page-header > i.mlsdk-icon.page-back {
    content: url("/assets/images/svgs/ic-page-back.svg");
    width: 24px;
    height: 24px;
    cursor: pointer;
}

#sub-page-area .sub-page-container .sub-page-header > i.mlsdk-icon.close-btn {
    content: url("/assets/images/svgs/ic-close-btn.svg");
    width: 24px;
    height: 24px;
    cursor: pointer;
}

#sub-page-area .sub-page-container .sub-page-content {
    width: 100%;
    height: calc(100% - 60px);
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 60px;
    position: relative;
    -ms-overflow-style: none;
}

#sub-page-area .sub-page-container .sub-page-content::-webkit-scrollbar {
    display: none;
    width: 0 !important;
}

#sub-page-area .sub-page-container .studysenior-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

#sub-page-area .sub-page-container .studysenior-icon.page-back {
    content: url("/assets/images/svgs/ic-arrow-left-dark.svg");
}

#sub-page-area .sub-page-container .sub-page-title {
    font-size: 15px;
    font-family: 'NanumSquareRoundB', sans-serif;
    display: inline-block;
    color: #ffffff;
}

#sub-page-area .sub-page-container .sub-page-header .sub-page-title.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#sub-page-area .sub-page-container .sub-page-header.dark-mode .sub-page-title {
    color: #ffffff;
}

#sub-page-area .sub-page-container .sub-page-title.hide {
    display: none;
}

#sub-page-area .sub-page-container .sub-page-header .header-fragment {
    width: calc(100% - 48px);
    text-align: left;
    color: #fff;
    padding-left: 8px;
    font-size: 20px;
    font-weight: bold;
}

#sub-page-area .sub-page-container .sub-page-content .content-wrapper {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

#sub-page-area .sub-page-container .sub-page-content .content-wrapper .page-container {
    width: 100%;
    max-width: 1600px;
    min-width: 1400px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* --------------------------- section: sub-page -------------------------------------- */

#sub-page-area .sub-page-container .sub-page-header > i.ns-icon.page-back {
    content: url("/assets/images/ic-page-back.svg");
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#sub-page-area .sub-page-container .sub-page-header > i.ns-icon.close-btn {
    content: url("/assets/images/ic-close-btn.svg");
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.swap-logo-area {
    width: 200px;
    height: 180px;
    margin: 60px auto 0;
    text-align: center;
    position: relative;
}

.swap-logo-area .logo {
    width: 80px;
    position: absolute;
    top: 0;
    left: 60px;
}

.swap-logo-area .phone {
    width: 200px;
}

.swap-text-area {
    margin-top: 16px;
    font-size: 14px;
    color: #8ea1af;
    text-align: center;
}

.gotg-wallet.sub-page * {
    font-family: 'Open Sans', sans-serif;
}

.gotg-wallet.sub-page .bg-section {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 1999;
    background-color: #030a0e;
}

.gotg-wallet.sub-page .bg-section .bg-gradient {
    height: calc(100vh - 160px - 70px);
    width: 100vw;
    background-image: linear-gradient(to bottom, #030a0e, rgba(3, 10, 14, 0.80) 58%, rgba(3, 10, 14, 0));
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    z-index: 1998;
}

.gotg-wallet.sub-page .bg-section .bg-hide-block input {
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #41abe4;
    width: 100%;
    height: 44px;
    padding: 15px;
    margin-bottom: 8px;
}

.gotg-wallet.sub-page .bg-section .bg-gradient.bottom {
    height: 130px;
    width: 100vw;
    background-image: linear-gradient(to top, #030a0e, rgba(3, 10, 14, 0.34) 58%, rgba(3, 10, 14, 0));
    position: absolute;
    top: calc(100vh - 100px);
    left: 0;
    right: 0;
    z-index: 1998;
}

.gotg-wallet.sub-page .bg-section .bg-hide-block {
    height: 160px;
    width: 100vw;
    background: #030a0e;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1998;
    text-align: center;
    padding-top: 16px;
}

.gotg-wallet.sub-page .bg-section .content-top-wrap {
    width: 89%;
    margin: 0 auto;
}

.gotg-wallet.sub-page .bg-section .content-top-wrap p {
    text-align: left;
    color: #8ea1af;
    text-indent: -8px;
    margin: 8px 0 8px 8px;
    font-size: 12px;
}

.gotg-wallet.sub-page .bg-section .content-wrap {
    width: 89%;
    margin: 20px auto;
    border-radius: 8px;
    background-color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gotg-wallet .ns-icon-input .field-wrapper > input,
.gotg-wallet .ns-input .field-wrapper > input {
    border: none !important;
    background-color: #1c2a36 !important;
    padding: 16px 20px 15px !important;
    color: #ffffff !important;
    height: 36px !important;
    border-radius: 24px !important;
}

.gotg-wallet .ns-icon-input .field-wrapper > input::placeholder,
.gotg-wallet .ns-input .field-wrapper > input::placeholder {
    color: #657886 !important;
    font-size: var(--font-size-normal) !important;
}

.gotg-wallet .ns-icon-input .field-wrapper .ns-icon {
    width: 20px !important;
    height: 20px !important;
    position: absolute;
    top: 50%;
    right: 20px !important;
    transform: translateY(-50%);
    z-index: 10;
}

.gotg-wallet .ns-icon-input .field-wrapper .ns-icon.eye {
    content: url("/assets/images/ic-eye.svg");
}

.gotg-wallet .ns-icon-input .field-wrapper .ns-icon.eye.selected {
    content: url("/assets/images/ic-eye-on.svg");
}

.gotg-wallet .ns-checkbox .check-icon {
    width: 24px !important;
    height: 24px !important;
    border-radius: 12px !important;
    border: none !important;
    background-color: transparent !important;
}

.gotg-wallet .ns-checkbox .check-icon .check {
    display: block !important;
    content: url("/assets/images/ic-gotg-check.svg") !important;
    width: 24px !important;
    height: 24px !important;
}

.gotg-wallet .ns-checkbox.active .check-icon .check {
    content: url("/assets/images/ic-gotg-check-on.svg") !important;
}

.gotg-wallet .ns-checkbox em {
    font-size: var(--font-size-normal) !important;
    margin-left: 8px !important;
}

.gotg-wallet .ns-checkbox.active .check-icon {
    border: none !important;
    background-color: transparent !important;
}

.gotg-wallet .ns-checkbox.active em {
    color: #ffffff !important;
}

.btn-ripple {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-ripple .animate {
    width: 2px;
    height: 2px;
    position: absolute;
    border-radius: 50%;
    animation: materialRipple 0.5s linear;
}

.gotg-wallet .btn-ripple.login {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    border: 1px solid #41abe4;
    background-color: rgba(0, 0, 0, 0.35);
    position: relative;
    outline: none;
    box-sizing: border-box;
    color: #ffffff;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-semibold);
}

.btn-ripple.square {
    width: 100%;
    height: 44px;
    background-color: #1b4dbe;
    position: relative;
    border: none;
    outline: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-semibold);
}

.btn-ripple.square > .btn-cover {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    right: 0;
    left: -20px;
    width: calc(100% + 40px);
    height: 100%;
    background-image: url("/assets/images/ic-card-button-bg.svg");
    background-size: cover;
    display: inline-block;
}

.btn-ripple.square > em {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 3;
}

.gotg-wallet .base-label {
    display: inline-block;
    color: #8ea1af;
    font-size: var(--font-size-small);
    width: 100%;
    text-align: center;
}

.gotg-wallet .text-link {
    display: inline-block;
    color: #41abe4;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
    width: 100%;
    text-align: center;
    text-decoration: underline;
}


/* wallet main */
.gotg-wallet .top-bar {
    width: 1280px;
    min-width: 1280px;
    height: 100%;
    background-color: #030a0e;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.gotg-wallet .top-bar .top-bar-left {
    display: flex;
}

.gotg-wallet .top-bar .top-bar-left .gnb-menu {
    display: flex;
    align-items: center;
    width: 480px;
    height: 100%;
    margin-left: 68px;
}

.gotg-wallet .top-bar .top-bar-left .gnb-menu .gnb-menu-item {
    width: 120px;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.gotg-wallet .top-bar .top-bar-left .gnb-menu .gnb-menu-item .gnb-name {
    display: inline-block;
    margin-top: 41px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--font-size-big);
    font-weight: var(--font-weight-bold);
    color: #BCC9D5;
}

.gotg-wallet .top-bar .top-bar-left .gnb-menu .gnb-menu-item.active .gnb-name {
    color: #ffffff;

}

.gotg-wallet .top-bar .top-bar-left .gnb-menu .gnb-menu-item .selected-bar {
    width: 0px;
    opacity: 0;
    height: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: width 0.4s, opacity 0.4s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background-color: #41abe4;
}

.gotg-wallet .top-bar .top-bar-left .gnb-menu .gnb-menu-item.active .selected-bar {
    width: 52px;
    opacity: 1;
    transition: width 0.4s, opacity 0.4s;
}

.gotg-wallet .top-bar .top-bar-right {
    display: flex;
    align-items: center;
}

.gotg-wallet .top-bar .top-bar-right .my-page {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gotg-wallet .top-bar .top-bar-right .my-page > em {
    font-size: var(--font-size-normal);
    display: inline-block;
    font-weight: normal;
    margin-left: 4px;
    color: #ffffff;
}

.gotg-wallet .top-bar .top-bar-right .my-page > em.font-bold {
    font-weight: var(--font-weight-bold);

}

.gotg-wallet .bottom-bar {
    width: 1280px;
    min-width: 1280px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.gotg-wallet .ns-icon.search {
    width: 20px !important;
    height: 20px !important;
    display: inline-block;
    content: url("/assets/images/ic-gotg-search.svg");
}

.gotg-wallet .ns-icon {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    padding: 8px;
    display: inline-block;
}

.gotg-wallet .ns-icon.gotg-bullet {
    width: 16px;
    height: 16px;
    border-radius: 16px;
    padding: 8px;
    background-image: linear-gradient(to bottom, #41abe4, #1b4dbe);
    content: url("/assets/images/ic-gotg-logo-only-white.svg");
    display: inline-block;
}

.gotg-wallet .ns-icon.gotg-bullet.on {
    border: 1px solid #ffffff;
    overflow: hidden;
    display: inline-block;
    width: 32px;
    height: 32px;
    padding: 0;
}

.gotg-wallet .gnb-content-wrapper {
    width: 1280px;
    min-width: 1280px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.gotg-wallet .gnb-content-wrapper .gnb-content {
    display: none;
    width: 100%;
    flex-direction: column;
    box-sizing: border-box;
    padding: 28px 0px;
}

.gotg-wallet .gnb-content-wrapper .gnb-content.active {
    display: flex;
}


.wrap .neoul-dialog-container .dialog-main.notice-logout-dialog,
.wrap .neoul-dialog-container .dialog-main.notice-dialog,
.wrap .neoul-dialog-container .dialog-main.dag-concept,
.wrap .neoul-dialog-container .dialog-main.tx-hist,
.wrap .neoul-dialog-container .dialog-main.mckinley-nft {
    width: calc(1280px * 0.9);
    height: calc(1280px * 0.9 * (9 / 16));
    border-radius: 8px;
    box-sizing: border-box;
}

.wrap .neoul-dialog-container .dialog-main.notice-logout-dialog .dialog-content,
.wrap .neoul-dialog-container .dialog-main.dag-concept .dialog-content,
.wrap .neoul-dialog-container .dialog-main.dag-concept .dialog-content,
.wrap .neoul-dialog-container .dialog-main.tx-hist .dialog-content,
.wrap .neoul-dialog-container .dialog-main.mckinley-nft .dialog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 122px);
    overflow-y: auto;
    overflow-x: hidden;
}

.wrap .neoul-dialog-container .dialog-main.notice-logout-dialog .dialog-header,
.wrap .neoul-dialog-container .dialog-main.notice-dialog .dialog-header,
.wrap .neoul-dialog-container .dialog-main.dag-concept .dialog-header,
.wrap .neoul-dialog-container .dialog-main.tx-hist .dialog-header,
.wrap .neoul-dialog-container .dialog-main.mckinley-nft .dialog-header {
    position: relative;
}


.gotg-wallet .gnb-content.home .content-section {
    width: 100%;
    display: flex;
}

.gotg-wallet .gnb-content .content-section.horizotal {
    flex-direction: row !important;
}

.gotg-wallet .gnb-content .content-section.vertical {
    flex-direction: column !important;
}

.gotg-wallet .gnb-content.home .account-wrapper {
    width: 626px;
    height: 348px;
    padding: 16px 66px 16px;
    box-sizing: border-box;
    border-radius: 12px;
    border: solid 1px rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    position: relative;
}

.gotg-wallet .gnb-content.home .account-wrapper > button {
    position: absolute;
    width: 36px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    border: none;
    background-color: transparent;
}

.gotg-wallet .gnb-content.home .account-wrapper > button:focus,
.gotg-wallet .gnb-content.home .account-wrapper > button:active,
.gotg-wallet .gnb-content.home .account-wrapper > button:hover {
    background-color: #41abe4;
}

.gotg-wallet .gnb-content.home .account-wrapper > button.account-left {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    left: 0;
}

.gotg-wallet .gnb-content.home .account-wrapper > button.account-left .ns-icon {
    content: url("/assets/images/ic-caret-left.svg");
}

.gotg-wallet .gnb-content.home .account-wrapper > button.account-right {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    right: 0;
}

.gotg-wallet .gnb-content.home .account-wrapper > button.account-right .ns-icon {
    content: url("/assets/images/ic-caret-right.svg");
}

.gotg-wallet .account-item {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.gotg-wallet .account-item .account-card {
    width: calc(100% + 8px);
    margin-right: -8px;
    height: 240px;
    display: flex;
    flex-direction: row;
}

.gotg-wallet .account-item .account-card .profile-section {
    width: 200px;
    margin-right: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gotg-wallet .account-item .account-card .profile-section .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}

.gotg-wallet .account-item .account-card .profile-section .profile-image.render > i.side-label {
    display: block;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9;
    cursor: pointer;
    position: absolute;
    bottom: 1px;
    right: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: 40px;
    background-color: rgba(0,0,0,0.9);
    border-radius: 0 0 8px 8px;
}

.gotg-wallet .account-item .account-card .profile-section .profile-image.render > i.inside {
    /*background-image: url("/assets/images/ic-gotg-logo-02.svg");*/
}

.gotg-wallet .account-item .account-card .profile-section .profile-image.render > i.inside::after {
    content: 'INSIDE';
    color: #ffffff;
    text-align: center;
    width: 100%;
    line-height: 38px;
    display: inline-block;
}

.gotg-wallet .account-item .account-card .profile-section .profile-image.render > i.outside {
    /*background-image: url("/assets/images/ic-deal.svg");*/
}

.gotg-wallet .account-item .account-card .profile-section .profile-image.render > i.outside::after {
    content: 'OUTSIDE';
    color: #ffffff;
    text-align: center;
    width: 100%;
    line-height: 38px;
    display: inline-block;
}

.gotg-wallet .account-item .account-card .profile-section .profile-image.hide {
    display: none;
}

.gotg-wallet .account-item .account-card .profile-section .profile-image > img {
    opacity: 0;
    display: block;
    border: none;
    outline: none;
    white-space: nowrap;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
}

.gotg-wallet .account-item .account-card .profile-section .profile-image.render > img {
    opacity: 1;
    transition: opacity 0.4s;
}

.gotg-wallet .account-item .account-card .profile-section .profile-name {
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.gotg-wallet .account-item .account-card .profile-section .profile-name > em {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
    display: inline-block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: 4px;
}

.gotg-wallet .account-item .account-card .profile-section .profile-name > .ns-icon.edit {
    width: 12px !important;
    height: 12px !important;
    display: inline-block;
    content: url("/assets/images/ic-edit-alias.svg");
    margin-left: 8px;
    margin-top: 4px;
}

.gotg-wallet .account-item .account-card .account-actions {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 200px - 12px);
    height: 208px;
}

.gotg-wallet .account-item .account-card .account-actions .account-action {
    width: 132px;
    height: 96px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #0e4753;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    margin-right: 8px;
    cursor: pointer;
}

.gotg-wallet .account-item .account-card .account-actions .account-action > div {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -16px;
}

.gotg-wallet .account-item .account-card .account-actions .account-action > div > em {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    display: inline-block;
    font-size: var(--font-size-small);
    color: #ffffff;
    font-weight: var(--font-weight-semibold);
}

.gotg-wallet .account-item .account-card .account-actions .account-action.token-send i.ns-icon {
    width: 28px !important;
    height: 28px !important;
    display: inline-block;
    content: url("/assets/images/ic-token-send.svg");
}

.gotg-wallet .account-item .account-card .account-actions .account-action.token-receive i.ns-icon {
    width: 28px !important;
    height: 28px !important;
    display: inline-block;
    content: url("/assets/images/ic-token-receive.svg");
}

.token-receive-account {
    text-align: left;
    word-break: break-all;
}

.gotg-wallet .account-item .account-card .account-actions .account-action.token-swap i.ns-icon {
    width: 28px !important;
    height: 28px !important;
    display: inline-block;
    content: url("/assets/images/ic-token-swap.svg");
}

.gotg-wallet .account-item .account-card .account-actions .account-action.token-transaction i.ns-icon {
    width: 28px !important;
    height: 28px !important;
    display: inline-block;
    content: url("/assets/images/ic-token-purchase.svg");
}

.gotg-wallet.sub-page .sub-page-header .header-fragment {
    width: calc(100% - 48px);
    text-align: left;
    color: #fff !important;
    padding-left: 8px;
    font-size: 20px !important;
    font-weight: bold !important;
}

.gotg-wallet.sub-page .account-content {
    height: 100% !important;
    width: 100%;
    z-index: 1001;
    box-sizing: border-box;
    padding: 0px 32px;
}

.gotg-wallet.sub-page .account-item {
    width: calc(100% - 16px);
    height: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    display: flex;
    flex-direction: column;
    padding: 12px;
}


.gotg-wallet.sub-page .account-item .account-card {
    width: 100%;
    height: calc(100% - 44px);
    display: flex;
    flex-direction: row;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section {
    width: 112px;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-image {
    width: 112px !important;
    height: 112px !important;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}



.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-image.render > i.inside {
    background-image: url("/assets/images/ic-gotg-logo-02.svg");
}
.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-image.render > i.inside::after {
    content: 'INSIDE';
    color: #ffffff;
    text-align: center;
    width: 100%;
    line-height: 38px;
    display: inline-block;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-image.render > i.outside {
    background-image: url("/assets/images/ic-deal.svg");
}
.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-image.render > i.outside::after {
    content: 'OUTSIDE';
    color: #ffffff;
    text-align: center;
    width: 100%;
    line-height: 38px;
    display: inline-block;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-image.hide {
    display: none;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-image > img {
    opacity: 0;
    display: block;
    border: none;
    outline: none;
    white-space: nowrap;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-image.render > img {
    opacity: 1;
    transition: opacity 0.4s;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-name {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-name > em {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
    display: inline-block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: 4px;
}

.gotg-wallet.sub-page .account-item .account-card .profile-section .profile-name > .ns-icon.edit {
    width: 12px !important;
    height: 12px !important;
    display: inline-block;
    content: url("/assets/images/ic-edit-alias.svg");
    margin-left: 8px;
    margin-top: 4px;
}

.gotg-wallet.sub-page .account-item .account-card .asset-section {
    display: flex;
    flex-direction: column;
    width: calc(100% - 112px - 12px);
    height: 100%;
}

.gotg-wallet.sub-page .account-item .account-card .asset-section .asset-item > em:nth-child(1) {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    margin-top: 8px;
}

.gotg-wallet.sub-page .account-item .account-card .asset-section .asset-item > em.coin-type {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
}


.gotg-wallet.sub-page .profile-name > input.dyn-input {
    width: 100%;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid #41abe4;
    outline: none;
    color: #ffffff;
    border-radius: 4px;
    padding: 0px 4px;
}

.gotg-wallet .tx-item {
    display: flex;
    width: 100%;
    align-items: flex-start;
    margin-top: 20px;
}

.gotg-wallet .tx-item i.ns-icon.tx {
    display: inline-block;
    width: 20px !important;
    height: 20px !important;
    padding: 8px;
    border-radius: 8px;
    background-color: #894af8;
    margin-right: 8px;
    content: url("/assets/images/ic-tx-list.svg");
}

.gotg-wallet .tx-item .tx-info {
    width: calc(100% - 44px);
    display: flex;
    flex-direction: column;
}

.gotg-wallet .tx-item .tx-info .tx-log-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
}

.gotg-wallet .tx-item .tx-info .tx-log-box .tx-log,
.gotg-wallet .tx-item .tx-info .tx-log-box .tx-seq {
    width: 48%;
}

.gotg-wallet .tx-item .tx-info .tx-log-box .tx-seq > em:nth-child(1) {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow-ellipsis: end;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-normal);
    color: #ffffff;
}

.gotg-wallet .tx-item .tx-info .tx-log-box .tx-seq > em:nth-child(2) {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow-ellipsis: end;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-normal);
    color: #8ea1af;
}

.gotg-wallet .tx-item .tx-info .tx-log-box .tx-log > span {
    display: flex;
    align-items: center;
    width: 100%;
}

.gotg-wallet .tx-item .tx-info .tx-log-box .tx-log > span > em:nth-child(1) {
    display: inline-block;
    width: 32px;
    margin-right: 4px;
    text-align: right;
    white-space: nowrap;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-normal);
    color: #41abe4;
}

.gotg-wallet .tx-item .tx-info .tx-log-box .tx-log > span > em:nth-child(2) {
    display: inline-block;
    width: calc(100% - 36px);
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow-ellipsis: end;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-normal);
    color: #ffffff;
}

.gotg-wallet .tx-item .tx-info .tx-amount {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background-color: #050e15;
    border: 1px solid #1c505e;
    height: 24px;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 4px 13px 3px 13px;
}

.gotg-wallet .tx-item .tx-info .tx-amount > em:nth-child(1) {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-bold);
    display: inline-block;
    margin-right: 4px;
}

.gotg-wallet .tx-item .tx-info .tx-amount.send > em:nth-child(1) {
    color: #fb4a9c;
}

.gotg-wallet .tx-item .tx-info .tx-amount.recv > em:nth-child(1) {
    color: #41abe4;
}

.gotg-wallet .tx-item .tx-info .tx-amount > em:nth-child(2),
.gotg-wallet .tx-item .tx-info .tx-amount > em:nth-child(3) {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-normal);
    color: #ffffff;
    display: inline-block;
    margin-left: 4px;
}

.gotg-wallet .staking-item .dummy-card,
.gotg-wallet .account-item .dummy-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gotg-wallet .staking-item .dummy-card .add-card,
.gotg-wallet .account-item .dummy-card .add-card {
    width: 112px;
    height: 112px;
    box-sizing: border-box;
    border: 1px dotted rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gotg-wallet .staking-item .dummy-card .add-card .ns-icon.add,
.gotg-wallet .account-item .dummy-card .add-card .ns-icon.add {
    width: 24px !important;
    height: 24px !important;
    display: inline-block;
    content: url("/assets/images/ic-card-add.svg");
}


.gotg-wallet .account-stat-wrapper {
    width: 626px;
    height: 348px;
    padding: 25px 20px;
    box-sizing: border-box;
    border-radius: 12px;
    border: solid 1px rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    position: relative;
    margin-left: 28px;
    display: flex;
    align-items: flex-start;
}

.gotg-wallet .account-stat-wrapper .asset-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 184px;
    height: 100%;
}

.gotg-wallet .account-stat-wrapper .asset-list .asset-item:not(:first-child) {
    margin-top: 12px;
}

.gotg-wallet .account-stat-wrapper .asset-list .asset-item > em:nth-child(1) {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    margin-top: 8px;
}

.gotg-wallet .account-stat-wrapper .asset-list .asset-item > em.coin-type {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
}

.gotg-wallet .account-stat-wrapper .asset-list .asset-item > em:nth-child(3) {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: var(--font-weight-normal);
    color: #efefef;
    margin-top: 4px;
}

.gotg-wallet .account-stat-wrapper .asset-chart-area {
    width: calc(100% - 184px);
    height: 100%;
}

.gotg-wallet .section-title {
    font-size: var(--font-size-big);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0px 8px;
    margin-bottom: 4px;
}

.gotg-wallet .section-title .ns-icon.help {
    width: 20px !important;
    height: 20px !important;
    display: inline-block;
    margin-left: 4px;
    content: url("/assets/images/ic-question.svg");
    cursor: pointer;
}

.gotg-wallet .section-title .ns-icon.refresh {
    width: 20px !important;
    height: 20px !important;
    display: inline-block;
    margin-left: 4px;
    content: url("/assets/images/ic-panel-refresh.svg");
    cursor: pointer;
}

.gotg-wallet .content-panel {
    padding: 12px;
    box-sizing: border-box;
    border-radius: 12px;
    border: solid 1px rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    position: relative;
    display: flex;
    align-items: flex-start;
}

.gotg-wallet .panel-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.gotg-wallet .panel-box .panel-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gotg-wallet .panel-box > .panel-wrapper:not(:first-child) {
    margin-left: 28px;
}

.gotg-wallet .content-panel.dag-total {
    width: 100% !important;
    height: 84px;
}

.gotg-wallet .content-panel.dag-item {
    width: 408px !important;
    height: 192px !important;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.gotg-wallet .content-panel.dag-item .last-sync {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    font-size: var(--font-size-tiny);
    font-weight: 600;
    color: #657886;
}

.gotg-wallet .content-panel.dag-item .dag-card {
    width: 100%;
    height: calc(100% - 44px);
    display: flex;
    flex-direction: row;
}

.gotg-wallet .content-panel.dag-item .dag-card .profile-section {
    width: 112px;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gotg-wallet .content-panel.dag-item .dag-card .profile-section .profile-image {
    width: 112px !important;
    height: 112px !important;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    cursor: pointer;
}

.profile-image .dag-item-image {
    width: 80px !important;
    height: 80px !important;
}

.gotg-wallet .content-panel.dag-item .dag-card .profile-section .profile-image.hide {
    display: none;
}

.gotg-wallet .content-panel.dag-item .dag-card .profile-section .profile-image > img {
    opacity: 0;
    display: block;
    border: none;
    outline: none;
    white-space: nowrap;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
}

.gotg-wallet .content-panel.dag-item .dag-card .profile-section .profile-image.render > img {
    opacity: 1;
    transition: opacity 0.4s;
}

.gotg-wallet .content-panel.dag-item .dag-card .asset-section {
    display: flex;
    flex-direction: column;
    width: calc(100% - 112px - 12px);
    height: 100%;
}

.gotg-wallet .content-panel.dag-item .dag-card .asset-section .major-coin-type {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
}

.gotg-wallet .content-panel.dag-item .dag-card .asset-section .asset-item > em:nth-child(1) {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
}

.gotg-wallet .content-panel.dag-item .dag-card .asset-section .asset-item > em.coin-type {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
}

.gotg-wallet .content-panel.dag-item .dag-card .asset-section .asset-nft-item > em:nth-child(1) {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
}

.gotg-wallet .content-panel.dag-item .dag-card .asset-section .asset-nft-item > em.coin-type {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
    margin-left: 4px;
}

.gotg-wallet .dag-total {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.gotg-wallet .dag-total .total-assurance {
    font-size: 36px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    display: inline-block;
}

.gotg-wallet .dag-total .total-assurance > .coin-type {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: #41abe4;
    display: inline-block;
    margin-left: 16px;
}

.gotg-wallet.sub-page * {
    font-family: 'Open Sans', sans-serif;
}

.gotg-wallet.sub-page .sub-page-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    box-sizing: border-box;
    border-bottom: 1px solid #1c466c;
    background-color: #030a0e;
    z-index: 1888;
    display: flex;
    align-items: center;
    padding: 0px 24px;
}

.gotg-wallet.sub-page .sub-page-header > i.ns-icon.page-back {
    content: url("/assets/images/ic-page-back.svg");
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.gotg-wallet.sub-page .sub-page-header .sub-page-title {
    font-size: var(--font-size-title);
    font-weight: var(--font-weight-bold);
    display: inline-block;
    color: #ffffff;
    margin-left: 12px;
}

.gotg-wallet.sub-page .bg-section {
    width: 100vw;
    height: calc(100vh - 80px);
    position: absolute;
    z-index: 999;
    background-color: #030a0e;
    margin-top: 80px;
}

.gotg-wallet.sub-page .bg-section .bg-gradient {
    height: calc(100vh - 160px - 70px);
    width: 100vw;
    background-image: linear-gradient(to bottom, #030a0e, rgba(3, 10, 14, 0.80) 58%, rgba(3, 10, 14, 0));
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    z-index: 998;
}

.gotg-wallet.sub-page .bg-section .bg-hide-block input {
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #41abe4;
    width: 100%;
    heigth: 44px;
    padding: 15px;
    margin-bottom: 8px;
}

.gotg-wallet.sub-page .bg-section .bg-gradient.bottom {
    height: 130px;
    width: 100vw;
    background-image: linear-gradient(to top, #030a0e, rgba(3, 10, 14, 0.34) 58%, rgba(3, 10, 14, 0));
    position: absolute;
    top: calc(100vh - 100px);
    left: 0;
    right: 0;
    z-index: 998;
}

.gotg-wallet.sub-page .bg-section .bg-hide-block {
    height: 160px;
    width: 100vw;
    background: #030a0e;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    text-align: center;
    padding-top: 16px;
}

.gotg-wallet.sub-page .sub-page-content {
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 80px);
    position: absolute;
    z-index: 1999;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 24px 0px;
}

.gotg-wallet.sub-page .sub-page-content .content-top-wrap {
    width: 89%;
    margin: 0 auto;
}

.gotg-wallet.sub-page .sub-page-content .content-top-wrap p {
    text-align: left;
    color: #8ea1af;
    text-indent: -8px;
    margin: 8px 0 8px 8px;
    font-size: 12px;
}

.gotg-wallet.sub-page .sub-page-content .content-wrap {
    width: 89%;
    margin: 20px auto;
    border-radius: 8px;
    background-color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gotg-wallet.sub-page .sub-page-content .content-top-wrap input {
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #41abe4;
    width: 100%;
    heigth: 44px;
    padding: 15px;
    margin-bottom: 8px;
}


.swap-logo-area {
    width: 200px;
    height: 180px;
    margin: 60px auto 0;
    text-align: center;
    position: relative;
}

.swap-logo-area .logo {
    width: 80px;
    position: absolute;
    top: 0;
    left: 60px;
}

.swap-logo-area .phone {
    width: 200px;
}

.swap-text-area {
    margin-top: 16px;
    font-size: 14px;
    color: #8ea1af;
    text-align: center;
}

.gotg-wallet .token-basket-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gotg-wallet .content-panel.token-chart {
    width: calc(408px * 2 + 28px) !important;
    height: calc(160px * 3 + 28px * 2) !important;
}

.gotg-wallet .pie-chart-area {
    width: 100%;
    height: 100%;
}

.gotg-wallet .token-item-box {
    width: 408px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 28px;
    height: calc(160px * 3 + 28px * 2) !important;
    overflow: auto;
}

.gotg-wallet .content-panel.token-basket-item {
    width: 408px !important;
    height: 200px !important;
}

.gotg-wallet .token-basket-item:not(:first-child) {
    margin-top: 28px;
}

.gotg-wallet .token-basket-item .staking-area {
    border-radius: 8px;
}

.gotg-wallet .token-basket-item .staking-area .staking-area-top {
    display: flex;
}

.gotg-wallet .token-basket-item .staking-area .staking-area-bottom {
    text-align: center;
    color: #ffffff;
}

.gotg-wallet .token-basket-item .staking-area .staking-thumbnail {
    width: 112px;
    height: 112px;
    border-radius: 8px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gotg-wallet .token-basket-item .staking-area .asset-item:not(:first-child) {
    margin-top: 12px;
}

.gotg-wallet .token-basket-item .staking-area .asset-item > em:nth-child(1) {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    margin-top: 8px;
}

.gotg-wallet .token-basket-item .staking-area .asset-item > em.coin-type {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
}

.gotg-wallet .gnb-content.dag .content-section.overview {
    width: 100%;
    display: flex;
}

.gotg-wallet .gnb-content.dag .content-section.token {
    display: none;
}

.gotg-wallet .gnb-content.dag .content-section.trade {
    display: none;
}

.gotg-wallet .gnb-content.dag .content-section.nft {
    display: none;
}

.gotg-wallet .gnb-content.dag .content-section.active {
    display: flex !important;
}

.gotg-wallet .content-panel.empty {
    height: 240px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*웹 스테이킹 페이지 - sy*/
.gnb-content.staking {
    padding: 32px 0 !important;
    row-gap: 32px;
}

.gnb-content.staking .content-section {
    width: 100%;
    padding: 23px 0;
    box-sizing: border-box;
    border-radius: 8px;
    border: solid 1px #41abe4;
}

.gnb-content.staking .content-panel-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.gnb-content.staking .content-panel-list .content-panel-item {
    display: flex;
}

.gnb-content.staking .content-panel-list .content-panel-item {
    row-gap: 6px;
    flex-direction: column;
    padding-left: 76px;
}

.gnb-content.staking .content-panel-list .content-panel-item .title {
    font-size: 14px;
    font-weight: 600;
    color: #8ea1af;
}

.gnb-content.staking .content-panel-list .content-panel-item span {
    font-size: 20px;

    font-weight: bold;
    color: #fff;
}

.gnb-content.staking .staking-tab {
    width: 100%;
    height: 52px;
    display: flex;
    flex-direction: row;
}

.gnb-content.staking .staking-tab > div {
    width: 50%;
    border-bottom: 2px solid #1c2a36;
    box-sizing: border-box;
    height: 100%;
}

.gnb-content.staking .staking-tab > div.active {
    border-bottom: 2px solid #41abe4;
}

.gnb-content.staking .staking-tab .tab-label {
    font-size: 16px;
    font-weight: bold;
    color: #8ea1af;
    display: block;
    line-height: 50px;
    cursor: pointer;
    text-align: center;
}

.gnb-content.staking .staking-tab .active .tab-label {
    color: #41abe4;
}

.gnb-content.staking .staking-tab .tab-label em.num {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-left: 8px;
}

.gnb-content.staking .staking-tab-content > .active {
    display: block;
}

.gnb-content.staking .staking-tab-content > ul {
    display: none;
}

.gnb-content.staking .staking-tab-content .tab-my-staking,
.gnb-content.staking .staking-tab-content .tab-staking-product {
    grid-gap: 28px;
    grid-template-columns: repeat(3, 1fr);
}

.gnb-content.staking .staking-tab-content .tab-my-staking.active,
.gnb-content.staking .staking-tab-content .tab-staking-product.active {
    display: grid;

}

.gnb-content.staking .staking-tab-content .tab-my-staking .my-staking-item,
.gnb-content.staking .staking-tab-content .tab-staking-product .product-item {
    min-width: 408px;
    padding: 12px;
    row-gap: 12px;
    box-sizing: border-box;
    border-radius: 8px;
    border: solid 1px rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    flex-direction: column;
    justify-content: space-between;
    display: flex;
}

.gnb-content.staking .staking-tab-content .item-img-title {
    display: flex;
    column-gap: 12px;
}

.gnb-content.staking .staking-tab-content .item-img {
    width: 112px;
    box-sizing: border-box;
    overflow: hidden;
    height: 112px;
    display: block;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80px;
    background-image: url("/assets/images/img-5.svg");
    border-radius: 8px;
    border: solid 1px #fff;
}

.gnb-content.staking .staking-tab-content .item-title {
    display: flex;
    flex-direction: column;
}

.gnb-content.staking .staking-tab-content .item-title span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.gnb-content.staking .staking-tab-content .item-title span:last-child {
    color: #8ea1af;
}

.gnb-content.staking .staking-tab-content .item-button {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    background-image: linear-gradient(90deg, #1b4dbe 20%, #411bbe 99%);
}

.gnb-content.staking .staking-tab-content .item-button span {
    font-size: 14px;
    font-weight: 600;
    display: block;
    line-height: 44px;
    text-align: center;
    color: #fff;
}

.gnb-content.staking .staking-tab-content .tab-my-staking .day {
    line-height: 25px;
    font-size: 25px;
    width: 112px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
    text-align: center;
    white-space: nowrap;
}

/*Mypage 클릭시 로그인, 회원가입 팝압*/
/*로그인 팝업*/

.wrap .neoul-dialog-container .dialog-main.dialog-inform,
.wrap .neoul-dialog-container .dialog-main.create-room,
.wrap .neoul-dialog-container .dialog-main.loading-page,
.wrap .neoul-dialog-container .dialog-main.dialog-service,
.wrap .neoul-dialog-container .dialog-main.email-page,
.wrap .neoul-dialog-container .dialog-main.change-password-dialog,
.wrap .neoul-dialog-container .dialog-main.join-page,
.wrap .neoul-dialog-container .dialog-main.password-reset-page,
.wrap .neoul-dialog-container .dialog-main.password-find-page,
.wrap .neoul-dialog-container .dialog-main.login-page {
    width: 89%;
    max-width: 380px;
    position: relative;
    /*background-color: #030a0e;*/
    max-height: 870px;
    overflow: auto;
    height: 702px;
}

.wrap .neoul-dialog-container .dialog-main.login-page .dialog-header {
    justify-content: flex-end;
}

.wrap .neoul-dialog-container .dialog-main .dialog-header .dialog-close {
    background-image: url("/assets/images/btn-x.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    display: inline-block;
}

.wrap .neoul-dialog-container .dialog-main.login-page .dialog-content {
    height: 100% !important;
    background-color: transparent;
    z-index: 999;
    position: absolute;
}

.wrap .neoul-dialog-container .dialog-main.login-page .dialog-content .login-box {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100% - 20px);
    box-sizing: border-box;
}
.wrap .neoul-dialog-container .dialog-multi-main .ns-checkbox.active .check-icon ,
.wrap .neoul-dialog-container .dialog-main .ns-checkbox.active .check-icon {
    border: none !important;
    background-color: transparent !important;
}
.wrap .neoul-dialog-container .dialog-multi-main .ns-checkbox.active .check-icon .check,
.wrap .neoul-dialog-container .dialog-main .ns-checkbox.active .check-icon .check {
    content: url('/assets/images/ic-gotg-check-on.svg') !important;
}
.wrap .neoul-dialog-container .dialog-multi-main .ns-checkbox .check-icon .check,
.wrap .neoul-dialog-container .dialog-main .ns-checkbox .check-icon .check {
    display: block !important;
    content: url('/assets/images/ic-gotg-check.svg') !important;
    width: 24px !important;
    height: 24px !important;
}
.wrap .neoul-dialog-container .dialog-multi-main .ns-checkbox .check-icon ,
.wrap .neoul-dialog-container .dialog-main .ns-checkbox .check-icon {
    width: 24px !important;
    height: 24px !important;
    border-radius: 12px !important;
    border: none !important;
    background-color: transparent !important;
}

.dialog-main input {
    border: none !important;

}

/*login-page*/
.password-find-page input,
.password-reset-page input,
.reset-pass-cancel input,
.email-page input,
.change-password-dialog input,
.join-page input,
.login-page input {
    background-color: #030a0e !important;
    /*background-color: #1c2a36 !important;*/
    padding: 15px 20px 14px !important;
    color: #ffffff !important;
    height: 48px !important;
    border-radius: 24px !important;
    width: 100% !important;
}

.login-page .login-password {
    width: 100% !important;
}

.wrap .neoul-dialog-container .dialog-main .ns-icon-input .ns-icon {
    width: 24px !important;
    height: 24px !important;
    position: absolute;
    top: 50%;
    right: 15px !important;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    display: inline-block;
}

.wrap .neoul-dialog-container .dialog-main .ns-icon-input .ns-icon.eye {
    content: url('/assets/images/ic-eye.svg');
}

.wrap .neoul-dialog-container .dialog-main .ns-icon-input .ns-icon.eye.selected {
    content: url('/assets/images/ic-eye-on.svg');
}

.wrap .neoul-dialog-container .dialog-main .btn-ripple {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    border: 1px solid #41abe4;
    background-color: transparent;
    position: relative;
    outline: none;
    box-sizing: border-box;
    color: #ffffff;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-semibold);
}

.wrap .neoul-dialog-container .dialog-main .base-label {
    display: inline-block;
    color: #8ea1af;
    font-size: var(--font-size-small);
    width: 100%;
    text-align: center;
}

.wrap .neoul-dialog-container .dialog-main .text-link {
    display: inline-block;
    color: #41abe4;
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: underline;
}

/*join-page 회원가입 팝업*/
.wrap .neoul-dialog-container .dialog-main.password-reset-page .dialog-header,
.wrap .neoul-dialog-container .dialog-main.email-page .dialog-header,
.wrap .neoul-dialog-container .dialog-main.password-find-page .dialog-header,
.wrap .neoul-dialog-container .dialog-main.join-page .dialog-header {
    width: 100%;
    position: absolute;
    background-color: transparent;
}

.wrap .neoul-dialog-container .dialog-main.email-page .dialog-content,
.wrap .neoul-dialog-container .dialog-main.password-find-page .dialog-content,
.wrap .neoul-dialog-container .dialog-main.password-reset-page .dialog-content,
.wrap .neoul-dialog-container .dialog-main.join-page .dialog-content {
    height: calc(100% - 54px);
    margin-top: 54px;
    z-index: 9999;
    position: absolute;
    background-color: transparent;
    padding: 12px 32px;
}

.wrap .neoul-dialog-container .dialog-main.join-page .dialog-content {
    padding: 12px 16px;

}

.wrap .neoul-dialog-container .dialog-main.join-page .join-from-wrap {
    margin-top: 28px;
}

.wrap .neoul-dialog-container .dialog-main.join-page .join-check-wrap .ns-checkbox {
    height: 48px;
    position: relative;
}

.wrap .neoul-dialog-container .dialog-main.join-page .join-check-wrap .all-agree {
    box-sizing: border-box;
    border-bottom: 2px solid #1c2a36;
}

.dialog-main.join-page .join-check-wrap .ns-checkbox > span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.67;
    color: #41abe4;
    cursor: pointer;
    position: absolute;
    right: 0;
    text-decoration: underline;
}

/*비밀번호 찾기 페이지*/
.dialog-main.password-find-page .btn-ripple.password {
    margin-top: 100px;
}

/*이메일 인증 페이지*/
.dialog-main.email-page .ns-button-input {
    height: 48px;
}

.dialog-main.email-page .ns-button-input span.time {
    color: #41abe4;
}

/*서비스 이용 약관 팝업*/
.dialog-service,
.dialog-inform {
    background-color: #1c2a36 !important;
}

.dialog-inform .btn-ripple,
.app-alert .btn-primary,
.reset-pass-cancel .btn-primary,
.dialog-service .btn-ripple {
    border-radius: 24px !important;
    border: solid 1px #41abe4 !important;
    background-color: transparent !important;
    min-width: 160px !important;
    height: 48px !important;
}

.dialog-main.dialog-inform .dialog-content > span,
.dialog-main.dialog-service .dialog-content > span {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.57;
}

.dialog-inform .dialog-content,
.dialog-service .dialog-content {
    padding: 0px 8px 0 16px !important;
    height: calc(100% - 154px) !important;
    margin: 16px auto;
    width: calc(100% - 4px) !important;
}

.dialog-main.dialog-service .dialog-content::-webkit-scrollbar,
.dialog-main.dialog-inform .dialog-content::-webkit-scrollbar {
    display: block;
    width: 4px;
}


.dialog-main.dialog-inform .dialog-content::-webkit-scrollbar-thumb,
.dialog-main.dialog-service .dialog-content::-webkit-scrollbar-thumb {
    border: solid 4px rgba(0, 0, 0, 0.6);
    border-radius: 2px;
}


.wrap .neoul-dialog-container .dialog-main.token-send .dialog-action,
.wrap .neoul-dialog-container .dialog-main.reset-pass-cancel .dialog-action,
.wrap .neoul-dialog-container .dialog-main.app-alert .dialog-action,
.wrap .neoul-dialog-container .dialog-main.dialog-inform .dialog-action,
.wrap .neoul-dialog-container .dialog-main.dialog-service .dialog-action {
    padding: 0px 16px;
    background-color: #1c2a36;
    border-top: 1px solid #354553;
    box-sizing: border-box;
}

.wrap .neoul-dialog-container .dialog-main.app-alert .dialog-action {
    border-top: 0px solid #354553;
}

.wrap .neoul-dialog-container .dialog-main.reset-pass-cancel,
.wrap .neoul-dialog-container .dialog-main.app-alert {
    overflow: hidden;
}

.wrap .neoul-dialog-container .dialog-main.reset-pass-cancel,
.wrap .neoul-dialog-container .dialog-main.app-alert {
    height: 238px;
    border-radius: 8px;
}

.wrap .neoul-dialog-container .dialog-main.loading-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-page .loading {
    width: 40px;
    height: 40px;
    background-image: url("/assets/images/ani-loading-1.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    display: inline-block;
    animation: loadingSpin 2500ms linear infinite;
}

@keyframes loadingSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.gotg-wallet .account-item .account-address {
    margin: 16px 0px 0px;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
}

.gotg-wallet .account-item .account-address > span {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.gotg-wallet .account-item .account-address > span > em {
    white-space: nowrap;
    margin: 0px 4px;
}

.gotg-wallet .ellipsis-middle {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gotg-wallet .ellipsis-middle > .before {
    width: calc(50% - 8px);
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
}

.gotg-wallet .ellipsis-middle > .before > i {
    text-align: left;
    display: inline-block;
}

.gotg-wallet .ellipsis-middle > .after {
    width: calc(50% - 8px);
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.gotg-wallet .ellipsis-middle > .after > i {
    text-align: right;
    display: inline-block;
}

.gotg-wallet .ellipsis-middle > .middle {
    width: 16px;
    margin: 0px 4px;
    text-align: center;
    white-space: nowrap;
}

/*my페이지 패널*/

#my-page .gotg-wallet.sub-page .sub-page-header {
    border-bottom: 1px solid transparent;
    background-color: transparent;
}

#my-page .gotg-wallet.sub-page .bg-section {
    margin-top: 0 !important;
}

#my-page .gotg-wallet.sub-page .bg-section,
#my-page .gotg-wallet.sub-page .bg-section .bg-hide-block {
    width: 100% !important;
}

#my-page .bg-section {
    height: 100vh !important;
    position: relative;
}

#my-page .bg-hide-block {
    height: 258px;
    background-color: #1c2a36;
    box-sizing: border-box;
    border-bottom: 1px solid #000000;
    padding-top: 0px !important;
    z-index: 9999;
}


#my-page .gotg-wallet.sub-page .bg-section .bg-gradient {
    height: calc(100vh - 258px);
    width: 100%;
    background-image: linear-gradient(to bottom, #030a0e, rgba(3, 10, 14, 0.80) 58%, rgba(3, 10, 14, 0));
    top: 258px;
}

#my-page .bg-gradient.bottom {
    height: 264px !important;
    width: 100%;
    background-image: linear-gradient(to top, #030a0e, rgba(3, 10, 14, 0.34) 58%, rgba(3, 10, 14, 0));
    position: absolute;
    top: 695px !important;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#my-page .btn-accept {
    outline: none;
    width: calc(100% - 64px);
    color: #ffffff;
    background: linear-gradient(to right, #1b4dbe 0%, #3f2e8c 100%);
    border-radius: 8px;
    border: 0px solid #1b4dbe;
    padding: 10px;
    margin-top: 12px;
}

#my-page .btn-ripple {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

#my-page .btn-ripple {
    padding: 15px 20px;
}

#my-page .gotg-wallet .my-page-title {
    width: 100%;
    height: 258px;
    /*background-image: url(/assets/images/my-page-back.png);*/
    /*background-size: cover;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

#my-page .gotg-wallet .my-page-ranking-area {
    display: flex;
    width: 44px;
    height: 44px;
    position: relative;
    margin-right: 34px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

#my-page .gotg-wallet .my-page-ranking-area .my-page-ranking {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#my-page .gotg-wallet .my-page-ranking-area .my-page-ranking .ns-icon {
    width: 44px !important;
    height: 44px !important;
    display: inline-block;
    padding: 0px !important;
    border-radius: unset !important;
}
#my-page .gotg-wallet .my-page-ranking-area .my-page-ranking .ns-icon.white {
    content: url("/assets/images/ic-vip-4.svg");
}
#my-page .gotg-wallet .my-page-ranking-area .my-page-ranking .ns-icon.green {
    content: url("/assets/images/ic-vip-3.svg");
}
#my-page .gotg-wallet .my-page-ranking-area .my-page-ranking .ns-icon.blue {
     content: url("/assets/images/ic-vip-2.svg");
}
#my-page .gotg-wallet .my-page-ranking-area .my-page-ranking .ns-icon.black {
    content: url("/assets/images/ic-vip-1.svg");
}

#my-page .gotg-wallet .my-page-qr-area {
    display: flex;
    width: 44px;
    height: 44px;
    position: relative;
    margin-left: 34px;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}

#my-page .gotg-wallet .my-page-qr-area .my-page-qr {
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}
#my-page .gotg-wallet .my-page-qr-area .my-page-qr > i {
    border: 1px solid #9a9ea0;
    border-radius: 22px;
    width: 44px;
    height: 44px;
    padding: 14px;
    box-sizing: border-box;
    background-image: url("/assets/images/img_qr.svg");
    background-position: center center;
    background-size: 16px 16px;
    background-repeat: no-repeat;
}
#my-page .gotg-wallet .my-page-qr-area .my-page-qr > span {
    white-space: nowrap;
}

#my-page .gotg-wallet .my-page-profile-area {
    display: inline-block;
    width: 120px;
    height: 120px;
    position: relative;
}

#my-page .gotg-wallet .my-page-profile-area .my-page-profile {
    display: inline-block;
    width: 120px;
    height: 120px;
    overflow: hidden;
    background: #ffffff;
    float: none;
    border-radius: 50%;
    border: 1px solid #ffffff;
}

#my-page .gotg-wallet .my-page-profile-area .my-page-profile img {
    width: 100%;
    height: 100%;
}

#my-page .gotg-wallet .my-page-profile-area .benefit {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

#my-page .gotg-wallet .my-page-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#my-page .gotg-wallet .my-page-content .content-box {
    border: 1px solid rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    border-radius: 12px;
    padding: 8px;
    width: calc(100% - 64px);
    margin-top: 20px;
}

#my-page .gotg-wallet .my-page-content .content-box2 {
    margin-top: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#my-page .gotg-wallet .my-page-content .content-title {
    font-size: 24px;
    color: #ffffff;
    line-height: 33px;
}

#my-page .gotg-wallet .my-page-content .content-unit {
    font-size: 14px;
    color: #41abe4;
    line-height: 19px;
}

#my-page .gotg-wallet .my-page-content .content-box2 .content-detail {
    width: 80px;
    height: 64px;
    text-align: center;
    padding: 0 20px;
}

#my-page .gotg-wallet .my-page-content .content-box2 .content-detail-score {
    line-height: 46px;
    font-size: 34px;
    color: #41abe4;
}

#my-page .gotg-wallet .my-page-content .content-box2 .content-detail {
    width: 80px;
    height: 64px;
    text-align: center;
    padding: 0 20px;
}

#my-page .btn-accept.logout {
    outline: none;
    width: calc(100% - 64px);
    color: #657886;
    background: #1c2a36;
    border-radius: 8px;
    margin-top: 12px;
    margin-bottom: 20px;
}

/* radio 버튼 */
.radio-area {
    width: 50%;
    padding: 13px 0;
    display: flex;
}

.ic-radio {
    width: 24px;
    height: 24px;
    background-image: url("/assets/images/ic_check_02_n.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.ic-radio.on {
    background-image: url("/assets/images/ic_check_02_s.svg");
}

.radio-label {
    font-size: 20px;
    line-height: 24px;
    padding-left: 5px;
    color: #657886;
}

.radio-label.on {
    color: #ffffff;
}

/*sy*/
.neoul-dialog-container .create-room .btn-close,
.neoul-dialog-container .add-account .btn-close,
.neoul-dialog-container .change-password-dialog .btn-close {
    position: inherit;
}

.wrap .neoul-dialog-container .dialog-main.change-password-dialog .dialog-action button {
    margin: 0px;
    height: 48px;
}

.wrap .neoul-dialog-container .dialog-main.token-receive .btn-ripple,
.wrap .neoul-dialog-container .dialog-main.add-staking .btn-ripple,
.wrap .neoul-dialog-container .dialog-main.add-account .btn-ripple,
.wrap .neoul-dialog-container .dialog-main.token-send .btn-ripple,
.wrap .neoul-dialog-container .dialog-main.my-info .btn-ripple {
    height: 48px;
    width: 160px;
}

.top-search {
    margin-left: 24px;
}

.btn-create-account {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 24px;
    border: 1px solid #41abe4;
    position: relative;
    overflow: hidden;
    padding: 7.5px 20px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.btn-tx-hist {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    border-radius: 24px;
    border: 1px solid #41abe4;
    position: relative;
    overflow: hidden;
    padding: 7.5px 20px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    margin-right: 8px;
}

* .popup {
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
    padding: 20px !important;
    border-radius: 3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 75px !important;
    top: unset !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow-ellipsis: end;
    width: 80% !important;
}

.wrap .neoul-dialog-container .dialog-main.change-password-dialog .dialog-content {
    height: calc(100% - 128px);
}

.account-wrapper .account-empty-wrap span {
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    text-align: center;
    color: #657886;
}

.account-wrapper .account-empty-wrap .account-sign-in {
    width: 120px;
    height: 36px;
    border-radius: 18px;
    border: 1px solid #41abe4;
    background-color: transparent;
    position: relative;
    outline: none;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

#content .account-wrapper #ns-account-slider,
#content .account-wrapper .account-empty-wrap {
    display: none;
}

#content .account-wrapper #ns-account-slider.active {
    display: block;
}

#content .account-wrapper .account-empty-wrap.active {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    row-gap: 38px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.my-page img.ns-icon.on {
    border: 1px solid #ffffff;
    padding: 0 !important;
}

#my-page .my-page-icon-name {
    display: flex;
    margin-top: 9px;
    align-items: center;
    flex-direction: row;
    column-gap: 8px;
    justify-content: center;
}
#my-page .my-page-icon-name span {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 30px;
}
#my-page .my-page-icon-name input {
    height: 30px !important;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 0;
}

#my-page .my-page-icon-name img {
    margin-left: 8px;
}

#my-page .gotg-wallet.sub-page .bg-section .bg-gradient-wrap {
    height: calc(100vh - 258px);
    width: 100%;
    display: flex;
    row-gap: 60px;
    flex-direction: column;
    position: relative;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    top: 258px;
}

#my-page .gotg-wallet.sub-page .bg-section .bg-gradient-wrap::-webkit-scrollbar {
    display: none;
    width: 0 !important;
}

#my-page .gotg-wallet.sub-page .bg-section .my-page-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/*채팅 페이지*/
.gnb-content.chat.active {
    padding: 0;
}

.gnb-content.chat .open-chat-room {
    margin-top: 80px;
}

.gnb-content.chat .chat-title-wrap {
    display: flex;
    width: 1036px;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.gnb-content.chat .chat-title-wrap .title-wrap .main {
    font-size: 19px;
    display: block;
    font-weight: bold;
    color: #41abe4;
    /*line-height: 1.05;*/
}

.gnb-content.chat .chat-title-wrap .title-wrap .sub {
    display: block;
    font-size: 36px;
    font-weight: normal;
    /*line-height: 0.56;*/
    color: #fff;
}

.gnb-content.chat .chat-title-wrap .btn-wrap i {
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    display: inline-block;
    background-color: #1b252f;
    width: 56px;
    height: 56px;
    cursor: pointer;
    border-radius: 50%;
}

.gnb-content.chat .chat-title-wrap .btn-wrap i.plus-icon {
    background-image: url("/assets/images/ic-plus01.svg");
}

.gnb-content.chat .chat-title-wrap .btn-wrap i.list-icon {
    background-image: url("/assets/images/ic-list.svg");
    margin-left: 16px;
}

.gnb-content.chat .chat-tab-content {
    width: 1036px;

    margin: 40px auto 60px;
}

.gnb-content.chat .chat-tab-content .chat-tab-item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.gnb-content.chat .chat-tab-content .chat-tab-item .chat-item {
    padding: 0 34px;
    background-color: #1b252f;
    font-size: 16px;
    font-weight: bold;
    line-height: 68px;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    color: #fff;
}

.gnb-content.chat .chat-tab-content .chat-tab-item .chat-item.active {
    background-color: #41abe4;
}

.gnb-content.chat .chat-item-wrap .content-wrap {
    display: grid;
    grid-template-columns: repeat(3, 400px);
    grid-gap: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.open-room-item {
    height: fit-content !important;
    background-color: #292e35 !important;
}

.open-room-item,
.gnb-content.chat .chat-item-wrap .content-item {
    width: 400px !important;
    border: solid 1px #1c466c;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
}

.gnb-content.chat .chat-item-wrap .content-item.hide {
    display: none;
}

.open-room-item .item-img-wrap {
    position: relative;
}

.open-room-item .item-img-wrap,
.gnb-content.chat .chat-item-wrap .content-item .item-img-wrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
    box-sizing: border-box;
}

.open-room-item .item-info-wrap,
.gnb-content.chat .chat-item-wrap .content-item .item-info-wrap {
    width: 100%;
    background-color: #1b252f;
    display: flex;
    justify-content: center;
}

.open-room-item .item-info-wrap .item-info .title,
.gnb-content.chat .chat-item-wrap .content-item .item-info-wrap .item-info .title {
    display: flex;
    align-items: center;
    /* height: 60px; */
    width: calc(100% - 32px);
    position: relative;
}

.open-room-item .item-info-wrap .item-info .profile,
.gnb-content.chat .chat-item-wrap .content-item .item-info-wrap .item-info .profile {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: solid 1px #fff;
    box-sizing: border-box;
    position: relative;
    position: absolute;
    top: -30px;
    left: 16px;
}

.open-room-item .item-info-wrap img,
.open-room-item .item-img-wrap img,
.gnb-content.chat .chat-item-wrap .content-item .item-img-wrap img,
.gnb-content.chat .chat-item-wrap .content-item .item-info-wrap img {
    width: 100%;
    height: 100%;
}

.gnb-content.chat .open-chat-list .chat-list .list .profile i,
.gnb-content.chat .chat-content-wrap .message-wrap .send-item .profile i,
.open-room-item .item-info-wrap .profile i,
.gnb-content.chat .chat-item-wrap .content-item .item-info-wrap .item-info .profile i {
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-image: url('/assets/images/ic-host02.svg');
    width: 20px;
    background-size: 100%;
    position: absolute;
    right: -2px;
    display: none;
    height: 20px;
    bottom: -2px;
}

.open-room-item .item-img-wrap i.close-btn {
    display: block;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    background-image: url('/assets/images/ic-cancel-01.svg');
    background-size: 20px;
    position: absolute;
    top: 8px;
    border-radius: 50%;
    right: 8px;
    width: 32px;
    height: 32px;
}

.open-room-item .item-info-wrap .profile.host-item i,
.gnb-content.chat .chat-item-wrap .content-item .item-info-wrap .item-info .profile.host-item i {
    display: block;

}

.open-room-item .item-info-wrap .item-info .oneLine-ellipsis,
.gnb-content.chat .chat-item-wrap .item-info-wrap .item-info .oneLine-ellipsis {
    color: #41abe4;
    font-size: 16px;
    font-weight: bold;
    margin-left: 83px;
    margin-top: 10px;
    display: inline-block;
}

.open-room-item .item-info-wrap .item-info .text,
.gnb-content.chat .chat-item-wrap .item-info-wrap .item-info .text {
    font-size: 14px;
    width: calc(100% - 32px);
    font-weight: 300;
    line-height: 1.43;
    color: #fff;
    display: block;
    padding-left: 84px;
    box-sizing: border-box;
}

.open-room-item .item-info-wrap .item-member,
.gnb-content.chat .chat-item-wrap .item-info-wrap .item-member {
    display: flex;
    margin: 12px auto;
    padding-left: 68px;
    box-sizing: border-box;
    width: calc(100% - 32px);
    justify-content: flex-start;
}

.open-room-item .item-info-wrap .item-member > li,
.gnb-content.chat .chat-item-wrap .item-info-wrap .item-member > li {
    width: 40px;
    display: block;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #394752;
    margin-left: -8px;
}

.open-room-item .item-info-wrap .item-member > li.item,
.gnb-content.chat .chat-item-wrap .item-info-wrap .item-member > li.item {
    border: 1px solid #fff;
    /*border-radius: 50%;*/
}

.open-room-item .item-info-wrap .item-member > li.num,
.gnb-content.chat .chat-item-wrap .item-info-wrap .item-member > li.num {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-main.open-room-item .enter-btn {
    /*width: 100%;*/
    width: calc(100% - 16px);

    height: 44px;
    cursor: pointer;
    display: block;
    border-radius: 8px;
    background-image: linear-gradient(98deg, #1b4dbe, #411bbe 99%);
    font-size: 16px;
    font-weight: normal;
    line-height: 44px;
    text-align: center;
    margin: 60px auto 8px;
    color: #fff;
}

/*채팅 리스트*/
.gnb-content.chat .gotg-wallet.sub-page {
    width: 100vw;
    height: calc(100vh - 140px);
    position: absolute;
    left: 0;
    top: 80px;
    display: flex;
    overflow-y: auto;
    -ms-overflow-style: none;
    justify-content: center;
}

.gnb-content.chat .gotg-wallet.sub-page::-webkit-scrollbar {
    display: none;
    width: 0 !important;
}

/*.gnb-content.chat .gotg-wallet.sub-page.active .open-chat-list,*/
.gnb-content.chat .gotg-wallet.sub-page .open-chat-room {
    display: block;
}

.gnb-content.chat .gotg-wallet.sub-page.active .open-chat-list {
    display: flex;
}

.gnb-content.chat .gotg-wallet.sub-page.active {
    overflow-y: hidden;
    background-color: #030b10;
}

.gnb-content.chat .gotg-wallet.sub-page .open-chat-list,
.gnb-content.chat .gotg-wallet.sub-page.active .open-chat-room {
    display: none;
}

.gnb-content.chat .open-chat-room,
.gnb-content.chat .open-chat-list {
    /*display: none;*/
    width: 1280px;
    min-width: 1280px;
}

.gnb-content.chat .open-chat-list {
    height: calc(100vh - 80px - 60px);
    position: fixed;
    top: 80px;
}

.gnb-content.chat .open-chat-list .chat-list-wrap {
    width: 460px;
    /*border-top: 1px solid #1c466c;*/
    border-left: 1px solid #1c466c;
    border-right: 1px solid #1c466c;
    box-sizing: border-box;
    height: 100%;
}

.gnb-content.chat .open-chat-list .chat-content-wrap {
    width: calc(100% - 460px);
    height: 100%;
    border-right: 1px solid #1c466c;
    box-sizing: border-box;
    position: relative;
    display: none;
}

.gnb-content.chat .open-chat-list .chat-content-wrap.active {
    display: block;
}

.gnb-content.chat .open-chat-list .chat-list-top {
    width: 100%;
    display: flex;
    height: 60px;
    border-bottom: 1px solid #1c466c;
    box-sizing: border-box;
}

.gnb-content.chat .chat-list-top > i {
    display: block;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-size: 20px;
    width: 60px;
    height: 60px;
}

.gnb-content.chat .open-chat-list .chat-list-top > i.back-icon {
    background-image: url('/assets/images/ic-arrow-03-l.svg');
}

.gnb-content.chat .open-chat-list .chat-list-top > i.plus-icon {
    background-image: url('/assets/images/ic-plus01.svg');
}

.gnb-content.chat .open-chat-list .chat-list-top em {
    width: calc(100% - 120px);
    height: 100%;
    font-size: 16px;
    font-weight: bold;
    border-right: 1px solid #1c466c;
    border-left: 1px solid #1c466c;
    line-height: 60px;
    display: block;
    padding-left: 28px;
    box-sizing: border-box;
    color: #fff;
}

.gnb-content.chat .open-chat-list .chat-list {
    border-top: 1px solid #1c466c;
    margin-top: 12px;
    box-sizing: border-box;
    overflow-y: auto;
    -ms-overflow-style: none;
    height: calc(100% - 72px);
}

.gnb-content.chat .open-chat-list .chat-list::-webkit-scrollbar {
    display: none;
    width: 0 !important;
}

.gnb-content.chat .open-chat-list .chat-list .section-container {
    width: calc(100% - (20px) * 2);
    margin: 0 auto;
    position: relative;
}

.gnb-content.chat .open-chat-list .chat-list .list-item {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.gnb-content.chat .open-chat-list .chat-list .list {
    height: 100px;
    border-bottom: 1px solid #1c466c;
    box-sizing: border-box;
    cursor: pointer;
}

.gnb-content.chat .open-chat-list .chat-list .list.active {
    background-color: #1b252f;
    position: relative;
}

.gnb-content.chat .open-chat-list .chat-list .list.active:before {
    border-radius: 4px;
    background-color: #894af8;
    width: 4px;
    height: 60px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.gnb-content.chat .open-chat-list .chat-list .list .item {
    height: 100%;
    display: flex;
    column-gap: 16px;
    align-items: center;
    width: inherit;
}

.gnb-content.chat .open-chat-list .chat-list .list .profile {
    box-sizing: border-box;
    border: solid 1px #fff;
    width: 68px;
    height: 68px;
    position: relative;
    border-radius: 50%;
}

.gnb-content.chat .open-chat-list .chat-list .list .profile img {
    width: 100%;
    height: 100%;
}

.gnb-content.chat .open-chat-list .chat-list .list .profile em {
    width: 40px;
    height: 24px;
    border-radius: 12px;
    position: absolute;
    right: -10px;
    bottom: 0;
    background-color: #394752;
    display: block;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    text-align: center;
    font-weight: bold;
}

.gnb-content.chat .open-chat-list .chat-list .list .profile i {
    display: none;
}

.gnb-content.chat .open-chat-list .chat-list .list.host-item .profile i {
    right: 0;
    display: block;
    left: -2px;
    background-image: url('/assets/images/ic-host02.svg');
    top: 2px;
    width: 20px;
    height: 20px;
}

.gnb-content.chat .open-chat-list .chat-list .list .text-item {
    display: flex;
    row-gap: 4px;
    width: calc(100% - 178px);
    flex-direction: column;
}

.gnb-content.chat .open-chat-list .chat-list .list .text-item .title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.25;
    color: #41abe4;
}

.gnb-content.chat .open-chat-list .chat-list .list .text-item .text {
    font-size: 11px;
    font-weight: 300;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gnb-content.chat .open-chat-list .chat-list .list span.item-num {
    width: 28px;
    display: none;
    height: 28px;
    background-color: #894af8;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
    color: #fff;
}

.gnb-content.chat .open-chat-list .chat-list .list.num-active span.item-num {
    display: block;
}


.gnb-content.chat .chat-content-wrap .chat-list-top > i.invite-icon {
    background-image: url('/assets/images/ic-friendplus.svg');
    background-size: 24px;
    position: relative;
    border-right: 1px solid #1c466c;
    border-left: 1px solid #1c466c;
    box-sizing: border-box;
}

.gnb-content.chat .chat-content-wrap .chat-list-top > i.invite-icon:after {
    display: block;
    position: absolute;
    content: '초대';
    font-size: 11px;
    font-weight: normal;
    color: #a1a2a3;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
}

.gnb-content.chat .chat-content-wrap .chat-list-top > i.list-icon {
    background-image: url('/assets/images/ic-list.svg');
    background-size: 24px;
}

.gnb-content.chat .chat-content-wrap .chat-list-top {
    justify-content: flex-end;
}

.gnb-content.chat .chat-content-wrap .chat-message-wrap.neoul-scrollbar {
    height: calc(100% - 60px);
    overflow: auto;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.gnb-content.chat .chat-content-wrap .chat-message-wrap.neoul-scrollbar::-webkit-scrollbar {
    width: 12px;
}

.gnb-content.chat .chat-content-wrap .chat-message-wrap.neoul-scrollbar::-webkit-scrollbar-thumb {
    background: #232c33;
    border-radius: 2px;
    border: solid 4px #030b10;
}

.gnb-content.chat .chat-content-wrap .chat-message-wrap .section-container {
    width: calc(100% - 28px);
    margin: 0 auto 0 20px;
}


.gnb-content.chat .chat-message-wrap .message-wrap .date-item {
    width: 100%;
    padding: 18px 0;
    position: relative;
    box-sizing: border-box;
}

.gnb-content.chat .chat-message-wrap .message-wrap .date-item:after {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    content: '';
    display: inline-block;
    background-color: #394752;
}

/*send receive*/
.gnb-content.chat .chat-message-wrap .message-wrap .date-item span {
    font-size: 14px;
    font-weight: normal;
    padding: 0 8px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    left: 50%;
    z-index: 99;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #040a0e;
    /*background-color: #FFFFFF;*/
    color: #394752;
}

.gnb-content.chat .chat-message-wrap .message-wrap .send-item {
    display: flex;
}

.gnb-content.chat .profile {
    position: relative;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border: solid 1px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 50%;
    /*overflow: hidden;*/
}

.gnb-content.chat .profile img {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
    height: 100%;
}

.gnb-content.chat .chat-message-wrap .send-item .contents-item {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    /*margin: 8px 4px 0 8px;*/
    margin: 6px 8px 0 12px;
    /*max-width: 248px;*/
    max-width: calc(100% - 132px);
}

.gnb-content.chat .chat-message-wrap .send-item .contents-item .name {
    font-size: 16px;
    font-weight: normal;
    color: #a1a2a3;
}

.gnb-content.chat .chat-message-wrap .send-item .contents-item .contents {
    font-size: 16px;
    max-width: 369px;
    font-weight: normal;
    padding: 12px;
    box-sizing: border-box;
    background-color: #394752;
    border-radius: 2px 16px 16px 16px;
    line-height: 24px;
    color: #ffffff;
}

.gnb-content.chat .chat-message-wrap .time-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gnb-content.chat .chat-message-wrap .time-item span {
    font-size: 14px;
    font-weight: normal;
}

.gnb-content.chat .chat-message-wrap .time-item .num {
    font-size: 11px;
    color: #41abe4;
    font-weight: bold;
}

.gnb-content.chat .chat-message-wrap .time-item .time {
    color: #394752;
}

.gnb-content.chat .receive-item {
    display: flex;
    column-gap: 8px;
    justify-content: flex-start;
    flex-direction: row-reverse;
    /*justify-content: flex-end;*/
}

.gnb-content.chat .chat-message-wrap .receive-item .time-item {
    /*justify-content: flex-end;*/
    align-items: flex-end;
}

.gnb-content.chat .message-wrap .receive-item .contents-item {
    padding: 12px;
    box-sizing: border-box;
    background-color: #41abe4;
    max-width: 369px;
    border-radius: 16px 2px 16px 16px;
}

.gnb-content.chat .message-wrap .receive-item .contents-item span {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #040a0e;
}

.gnb-content.chat .send-item,
.gnb-content.chat .receive-item {
    margin-bottom: 12px;
}

.gnb-content.chat .send-item .contents-item .contents-image,
.gnb-content.chat .receive-item .contents-item .contents-image {
    display: none;
}

.gnb-content.chat .send-item.again-item .profile {
    visibility: hidden;

}

.gnb-content.chat .send-item.again-item .contents-item {
    margin: 0 8px 0 12px !important;
}

.gnb-content.chat .image-item .contents-item .contents,
.gnb-content.chat .send-item.again-item .contents-item .name {
    display: none;
}

.gnb-content.chat .message-wrap .space-item {
    margin-top: 28px;
}

.gnb-content.chat .image-item .contents-item .contents-image {
    display: block;
    border-radius: 4px;
    border: solid 1px #707070;
    /*border: solid 1px rgba(0, 0, 0, 0.2);*/
    overflow: hidden;
    box-sizing: border-box;
    width: 200px;
    height: 200px;
    background-color: #fff;
}

.gnb-content.chat .chat-message-wrap .send-item.host-item .profile > i {
    display: block;
}

.gnb-content.chat .chat-content-wrap .profile {
    width: 40px;
    height: 40px;
}

.gnb-content.chat .chat-content-wrap .message-wrap .send-item .profile i {
    width: 16px;
    height: 16px;
    right: -3px;
    z-index: 9;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap {
    height: 80px;
    position: relative;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap.active {
    height: 104px;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap.active .textarea-wrap {
    height: 72px;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap.active textarea {
    height: 48px;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap .textarea-fake {
    /*display: none;*/
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #030b10;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap.filter-active .textarea-fake {
    /*display: block;*/
    border-top: 1px solid #1c466c;
    box-sizing: border-box;
    /*-webkit-filter: blur(17px);*/
    /*.: blur(17px);*/
    background-color: rgba(4, 10, 14, 0.6);
    backdrop-filter: blur(17px);
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap .textarea-wrap {
    height: 48px;
    width: calc(100% - 40px);
    position: absolute;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 1px #1c466c;
    background-color: #1b252f;
    box-sizing: border-box;
    border-radius: 6px;
    z-index: 99;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap i {
    display: block;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    /*background-color: #fff;*/
    cursor: pointer;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap i.plus-icon {
    width: 28px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);

    background-size: 28px;
    height: 28px;
    background-image: url("/assets/images/ic-plus02.svg");
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap i.send-btn {
    width: 48px;
    background-size: 24px;
    height: 100%;
    position: absolute;
    border-radius: 0 6px 6px 0;
    right: 0;
    background-color: #894aff;
    background-image: url("/assets/images/ic-send.svg");
}


.gnb-content.chat .chat-content-wrap .chat-textarea-wrap.active .textarea-wrap .plus-icon {
    top: 35px;
    transform: none;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap.active .textarea-wrap .send-btn {
    background-position: center 37px;
}

.gnb-content.chat .chat-content-wrap .chat-textarea-wrap textarea {
    /*font-size: 16px;*/
    /*font-weight: normal;*/
    line-height: 24px;
    width: 100%;
    /*color: var(--color-point1);*/
}

.gnb-content.chat .chat-textarea-wrap textarea {
    width: calc(100% - 114px) !important;
    border: 1px solid transparent;
    height: 24px;
    caret-color: #894af8;
    /*outline-color: transparent;*/
    left: 48px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    resize: none;
    outline: none;
    overflow: hidden;
    max-height: 48px;
}

.gnb-content.chat .chat-textarea-wrap textarea:focus {
    border: 1px solid transparent;

}

.gnb-content.chat .chat-textarea-wrap textarea {
    line-height: 20px;
}

/*#camping-chatting-side .chatting-box textarea::placeholder,*/
.gnb-content.chat .chat-textarea-wrap textarea::placeholder {
    font-size: 16px;
    font-weight: 300;
    color: #a1a2a3;;
}

.my-info-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.my-info-content .content-box {
    border: 1px solid rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    border-radius: 12px;
    padding: 8px;
    width: calc(100% - 32px);
    margin-top: 20px;
}

.my-info-content .content-title {
    font-size: 20px;
    color: #ffffff;
    line-height: 50px;
    min-width: 300px;
}

.my-info-content .content-box .content-detail {
    width: 80px;
    height: 64px;
    text-align: center;
}

/*방만들기 팝업*/
.wrap .neoul-dialog-container .dialog-main.create-room {
    width: 556px;
    max-width: 556px;
    max-height: 766px;
    overflow: inherit;
    height: 766px;
    /*overflow: auto;*/
    padding-bottom: 66px;
    /*box-sizing: border-box;*/
}

.wrap .neoul-dialog-container .dialog-main.create-room .dialog-content {
    height: calc(100% - 54px);
    -ms-overflow-style: none;
    padding: 0;
}

.wrap .neoul-dialog-container .dialog-main.create-room .dialog-content::-webkit-scrollbar {
    display: none;
    width: 0 !important;
}

.dialog-main.create-room .content-wrap .image-wrap {
    width: 100%;
    height: 288px;
    position: relative;
    cursor: pointer;
    margin-top: 16px;
    background-color: #394752;
}

.dialog-main.create-room .content-wrap .image-wrap .image {
    width: 100%;
    height: 100%;
}

.dialog-main.create-room .content-wrap .image-wrap img {
    width: 100%;
    height: 100%;
}

.dialog-main.create-room .content-wrap .image-wrap > em {
    font-size: 14px;
    font-weight: normal;
    color: #a1a2a3;
    position: absolute;
    top: 12px;
    left: 12px;
}

.dialog-main.create-room .content-wrap .image-wrap > i {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("/assets/images/ic-camera.svg");
}

.dialog-main.create-room .text-wrap .ns-input {
    margin-top: 20px;
}

.dialog-main.create-room .ns-input .field-wrapper > input {
    caret-color: #894af8;
}

.dialog-main.create-room .ns-input .field-wrapper > input::placeholder {
    font-size: 14px;
    font-weight: 300;
    color: #a1a2a3;
}

.dialog-main.create-room .password {
    justify-content: flex-end;
    display: flex;
    column-gap: 8px;
    opacity: 0;
}

.dialog-main.create-room .password.active {
    opacity: 1;
}

.dialog-main.create-room .password .ns-input {
    width: 52px;
    height: 52px;
}

.password .ns-input .field-wrapper > input {
    padding: 0 0 0 17px !important;
    font-size: 28px;
    font-weight: bold;
    line-height: 52px;
    color: #FFFFFF;
    height: 52px !important;
    border-radius: 4px;
    width: 52px !important;
    background-color: #030a0e;
    /*padding-left: 5px !important;*/
}

.dialog-main.create-room .section-container {
    width: calc(100% - (56px) * 2);
    margin: 0 auto;
    position: relative;
}


.dialog-main.create-room .password-wrap {
    display: flex;
    width: calc(100% - 40px);
    margin: 80px auto 0;
    /*margin-top: 40px;*/
    justify-content: space-between;
    align-items: center;
}

.dialog-main.create-room .content-wrap .image-wrap {
    width: 100%;
    height: 288px;
    position: relative;
    cursor: pointer;
    margin-top: 16px;
    background-color: #394752;
}

.dialog-main.create-room .content-wrap .image-wrap .image {
    width: 100%;
    height: 100%;
}

.dialog-main.create-room .content-wrap .image-wrap img {
    width: 100%;
    height: 100%;
}

.dialog-main.create-room .ns-toggle {
    height: 20px;
    width: 56px;
}

.dialog-main.create-room .ns-toggle [type="checkbox"]::before {
    width: 32px;
    height: 32px;
    left: 0;
    background-color: #465764;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
}

.dialog-main.create-room .ns-toggle .switch-toggle {
    width: 56px;
    left: 0px;
    height: 20px;
}

.dialog-main.create-room .ns-toggle [type="checkbox"] {
    width: 56px !important;
    border-radius: 10px;
    background-color: #2e3b46;
    height: 20px;
    left: 0px;
}

.dialog-main.create-room .ns-toggle [type="checkbox"]:checked {
    background-color: #d4faff;
}

.dialog-main.create-room .ns-toggle [type="checkbox"]:checked::before {
    left: 25px;
    background-color: #30c9dd;
}

.dialog-main.create-room .ns-toggle > span {
    position: absolute;
    top: -43px;
    left: 0;
    white-space: nowrap;
    font-size: 14px;
    font-weight: normal;
    color: #a1a2a3;
}

.dialog-main.create-room .ns-select {
    border-radius: 24px;
    margin-top: 20px;
    width: 100% !important;
    overflow: hidden;
    border: 0 solid transparent;
    background-color: #1c2a36;
}

.dialog-main.create-room .ns-select .selected {
    height: 48px !important;
    /*border-radius: 24px;*/
    /*background-color: #1c2a36;*/
}

.dialog-main.create-room .ns-select .selected .ns-icon.dropdown {
    width: 16px;
    right: 20px;
    height: 16px;
    content: url('/assets/images/btn-arrow-02-d.svg');
}

.dialog-main.create-room .ns-select.active .selected .ns-icon.dropdown {
    content: url('/assets/images/btn-arrow-02-u.svg');
    width: 16px;
    right: 20px;
    height: 16px;
}

.dialog-main.create-room .ns-select .select-list .option-item,
.dialog-main.create-room .ns-select.selected .selected .prompt,
.dialog-main.create-room .ns-select .selected .prompt {
    color: #FFFFFF;
    background-color: #030a0e;
}

.dialog-main.create-room .ns-select .select-list .option-item.current{
    background-color: #1c2a36;

}
.dialog-main.create-room .ns-select .select-list .option-item:hover{
    background-color: #000;

}
.dialog-main.create-room .ns-select .selected .prompt {
    line-height: 48px;
    padding: 0 20px;
    color: #999999;

}

.dialog-main.create-room .ns-select .select-list .option-item {
    height: 48px;
    line-height: 48px;
    padding: 0 20px;
}

.dialog-main.create-room .ns-select .select-list {
    top: 48px;
}

.dialog-main.create-room .dialog-header > span.create-btn {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 32px;
    width: 84px;
    height: 32px;
    text-align: center;
    border-radius: 16px;
    background-color: #394752;
    color: #a1a2a3;
}

.dialog-main.create-room .dialog-header > span.create-btn.active {
    color: #ffffff;

}

.wrap .neoul-dialog-container .dialog-main.create-room .dialog-header {
    padding: 0px 8px;
}

.wrap .neoul-dialog-container .dialog-main.create-room .dialog-header .btn-close {
    width: 32px;
    height: 32px;
    background-image: url('/assets/images/btn_x.svg');
    background-color: rgba(0, 0, 0, 0.4);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    display: inline-block;
    /*width: 56px;*/
    /*height: 56px;*/
    cursor: pointer;
    border-radius: 50%;
    content: none;
}

.wrap .neoul-dialog-container .dialog-main.create-room .dialog-header > h2 {
    font-size: 20px;
    font-weight: 500;
    padding-left: 16px;
    width: calc(100% - 136px);
}

/*채팅 메인 사이드 패널*/

.gallery-link-part .side-panel-header,
#main-chatting-part .side-panel-header {
    border-bottom: 1px solid #1c2125;
    box-sizing: border-box;
}

.side-panel-header {
    height: 56px;
    width: 100%;
    /*border-bottom: 1px solid var(--color-base-light2);*/
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
}

.side-panel-header .center {
    width: calc(100% - 40px);
    height: 100%;
    margin: 0 auto;
}

.side-panel-header .center .header-wrap {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-panel-header .center .header-wrap i {
    display: block;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-size: 20px;
    width: 20px;
    height: 20px;
}

.side-panel-header .center .header-wrap i.side-panel-cancel-btn {
    background-image: url("/assets/images/ic-arrow-03-l.svg");

}

.side-panel-header .center .header-wrap .invite-icon > i {
    background-image: url("/assets/images/ic-friendplus.svg");

}

.side-panel-header .center .header-wrap .alarm-icon {
    background-image: url("/assets/images/ic-alarm-n.svg");

}

.side-panel-header .center .header-wrap .check-icon {
    background-image: url("/assets/images/ic-check-02.svg");

}

.side-panel-header .center .header-wrap .header-icon {
    display: flex;
    column-gap: 28px;
    align-items: center;
}

.side-panel-header .center .header-wrap .icon-text-wrap {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.side-panel-header .center .header-wrap em.title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.side-panel-header .center .header-wrap .invite-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 14px;
}

.side-panel-header .center .header-wrap .invite-icon em {
    font-size: 11px;
    font-weight: normal;
    color: #a1a2a3;
}

/*.gallery-link-part .side-panel-contents,*/
#main-chatting-part .side-panel-contents {
    position: absolute;
    left: 0;
    top: 56px;
    width: 100%;
    /*margin: 0 auto;*/
}

#main-chatting-part .side-panel-contents .personnel-contents .center,
#main-chatting-part .side-panel-contents > div {
    width: calc(100% - 48px);
    margin: 0 auto;
}

#main-chatting-part .side-panel-contents .chatting-side-title i.arrow-icon,
#main-chatting-part .side-panel-contents .title-wrap > i {
    display: block;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-size: 100%;
    width: 17px;
    height: 16px;
}

.gallery-link-part .side-panel-contents .gallery-list,
.gallery-link-part .side-panel-contents .link-list,
#main-chatting-part .side-panel-contents > div {
    border-bottom: 1px solid #1c2125;
    box-sizing: border-box;
}

#main-chatting-part .side-panel-contents .gallery-contents .title-wrap > i {
    background-image: url("/assets/images/ic-gallery.svg");
}

#main-chatting-part .side-panel-contents .gallery-contents {
    padding: 40px 0 24px 0;
}

#main-chatting-part .side-panel-contents .link-contents .title-wrap > i {
    background-image: url("/assets/images/ic-link.svg");
}

#main-chatting-part .side-panel-contents .personnel-contents .title-wrap > i {
    background-image: url("/assets/images/ic-login.svg");
}

#main-chatting-part .side-panel-contents .title-wrap em {
    font-size: 14px;
    font-weight: normal;
    color: #a1a2a3;
}

#main-chatting-part .side-panel-contents .chatting-side-title i.arrow-icon {
    width: 12px;
    height: 12px;
    background-image: url("/assets/images/ic-arrow-01-r.svg");
}

#main-chatting-part .side-panel-contents .chatting-side-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main-chatting-part .side-panel-contents .chatting-side-title .title-wrap {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

#main-chatting-part .side-panel-contents .personnel-contents .chatting-side-title .title-wrap {
    column-gap: 0;

}

#main-chatting-part .side-panel-contents .personnel-contents .chatting-side-title .title-wrap .title {
    margin: 0 5px 0 12px;
}

#main-chatting-part .side-panel-contents .personnel-contents .chatting-side-title .title-wrap .num {
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

#main-chatting-part .side-panel-contents .gallery-contents .gallery-item {
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
}

#main-chatting-part .side-panel-contents .gallery-contents .gallery-item .item {
    width: 80px;
    height: 80px;
    border-radius: 2px;
    border: solid 1px #707070;
    box-sizing: border-box;
    overflow: hidden;
}

#main-chatting-part .side-panel-contents .gallery-contents .gallery-item .item img {
    width: 100%;
    height: 100%;
}

#main-chatting-part .side-panel-contents .link-contents {
    padding: 22px 0;
}

#main-chatting-part .side-panel-contents .personnel-contents {
    border-bottom: 1px solid transparent;
    width: 100%;
}


#main-chatting-part .side-panel-contents .personnel-contents .chatting-side-title {
    padding: 22px 0;
    /*padding-top: 22px;*/

}

#main-chatting-part .side-panel-contents .personnel-contents .list {
    padding: 10px 0;
    display: flex;
    align-items: center;
    column-gap: 16px;
}

#main-chatting-part .side-panel-contents .personnel-contents .profile {
    position: relative;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    border: solid 1px #fff;
    background-color: #fff;
    border-radius: 50%;
}

#main-chatting-part .side-panel-contents .personnel-contents .profile img {
    width: 100%;
    height: 100%;
}

#main-chatting-part .side-panel-contents .personnel-contents .list .profile i,
#main-chatting-part .side-panel-contents .personnel-contents .me-item .name {
    display: none;
}

#main-chatting-part .side-panel-contents .personnel-contents .host-item .profile i {
    display: block;
    box-sizing: border-box;
    background-repeat: no-repeat;
    position: absolute;
    right: -2px;
    bottom: -2px;
    background-position: center;
    z-index: 9;
    cursor: pointer;
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-image: url('/assets/images/ic-host02.svg');
}

#main-chatting-part .side-panel-contents .personnel-contents .me-item .profile .me {
    display: block;
}

#main-chatting-part .side-panel-contents .personnel-contents .profile .me {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
}

#main-chatting-part .side-panel-contents .personnel-contents .list .name {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

#main-chatting-part .side-panel-contents .personnel-contents .chatting-list {
    height: calc(100vh - 413px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-left: 24px;
}

.gallery-link-part .side-panel-bottom,
#main-chatting-part .side-panel-bottom {
    width: 100%;
    height: 56px;
    object-fit: contain;
    background-color: #161a20;
    position: absolute;
    left: 0;
    box-sizing: border-box;
    border-top: 1px solid #040a0e;
    display: none;
    bottom: 0;
}

#main-chatting-part .side-panel-bottom {
    display: block;
}

.gallery-link-part .side-panel-bottom.active {
    display: block;
}

.gallery-link-part .side-panel-bottom .out-contents,
#main-chatting-part .side-panel-bottom .out-contents {
    width: calc(100% - 48px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gallery-link-part .side-panel-bottom .out-contents {
    justify-content: space-between;
}

.gallery-link-part .side-panel-bottom .out-contents i,
#main-chatting-part .side-panel-bottom .out-contents i {
    display: block;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: url("/assets/images/ic-out.svg");
    background-size: 20px;
}
.gallery-link-part .side-panel-contents::-webkit-scrollbar,
#main-chatting-part .chatting-list-wrap .chatting-list::-webkit-scrollbar {
    width: 12px;
    border-radius: 2px;
}


.gallery-link-part .side-panel-contents::-webkit-scrollbar-thumb,
#main-chatting-part .chatting-list-wrap .chatting-list::-webkit-scrollbar-thumb {
    border-radius: 2px;
    border: solid 4px #292e35;
    background: #040a0e;
}

/*사진 슬라이드*/
.gallery-link-part .side-panel-bottom .out-contents i.download-icon {
    background-image: url("/assets/images/icon-download-2-n.svg");

}

.gallery-link-part .side-panel-bottom .out-contents i.delete-icon {
    background-image: url("/assets/images/ic-trash-n.svg");
}

.gallery-link-part .side-panel-bottom .out-contents.active i.download-icon {
    background-image: url("/assets/images/icon-download-2-s.svg");

}

.gallery-link-part .side-panel-bottom .out-contents.active i.delete-icon {
    background-image: url("/assets/images/ic-trash-s.svg");
}


.gallery-link-part .side-panel-header .check-wrap.active .check-icon,
.gallery-link-part .side-panel-header .check-wrap .check-select {
    display: none;
}

.gallery-link-part .side-panel-header .check-wrap .check-icon {
    display: block;
}

.gallery-link-part .side-panel-header .check-wrap.active .check-select {
    display: flex;
    column-gap: 8px;
    align-items: center;
    cursor: pointer;
}

.gallery-link-part .side-panel-header .check-wrap .check-select .num {
    font-size: 16px;
    font-weight: bold;
    color: #41abe4;
}

.gallery-link-part .side-panel-header .check-wrap .check-select .clear-btn {
    font-size: 14px;
    font-weight: normal;
    color: #a1a2a3;
}

.gallery-link-part .side-panel-contents .link-list {
    padding: 40px 0 24px;
    box-sizing: border-box;

}

.gallery-link-part .side-panel-contents .gallery-list {
    padding: 40px 0 12px;
    box-sizing: border-box;
}

.gallery-link-part .side-panel-contents .link-list .date,
.gallery-link-part .side-panel-contents .gallery-list .date {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 8px;
    display: block;
    color: #a1a2a3;
}

.gallery-link-part .side-panel-contents .gallery-list .item-wrap {
    display: grid;
    /*grid-gap: ;*/
    grid-template-columns: repeat(3, 80px);
    /*grid-template-rows: repeat(3,80px);*/
    align-content: center;
    justify-content: space-between;
}

.gallery-link-part .side-panel-contents .link-list .item-wrap {
    display: grid;
    /*grid-gap: ;*/
    /*grid-template-columns: repeat(1,100%);*/
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 24px;
}

.gallery-link-part .side-panel-contents .gallery-list .item-wrap .item {
    width: 80px;
    height: 80px;
    border-radius: 2px;
    margin-bottom: 12px;
    /*box-sizing: border-box;*/
    position: relative;
    border: solid 1px #707070;
}

.gallery-link-part .side-panel-contents .gallery-list .item-wrap .item img {
    width: 80px;
    height: 80px;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 2px;
}

.gallery-link-part .side-panel-contents .link-list .item-wrap .item.line-active {
    border: solid 1px #41abe4;

}

.gallery-link-part .side-panel-contents .gallery-list .item-wrap .item.line-active {
    border: solid 1px #41abe4;
    width: 80px;
    height: 80px;

}

.gallery-link-part .side-panel-contents .link-list .item-wrap .item .item-img {
    border-left: solid 1px transparent;
    border-top: solid 1px transparent;
    border-right: solid 1px transparent;
    border-radius: 8px 8px 0 0;
    box-sizing: border-box;
}

.gallery-link-part .side-panel-contents .link-list .item-wrap .item .item-info {
    border-left: solid 1px transparent;
    border-bottom: solid 1px transparent;
    border-right: solid 1px transparent;
    box-sizing: border-box;
    border-radius: 0 0 8px 8px;
}


.gallery-link-part .side-panel-contents .link-list .item-wrap .item.line-active .item-img {
    border-left: solid 1px #41abe4;
    border-top: solid 1px #41abe4;
    border-right: solid 1px #41abe4;
}

.gallery-link-part .side-panel-contents .link-list .item-wrap .item.line-active .item-info {
    border-left: solid 1px #41abe4;
    border-bottom: solid 1px #41abe4;
    border-right: solid 1px #41abe4;
}


.gallery-link-part .side-panel-contents .gallery-list .item-wrap .item.line-active img {
    border: 1px solid #41abe4;
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    /*width: 76px;*/
    /*height: 76px;*/
}

/*.gallery-link-part .side-panel-contents .link-list .item-wrap .item .ns-checkbox,*/
.gallery-link-part .side-panel-contents .item-wrap .item .ns-checkbox {
    position: absolute;
    right: 4px;
    top: 4px;
    display: none;
}

.gallery-link-part .side-panel-contents .item-wrap .item .ns-checkbox.show {
    display: flex;
}

.gallery-link-part .ns-checkbox em {
    margin-left: 0 !important;
}

.gallery-link-part .ns-checkbox .check {
    content: none !important;
    border-radius: 50%;
    border: solid 1px #fff;
    background-color: rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.gallery-link-part .ns-checkbox.active .check {
    border: solid 0px #fff !important;
    background-color: transparent;
    content: url('/assets/images/ic-check-04-2-s.svg') !important;
}

.gallery-link-part .side-panel-contents {
    position: absolute;
    left: 0;
    width: 100%;
    top: 56px;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100% - 56px);
    padding-bottom: 56px;
    box-sizing: border-box;
}

.gallery-link-part .side-panel-contents .date-wrap {
    width: calc(100% - 48px + 12px);
    margin: 0 auto 0 24px;
}

.gallery-link-part .side-panel-contents .link-list .item-wrap .item {
    width: 100%;
    height: 220px;
    box-sizing: border-box;
    position: relative;
    border-radius: 8px;
    border: solid 1px #040a0e;
    background-color: #16181a;
}

.gallery-link-part .side-panel-contents .link-list .item-wrap .item img {
    width: 100%;
    height: 100%;
}

.gallery-link-part .side-panel-contents .link-list .item-wrap .item-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.gallery-link-part .side-panel-contents .link-list .item-info {
    padding: 12px 16px 16px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
}

.gallery-link-part .side-panel-contents .link-list .item-info .title {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.43;
    color: #fff;
}

.gallery-link-part .side-panel-contents .link-list .item-info .title-link {
    font-size: 14px;
    font-weight: normal;
    color: #646464;
}

.ns-checkbox.hide {
    display: none;
}

.ns-checkbox.active .check-icon {
    border: none !important;
    background-color: transparent !important;
}


.ns-checkbox .check-icon {
    width: 24px !important;
    height: 24px !important;
    border-radius: 12px !important;
    border: none !important;
    background-color: transparent !important;
}

.ns-checkbox .check-icon .check {
    display: block !important;
    content: url("/assets/images/ic-gotg-check.svg");
    width: 24px !important;
    height: 24px !important;
}

.ns-checkbox.active .check-icon .check {
    content: url("/assets/images/ic-gotg-check-on.svg");
}

.ns-checkbox em {
    font-size: var(--font-size-normal) !important;
    margin-left: 8px !important;
}

.ns-checkbox.active .check-icon {
    border: none !important;
    background-color: transparent !important;
}

.ns-checkbox.active em {
    color: #ffffff !important;
}

.gotg-wallet .stakable-item,
.gotg-wallet .staking-item {
    width: calc(100% - 16px);
    height: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.gotg-wallet .stakable-item .btn-ripple.square > em,
.gotg-wallet .staking-item .btn-ripple.square > em {
    white-space: nowrap;
}

.gotg-wallet .stakable-item .staking-card,
.gotg-wallet .staking-item .staking-card {
    width: 100%;
    height: calc(100% - 44px);
    display: flex;
    flex-direction: row;
}

.gotg-wallet .stakable-item .staking-card .profile-section,
.gotg-wallet .staking-item .staking-card .profile-section {
    width: 112px;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gotg-wallet .stakable-item .staking-card .profile-section .profile-image,
.gotg-wallet .staking-item .staking-card .profile-section .profile-image {
    width: 112px !important;
    height: 112px !important;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}

.gotg-wallet .stakable-item .staking-card .profile-section .profile-image.hide,
.gotg-wallet .staking-item .staking-card .profile-section .profile-image.hide {
    display: none;
}

.gotg-wallet .stakable-item .staking-card .profile-section .profile-image > img,
.gotg-wallet .staking-item .staking-card .profile-section .profile-image > img {
    opacity: 0;
    display: block;
    border: none;
    outline: none;
    white-space: nowrap;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
}

.gotg-wallet .stakable-item .staking-card .profile-section .profile-image.render > img,
.gotg-wallet .staking-item .staking-card .profile-section .profile-image.render > img {
    opacity: 1;
    transition: opacity 0.4s;
}

.gotg-wallet .staking-item .staking-card .profile-section .d-day {
    font-size: 25px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
    display: inline-block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: 4px;
}

.gotg-wallet .stakable-item .staking-card .asset-section,
.gotg-wallet .staking-item .staking-card .asset-section {
    display: flex;
    flex-direction: column;
    width: calc(100% - 112px - 12px);
    height: 100%;
}

.gotg-wallet .stakable-item .staking-card .asset-section .item-name,
.gotg-wallet .staking-item .staking-card .asset-section .item-name {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    line-height: 1.5;
}

.gotg-wallet .stakable-item .staking-card .asset-section .asset-item > em:nth-child(1),
.gotg-wallet .staking-item .staking-card .asset-section .asset-item > em:nth-child(1) {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    margin-top: 8px;
}

.gotg-wallet .stakable-item .staking-card .asset-section .asset-item > em.coin-type,
.gotg-wallet .staking-item .staking-card .asset-section .asset-item > em.coin-type {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
}

.gotg-wallet .account-tab {
    width: 100%;
    height: 44px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.gotg-wallet .account-tab .account-tab-item {
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    border-bottom: 2px solid #1c2a36;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gotg-wallet .account-tab .account-tab-item .tab-label {
    display: inline-block;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-semibold);
    color: #8ea1af;
}

.gotg-wallet .account-tab .account-tab-item .tab-label > em:nth-child(2) {
    color: #ffffff;
    display: inline-block;
    margin-left: 4px;
}

.gotg-wallet .account-tab .account-tab-item.active {
    border-bottom: 2px solid #41abe4;
    opacity: 1;
}

.gotg-wallet .account-tab .account-tab-item.active .tab-label {
    color: #41abe4;
    font-weight: var(--font-weight-bold);
}

.gotg-wallet .account-tab-content {
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100% - 225px - 76px) !important;
}

.gotg-wallet .account-tab-content .account-tab-content-item {
    display: none !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.gotg-wallet .account-tab-content .account-tab-content-item.active {
    display: flex !important;
}


.gotg-wallet .account-tab-content-item .asset-item {
    width: 100% !important;
    margin-top: 16px;
}

/* 공지사항 팝업 -sy*/
.wrap .neoul-dialog-container .dialog-main.notice-dialog .dialog-content {
    height: calc(100% - 136px);
    padding: 0px 16px;
    margin-top: 12px;
}
.notice-dialog .dialog-content >div{
    overflow: auto;
    box-sizing: border-box;
}
.notice-dialog .dialog-content .table-item{
    overflow: auto;
    height: 100%;
}
.notice-dialog .dialog-content .table-item::-webkit-scrollbar{
    display: none;
    width: 0 !important;
}
.notice-dialog .dialog-content .table-item .item-title {
    position: sticky;
    top: -1px;
    z-index: 99;
    left: 0;
    background: #41abe4;
}

.notice-dialog .dialog-content .table-item .item {
    display: flex;
    box-sizing: border-box;
}

.notice-dialog .dialog-content .table-item .item.item-title span:last-child{
    box-sizing: border-box;

}
.notice-dialog .dialog-content .table-item .item span {
    display: inline-block;
    color: black;
    border-bottom: 1px solid #354553;;
    border-right: 1px solid #354553;;
    font-weight: 600;
    background: #41abe4;
    text-align: center;
    height: 50px;
    box-sizing: border-box;
    line-height: 50px;
    width:120px;
    font-size: 16px;
}
.notice-dialog .dialog-content .table-item .item span.num{
    border-left: 1px solid #354553;
}
.notice-dialog .dialog-content .table-item span.text {
    box-sizing: border-box;
    cursor: pointer;
    padding-left: 26px;
    width:calc(100% - 360px);
    text-align: start;
}

.notice-dialog .dialog-content .table-item span.file,
.notice-dialog .dialog-content .table-item span.text,
.notice-dialog .dialog-content .table-item span.date {
    background: #030a0e;
    font-weight: normal;
    color: white;
}

.notice-dialog .dialog-content .table-item span.date {
    box-sizing: border-box;
    width:120px;
}

.notice-dialog .dialog-content .table-item .item-title > span {
    background: #41abe4;
    font-weight: 600;
    color: black;
}

.notice-dialog .dialog-content .table-item .item-title > span.text {
    text-align: center;
    padding-left: 0;
}

.notice-dialog .dialog-content .table-item .item-container {
    display: none;
    flex-direction: column;
    padding: 21px 109px 21px 21px;
    row-gap: 15px;
    border-left: 1px solid #354553;
    border-right: 1px solid #354553;
    border-bottom: 1px solid #354553;
    background-color: rgba(28, 42, 54, 0.7);
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.notice-dialog .dialog-content .table-item .item-wrap.active .item-container {
    display: block;
}

.notice-dialog .dialog-content .table-item .item-container > span {
    text-align: start;
    height: auto;
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    background: transparent;
}

.notice-dialog .dialog-content .table-item .item-container > span > em {
    font-weight: bold;
    font-style: normal;
}

.notice-dialog .dialog-content .table-item .item-container .text-container {
    padding-left: 12px;
    box-sizing: border-box;
    display: block;
}

.notice-dialog .dialog-content .table-item .item .file {
    position: relative;
    border-right: 1px solid #354553;
}

.notice-dialog .dialog-content .table-item .item .file > i {
    display: none;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto auto;
    background-image: url("/assets/images/icon-download-2-s.svg");
}
.notice-dialog .dialog-content .table-item .item .file.active > i{
    display: block;
}

.notice-logout-dialog .dialog-content span {
    color: #FFFFFF;
}
.notice-dialog .dialog-content .table-item .item > span.num{
    background-color: #1b4dbe;
    color: #fff;
}
.notice-dialog .dialog-content .table-item .item.item-title > span.num{
    color: #000;
    background-color: #41abe4;
}


.gotg-wallet.sub-page .staking-content {
    height: 100% !important;
    width: 100%;
    z-index: 1001;
    box-sizing: border-box;
    padding: 0px 32px;
}

.gotg-wallet.sub-page .staking-item {
    width: calc(100% - 16px);
    height: 228px;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    display: flex;
    flex-direction: column;
    padding: 12px;
}


.gotg-wallet.sub-page .staking-item .staking-card {
    width: 100%;
    height: calc(100% - 44px);
    display: flex;
    flex-direction: row;
}

.gotg-wallet.sub-page .staking-item .staking-card .profile-section {
    width: 112px;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gotg-wallet.sub-page .staking-item .staking-card .profile-section .profile-image {
    width: 112px !important;
    height: 112px !important;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}


.gotg-wallet.sub-page .staking-item {
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid rgba(39, 206, 230, 0.3);
    background-color: rgba(63, 79, 93, 0.18);
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.gotg-wallet.sub-page .staking-item .btn-ripple.square > em {
    white-space: nowrap;
}

.gotg-wallet.sub-page .staking-item .staking-card {
    width: 100%;
    height: calc(100% - 44px);
    display: flex;
    flex-direction: row;
}

.gotg-wallet.sub-page .staking-item .staking-card .profile-section {
    width: 112px;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gotg-wallet.sub-page .staking-item .staking-card .profile-section .profile-image {
    width: 112px !important;
    height: 112px !important;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
}

.gotg-wallet.sub-page .staking-item .staking-card .profile-section .profile-image.hide {
    display: none;
}

.gotg-wallet.sub-page .staking-item .staking-card .profile-section .profile-image > img {
    opacity: 0;
    display: block;
    border: none;
    outline: none;
    white-space: nowrap;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
}

.gotg-wallet.sub-page .staking-item .staking-card .profile-section .profile-image.render > img {
    opacity: 1;
    transition: opacity 0.4s;
}

.gotg-wallet.sub-page .staking-item .staking-card .profile-section .d-day {
    font-size: 25px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
    display: inline-block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    margin-top: 4px;
}

.gotg-wallet.sub-page .staking-item .staking-card .asset-section {
    display: flex;
    flex-direction: column;
    width: calc(100% - 112px - 12px);
    height: 100%;
}

.gotg-wallet.sub-page .staking-item .staking-card .asset-section .item-name {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    line-height: 1.5;
}

.gotg-wallet.sub-page .staking-item .staking-card .asset-section .asset-item > em:nth-child(1) {
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    margin-top: 8px;
}

.gotg-wallet.sub-page .staking-item .staking-card .asset-section .asset-item > em.coin-type {
    display: block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #41abe4;
}
.notice-login-dialog .dialog-content,
.notice-logout-dialog .dialog-content{
    padding: 12px 16px;
    height: calc(100% - 122px - 30px - 16px);
    box-sizing: border-box;
    overflow-y:auto;
    overflow-x:hidden;
}
.notice-login-dialog .dialog-checkbox,
.notice-logout-dialog .dialog-checkbox{
    padding: 10px 28px 0;
    border-top: 1px solid #354553;
    margin-top: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
}

.wrap .neoul-dialog-container .dialog-multi-main .dialog-header > h2{
    /* font-size: 14px; */
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.wrap .neoul-dialog-container .dialog-multi-main .dialog-header > em{
    font-size: 14px;
    margin-bottom: 2px;
    color: #8ea1af;
}


.wrap .neoul-dialog-container .dialog-multi-main{
    width: calc(1280px * 0.9);
    height: calc(1280px * 0.9 * (9 / 16));
    border-radius: 8px;
    box-sizing: border-box;
    /*background-color: #1c2a36;*/
    overflow: visible;
    color: #fff;
}

.wrap .neoul-dialog-container .dialog-multi-main.notice-login-dialog .dialog-header,
.wrap .neoul-dialog-container .dialog-multi-main.notice-logout-dialog .dialog-header{
    height: 54px;
    background-color: #1c2a36;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    color: #2c3566;
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    /* align-items: center; */
    /* justify-content: space-between; */
    border-bottom: 1px solid #354553;
    padding: 0px 20px;
    z-index: 9999;
    box-sizing: border-box;
    position: relative;
}
.wrap .neoul-dialog-container .notice-logout-dialog .dialog-content{
    width: 100%;
    /* height: calc(100% - 122px); */
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    background-color: #1c2a36;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.wrap .neoul-dialog-container .dialog-multi-main.notice-logout-dialog .dialog-checkbox{
    padding: 10px 28px 0;
    border-top: 1px solid #354553;
    margin-top: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
}
.wrap .neoul-dialog-container .dialog-multi-main .dialog-action {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    padding: 0px 20px;
    box-sizing: border-box;
}
.wrap .neoul-dialog-container .dialog-multi-main .dialog-action button.btn-confirm {
    background-color: #1c2a36 !important;
    color: #fff !important;
    border-radius: 24px !important;
    height: 36px;
    padding: 0px 16px;
    min-width: 120px;
    font-size: var(--font-size-normal);
    margin: 0px 8px;
    outline: none;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    font-weight: var(--font-weight-semibold);
    border: 1px solid #41abe4 !important;
}
.wrap .neoul-dialog-container .dialog-multi-main .dialog-action button.btn-poll {
    background-color: #1c2a36 !important;
    color: #fff !important;
    border-radius: 24px !important;
    height: 36px;
    padding: 0px 16px;
    min-width: 120px;
    font-size: var(--font-size-normal);
    margin: 0px 8px 0px 0px;
    outline: none;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    font-weight: var(--font-weight-semibold);
    border: 1px solid #41abe4 !important;
}
.notice-login-dialog .notice-login-wrap,
.notice-logout-dialog .notice-logout-wrap{
    width: 640px;
    border-radius: 12px;
    height: 100%;
    background-color: #1c2a36;
}
#notice-login-slider >div,
#notice-logout-slider >div,
.dialog-multi-main .page-holder.neoul-scrollbar{
    height: 100%;
}

.notice-login-dialog .notice-login-wrap .dialog-content a,
.notice-logout-dialog .notice-logout-wrap .dialog-content a {
    color: #41abe4;
    word-break: break-all;
}


.wrap .neoul-dialog-container .dialog-main.loading-full {
    border-radius: 0px !important;
}
.wrap .neoul-dialog-container .dialog-main.loading-full .dialog-content{
    height: 100vh !important;
    background-color: transparent;
}
.wrap .neoul-dialog-container .dialog-main.loading-full .loading-message{
    text-align: center;
}

.notice-poll-item .single-checked {
    display: inline-block;
    width: 24px;
    height: 24px;
    content: url("/assets/images/ic-check-04-2-s.svg");
    opacity: 0.2;
    margin-right: 16px;
}
.notice-poll-item.active .single-checked {
    opacity: 1;
}
.notice-poll-item input {
    outline: none;
    font-size: 14px;
    font-weight: normal;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 16px;
    width: 460px;
    color: #ffffff;
}

.wrap .neoul-dialog-container .dialog-main.tx-hist .dialog-content {
    justify-content: flex-start !important;
}
.tx-hist-item {
    display: flex;
    align-items: center;
    width: 100%; height: 160px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.5);
    margin-top: 20px;
    box-sizing: border-box;
}
.tx-hist-item .bill-image {
    width: 158px;
    height: 158px;
    overflow: hidden;
    box-sizing: border-box;
    border-right: 1px solid rgba(255,255,255,0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0px 0px 8px;
    cursor: pointer;
}
.tx-hist-item .bill-image .ns-icon.plus-image {
    width: 64px;
    height: 64px;
    display: inline-block;
    content: url("/assets/images/plus-image-icon.svg");
    position: relative;
    z-index: 1;
}
.tx-hist-item .bill-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}
.tx-hist-item .bill-image.render img {
    opacity: 1;
    transition: opacity 0.4s;
}
.tx-hist-item .form-set {
    width: calc(100% - 160px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px;
}
.tx-hist-item .form-set .form-box {
    width: 100%;
    display: flex;
    align-items: center;
    height: 48px;
}
.tx-hist-item .form-set .form-choice-box {
    display: flex; align-items: center; width: 160px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.5);
    overflow: hidden;
    margin: 0px 4px;
}
.tx-hist-item .form-set .form-choice-box .form-choice {
    width: 160px;
    height: 36px;
    border: none;
    background-color: rgba(0,0,0,0.3);
    color: #ffffff;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
}
.tx-hist-item .form-set .form-choice-box .form-choice.active {
    background-color: #41abe4;
    color: #ffffff;
}
.tx-hist-item .form-set .form-choice-box .form-choice:not(:first-child) {
    border-left: 1px solid rgba(255,255,255,0.5);
}
.tx-hist-item .form-set input {
    height: 36px;
    outline: none;
    font-size: 14px;
    font-weight: normal;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.5) !important;
    padding: 0px 16px;
    line-height: 34px;
    color: #ffffff;
    box-sizing: border-box;
    margin: 0px 4px;
}
.tx-hist-item .form-set input:focus,
.tx-hist-item .form-set input:active {
    border: 1px solid rgba(255,255,255,1) !important;
}
.tx-hist-item .form-set input.form-number {
    text-align: right;
}
.tx-hist-item button.btn-ripple {
    background-color: #1c2a36 !important;
    color: #fff !important;
    border-radius: 24px !important;
    height: 36px !important;
    padding: 0px 16px;
    min-width: 120px;
    font-size: var(--font-size-normal);
    margin: 0px 8px 0px 0px;
    outline: none;
    position: relative;
    width: 160px !important;
    box-sizing: border-box;
    font-weight: var(--font-weight-semibold);
    border: 1px solid #41abe4 !important;
}
.dialog-header button.btn-ripple {
    background-color: #1c2a36 !important;
    color: #fff !important;
    border-radius: 24px !important;
    height: 36px !important;
    padding: 0px 16px;
    min-width: 120px;
    font-size: var(--font-size-normal);
    margin: 0px 8px 0px 0px;
    outline: none;
    position: relative;
    width: 160px !important;
    box-sizing: border-box;
    font-weight: var(--font-weight-semibold);
    border: 1px solid #41abe4 !important;
}