.modal{
   
    position:fixed; /*stay in place*/
    z-index:1;
    /* padding-top:500px; */
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    border-radius: 5px;
    display: flex;

}
/* Modal content */
.modal-content{
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border:1px solid #888;
    width: 80%;
    border-radius: 15px;
    max-width: 500px;
   
}
/* The close button */
.close{
    color:#aaa;
    float: right;
    font-size: calc( 0.80 * 28px);
    font-weight: bold;
}
.close:hover,.close:focus{
    color:#000;
    text-decoration: none;
    cursor: pointer;
}

#show-modal{
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #ff5722;
    color: white;
    font-weight: bold;
    position: fixed;
    right: 15px;
    border: none;
}
.export-data-pdf{
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #ff5722;
    color: white;
    font-weight: bold;
    position: fixed;
    right: 280px;
    border:none;
}

.export-data-excel{
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #ff5722;
    color: white;
    font-weight: bold;
    position: fixed;
    right: 150px;
    border:none;
}

.choose-column{
    border-radius: 10px;
    padding: 5px 10px;
}
.selected-column-background{
    background-color: #73c373;
    border-color: white;
    /* color:white; */
    border-color: #68220b;
}
.unselected-column-background{
    background-color: #eee;
    border-color:0.5px solid black;
    color: black;
}
.choose-column:hover{
    background-color: #888;
    color:white;
    border: 0.5px solid;
    border-color: black;
}