/*
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 : Dec 14, 2023, 12:26:58 PM
    Author     : jcoch
*/



@import url('https://fonts.googleapis.com/css2?family=Exo:wght@500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Tinos:wght@700&display=swap');
body{

    font-family: 'Exo', sans-serif;
}

input, textarea, fieldset{
    padding: 3px 4px 3px 4px;
    border-radius: 5px;
}
button{
    padding: 5px 10px 5px 10px;
}

h2, h3{
    text-align: center;
}

.hiddenDiv{
    display: none;
}

.tokenListDiv{
    display: flex;
    flex-direction: column;
    align-items: center;

}

.lbutton{
    border-radius: 15px 0 0 15px;
}
.rbutton{
    border-radius: 0 15px 15px 0;
}

.tokenRow{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 0 5px 0;
    border-bottom: 1px black dotted;
}

.tokenRow > div{
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.viewTokenButton{
    border-radius: 0px;
    background-color: white;
    color: black;
}


.tokenAlert{
    color: red;
    font-size: small;
    text-align: center;
    width: 100%;
}

#tokenViewHeader{
    display: flex;
    justify-content: space-between;
    width: 90%;
    align-items: center;
    position: sticky;
    top: 20px;
    background-color: white;
    flex-wrap: wrap;


}

#tokenContainer{
    padding: 10px 0 10px 0;
}

#tokenContainer > div{
    border-bottom: 3px solid black;
}

#viewActionBar{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#viewActionBar input, #viewActionBar select{

    align-self: stretch;
}

#filterResultsMenu{
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-image: url(../images/FilterTokens.png);
    background-size: contain;
    background-position: center;
}

#filterBox > div{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    overflow: auto;
}

#filterBox > div > div{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 90%;
    margin-top: 12px;
}

#filterBox input{
    margin-left: 15px;
}

#filterBox button{
    margin: 0 10px 0 10px;
}


#viewTokenQuickLinksMenu{
    position: relative;
}

#qlMenuTrigger{
    cursor: pointer;
    font-size: xx-large;
}

#qlMenuContents{
    display: none;
    position: absolute;
    top: 0;
    right: 20px;
    background-color: rgba(255,255,255,0.9);
    padding: 0 10px 0 10px;
}

#qlMenuContents > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.quickLink{
    padding: 1px 0 1px 0;
    
}



.loadBarAnimation{
    animation-name: loading;
    animation-duration: 2s;
    width: 120px;
    height: 24px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;

}




@keyframes loading {
    0%{
        background-image: linear-gradient(to right, black, black, black, black, black);
        color: rgba(255,255,255,1);
    }
    20%{
        background-image: linear-gradient(to right, white, black, black, black, black);
        color: rgba(255,255,255,1);
    }
    40%{
        background-image: linear-gradient(to right, white, white, black, black, black);
        color: rgba(175,175,175,1);
    }
    50%{
        background-image: linear-gradient(to right, white, white, black, black, black);
        color: rgba(75,75,75,1);
    }
    60%{
        background-image: linear-gradient(to right, white, white, white, black, black);
        color: rgba(0,0,0,1);
    }
    80%{
        background-image: linear-gradient(to right, white, white, white, white, black);
        color: rgba(0,0,0,1);
    }
    100%{
        background-image: linear-gradient(to white, white, white, white, white, white);
        color: rgba(0,0,0,1);
    }
}