
#nftBlock {
    background-image: url("../images/astronaut/bg_page.jpg");
    background-position: center center;
    background-size: 2100px 2300px;
    height: unset;
    position: relative;
    padding-bottom: 50px;
}

#nftInfo {
    width: 300px;
    display: grid;
    grid-template-columns: 47% 47%;
    justify-content: space-between;
}

.nft-shop-elem {
    margin-bottom: 10px;
}

.nft-shop-elem-img {
    width: 100%;
}

.nft-shop-elem-img > img {
    width: 100%;
}

.nft-claim-flag {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #a2e67d;
    font-weight: bold;
}

#nftImage {
    width: 300px;
    height: 300px;
    background-color: #f4e7c1;
}

#nftImage > img{
    width: 290px;
    height: 290px;
    padding: 5px;
}

#whitelistInfo {
    color: #fff6;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

#moreNft {
    color: #31fffa;
    text-decoration: underline;
}

#moreNft > a {
    color: #31fffa;
    text-decoration: none;
}

#nftIntro {
    width: 45%;
    color: white;
    margin-left: 30px;
}

#nftIntro > #avatar {
    position: relative;
    left: 20px;
    top: -100px;
}

#nftIntro > .activity-time {
    font-size: 32px;
}

#nftIntro > .title {
    font-size: 40px;
    margin-top: 10px;
}

#nftIntro > .sub-title {
    font-size: 13px;
    margin-top: 20px;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

#nftIntro > .mint-tip-title {
    color: #f29dfb;
    margin-top: 15px;
}

#nftIntro > .chain-info {
    background-image: url("../images/astronaut/bg_info.png");
    background-position: center center;
    background-size: 100% 100%;
    border-radius: 8px;
    width: 370px;
    display: flex;
    align-items: start;
    margin-top: 5px;
    padding: 10px;
    font-size: 15px;
}

#nftIntro > .chain-info > img {
    width: 56px;
    margin: 25px 5px 0 5px;
}

#nftIntro > .chain-info > div {
    margin: 25px 10px 20px;
}

#openButton {
    background-image: var(--img-btn-red2);
    background-repeat: no-repeat;
    background-size: 200px auto;
    margin: 40px 0 20px;
    width: 200px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    cursor: pointer;
    color: #f4e7c1;
    font-size: 20px;
}

#activityTip {
    margin-top: 25px;
    font-size: 13px;
    color: #00f3ff;
    font-family: Arial, Helvetica, sans-serif
}

#maskDialog {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.6;
    z-index: 100;
}

#tipDialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    width: 50%;
    max-width: 700px;
    min-width: 500px;
}

#tipWrapper {
    background-image: var(--img-wish-tip);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    width: 100%;
    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
}


#tipMessage {
    color: #6b4912;
}

.closeWrapper {
    margin-top: 20px;
}

.closeWrapper > img {
    width: 50px;
}

.button-area {
    display: flex;
    z-index: 1;
    position: relative;
}

.button-class {
    background-image: url("../images/common/nft_menu_focus.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /*margin: 20px 0 20px;*/
    margin: 30px 0 20px;
    /*width: 280px;*/
    width: 200px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    cursor: pointer;
    color: #f4e7c1;
    font-size: 20px;

    display: flex;
    justify-content: space-evenly;
}

.green-button {
    background-image: var(--img-btn-green2);
    background-repeat: no-repeat;
    background-size: 150px 50px;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    color: #f4e7c1;
    font-size: 20px;
    margin: 10px 0;
}

.green-button > a {
    text-decoration: none;
    color: #f4e7c1;
}

.account-tip {
    display: flex;
    align-items: flex-start;
    position: relative;
    left: -20px;
}

.account-tip > img {
    width: 25px;
}

.account-tip > a {
    color: #ffda67;
    text-decoration: underline;
    cursor: pointer;
}

.land-list {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.gift-box {
    animation: hideBox 1.5s forwards 0.1s;
    width: 250px;
    position: absolute;
    top: -80px;
    z-index: 3;
}

.gift-box-img {
    width: 100%;
}

@keyframes hideBox {
    90% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(0);
        display: none;
    }
}


.land-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0%;
    transform: scale(0.1);
    animation: scaleShow 0.5s forwards 1.6s;
}

.land-info > img {
    z-index: 2;
    width: 150px;
}

@keyframes scaleShow {
    1% {
        opacity: 100%;
    }
    80% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
        opacity: 100%;
    }
}

.land-info-bg {
    background-image: url("../images/passcard/shine.png");
    background-size: 100% 100%;
    animation: roate 5s infinite linear;
    position: absolute;
    z-index: 1;
    width: 150%;
    height: 150%;
    top: -25%;
}


@keyframes roate{
    0%{
        transform:rotateZ(0);
        -ms-transform:rotateZ(0);
        -moz-transform:rotateZ(0);
        -webkit-transform:rotateZ(0);
        -o-transform:rotateZ(0);
    }
    100%{
        transform:rotateZ(360deg);
        -ms-transform:rotateZ(360deg);
        -moz-transform:rotateZ(360deg);
        -webkit-transform:rotateZ(360deg);
        -o-transform:rotateZ(360deg);
    }
}

.land-info-count {
    color: #d5c699;
}

.delay-show {
    opacity: 0%;
    transform: scale(0.1);
    animation: scaleShow 0.5s forwards 2.2s;
}




#icpCheckDialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    width: 50%;
    max-width: 500px;
}

#icpCheckDialog > .tipWrapper {
    background-color: rgba(236,234,231, 0.8);
    border-radius: 15px;
    padding: 40px 30px 15px;
    min-height: 150px;
}

#icpCheckDialog > .tipWrapper .title {
    color: #D345B0;
    margin-bottom: 20px;
}

#icpCheckDialog > .tipWrapper .account-area {
    display: flex;
    margin-bottom: 15px;
}

#icpCheckDialog > .tipWrapper > .account-area > div {
    display: flex;
}

#icpCheckDialog > .tipWrapper > .account-area > div > img {
    width: 20px;
    cursor: pointer;
    margin-left: 5px;
}

#icpCheckDialog > .tipWrapper > .account-area > div:first-child {
    width: 200px;
}

#icpCheckDialog > .tipWrapper > .check-button-area {
    margin-top: 30px;
}

#icpCheckDialog > .tipWrapper .tipButtonBg {
    background-image: var(--img-btn-red2);
    background-position: 50%;
    background-size: contain;

    background-repeat: no-repeat;
    width: 200px;
    height: 50px;
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#icpCheckDialog > .tip-close {
    margin-top: 20px;
    text-align: center;
}

#icpCheckDialog > .tip-close .tip-close-btn {
    width: 50px;
    height: 50px;
    background-image: var(--img-btn-close);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    cursor: pointer;
}