:root{
    --primary-color: #2ABB47;
}

@font-face {
    font-family: gilroy-medium;
    src: url(../fonts/gilroy-medium.ttf);
}

*{
    box-sizing: border-box;
    font-family: gilroy-medium;
}

body{
    margin: 0px;
    background-color: white;
}

.col-1-2{
    float: left;
    width: 50%;
}

.flex-col-1-2{
    width: 50%;
}

.flex-col-1-3{
    width: 33.3%;
}

.flex-col-1-4{
    width: 25%;
}

.col-1-3{
    float: left;
    width: 33.3%;
}

.input{
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #F8F8F8;
    border-radius: 5px;
    padding: 0px 20px;
    font-size: 18px;
    font-weight: bold;
    height: 56px;
}

.input-sm{
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #F8F8F8;
    border-radius: 3px;
    padding: 0px 10px;
    font-size: 14px;
    font-weight: bold;
    height: 36px;
}

.input:disabled, .input-sm:disabled{
    background-color: gainsboro;
}

.btn-white-border{
    background-color: transparent;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 18px;
    padding: 10px 20px;
    color: white;
}

.collapse{
    width: auto !important;
}

.collapse ul li{
    padding: 0px !important;
    line-height: 40px;
    width: 40px;
    text-align: center;
}

.collapse ul li span{
    display: none;
}

.sidebar{
    background-color: var(--primary-color);
    padding-top: 50px;
    border-radius: 0px 50px 0px 0px;
    width: 250px;
    overflow: hidden;
}

.sidebar a{
    text-decoration: none;
}

.sidebar ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.sidebar ul li{
    color: white;
    font-size: 18px;
    padding: 0px 20px;
    margin: 10px 0px;
    line-height: 40px;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar ul li.active{
    background-color: white;
    color: var(--primary-color);
}

.sidebar ul li.active > svg{
    fill: var(--primary-color);
}

table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 10px 5px;
}

th{
    border: none;
    font-size: 16px;
    font-weight: bold;
}

td{
    font-size: 14px;
}

tr{
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

tr:last-child{
    border: none;
}

.btn-options{
    display: inline-block;
    background: rgba(0, 0, 0, 0.05); 
    border: none; 
    border-radius: 7px; 
    padding: 4px;
}

.seperator{
    border: 0 none;
    height: 1px;
    color: rgba(0, 0, 0, 0.15);
    background-color: rgba(0, 0, 0, 0.15);
}

.btn-spread, .btn-collapse{
    border: 1px solid white;
    background-color: transparent;
    height: 40px;
    border-radius: 20px;
    float: left;
    padding: 0px 20px;
    margin: 10px 0px;
}

.btn-spread{
    border-radius: 20px 0px 0px 20px;
}

.btn-collapse{
    border-radius: 0px 20px 20px 0px;
}

.collapse .btn-spread, .collapse .btn-collapse{
    display: block;
    float: none;
    border-radius: 20px;
    padding: 0px;
    width: 40px;
}

.flex-box-center{
    display: flex; 
    justify-content: center; 
}

.collapse .flex-box-center{
    display: block; 
}

button.active{
    background-color: white;
}

button.active svg{
    fill: var(--primary-color);
}

.btn{
    height: 56px;
    line-height: 56px;
    min-width: 100px;
    padding: 0px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
}

.btn-sm{
    height: 36px;
    line-height: 36px;
    min-width: 100px;
    padding: 0px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
}

.btn-primary{
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.btn-default{
    border: 1px solid #F2F2F2;
    background-color: #F2F2F2;
    color: black;
}

a{
    text-decoration: none;
    color: dodgerblue;
    cursor: pointer;
}

.tab{
    color: var(--primary-color);
    font-size: 18px;
    height: 48px;
    border-radius: 24px;
    background: transparent;
    border: 1px solid var(--primary-color);
}

.tab-active{
    color: white;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.tab-body{
    display: none;
}

.tab-show{
    display: table;
}
 
.pagination-box {  
    width: 100%;  
    margin: 0 auto;  
    text-align: center;  
    overflow: hidden;  
    display: flex;
}

.pagination {  
    margin: 0 auto;  
    padding: 0;  
    text-align: center;
}

.pagination li {  
    display: inline;  
}

.pagination li a {  
    display: block;  
    text-decoration: none;  
    color: #000;  
    padding: 10px 15px;  
    border: 1px solid #ddd;  
    float: left;
    margin-left: -1px;
}

.pagination li a {  
    -webkit-transition: background-color 0.4s;  
    transition: background-color 0.4s  
}  

.pagination li.active a {  
    background-color: var(--primary-color);  
    border: 1px solid var(--primary-color);
    color: #fff;  
} 

.pagination li:hover:not(.active) > a {  
    background: #ddd;  
}

.pagination li:first-child a {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination li:last-child a {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.progres-trey{
    background-color: gainsboro;
    height: 20px;
}

.progress-bar{
    background-color: limegreen;
    height: 20px;
    width: 0%;
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.modal-show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 50px auto 0px auto;
    max-width: 480px;
    border-radius: 20px;
    padding: 20px;
}

@media (max-width: 720px) {
    .col-1-2{
        width: 100%;
    }

    .flex-col-1-2{
        width: 100%;
    }

    .flex-col-1-3{
        width: 100%;
    }

    .flex-col-1-4{
        width: 100%;
    }

    .col-1-3{
        width: 100%;
    }
}