/* --------            Items that are specific to JRAD library      ----------------*/

#LoadingDiv {
    padding: 0;
    position: absolute;
    border-radius: 18px;
    top: 5%;
    left: 5%;
    margin: 0 auto;
    width: 600px;
    height: 200px;
    background-color: white;
    border-width: 10px;
    border-style: solid;
    border-color: white;
}
#bar {
    position: absolute;
    top: 60px;
    height: 18px;
    width: 500px;
    left: 50px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: hidden;
}
#circle {
    position: absolute;
    top: -30px;
    margin-left: -30px;
    height: 60px;
    width: 10px;
    left: 0;
    background: #00529c;
    animation: mymove 1s infinite
}
#pLoad {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0px;
    width: 500px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
}
#msg1{
    position: absolute;
    left: 0;
    top: 5px;
    width: 600px;
    text-align: center;
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 28px;
}
#loadmessage{
    position: absolute;
    left: 0;
    top: 100px;
    width: 600px;
    text-align: center;
    font-family: arial, sans-serif;
    font-size: 18px;
    color: #00529c;
}
#loadpct{
    position: absolute;
    left: 0;
    top: 100px;
    width: 600px;
    text-align: center;
    font-family: arial, sans-serif;
    font-size: 36px;
    color: #00529c;
}
@keyframes mymove {
    0% {
        left: 0;
        width: 10px;
    }
    50% {
        left: 20%;
        width: 300px;
    }
    100% {
        left: 110%;
        width: 10px;
    }
}
/* Timer*/
.loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #1faa92;
    border-bottom: 10px solid #d6186e;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* --------       POPUP Window items         -----------------------------------*/
.popup-bg{
    background-color: #FFFFFFA0;
}
.popup-window{
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-radius: 12px;
}
.popup-button{
    background-color: white;
    color: #808080;
    border-style: solid;
    border-radius: 6px;
    border-width: 1px;
    border-color: '#404040';
    font-size: 16px;
}
.popup-button:hover{
    font-weight: bold;
    background-color: #fdd2b8;
}
.popup-button:active{
    transform: translateY(3px);
}

/* --------           Standard items   ----------------*/
.std-text-color{
    color: #a0a0a0;
}
.std-border{
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #999fa8;
}
.std-button{
    background-color: white;
    color: #808080;
    border-style: solid;
    border-radius: 6px;
    border-width: 1px;
    border-color: '#404040';
    font-size: 16px;
}
.std-button:hover{
    font-weight: bold;
    background-color: #1faa92;
    color: white;
}
.std-button:active{
    transform: translateY(3px);
}