/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Feb 16, 2024, 3:03:10 PM
    Author     : jcoch
*/

#mainTransferFrame > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

select{
    min-width: 100px;
}

fieldset{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    max-width: 600px;
}

fieldset > div{
    width: 90%;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: auto;

}

button{
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 15px 5px 15px;
    border-radius: 15px;
    background-color: black;
    color: white;
}


#endOfTxfrDoc{
    margin-top:100px;
}

#transferAccountStatusNotice{
    margin-bottom: 20px;
}

#transferMenuIcon{
    background-image: url(../images/transferMenu.png);
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
}


#linkUserID{
    text-transform: uppercase;
}



.hiddenDiv{
    display: none;
}

#acceptLinkDiv{
    border: 1px solid black;
    padding: 5px 0 5px 0;
    margin-bottom: 10px;
}

#acceptLinkDiv > div{
    width: 90%;
    max-width: 600px;
    margin: auto;
}

#tokenSelectionField > div{
    align-items: center;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 600px;
}

#transferStatusAlert{
    padding: 5px 0 5px 0;
    width: 90%;
    margin: auto;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: center;
    color: blue;

}

#selectedTokenList > div{
    width: 90%;
    display: flex;
    justify-content: flex-start;
    margin: auto;
    margin-top: 5px;
}
#selectedTokenList input{
    margin-right: 10px;
}

#addRecipientField{
    max-width: 600px;
    margin: auto;
}

.transferNavButton{
    padding: 3px 10px 3px 10px;
    font-variant: small-caps;
    border-radius: 0px;
}
.reqRow{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 3px 0 5px 0;
    border-top: 1px solid black;
}

.inviteHandle{
    font-weight: 900;
    font-size: large;
}

#transferCoverScreen{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #c0c0c0;
}

#transferCoverScreen > div{
    background-color: white;
    width: 90%;
    margin: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 40px 0;
}

#tradeOffers{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#tradeMessage{
    position: sticky;
    top: 100px;
}

.offerRow{
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.95);
}

.offerRow label{
    margin-right: 10px;
}

.offerFunctions{
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}
.offerFunctions button{
    margin: 10px;
}

#loadingBar, #accountLoadingBar{
    width: 60%;
    height: 45px;
    padding: 5px;
    border: 3px solid black;
    margin: auto;
    margin-top: 10px;
}

.loadBarAnimation{
    animation-name: loading;
    animation-duration: 3s;
    animation-iteration-count: 8;
}

@keyframes loading {
    0%{
        background-image: linear-gradient(to right, black, black, black, black, black);
    }
    20%{
        background-image: linear-gradient(to right, white, black, black, black, black);
    }
    40%{
        background-image: linear-gradient(to right, white, white, black, black, black);
    }
    60%{
        background-image: linear-gradient(to right, white, white, white, black, black);
    }
    80%{
        background-image: linear-gradient(to right, white, white, white, white, black);
    }
    100%{
        background-image: linear-gradient(to white, white, white, white, white, white);
    }
}