/*html {
    overflow: scroll;
    overflow-x: hidden;
}*/
/*::-webkit-scrollbar {
    width: 0px;  /* remove scrollbar space */
    /*background: transparent;  /* optional: just make scrollbar invisible */
/*}*/
/* optional: show position indicator in red */
/*::-webkit-scrollbar-thumb {
    background: #FF0000;
}*/
/*---------------------------------------------------------------*/

.user-table{
    width: 100%;
}

.user-table td{
    border-bottom: 1px solid #E8E8E8;
    height: 50px;
}

.user-table th{
    border-bottom: 2px solid #101010;
    height: 50px;
    font-size: 18px;
    letter-spacing: 0.7px;
    font-weight: 400;
}

.redframe:focus{
    border-color: #E00000;
}


.red{
    text-decoration: none;
    color: #E00000;
}

.green{
    text-decoration: none;
    color: #00A000;
}

.blue{
    text-decoration: none;
    color: #005CE6;
}

.form-title{
    font-weight: 300;
    font-size: 30px;
}

.hint{
    height: 30px;
    color: #E00000;
    line-height: 14px;
    font-size: 16px;
    padding-left: 27px;
}


.lowercase{
    text-transform: lowercase;
}

#slide{
    background-color: #F0F0F0;
    height: auto;
    width: 100%;
}

.loading {
    background-image: url(../css/images/loader.gif);
    background-position: center;
    background-repeat: no-repeat;
}

#chart_div {
    min-height: 500px;
}

.blink {
    animation-duration: 1s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}
@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#file_input{
    position: absolute;
    display: none;
}
label[for="file_input"]{
    visibility: visible;
    width: 100%;
    /* height: 150px; */
    /* line-height: 150px; */
    /* height: 20px; */
    padding: 8px;
    box-sizing: content-box;
    display: block;
    /* line-height: 20px; */
    background-color: #FFFFFF;
    border: 1px dashed #000000;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all ease 0.3s;
}
label[for="file_input"].selected_file_input{
    background-color: #5cb85c;
    color: #FFFFFF;
    border-color: transparent;
    transition: all ease 0.3s;
}
label[for="file_input"].selected_file_input_error{
    background-color: #d9534f;
    color: #FFFFFF;
    border-color: transparent;
    transition: all ease 0.3s;
}
.grey-hover{
    color:#e6e6e6;
    transition: all ease 0.3s;
}
.grey-hover:hover{
    color:rgba(0,0,0,0.5);
    transition: all ease 0.3s;
}
#title-edit{
    border: 1px solid transparent;
    border-radius: 5px;
    height: 51px;
    padding-top: 2px;
}
#title-edit:hover{
    border-color: rgba(0, 0, 0, 0.15);
}
.greenborder {
    border: 1px solid green;
    border-radius: 0.25rem;
    border-top-width: 1px;
    border-bottom-width: 1px;
}


