/* Font */
@font-face {
    font-family: kanit;
    src: url('Kanit Regular.ttf');
}

*,
body,
button,
input,
optgroup,
select,
textarea,
table,
th,
td {
    font-family: kanit !important;
}

html,
body,
#root,
.app,
.content {
    height: 100%;
    width: 100%;
    font-family: kanit;
    background-color: rgb(245 245 245);
    overflow: hidden;
}

.content_body {
    background-color: rgb(252 252 252);
    width: 100%;
    height: 93%;
    overflow: scroll;
}

.app {
    display: flex;
    position: relative;
}

.menu-bars {
    text-decoration: none;
    color: #000;
}

::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background: #e0e0e0;
}


::-webkit-scrollbar-thumb {
    background: #888;
}


::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.pagination li a {
    display: inline-block;
    padding: 0 10px;
    text-decoration: none;
}

.pagination li.active {
    border-radius: 2px;
    background-color: #5CB2E6;
}

.pagination li.active a {
    color: #fff;
}

.disabled-link {
    pointer-events: none;
    color: gray !important;
    text-decoration: none;
    cursor: default;
}

.left-align{
    text-align: left;
}

.center-align{
    text-align: center;
}

.right-align{
    text-align: right;
}