body{
    background-color: #F9F9FC;
    color: #6C7293;
    font-family: 'Open Sans';
    font-size: 0.8125rem;
}

::placeholder{
    font-family: 'Open Sans';
    font-size: 0.8125rem;
    color: #E2E5EC;
}

.navbar{
    background-color: #fff;
    box-shadow: 0px 2px rgba(0, 0, 0, 0.06);
}

.navbar .nav-link{
    color: #6C7293;
    padding: 0.6rem 1.2rem;
    margin-right: 1rem;
}
.navbar .nav-link:hover{
    background: rgba(245, 246, 252, 0.7)
}

.navbar .active > .nav-link{
    color: #4851B9;
    background-color: #F5F6FC;
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
}

.title{
    margin: 2rem 1rem;
}

.search-box{
    padding-left: 5px;
}

.page-header{
    display: inline-block;
}

.btn-title{
    float: right;
}

.btn{
    background-color: #4851B9;
    color: #fff;
    border: 0;
    font-size: 0.75rem;
}

.btn-login{
    color: #fff;
    background-color: #4d90fe;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-logout{
    background-color: #bdbdbd;
}

.btn-set-active, .btn-form{
    background-color: #48b9b0;
}

.btn-delete{
    background-color: #c70039;
}

.btn:hover{
    background-color: #4851B9;
}

.btn-logout:hover{
    background-color: #bdbdbd;
}

.btn-table:hover, .btn-form:hover{
    background-color: #48b9b0;
}

.btn-login:hover{
    background-color: #4d90fe;
}

.btn-delete:hover{
    background-color: #c70039;
}

.detail-box{
    margin: 1.25rem 0rem 1.5625rem;
    padding: 0.625rem 1.25rem;
    background-color: #fff;
}

.form-box{
    background-color: #fff;
    padding: 0.9375rem 0.625rem 0.3125rem;
    box-shadow: 0px 2px rgba(0, 0, 0, 0.06);
}

label{
    color: #646C9A;
    font-size: 0.8125rem;
    font-weight: 600;
}

.form-control{
    border-color: #E2E5EC;
    border-radius: 4px;
    color: #646C9A;
    font-size: 0.8125rem;
}

.table-search {
    background-color: #fff;
    box-shadow: 0px 2px rgba(0, 0, 0, 0.06);
    padding: 0.3125rem 1.25rem 1.25rem;
}

.table-search .table th{
    border-top: none;
    font-weight: 650;
}

.table-search .table thead th{
    border-bottom: none;
}

.table-search table.table-hover tr:hover td {
     background: #fafafa;
     cursor: pointer;
}

.box{
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.box header {
    padding: 1rem 1.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgb(240, 242, 247);
}

.form-title {
    padding: 0.4rem 1.3rem 0.4rem;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgb(240, 242, 247);
    background: #fff;
}

.select2-container .select2-selection--single .select2-selection__rendered{
    padding-left: 0rem !important;
    line-height: 1.5 !important;
}

.select2-container .select2-selection--single{
    border-color: #E2E5EC !important;
    border-radius: 4px !important;
    color: #646C9A !important;
    font-size: 0.8125rem !important;
}

#login-container.hide {
    display: none;
}

.center {
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
}

.container p {
    margin: 0 10px;
    padding: 5px;
}

.login-title{
    margin-top: 3.50rem;
}

#microsoft-login-container{
    background-color: #fff;
    box-shadow: 1px 3px rgba(0, 0, 0, 0.06);
    padding: 2rem 4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* ***************************************** */
/* Timeline - activity log */
/* ***************************************** */
ul.timeline {
    width: 100%;
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #65DB98;
    left: 25px;
    width: 10px;
    height: 10px;
    z-index: 400;
}
