.popup-support-seedshield {
    position: relative;  
    height: fit-content;
    max-height: 650px;
    width: 95%;
    max-width: 600px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

#externalSupportUs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}


#externalSupportUs .header-popup {
    border: 1px solid var(--color-borders);
    color: white;
    font-size: 1.3rem;
    height: 30px;
    line-height: 30px;
    position: absolute;
    margin-right: 0px;
    margin-left: 0px;
    margin-top: -2px;
    padding: 20px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    background-color: var(--color-support-header);
}



#externalSupportUs .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 18px;
    z-index: 2;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

#externalSupportUs .support-body {
    margin-top: 20px;
    padding: 20px 0px 10px 0px;
    overflow-y: auto;
    max-height: calc(100% - 30px);
    box-sizing: border-box;
}




.popup-support-seedshield p {
    text-align: justify;
    padding: 20px 15px 0px 15px;
}

.wallet {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    margin: auto;
    margin-top: -20px;
}

.wallet p {
    text-align: center;
    padding: 0px 0px 0px 0px;
}

.wallet-address {
    font-size: 25px;
    color: var(--color-wallet-address);
}

.wallet-address-small {
    margin-top: -10px;
    font-size: 15px;
    color: var(--color-wallet-address);

}

.copy-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin: 0;
}

.popup-support-seedshield .copy-button {
    position: relative;
    background: none;
    display: inline-block;
    margin-left: 10px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 0px;
    padding: 0;
    transition: transform 0.2s ease-in-out;
}

.popup-support-seedshield .copy-button:hover {
    background: none;
}

.copy-icon {
    width: 16px;
    height: 16px;
    padding-left: 0px;
    margin-left: 0px;
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.highlight {
    color: rgb(89, 0, 255);
}


@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.copy-button.spin {
    animation: spin 0.5s ease-out;
}


@media screen and (max-width: 610px) {
    .popup-support-seedshield {
        height: 95%;        
        min-height: 100px;
        max-height: 730px;
    }
}