table {
    width: 100%;
    table-layout: fixed;
        font-family: 'Poppins';

}

.tbl-header {
    background-color: #f04836;
}

.tbl-content {
    height: 200px;
    overflow-x: auto;
    margin-top: 0px;
}

th {
    text-align: center;
    font-weight: 300;
    font-size: 10px;
    color: white;
    text-transform: uppercase;
}

td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    font-weight: 300;
    font-size: 10px;
    border-bottom: solid 1px rgba(255,99,132,0.2);

}

/* for custom scrollbar for webkit browser*/

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
        background-color:  rgba(255,99,132,0.2);

}

::-webkit-scrollbar-thumb {
        background-color:  #f04836;

}

.button {
    display: inline-block;
    background-color: #f04836;
    border: none;
    color: white;
    text-align: center;
    font-size: 22px;
    padding: 10px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    margin-top: 10px;
    float:right;
    outline:0;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\25B6';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -25px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

.slidecontainer {
    width: 50%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 1px;
    background: rgba(255,99,132,0.2);
    outline: none;
}

.slider:hover {
    opacity: 1;
    transition: 0.5s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #f04836;
    cursor: pointer;
}

.badge {
    font-size: 10px;
    opacity: 0;
    border: none;
    text-align: justify;
    letter-spacing: 1px;
    transition: opacity 1s;
    transition-delay: 1s;
}