html, body {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
}

body * {
    font-size:15px;
    box-sizing: border-box;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

h1 { font-size:26px; }
h2 { font-size:20px; }

a, button { cursor:pointer; }
a:not(.btn){
    color:#444beb;
    text-decoration-line: none;
}

.btn{
    display:inline-block;
    background:#444beb;
    border:1px solid #444beb;
    color:#fff;
    padding:12px 16px;
    opacity:1;
}
.btn:hover{opacity:0.8;}

.btn.reverse{
    background:#fff;
    border:1px solid #444beb;
    color:#444beb;
}

.btn.full{
    margin:2px 0px;
    width:100%;
}

main {
    max-width:1280px;
    margin:0 auto;
    padding:15px 15px 100px 15px;
}

nav{
    text-align:center;
    margin-bottom:30px;
}
nav ul {
    margin:0;
    padding:0;
}
nav ul li {
    display:inline-block;
}
nav ul li a {
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    color:#000 !important;
}
nav ul li a.active{
    background:#000;
    color:#fff !important;
}


/****************************************/
/**********  pagination style  **********/
/****************************************/

.pagination { margin:10px auto; }

.pagination > a, .pagination > span {
    color:#555;
    padding:4px;
}
.pagination > .no {
    padding:4px 6px;
}
.pagination > .no.active{
    color:#444beb; font-weight:bold;
}
.pagination > .disabled { color:#ccc;}
.pagination > .txt {
    display:inline-block;
    width:60px;
}


/************************************/
/**********  table style  ***********/
/************************************/

table, table thead, table tbody {
    border-collapse: collapse;
    width:100%;
    max-width:100%;
}
table thead{
    background:#444beb;
    color:#fff;
}
table th, table td {
    border:none;
    padding:8px 0px;
}

table th.progress{ width:20% !important; }
table td {
    text-align:center;
    padding:12px 0px !important;
    border-bottom:1px solid #f1f2f3;
}
table tbody tr:hover{
    background:#f9fafb;
    color:#344beb;
}
table tbody tr:hover td{
    border-bottom:1px solid #344beb;
}

/************************************/
/***********  form style  ***********/
/************************************/

.form_widget span.error-message{
    color:red !important;
}

.form_group > label{
    display:inline-block;
    margin-bottom:6px;
}

.form_widget{
    max-width:400px;
    margin:0 auto;
}

.form_widget .form_group{
    margin-bottom:20px;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="date"], input[type="time"]{
    width:100%;
    height:45px;
    padding:0px 8px;
    border: 1px solid #eee;
    border-top: 1px solid #eee;
    box-shadow: none;
}
.form_widget .form_group.text input:focus{
    border-color: #444beb;
    outline: none;
}

.form_widget .form_group.radio label{
    cursor:pointer;
    display:flex;
    align-items: center;
    margin-top:10px;
    font-size:15px;
}
.form_widget .form_group.radio label input{
    width:20px;
    height:20px;
    margin:0px 6px 0px 0px;
}
.form_widget .form_group.checkbox p{
    margin-bottom:5px;
}
.form_widget .form_group.checkbox label{
    cursor:pointer;
    display:flex;
    align-items: center;
    font-size:15px;
}
.form_widget .form_group.checkbox label input{
    width:18px;
    height:18px;
    margin:0px 6px 0px 0px;
}


.searchFormContainer{
    margin:10px 0px;
    text-align:right;
}

.searchForm.form_widget {
    display:inline-block;
    position:relative;
    width:300px;
}
.searchForm.form_widget input{
    padding-right:40px;
}
.searchForm.form_widget button{
    position:absolute; top:5px; right:6px;
    border:none; background:none; padding:6px; color:#444beb;
}

/****************************************/
/***********  add form style  ***********/
/****************************************/

.classForm {
    max-width:640px;
    margin:30px auto;
}
.classForm .row{
    display:flex;
    justify-content: space-between;
}
.classForm .row .form_group{
    width:49%;
    display:inline-block;
    margin-bottom:20px;
}

.classForm .row.schedule{
    position:relative;
}
.classForm .row.schedule .btnContainer{
    position:absolute;
    width:auto;
    top:1px;
    right:-160px;
}

/*****************************************/
/*************  modal style  *************/
/*****************************************/

.modalContainer {
    position:fixed; z-index:1000;
    top:0; left:0; width:100vw; height:100vh;
    background:rgba(0,0,0,0.5);
}
.modalContainer .modal{
    position:absolute;
    top:30%; left:0; right:0; margin:0 auto; max-width:380px;
    background:#fff; padding:20px;
}
.modalContainer .modal textarea {
    width:100%; height:120px;
    padding:4px;
}
.modalContainer .modal .btnContainer{
    margin-top:10px;
    text-align:center;
}

@media(max-width:766px){

}