body{
    padding: 0;
    margin: 0;
    color: #666;
    background-color: #fff;
    box-sizing: border-box;
    font: 12px / 1.5em Verdana;
}
body div{
    box-sizing: border-box;
}
*{
    margin: 0;
    padding: 0;
    list-style: none;
}
@-moz-document url-prefix() {
    *{
        scrollbar-width: thin;
        scrollbar-color: #888 #d8d8d8;
    }
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background-color: #d8d8d8; 
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}
font{
    font-size: 12px;
}
input, select, textarea{
    font: 12px / 1.5em Verdana;
}
table{
    margin: 0 auto;
    font: 12px / 1.5em Verdana;
}
.no-margin{
    margin: 0;
}
a{
    color: #666;
}
a:hover{
    color: #666;
    text-decoration: underline;
}
li a:hover{
    text-decoration: none;
}
.text-center{
    text-align: center;
}
.error{
    color: #241F20;
    opacity: 0.9;
}
.text-underline{
    text-decoration: underline;
}
ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ul.menu-box {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
ul.menu-box li{
    padding: 7px 20px;
    background-color: #E2E2E2;
    border-radius: 5px;
    flex: 0 0 auto;
    border: 1px solid #C7C8CA;
    font-size: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}
ul.menu-box li a{
    color: #282425;
}
ul.menu-box li:hover{
    background-color: #007CB7;
    border-color: #007CB7;
}
ul.menu-box li:hover a{
    color: #fff;
}
ul.menu-box li#current,
ul.menu-box li#current:hover{
    background-color: #007CB7;
    border-color: #007CB7;
}
ul.menu-box li#current a,
ul.menu-box li#current:hover a{
    color: #fff;
}
ul.panel-box{
    padding-top: 10px;
}
ul.panel-box li{
    padding: 24px 28px;
    background: #00A3E0;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 18px;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.3s ease;
}
ul.panel-box li:hover{
    background: #007CB7;
}
ul.panel-box li a,
ul.panel-box li a:hover{
    color: #fff;
    display: block;
}
ul.panel-box li::before,
ul.panel-box li::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 20px;
    border-radius: 5px;
    background-color: #fff;
}
ul.panel-box li::before{
    top: 17px;
    right: 40px;
    transform: rotate(-45deg);
    z-index: 2;
}
ul.panel-box li::after {
    top: 30px;
    right: 40px;
    transform: rotate(45deg);
}
.font-24{
    font-size: 24px;
}
.font-20{
    font-size: 20px;
}
.font-18{
    font-size: 18px;
}
.font-16{
    font-size: 16px !important;
}
.font-14{
    font-size: 14px !important;
}
.font-13{
    font-size: 13px;
}
.font-12{
    font-size: 12px;
}
.font-10{
    font-size: 10px;
}
.font-bold{
    font-weight: bold;
}
.copyright-box{
    position: absolute !important;
    bottom: 0;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    left: 50%;
    margin-left: -700px;
    font-size: 10px;
    z-index: 2;
}
.copyright-box font{
    font-size: 10px;
}
.copyright-box td{
    color: #fff;
}
.copyright-box table{
    margin: 0;
}
.copyright-box a{
    color: #fff;
}
.logout{
    padding: 0 15px;
    background: #FF9F00;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    border-radius: 3px;
    cursor: pointer;
}
.logout:hover{
    background: #f09400;
    color: #fff;
    text-decoration: none;
}

