@import 'colors.css' ;
html{
    overflow:scroll; 
}
body {
    display: block;
    background-color:var(--bodyColor);
    color: black;
    font-family: sans-serif;

}
footer {
    position: fixed;
    height: 20px;
    width: 100%;
    bottom: 0;
    background-color:var(--mainColor);
    color: black;
    text-align: center;
}
::-webkit-scrollbar{
    display: none;
    width: 0px;  /* remove scrollbar space */
    height: 0px;
    background: transparent; 
    z-index: 1;/* optional: just make scrollbar invisible */
}
header{
    position: fixed;
    z-index: 2;
    background-color: var(--mainColor);

    margin-bottom: 5px;
    display: block;
    width: 100vw;
    top:0;
    overflow:scroll;
}
.container{
    width: 80%;

    min-width: 1200px;
    margin: 0 auto;

    display: block;


}
.orderBy{
    cursor: pointer;
}
#side-bar{
    display: inline-block;
    float:left;
    width: 250px;
    padding: 50px 0;
    margin-right: -180px;
}
#popupContainer{
    margin:50px auto 0 auto;   
    background-color: var(--bodyColor);
    box-shadow: 0 0 25px 10px rgba(0,0,0,0.2);
    vertical-align: middle;
    text-align: center;
}
#popupContainer p{

    font-size: 20px;
}
main .container{
    box-shadow: 0 0 25px 10px rgba(0,0,0,0.2);
    height:calc(100vh - 125px);
    padding: 0 25px 15px 25px;

}
main{
    padding-top: 70px;
    width:100%;
}
.menu{
    width: 100%;
    cursor: default;

    color: black;
}

.menu a{
    display: block;
    line-height: 50px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color:inherit;

}
#logo{
    transform:translateY(8px);

}


.menu a:hover{   

    /* background-color:var(--hoverColor);*/
    border:1px solid var(--hoverColor);
    margin: -1px;
    border-radius: 5px;  
}

#logo-a:hover{
    animation:none;
    background-color:  var(--mainColor);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    border:1px solid var(--mainColor);
}



.tableDiv{
    /* height: 100%;*/
    width: 100%;
    margin: 0 auto;
    display: block;

}

.contentTable{
    width: 100%;
    border-collapse:collapse ;
    /*display:grid;*/
    /*position: fixed;*/  
    /* height: 100%;*/
}

.contentTable td,th{

    text-align: center;
    width:200px;
    height: 25px;
    border: 1px solid black;
    background-color: transparent;

}
.pair{
    background-color:var(--pairColor);   
}
.unpair{
    background-color:var(--unpairColor);   
}
.contentTable div{
    word-wrap: break-word;
    line-height: 20px;    
    display: block;
    max-width: 195px;;
    display: block;
}

.contentTable th{
    background-color: var(--mainColor);

}
.contentTable tr{
    width:100%; 

}

.contentTable tbody{
    border-collapse:collapse ;
    width: calc(100% );     
    max-height: 800px;
    display: block;
    position: absolute;
    overflow-y: auto;
    overflow-x:hidden;
    -ms-overflow-style: none;

}
.contentTable thead{
    display: block;
}
.contentTable td{
    /*background-color: var(--bodyColor);*/
    text-align: center;


}

td.icon{
    width: 50px !important;
}
th.icon{
    width: 50px !important;
}
.icon{
    cursor: pointer;    
    font-size: 20px;
}
.contentTable a{
    cursor: pointer;
}
.tooltip {
    position: relative;
    display: inline-block;

}
.fa{
    font-size: 50px;
}

.tooltiptext {

    display: none;
    background-color: var(--mainColor);
    color: black;
    text-align: center;
    border:1px solid black;
    border-radius: 6px;
    padding: 5px 3px;
    font-size:initial;
    /* Position the tooltip */
    z-index: 999;
    width: 300px;
    top: 0px;
    left: 105%;

}

.tooltip:hover +.tooltiptext {
    display: block;
    position: absolute;     


}
button{
    margin: 5px;
    height: 30px;
    background-color: var(--mainColor);

    /*box-shadow: 0 0 25px 10px rgba(160,160,160,0.2);*/
    cursor: pointer;
    border-width: 1px;
    border-radius: 4px;


}
button:hover,.input-file:hover{

    background-color: var(--hoverColor);
    /* box-shadow: 0 0 25px 10px rgba(160,160,160,0.5);*/
}
input,select{
    border-style:solid;
    margin: 5px;
    padding: 5px;
    /* box-shadow: 0 0 20px 5px rgba(160,160,160,0.31);*/
    background-color: var(--hoverColor);
    display: inline-block;

    border-width: 1px;
    border-radius: 4px;
    /*color:white;  */

}
select{
    cursor: pointer;
}
td input,select{
    max-width: 130px;  
}


/*input[type="file"] {
    display: none;
}*/

input[type="checkbox"] {
    border-style:solid;
    margin: 5px;
    padding: 5px;
    /*  box-shadow: 0 0 50px 10px rgba(0,0,0,0.2);*/
    background-color: var(--bodyColor);
    display: inline-block;
    cursor: pointer;
    color:white;   
    height: 20px;
    width: 20px;

}

.alert{   
    margin:15px 0;
    padding: 10px;

    border-radius: 5px;

}
.error,.danger{
    color: #ff4442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.info{
    color: #31708f;
    background-color: #ffb300;
    border-color: #bce8f1;
    margin: 5px 0;

}
.warning{
    color: #8a6d3b;
    background-color: #ffb300;
    border-color: #faebcc;

}
.success{
    color: #3c763d;
    background-color: #dff0d8;
}


#popupDiv{
    background: rgba(0,0, 0, 0.80);
    height: 100%;
    width:100%;
    z-index: 1000;
    display: table;
    position:fixed;
    top:0;
    overflow: auto;
}
#loader {
    background: rgba(0,0, 0, 0.80);
    height: 100%;
    width:100%;
    z-index: 1000;
    display: block;
    position:absolute;
    top:50%;
    left:50%;

    overflow: auto;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media(max-width:1500px) {

}
@media(max-width:1000px) {




}
