.dropdown{
    text-decoration: none;
    display: block;
    height: 17px;
    width: 200px;
    border-radius: 2.5px 2.5px 2.5px 2.5px;
    border:1px solid #808080;
    box-sizing: border-box;
}
.dropdown:hover{
    background-color: rgb(230, 230, 230);
    border:1px solid #525252;
}
.dropdown:active {
    border:1px solid #808080;
    background-color: white;
    
}
.drop_title{    
    display: block;
    user-select: none;
    position: relative;
    width: 100%;
    height: 100%;
    padding-inline: 5px;
    line-height: 0px;
    box-sizing: border-box;
}

.droptext{
    vertical-align:-webkit-baseline-middle;
    font-size: 12px;
    text-overflow: ellipsis;
}

.list_dropdown{
    display: block;
    width: 200px;
    height: max-content;
    z-index: 9999999;
}

.downarrow{
    display: block;
    height: inherit;
    width: 20px;
    position:absolute;
    left:178px;
    top:0px;
    background-image:linear-gradient(transparent,transparent), url("../img/downarrow.svg");
    background-size: 75% 75%;
    background-position: center;
    background-repeat: no-repeat;
}

ul{
    padding-left: 0;
    margin: 0;
    
    background-color: white;
}

input[type="checkbox"]{
    pointer-events: none;
}

li{
    padding-left: 0px;
    list-style: none;
    
    user-select: none;
}

table{
    border-collapse: collapse;
}


table th:first-child{
    border-left: none;
    border-right:#ccc solid 1px;
}

table th:last-child{
    border-right: none;
    border-left:#ccc solid 1px;
}

table th{
    padding:5px;
    border-inline:#ccc solid 1px;
}

table td:first-child{
    border-right:#ccc solid 1px;
    border-left: none;
}

table td:last-child{
    border-left:#ccc solid 1px;
    border-right:none;
}
table td{
    border-block:#ccc solid 1px;
    border-inline:#ccc solid 1px;
    padding:5px
}

li:hover{
    background-color: rgb(230, 230, 230);
}

li:active{
    background-color: white;
}

li:last-child{
    border-radius: 0px 0px 2.5px 2.5px;
}

#drop_list{
    border-radius: 0px 0px 2.5px 2.5px;
    width: 200px;
    border: 1px solid #808080;
    box-sizing: border-box;
    cursor: pointer;
}

.shine:hover{
    animation: rainbow 0.1s;
    animation-iteration-count: infinite;
}
@keyframes rainbow{
    0%{
        color: red;
    }
    12.5%{
        color: orange;
    }
    25%{
        color: yellow;
    }
    37.5%{
        color: greenyellow
    }
    50%{
        color: green;
    }
    62.5%{
        color: aqua;
    }
    75%{
        color: blue;
    }
    87.5%{
        color: purple;
    }
    100%{
        color: red;
    }
}


th:first-child,
td:first-child{
    position:sticky;
    left: 0;
    background-color: white;
    z-index: 1;
}

a.no-decor{
    text-decoration: none;
}
a.footer{
    color:black;
    text-decoration: none;
}
a.footer:hover{
    color: #00AEEC;
}
.footer{
    
    text-align: center;
    margin: 0px;
}
footer{
    border-top: gray solid 1px;
}