@import url(../fonts/Kanit.css);
* {
    font-family: 'Kanit', sans-serif;
}
html body {
    font-family: "Kanit", sans-serif;
    font-size: 13px;
}

.container-fluid {
    width: 95%;
}

#page-container.main-content-boxed>#page-header .content-header,
#page-container.main-content-boxed>#page-header .content,
#page-container.main-content-boxed>#main-container .content,
#page-container.main-content-boxed>#page-footer .content {
    max-width: 1355px;
}

.bg-dark {
    background-color: #35393e;
    color: #ffffff;
}

.center {
    margin: auto;
    width: 10 padding: 10px;
}

.form-control {
    font-size: 13px;
    font-family: 'Kanit' !important;
}
.form-control-plaintext {
    font-size: 13px;
}

label {
    font-size: 14px;
}

th {
    text-align: center;
}

.text-pedding {
    padding-left: 10px;
}

.text-font {
    font-size: 13px;
}

input {
    font-size: 1.5em;
}

.form-group {
    margin-bottom: 3px;
}

.btn {
    font-family: 'Kanit' !important;
    font-weight: 100;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.btn {
    font-family: 'Kanit' !important;
    font-weight: 300;
    font-size: 1.0rem;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #9dc0ea!important;
    box-shadow: 0 0 0 0.2rem rgb(6 101 208 / 0%)!important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single:focus {
    border-color: #9dc0ea!important;
    box-shadow: 0 0 0 0.2rem rgb(6 101 208 / 0%)!important;
}

.select2-container .select2-selection--single {
    height: 35px !important;
}

.select2-search--dropdown {
    padding: 0px!important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: grid !important;
}

.select2-container .select2-dropdown .select2-search__field {
    font-family: 'Kanit' !important;
    font-weight: 300 !important;
    font-size: 14px !important;
}

.block.block-rounded>.block-header,
.block.block-rounded>.nav-tabs {
    border-bottom: 1px solid #dadada !important;
}

.gwt-table {
    font-family: 'Kanit' !important;
    font-weight: 300;
    display: table;
    border-collapse: collapse;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: grey;
}

.gwt-table>thead {
    text-align: center !important;
    background-color: #FFEBCD !important;
}

.gwt-table>thead>tr>th {
    border: 1px solid black !important;
}

.gwt-table>tbody>tr>td {
    border: 1px solid black !important;
}


/* Table Style */


/* table, td, th {
    border: 1px solid black;
    font-size: 14px !important;
    font-weight: 100 !important;
}
thead{
  font-size: 15px !important;
  background-color:#FFEBCD  !important;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting {
    padding-right: 0.25rem !important;
    padding-left: 12px !important;
} */


/* load Screen page */


/* loading Page */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #00000042;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}


/* End load Screen page */
.md-preview{
    font-size: 1rem;
}
.md-preview hr{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.md-preview h1{
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}
.md-preview h2{
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}
.md-preview h3{
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.md-preview h4{
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.md-preview h5{
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.md-preview h6{
    font-size: 1rem;
    margin-bottom: 0.5rem;
}