body {
    font-family: 'Montserrat';        
    text-align: center;
    margin: 0px;
    padding: 0px;
    width: 100%;
    position: relative
}
.lowoverlay { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    background-color: white;    
    display: none;
    z-index: 1000; 
    opacity: 0.5;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    background-color: white;    
    display: none;
    z-index: 1000;
}
/* lets make a simple round spinner  */
.spinner {
    position: absolute;
    top: 300px;
    left: 0; right: 0;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border: 20px solid #f3f3f3;
    border-top: 20px solid #3498db;
    border-radius: 50%;
    z-index: 1001;
    animation: spin 1s linear infinite;
}

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

.header-assetclass { 
    font-size: 13px;
    font-weight: bold;
    margin-left: 10px;
    color: green;
}

.username { 
    width: 100%;
    height: 25px; line-height: 25px;
    background-color: #1b2534;    
    color: #fa3f46;
    font-size: 14px;    
}

.smallheader { 
    background-color: #e5e5e5;
    color: #2d3131;
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.smallheader-title { 
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}
.smallheader-logo {
    width: 30px;
    margin-left: 10px;
    height: 30px;
    margin-right: 10px;
}
.smallheader-back { 
    font-size: 14px;
    margin-left: auto;
    margin-right: 30px;
    background-color: #006187;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}
.smallpopup { 
    z-index: 1004;
    position: fixed;    
    left: 0; right: 0; 
    margin: 200px auto;
    width: 60%;
    padding: 20px;    
    background-color: white;
    border: 1px solid gray;
    border-radius: 10px;
    opacity: 0.95;
}
.smallpopup-message { 
    font-size: 15px;
    color: black;
    margin-top: 20px;
}
.smallpopup-ok { 
    width: 100px;
    height: 40px;
    line-height: 40px;
    margin: 20px auto;
    background-color: #fb4244;
    color: #fff;    
}
.popup {
    z-index: 1004;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid lightgray;
    border-radius: 10px;
    opacity: 0.95;
}
.superscript { 
    font-size: 12px;
    color: #2d3131;
    vertical-align: super;
}
.popup-message {          
    width: 300px;   
    margin-left: auto;
    margin-right: auto;    
    margin-top: 220px;
    font-size: 18px;
    color: black;    
}
.popup-ok {    
    width: 100px;
    height: 40px;
    line-height: 40px;
    margin: 20px auto;
    background-color: #fb4244;
    color: #fff;    
}
.popup-cancel {
    width: 100px;
    height: 40px;
    line-height: 40px;
    margin: 20px auto;
    background-color: lightgray;
    color: #2d3131;
    border-radius: 10px;
}
.header-title-container { 
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-logo{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.header {
    text-align: center;
    padding-top: 10px;    
    border-bottom: 1px solid lightgray;
    margin-bottom: 20px;
    background-color: #e5e5e5;
}
.header-title {    
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}
.header-description {  
    color: #2d3131;
    margin: 5px auto;
    text-align: center;
    font-size: 12px;
    width: 300px;   
    display: none;
}
input {
    font-family: 'Montserrat';
    border: none;
    outline: none;
}