.reminders,.reminders *{
    color: #083463;
    font-weight: bold;
}
.select-lang{
    border: 0;
    font-size: 12px;
    padding: 7px 10px;
    background: #fff;
    color: #000;
    border-radius: 4px;
}
.select-lang:focus-visible{
    outline: none;
}
input.checkbox[type="checkbox"] {
    display: none;
}
.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.custom-checkbox::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-color: #fff;
}
.custom-checkbox::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: #39668F;
    transition: opacity 0.3s ease;
    opacity: 0;
    margin-top: 4px;
}
input.checkbox[type="checkbox"]:checked + .custom-checkbox::after {
    opacity: 1;
}
.main-wrapper{
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
    background: linear-gradient(to left, #DFEEF8, #ECF5FC 30%, #FFFFFF 100%);
}
.main-wrapper::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    content: '';
    background-color: #00A3E0;
    z-index: 2;
} 
.main-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    content: '';
    background-color: #00A3E0;
    z-index: 2;
}
.main-wrapper *{
    position: relative;
    z-index: 3;
}
.main-wrapper.login-wrapper{
    color: #A9B7BF;
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    /* background: linear-gradient(to bottom, #00B4FB, #D0EBF9); */
    /* background: linear-gradient(to bottom,
    #00B4FB,
    #B1DDF3 70%,
    #D0EBF9 100%); */
    background-image: url('../images/mainlogin/login-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main-wrapper.login-wrapper::after,
.main-wrapper.login-wrapper::before{
    display: none;
}
.main-wrapper.login-wrapper td{
    color: #39668F;
}
.login-box {
    width: 100%;
    height: 48px;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    color: #103A68;
    padding: 6px 12px;
    justify-content: flex-start;
}
.login-box span {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    width: 20%;
    line-height: 36px;
}
.login-box input {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #103A68;
    text-align: center;
    width: 66%;
    display: flex;
    align-items: center;
    outline: none;
    line-height: 36px;
}
.login-box input.wider-input{
    width: 80%;
}
.handler-box{
    position: relative;
}
.handler-box .handler{
    position: absolute;
    left: 470px;
    top: 10px;
}
.resetpwd-wrapper .login-box span{
    width: 50%;
    line-height: normal;
    align-items: center;
}
.resetpwd-wrapper .login-box input{
    width: 50%;
}
.resetpwd-wrapper .login-box input.pwd{
    letter-spacing: 3px;
}
.login-box .error-icon{
    width: 18px;
    height: 18px;
    background: url(../images/mainlogin/warning.png) center / cover no-repeat;
    position: absolute;
    right: 13px;
    top: 15px;
}
.login-box #captchaBox{
    width: 100%;
}
a.link{
    color: #39668F;
    font-size: 12px;
}
a.link:hover{
    text-decoration: underline;
}
.login-wrapper .submit-btn input{
    width: 300px;
    height: 46px;
    font-size: 16px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    background: #FF9F00;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 12px;
    font-weight: 600;
}
.login-wrapper .submit-btn input:hover{
    background: #f09400;
}
.login-wrapper .tips{
    width: 48%;
    padding: 13px 13px 15px;
    background: rgba(255, 255, 255, 0.4);
    color: #a9aeb4;
    font-size: 12px;
    line-height: 16px;
    border-radius: 100px;
    display: flex;
    margin: 14px auto 18px;
    gap: 10px;
    font-weight: lighter;
    float: right;
    max-width: 640px;
    align-items: center;
}
.login-wrapper .tips i{
    position: relative;
    display: flex;
    width: 137px;
    height: 39px;
    background: url(../images/mainlogin/alert.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-left: 7px;
}
.login-wrapper .tips div{
    display: flex;
}
.center-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}

.bottom-div {
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
    padding-bottom: 15px;
}
.bottom-div .text {
    white-space: nowrap;
    font-size: 10px;
    opacity: 0.8;
    line-height: 18px;
}
.bottom-div .text br{
    display: none;
}
.bottom-div a.link{
    font-size: 10px;
    text-decoration: none;
}
.bottom-div a.link:hover{
    text-decoration: underline;
}
.login-wrapper .captcha-container {
    display: flex;
    align-items: center;
    padding-bottom: 6px;
}
.login-wrapper .captcha-img {
    width: 150px;
    height: 50px;
}
.login-wrapper .right-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}
.login-wrapper .submit-refresh {
    cursor: pointer;
    width: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #000;
    margin-bottom: 6px;
}
.login-wrapper .question-mark {
    cursor: pointer;
    width: 14px;
}
.login-wrapper .checkbox-label{
    padding-bottom: 6px;
    display: inline-block;
}
#warning4.login-box{
    height: 50px;
    margin-left: 10px;
}
#warning4.login-box input{
    width: 100%;
    font-size: 16px;
    font-weight: bold;
}
.login-wrapper .error{
    padding-bottom: 6px;
    display: inline-block;
}
.login-wrapper #password{
    letter-spacing: 3px;
}
.main-wrapper .header{
    vertical-align: bottom;
    color: #fff;
    font-size: 10px;
}
.main-wrapper .header.font-header{
    font-size: 20px;
    font-weight: 500;
}
.main-wrapper .login-date div{
    display: inline-block;
    vertical-align: middle;
}
.logout-wrapper{
    width: 100%;
    height: 100vh;
    background-image: url('../images/mainlogin/logout-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 60px;
}
input[type="submit"],
input[type="button"],
button{
    padding: 0 15px;
    background: #FF9F00;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    line-height: 34px;
    cursor: pointer;
    border: none;
    min-width: 170px;
    height: 34px;
    border-radius: 6px;
}
input[type="submit"]:hover,
input[type="button"]:hover,
button:hover{
    background: #f09400;
    color: #fff;
    text-decoration: none;
}
input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled:hover,
input[type="button"]:disabled:hover{
    background: #BCBEC0;
    cursor: default;
}
.orange-btn{
    padding: 0 15px;
    background: #FF9F00;
    color: #fff;
    text-decoration: none;
    display: block;
    height: 42px;
    font-size: 14px;
    line-height: 42px;
    border-radius: 5px;
    margin-top: 25px;
    width: 280px;
    cursor: pointer;
    border: none;
}
.orange-btn:hover{
    background: #f09400;
    color: #fff;
    text-decoration: none;
}
.gray-btn{
    padding: 0 15px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    border-radius: 3px;
    background: #BCBEC0 !important;
    cursor: pointer;
    border: none;
}
.gray-btn:hover{
    color: #fff;
    text-decoration: none;
    background: #aaacae !important;
}
.ui-dialog-buttonset button:nth-child(2),
.red-btn{
    padding: 0 15px;
    background: #ff4d00 !important;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
}
.ui-dialog-buttonset button:nth-child(2){
    height: 34px;
    line-height: 34px;
    border-radius: 6px;
    border: none;
}
.ui-dialog-buttonset button:nth-child(2):hover,
.red-btn:hover{
    background: #e24502 !important;
    color: #fff;
    text-decoration: none;
}
.ui-dialog-buttonset button:nth-child(1),
.blue-btn{
    padding: 0 15px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    border-radius: 3px;
    background: #007CB7 !important;
    cursor: pointer;
    border: none;
}
.ui-dialog-buttonset button:nth-child(1){
    height: 34px;
    line-height: 34px;
    border-radius: 6px;
    border: none;
}
.ui-dialog-buttonset button:nth-child(1):hover,
.blue-btn:hover{
    color: #fff;
    text-decoration: none;
    background: #006da0 !important;
}
.blue-text{
    color: #103a68;
}
.modal {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-dialog {
    background-color: white;
    margin: 80px auto;
    padding: 10px 20px 15px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 600px;
    border-radius: 10px;
    position: relative;
}
.modal-close{
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    color: #9DB2BE;
    cursor: pointer;
}
.modal-close:hover{
    color: #666;
}
.modal-small .modal-dialog{
    width: 400px;
}
.modal-big .modal-dialog{
    width: 1000px;
}
.modal-header{
    font-size: 20px;
    padding: 10px 0;
}
.modal-footer{
    text-align: right;
}
.modal-body {
    padding: 10px 15px;
    line-height: 20px;
}
.modal-body iframe{
    width: 100%;
    height: 100%;
    border: none;
}
.modal-footer button {
    margin: 0 0 5px;
}
.modal-dialog input[type=text],
.modal-dialog select,
.modal-dailog input[type=checkbox]:not(:disabled){
    border: 1px solid #ccc !important;
}
.small-tag{
    min-width: 0 !important;
    height: 30px !important;
    line-height: 30px !important;
}
.mini-tag{
    min-width: 0 !important;
    height: 22px !important;
    line-height: 22px !important;
    font-size: 11px;
    padding: 0 8px;
}
.white-text{
    color: #fff;
}
.red-text{
    color: #ff4d00;
}
a.red-text:hover{
    color: #ff4d00;
}
.space{
    height: 8px;
}
.hide-br br{
    display: none;
}
.radio-box{
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}
input[type="radio"] {
	appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 0;
    height: 0;
    vertical-align: middle;
    position: relative;
    margin: 6px 15px 6px 0;
}
input[type="radio"]::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    border: 1px solid #d0d2d4;
    box-sizing: border-box;
    background: #fff;
}
input[type="radio"]:checked::before {
    box-shadow: 0 0 0 2px #fff inset;
    background: #005375;
}
select {
    padding: 6px 20px 6px 8px;
    border-radius: 6px;
    color: #333;
    outline: none;
    font-size: 12px;
    height: 30px;
    border: none;
    background: #fff;
}
.birth-box{
    display: flex;
    justify-content: space-between;
}
.birth-box select{
    width: 140px;
    height: 40px;
    font-size: 16px;
    color: #103A68;
    font-weight: bold;
}
.register-wrapper .birth-box select{
    width: 147px;
}
.birth-box input{
    padding: 6px 20px 6px 8px;
    border-radius: 6px;
    outline: none;
    height: 40px;
    width: 160px;
    border: none !important;
    font-size: 16px;
    font-weight: bold;
    color: #103A68;
    text-align: center;
}
.register-wrapper .bottom-div{
    padding-bottom: 0;
}
.progress {
	height: 6px;
	width: 100%;
	overflow: hidden;
	background-color: #f5f5f5;
	border-radius: 4px;
	margin-top: 4px;
	margin-bottom: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	background-color: #337ab7;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease;
}

.progress-bar-danger {
	background-color: #d9534f;
}

.text-success {
	color:#098080;
}
.text-danger {
	color:#AE111F;
}
.inner-box{
    background: #F1F2F2;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .3);
}
.inner-box .inner-content{
    padding: 30px 20px 10px 30px;
}
.contact-box{
    border: 1px solid #D2D4D5;
    background: #F1F2F2;
}
.contact-box .contact-content{
    padding: 30px 20px 10px 30px;
}
.bg-header{
    font-size: 20px;
    font-weight: bold;
    color: #073363;
    padding: 40px 0 12px;
    text-align: left;
}
.contact-box .bg-header{
    border-bottom: 1px solid #D7D8D9;
    padding-top: 0;
}
.subheader{
    font-size: 16px;
    font-weight: bold;
    color: #1E191A;
    text-align: left;
    line-height: 26px;
}
.contact-box .orange-btn{
    display: inline-block;
    width: auto;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
}
.main-wrapper .bg-img{
    position: absolute;
    right: 0;
    bottom: 54px;
    width: 100%;
    height: calc(max(100%, 100vh) - 116px);
    background: url('../images/mainlogin/tree-bg-payroll.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.main-wrapper:not(.login-wrapper) .content-wrap{
    width: min(94%, 1400px);
}
.main-wrapper:not(.login-wrapper) .content-wrap.copyright-box{
    margin-left: max(-47%, -700px);
}