* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #222;
    position: relative;
}

header {
    padding: 0;
    margin: 0
}

.nav__container,
header {
    width: 100%;
    background-color: #fafafa
}

.nav__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 20px
}

.nav__mobile .nav__btn {
    display: block
}

.nav__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden
}

.showing {
    max-height: 37rem;
}

.nav__menu li {
    list-style: none;
    position: relative;
}

.nav__menu li a {
    display: block;
    text-decoration: none
}

.nav-toggle {
    display: block;
    background-color: transparent;
    width: 40px;
    cursor: pointer;
    padding: 4px
}

.nav-toggle span {
    position: relative;
    display: block;
    height: 4px;
    border-radius: 35px;
    width: 100%;
    margin-top: 0;
    background-color: #000;
    -webkit-transition: all .25s;
    transition: all .25s
}

.nav-toggle span.mrg {
    margin-top: 5px
}

.nav-toggle.open span:first-child {
    -webkit-transform: rotate(45deg) translate(6.2px, 6.2px);
    transform: rotate(45deg) translate(6.2px, 6.2px)
}

.nav-toggle.open span:nth-child(2) {
    width: 0;
    opacity: 0
}

.nav-toggle.open span:last-child {
    -webkit-transform: rotate(-45deg) translate(6.2px, -6.2px);
    transform: rotate(-45deg) translate(6.2px, -6.2px)
}

.nav__menu .dropdown ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: static;
    padding: 0;
    max-height: 0;
    overflow: hidden;
}

.nav__menu .dropdown ul.show {
    max-height: 20rem;
}

.nav__menu .dropdown li a {
    display: block;
    color: #222;
    text-decoration: none;
    font-size: 14px;
}

.nav__menu .active.dropdown>a:after {
    content: "\f106"
}

.nav__menu .dropdown .dropdown>a:after {
    content: "\f107";
    font-weight: 900;
    font-size: .875rem;
    padding-left: 5px;
}

.nav__menu .dropdown .active.dropdown>a:after {
    content: "\f106"
}

.menu-toggle {
    max-height: 0;
    overflow: hidden
}

.menu-toggle,
.menu-toggle.active {
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.menu-toggle.active {
    max-height: 100vh
}

.resize-animation-stopper * {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important
}

.nav__menu .dropdown>a:after {
    content: "\f107";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: .875rem;
    padding-left: 5px;
}

@media screen and (min-width:1060px) {
    .menu-toggle {
        display: block;
        max-height: 100vh;
        overflow: visible;
    }

    .nav__container {
        width: 100%;
        max-width: calc(1600px - 170px);
        margin: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .nav__container,
    .nav__mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .nav__mobile .nav__btn {
        display: none
    }

    .nav__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        max-height: 100%;
        overflow: visible;
        padding: 0;
    }

    .nav__menu li {
        list-style: none;
        position: relative;
    }

    .nav__menu li a {
        text-decoration: none
    }

    .nav__menu .dropdown {
        position: relative
    }

    .nav__menu .dropdown ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: -30px;
        opacity: 0;
        visibility: hidden;
        overflow: visible;
        padding: 0 1rem;
        z-index: 9;
        width: calc(100% + 60px);
    }

    .nav__menu .dropdown:hover>ul {
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }

    .nav__menu .dropdown ul li {
        padding: 15px 20px;
        background-color: #075281;
        position: relative;
        margin: 0;
    }

    .nav__menu .dropdown ul li:hover {
        background-color: #0E4465;
    }

    .nav__menu .dropdown .dropdown li {
        background-color: #0E4465;
    }

    .nav__menu .dropdown .dropdown li:hover {
        background-color: #0E4465;
    }

    .nav__menu .dropdown .dropdown .dropdown li {
        background-color: #0E4465;
    }

    .nav__menu .dropdown ul li a {
        display: block;
        color: #fff;
        text-align: left;
        padding-left: 20px;
    }

    .nav__menu .dropdown ul li a:before {
        content: "\f0da";
        font-family: Font Awesome\ 5 Free;
        font-weight: 900;
        font-size: .875rem;
        padding-right: 8px;
        color: #FFF;
    }

    .nav__menu .dropdown ul li a:hover {
        display: block;
    }

    .nav__menu .dropdown>a:after {
        content: "\f107"
    }

    .nav__menu .dropdown:hover>a:after,
    .nav__menu .dropdown>a:after {
        content: "\f107";
        font-family: Font Awesome\ 5 Free;
        font-weight: 900;
        font-size: .875rem;
        padding-left: 5px;
        color: #7c7c7c
    }

    .nav__menu .dropdown:hover>a:after {
        content: "\f106"
    }

    .nav__menu .dropdown .dropdown>a:after {
        content: "\f105"
    }

    .nav__menu .dropdown .dropdown:hover>a:after,
    .nav__menu .dropdown .dropdown>a:after {
        font-weight: 900;
        font-size: .875rem;
        padding-left: 10px;
        color: #fff
    }

    .nav__menu .dropdown .dropdown:hover>a:after {
        content: "\f104"
    }

    .main-menu .nav__menu .dropdown>a:after {
        content: none;
        padding-left: 0;
    }

    .main-menu .nav__menu .dropdown .dropdown>a:after {
        content: none;
        padding-left: 0;
    }

    .nav__menu .dropdown .dropdown:hover>ul {
        opacity: 1;
        visibility: visible
    }

    .nav__menu .dropdown .dropdown ul {
        position: absolute;
        top: 0;
        left: calc(100% - 17px);
        opacity: 0;
        visibility: hidden;
    }

}


/********** Moble Menu **********/

.accordion-menu--hidden {
    display: none;
}

.accordion-menu__list,
.accordion-menu__sublist {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.accordion-menu__list {
    border-top: 1px #eee solid;
}

.accordion-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px #eee solid;
}

.accordion-menu__icon {
    position: relative;
    width: 16px;
    height: 16px;
    transition: .2s all;
}

.accordion-menu__icon:after {
    content: "\f107";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: .875rem;
    padding-left: 5px;
}

.accordion-menu--active .accordion-menu__icon:after {
    content: "\f106";
}

.accordion-menu__sublist {
    margin-left: 1.25rem;
}

.accordion-menu__sublink {
    display: block;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px #eee solid;
}

.accordion-menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    overflow: scroll;
}

.accordion-menu-nav__link:not(:last-child) {
    margin-right: 1rem;
}

.accordion-menu-wrapper {
    display: none;
}

.accordion-menu-wrapper.active {
    display: block;
}

#mobile-menu {
    display: none;
}

@media screen and (max-width:1060px) {
    #mobile-menu {
        display: block;
    }

    .accordion-menu__item {
        font-size: 14px;
    }

    .accordion-menu__link {
        padding: 12px 0;
    }
}

@media screen and (max-width:480px) {
    .accordion-menu__item {
        font-size: 12px;
    }
}

/********** My CSS **********/

.clearfix {
    overflow: auto;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

ol {
    margin-left: 20px;
}

strong {
    font-weight: 600;
}

@media screen and (max-width:1060px) {
    p {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    p {
        font-size: 12px;
    }
}

.menu-toggle .nav__menu li {
    margin-left: 30px;
    margin-right: 10px;
}

.menu-toggle .nav__menu li a {
    color: #333;
}

.icon-scs {
    background: url(../images/icon-scs.png) left center no-repeat;
    background-size: auto 20px;
    padding-left: 30px;
}

.icon-faq {
    background: url(../images/icon-faq.png) left center no-repeat;
    background-size: auto 20px;
    padding-left: 30px;
}

.icon-text {
    background: url(../images/icon-text.png) left center no-repeat;
    background-size: auto 20px;
    padding-left: 35px;
}

.icon-lang {
    background: url(../images/icon-lang.png) left center no-repeat;
    background-size: auto 20px;
    padding-left: 30px;
}

.icon-manual {
    background: url(../images/icon-manual.png) left center no-repeat;
    background-size: auto 20px;
    padding-left: 26px;
}

.icon-help {
    background: url(../images/icon-help.png) left center no-repeat;
    background-size: auto 20px;
    padding-left: 30px;
}

.nav__logo a img {
    display: inline-block;
    float: left;
    margin-right: 6px;
    width: 100%;
    max-width: 60px
}

.nav__logo a span {
    display: inline-block;
    float: left;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    color: #333;
    padding-top: 18px;
}

.nav__logo a span strong {
    font-size: 18px;
}

@media screen and (max-width:1400px) {
    .nav__logo a span strong {
        font-size: 16px;
    }
}

@media screen and (max-width:1060px) {
    .nav__logo a span strong {
        font-size: 14px;
    }

    .nav__logo a span {
        font-size: 12px;
    }

    .nav__menu {
        padding: 20px 0;
    }

    .menu-toggle .nav__menu li {
        margin-left: 0;
    }

    .top-link {
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 15px;
    }
}

@media screen and (max-width:600px) {
    .nav__logo a span {
        width: 220px;
        line-height: 15px;
        padding-top: 12px;
    }
}

@media screen and (max-width:480px) {
    .nav__logo a img {
        max-width: 46px;
    }

    .nav__logo a span strong {
        font-size: 13px;
    }

    .nav__logo a span {
        font-size: 10px;
        width: 180px;
        line-height: 14px;
        padding-top: 2px;
    }

    .nav-toggle {
        width: 35px;
    }
}

.main-menu {
    width: 100%;
    background-color: #0C6390;
}

.main-menu .nav__menu {
    margin: 0 auto;
    width: fit-content;
    min-height: 100px;
    display: table;
}

.main-menu .nav__menu li {
    padding: 0 15px;
    vertical-align: middle;
    display: table-cell;
    color: #FFF;
}

.main-menu a {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFF;
}

@media screen and (max-width:1600px) {
    .main-menu a {
        font-size: 14px;
    }

    .main-menu .nav__menu li {
        padding: 0 10px;
    }
}

@media screen and (max-width:1400px) {
    .main-menu a {
        font-size: 13px;
        line-height: 16px;
    }
}

@media screen and (max-width:1200px) {
    .main-menu a {
        font-size: 12px;
        line-height: 16px;
    }

    .main-menu .nav__menu li {
        padding: 0 6px;
    }
}

@media screen and (max-width:1060px) {
    .main-menu {
        display: none;
    }
}

.home-banner {
    width: 100%;
    height: 480px;
    position: relative;
}

.home-banner-bg {
    background: url(../images/banner-bg.png) right center no-repeat;
    background-size: auto 100%;
    height: 100%;
}

.home-banner-bg-1 {
    background: url(../images/banner-bg-1.png) center no-repeat;
    background-size: cover;
    height: 100%;
}

.home-banner-bg-2 {
    background: url(../images/banner-bg-2.png) center no-repeat;
    background-size: cover;
    height: 100%;
}

.home-banner-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.banner-container {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
}

.home-banner-content {
    max-width: 720px;
    padding: 170px 40px 40px 40px;
}

.home-banner h1 {
    color: #FFF;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 2px #000;
}

.home-banner p {
    color: #FFF;
    font-size: 18px;
}

@media screen and (max-width:1400px) {
    .home-banner-content {
        max-width: 640px;
    }

    .home-banner h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .home-banner p {
        font-size: 16px;
    }
}

@media screen and (max-width:1200px) {
    .home-banner-bg {
        background-position: 600px 0;
    }

    .home-banner h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width:1060px) {
    .home-banner {
        height: 300px;
    }

    .home-banner-content {
        max-width: 500px;
        padding: 50px 40px 40px 40px;
    }

    .home-banner h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .home-banner p {
        font-size: 14px;
    }
}

@media screen and (max-width:760px) {
    .home-banner-bg {
        background-position: 400px 0;
    }

    .home-banner-content {
        max-width: 360px;
    }

    .home-banner h1 {
        font-size: 18px;
        line-height: 30px;
    }

    .home-banner p {
        font-size: 13px;
    }
}

@media screen and (max-width:480px) {
    .home-banner {
        height: 240px;
    }

    .home-banner-bg {
        background-position: 220px 0;
    }

    .home-banner-content {
        width: calc(100% - 80px);
        max-width: 260px;
        padding-top: 30px;
        padding-left: 20px;
    }

    .home-banner h1 {
        font-size: 16px;
        line-height: 20px;
    }

    .home-banner p {
        font-size: 12px;
    }
}


.container {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
    padding: 40px;
}

@media screen and (max-width:480px) {
    .container {
        padding: 20px;
    }
}

.latest-news {
    padding-top: 40px;
    padding-bottom: 20px;
    position: relative;
}

.latest-news h2 {
    font-size: 28px;
    color: #419D78;
    font-weight: 600;
    margin-bottom: 30px;
}

.green-line {
    border: 1px solid #419D78;
    position: absolute;
    width: calc(100% - 240px);
    top: 62px;
    right: 0;
}

.icon-news {
    background: url(../images/icon-news.png) left center no-repeat;
    padding-left: 50px;
}

.icon-case {
    background: url(../images/icon-case.png) left center no-repeat;
    padding-left: 50px;
}

.news-list li {
    margin-bottom: 30px;
    list-style: none;
}

.news-list .news-date {
    font-size: 16px;
    float: left;
    width: 140px;
}

.news-list .news-title {
    font-size: 16px;
    color: #222;
    float: right;
    width: calc(100% - 160px);
}

.radio-item {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* default radio button */
.radio-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #0D999B;
    border-radius: 50%;
}

.radio-item:hover input~.checkmark {
    background-color: #fff;
}

.radio-item input:checked~.checkmark {
    background-color: #0D999B;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-item input:checked~.checkmark:after {
    display: block;
}

.radio-item .checkmark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.find-case ul li {
    list-style: none;
    float: left;
}

.find-case ul li a {
    display: block;
    padding: 45px 20px 15px 20px;
    font-size: 14px;
    background: #53604D;
    color: #FFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 10px;
}

.find-case ul li .selected {
    background-color: #FFF;
    color: #419D78;
    font-weight: 500;
    border-top: 10px solid #419D78;
    margin-top: 0;
}

.find-case ul li .icon-applicant {
    background-image: url(../images/icon-applicant-white.png);
    background-position: 43px 15px;
    background-repeat: no-repeat;
    background-size: 32px auto;
}

.find-case ul li .icon-applicant.selected {
    background-image: url(../images/icon-applicant.png);
}

.find-case ul li .icon-ap {
    background-image: url(../images/icon-ap-white.png);
    background-position: 32px 15px;
    background-repeat: no-repeat;
    background-size: 26px auto;
}

.find-case ul li .icon-ap.selected {
    background-image: url(../images/icon-applicant.png);
}

.my-case {
    float: right;
    position: absolute;
    top: 240px;
    left: 55%;
    font-size: 14px;
    width: 40%;
    max-width: 520px;
    z-index: 1;
}

.my-case h2 {
    font-size: 20px;
    color: #419D78;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-case {
    background: #FFF;
    padding: 20px 30px 30px 30px;
    width: 100%;
    max-width: 520px;
    border-radius: 5px;
    border-top-left-radius: 0;
    box-shadow: 0 2px 2px #ccc;
}

.form-case .field {
    margin-bottom: 15px;
}

.form-case label {
    display: block;
    margin-bottom: 5px;
}

.form-case .forget {
    float: right;
    text-decoration: underline;
    font-size: 12px;
}

.form-case input[type=text] {
    display: inline-block;
    width: calc(100% - 135px);
    line-height: 36px;
    border: 1px solid #BABABA;
    background: #FFF;
    border-radius: 5px;
    padding: 0 10px;
}

.form-case input.verification {
    width: calc(100% - 250px);
    float: left;
    margin-right: 10px;
}

.form-case .check {
    float: left;
    height: 36px;
    width: auto;
}

.form-case .icon-sound {
    padding-top: 10px;
    margin-left: 6px;
}

.form-case input[type=radio] {
    display: inline-block;
}

.form-case .radio-identity input[type=radio] {
    display: inline-block;
}

.form-case .radio-identity label {
    display: inline-block;
    padding: 0 0 0 28px;
}

.form-case input.application-num {
    display: inline-block;
    margin-right: 10px;
}

.form-case .send-sms {
    display: inline-block;
    width: 120px;
    height: 36px;
    border: 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to bottom, #1A6390, #0E4465);
    cursor: pointer;
}

.form-case .submit {
    display: block;
    width: 140px;
    line-height: 40px;
    border: 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to bottom, #1A6390, #0E4465);
    text-align: center;
}

.form-case .login-long {
    display: block;
    width: 100%;
    border: 0;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to top, #257386, #21ACA6);
    text-align: center;
    padding: 10px 20px;
}

@media screen and (max-width:1400px) {
    .news-list .news-date {
        font-size: 16px;
    }

    .news-list .news-title {
        font-size: 16px;
    }

    .form-case label {
        font-size: 16px;
    }
}

@media screen and (max-width:1200px) {

    .latest-news h2,
    .my-case h2 {
        font-size: 24px;
    }

    .news-list .news-date {
        font-size: 14px;
        width: 120px;
    }

    .news-list .news-title {
        font-size: 14px;
        width: calc(100% - 120px);
    }

    .form-case label {
        font-size: 14px;
    }
}

@media screen and (max-width:1060px) {
    .latest-news {
        margin-bottom: 30px;
    }

    .my-case {
        width: calc(100% - 80px);
        float: none;
        position: relative;
        max-width: none;
        left: unset;
        top: unset;
        margin: 40px 40px 0 40px;
    }

    .form-case {
        max-width: unset;
    }

    .latest-news h2,
    .my-case h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:480px) {
    .news-list .news-date {
        width: 100%;
        display: block;
        float: none;
        font-size: 12px;
    }

    .news-list .news-title {
        float: none;
        width: 100%;
        font-size: 12px;
    }

    .form-case {
        padding: 20px;
    }

    .form-case .field {
        margin-bottom: 20px;
    }

    .form-case input[type=text] {
        line-height: 34px;
    }

    .form-case input.application-num {
        width: calc(100% - 115px);
    }

    .form-case .send-sms {
        width: 100px;
        height: 34px;
        font-size: 13px;
    }

    .form-case .submit {
        width: 120px;
        height: 34px;
        font-size: 13px;
    }

    .icon-news {
        padding-left: 40px;
        background-size: auto 20px;
    }

    .icon-case {
        padding-left: 34px;
        background-size: auto 20px;
    }
}

.home-note {
    background: #FFFCFA;
    border: 1px solid #FF6819;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
}

.quick-link-bg {
    background: url(../images/quicklink-bg.png) center no-repeat;
    background-size: cover;
}

.quick-link {
    position: relative;
}

.quick-link h2 {
    font-size: 28px;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 40px;
}

.icon-link {
    background: url(../images/icon-link.png) left center no-repeat;
    padding-left: 50px;
}

.white-line {
    border: 1px solid #FFF;
    position: absolute;
    width: calc(100% - 260px);
    top: 62px;
    right: 0;
}


.quick-box-row {
    margin: 0 -20px;
}

.quick-box {
    display: block;
    width: calc(33.33% - 80px);
    float: left;
    height: auto;
    margin: 20px 40px 40px 40px;
    border: 1px solid #FFF;
    padding: 60px 40px;
    border-radius: 10px;
}

.quick-box img {
    width: auto;
    height: 60px;
    display: block;
    margin: 0 auto 20px;
}


.quick-box span {
    display: block;
    text-align: center;
    color: #FFF;
}


@media screen and (max-width:1400px) {
    .quick-box {}
}

@media screen and (max-width:1060px) {
    .quick-box-row {
        margin: 0;
    }

    .quick-box {
        min-height: unset;
        width: 100%;
        margin: 0 0 40px 0;
    }
}

@media screen and (max-width:480px) {
    .quick-box {
        margin: 0 0 20px 0;
    }
}

.footer {
    background-color: #F4F4F4;
}

.footer .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-link {
    float: left;
    font-size: 14px;
    padding-top: 15px;
}

.footer-link li {
    float: left;
    margin-right: 8px;
    list-style-type: none;
    color: #333;
    margin-right: 10px;
}

.footer-link li a {
    float: left;
    list-style-type: none;
    color: #333;
}

.footer-logo {
    float: right;
}

.footer-logo a {
    display: inline-block;
    margin: 0 6px;
    vertical-align: middle;
}


@media screen and (max-width:1400px) {
    .footer-link li {
        font-size: 14px;
    }
}

@media screen and (max-width:1060px) {
    .footer-link {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-logo {
        float: none;
    }
}


/**** STEP ****/
.steps {
    display: block;
    height: 130px;
    position: relative;
    margin: 20px 0;
    counter-reset: step;
}

.steps li {
    list-style-type: none;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    text-align: center;
    width: 20%;
    position: relative;
    float: left;
}

.steps li a {
    color: #222;
    padding-top: 70px;
}

.steps li:before {
    display: block;
    content: counter(step);
    counter-increment: step;
    width: 50px;
    height: 50px;
    background-color: #33B8BA;
    border: 2px solid #2E4765;
    line-height: 50px;
    border-radius: 50px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin: 0 auto 8px auto;
}

.steps li~li:after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #2E4765;
    position: absolute;
    left: -50%;
    top: 25px;
    z-index: -1;
}

.steps li.active:after {
    background-color: #2E4765;
}

.steps li.active~li:before,
.steps li.active~li:after {
    background-color: #979899;
}

.steps-of-4 li {
    width: 25%;
}

.steps-of-3 li {
    width: 33.3%;
}

.steps-of-2 li {
    width: 50%;
}

@media screen and (max-width:1200px) {
    .steps li {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width:1060px) {
    .steps li {
        font-weight: 500;
    }

    .steps li:before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    .steps li~li:after {
        top: 20px;
    }
}

@media screen and (max-width:760px) {
    .steps {
        margin-top: 0;
        height: 260px;
    }

    .steps-of-4 {
        height: 210px;
    }

    .steps li {
        text-align: left;
        width: 100%;
        float: left;
    }

    .steps li a {
        padding-top: 0;
    }

    .steps li:before {
        margin: 0 10px 15px 0;
        float: left;
    }

    .steps li~li:after {
        width: 2px;
        height: 40px;
        left: 19px;
        top: -50%;
    }
}

@media screen and (max-width:480px) {
    .steps {
        height: 210px;
    }

    .steps-of-4 {
        height: 170px;
    }

    .steps li {
        font-size: 12px;
        line-height: 16px;
    }

    .steps li:before {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 12px;
    }

    .steps li~li:after {
        left: 14px;
    }
}

/**** FORM ****/
.page-banner {
    width: 100%;
    height: 300px;
}

.banner-school {
    background: url(../images/inner-banner-school.png) center no-repeat;
    background-size: cover;
}

.banner-ccc {
    background: url(../images/inner-banner-ccc.png) center no-repeat;
    background-size: cover;
}

.banner-nlc {
    background: url(../images/inner-banner-nlc.png) center no-repeat;
    background-size: cover;
}

.banner-opt {
    background: url(../images/inner-banner-opt.png) center no-repeat;
    background-size: cover;
}

.banner-guideline {
    background: url(../images/inner-banner-guideline.png) center no-repeat;
    background-size: cover;
    width: 100%;
    height: 220px;
}

.page-title {
    padding: 30px 0;
    width: 100%;
    background-color: #0C6390;
    color: #FFF;
    font-size: 1.2em;
    text-align: center;
}

.page-banner p {
    color: #FFF;
    font-weight: 600;
    font-size: 1.5em;
    max-width: 50%;
    padding-top: 50px;
    margin-bottom: 10px;
}

.banner-guideline p {
    color: #FFF;
    font-weight: 600;
    font-size: 1.5em;
    max-width: 50%;
    padding-top: 50px;
    margin-bottom: 10px;
}

.page-banner span {
    display: block;
    color: #FFF;
    font-weight: 500;
    font-size: 1.2em;
    max-width: 50%;
}

.form-heading {
    padding: 0 60px 30px;
    border-bottom: 1px solid #222;
    margin-bottom: 20px
}

.form-heading h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2E4765;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 0;
}

.form-heading h1 span {
    font-style: italic;
    float: right;
}

.form-heading p {
    font-size: 16px;
    color: #333;
    text-align: center;
}

@media screen and (max-width:1200px) {
    .form-heading {
        padding: 0 40px 20px;
    }

    .form-heading h1 {
        font-size: 24px;
    }

    .form-heading p {
        font-size: 14px;
    }
}


@media screen and (max-width:1060px) {
    .page-banner {
        height: 280px;
    }

    .page-banner p {
        padding-top: 50px;
        font-size: 1.4em;
    }

    .page-banner span {
        font-size: 1em;
    }

    .form-heading {
        padding: 0 0 20px;
    }

    .form-heading h1 {
        font-size: 20px;
    }

    .form-heading h1 span {
        display: block;
        float: none;
    }
}

@media screen and (max-width:760px) {
    .page-banner {
        height: 240px;
    }

    .page-banner p {
        padding-top: 20px;
        max-width: 70%;
        font-size: 1.2em;
    }

    .page-banner span {
        font-size: 0.9em;
    }

    .form-heading h1 {
        font-size: 16px;
    }

    .form-heading h1 span {
        display: block;
        float: none;
    }

    .form-heading p {
        font-size: 12px;
    }
}


@media screen and (max-width:480px) {
    .page-banner {
        height: 180px;
    }

    .page-banner p {
        padding-top: 20px;
        max-width: 80%;
        font-size: 1em;
    }

    .page-banner span {
        font-size: 0.8em;
    }
}

.form p {
    font-size: 14px;
}

.form .field {
    margin-bottom: 15px;
}

.form label {
    font-size: 14px;
    line-height: 42px;
    color: #2E4765;
}

.form label span {
    display: inline;
    float: left;
}

.form label i {
    color: #FF0000;
    font-style: normal;
}

.form input[type=text] {
    font-size: 14px;
    color: #333;
    width: 100%;
    line-height: 34px;
    padding: 3px 10px;
    border: 1px solid #BABABA;
    border-radius: 5px;
    background-color: #FFF;
}

.form input[type=date] {
    font-size: 14px;
    color: #333;
    width: 100%;
    line-height: 34px;
    padding: 3px 10px;
    border: 1px solid #BABABA;
    border-radius: 5px;
    background-color: #FFF;
    font-family: 'Poppins', sans-serif;
}

.form input[type=file] {
    font-size: 14px;
    color: #333;
    line-height: 34px;
    padding: 2px 0;
}

.form input[type=checkbox] {
    width: 22px;
    height: 22px;
}

::-webkit-file-upload-button {
    padding: 7px 30px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #707070;
    font-size: 13px;
}

.form input:disabled {
    background: #F2F2F2;
    font-size: 14px;
}

.form select {
    font-size: 14px;
    color: #333;
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #BABABA;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/down-arrow.png) no-repeat 97% center #FFF;
    background-size: 10px auto;
}

@media screen and (max-width:1060px) {
    .form .field {
        margin-bottom: 10px;
    }

    .form label {
        font-size: 14px;
    }

    .form input[type=text] {
        line-height: 30px;
    }

    .form input[type=date] {
        line-height: 30px;
    }

    .form select {
        font-size: 14px;
        padding: 10px 10px;
    }
}

@media screen and (max-width:760px) {
    .form input:disabled {
        font-size: 12px;
    }
}

@media screen and (max-width:480px) {
    .form label {
        font-size: 12px;
    }

    .form input[type=text] {
        font-size: 12px;
        line-height: 26px;
    }

    .form input[type=date] {
        font-size: 12px;
        line-height: 26px;
    }

    .form select {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/**** STEP 1 ****/
.a2-step1 {
    padding: 10px 0;
}

.a2-step1 p {
    color: #333;
}

.a2-step1 label {
    float: left;
    width: 400px;
    text-align: right;
}

.a2-step1 input[type=text],
.a2-step1 select {
    float: right;
    width: calc(100% - 420px);
}

.a2-step1 .long-label {
    float: none;
    width: 100%;
    text-align: left;
}

.a2-step1 .long-input {
    float: none !important;
    width: 100% !important;
    margin-bottom: 10px;
}

.form .identity-select {
    width: 280px;
    font-size: 13px;
    padding: 10px;
}

@media screen and (max-width:1060px) {
    .a2-step1 label {
        width: 320px;
    }

    .a2-step1 input[type=text],
    .a2-step1 select {
        width: calc(100% - 340px);
    }
}

@media screen and (max-width:760px) {
    .a2-step1 label {
        width: 100%;
        float: none;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .a2-step1 input[type=text],
    .a2-step1 select {
        width: 100%;
        float: none;
    }
}

.a2-address {
    color: #666;
}

.a2-address div {
    display: inline-block;
    margin-bottom: 20px
}

.a2-address div:first-child {
    /*border-right: 1px solid #666;*/
    padding-right: 60px;
    margin-right: 60px;
}

.a2-address sup,
.a2-address span {
    display: inline-block;
    vertical-align: top;
}

.step1-note {
    color: #666;
    margin-bottom: 40px;
}

.a2-signature {
    color: #666;
    float: right;
    width: 100%;
    max-width: 440px;
    margin-bottom: 20px;
}

.form-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.form-note table {
    margin-bottom: 20px;
}

.form-note td {
    vertical-align: top;
}

.form-button {
    border-top: 1px solid #ccc;
    padding-top: 40px;
    margin-bottom: 20px;
}

.form-button button {
    float: right;
    display: block;
    width: 160px;
    height: 40px;
    border: 0;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to top, #257386, #21ACA6);
    cursor: pointer;
}

.form-button input[type=button] {
    float: right;
    display: block;
    width: 160px;
    height: 40px;
    border: 0;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to top, #257386, #21ACA6);
    cursor: pointer;
}

.form-button .btn-upload-save {
    float: left;
}

.form-button input.btn-back {
    float: left;
    background-image: linear-gradient(to top, #4E4E4E, #888888);
}

.form-button input.btn-next {
    margin-left: 20px;
}

@media screen and (max-width:1060px) {
    .a2-address div {
        font-size: 14px;
    }

    .a2-address div:first-child {
        margin-right: 20px;
        padding-right: 30px;
    }

    .step1-note {
        font-size: 14px;
    }

    .a2-signature {
        font-size: 14px;
    }

    .form-note {
        font-size: 12px;
    }
}

@media screen and (max-width:760px) {
    .a2-address div {
        display: block;
    }

    .a2-address div:first-child {
        border-right: 0;
    }

    .step1-note {
        margin-bottom: 20px;
    }

    .form-note {
        margin-bottom: 20px;
    }

    .a2-signature {
        float: none;
        max-width: auto;
    }

    .form-button button {
        width: 120px;
    }

    .form-button input[type=button] {
        width: 120px;
    }

    .form-button .btn-upload-save {
        width: 140px;
    }

    .form-button input.btn-next {
        margin-left: 10px;
    }
}

@media screen and (max-width:480px) {
    .a2-address div {
        font-size: 12px;
    }

    .step1-note {
        font-size: 12px;
    }

    .a2-signature {
        font-size: 12px;
    }

    .form-button {
        padding-top: 30px;
        margin-bottom: 10px;
    }

    .form-button input[type=button] {
        width: 90px;
        height: 34px;
        font-size: 12px;
    }

    .form-button button {
        width: 90px;
        height: 34px;
        font-size: 12px;
    }

    .form-button .btn-upload-save {
        width: 120px;
    }
}


/**** STEP 2 ****/
.step-heading {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px
}

.step-heading h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2E4765;
    margin-bottom: 20px;
}

.a2-step2 {
    padding: 10px 0;
}

.sub-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #666;
}

.a2-step2 label {
    float: left;
    width: 200px;
}

.a2-step2 input[type=text] {
    float: right;
    width: calc(100% - 220px);
}

.form-line {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    padding-top: 10px;
}

@media screen and (max-width:1060px) {
    .step-heading h1 {
        font-size: 20px;
    }

    .sub-heading {
        font-size: 16px;
        margin-bottom: 0;
    }

    .a2-step2 label {
        width: 180px;
    }

    .a2-step2 input[type=text] {
        width: calc(100% - 200px);
    }
}

@media screen and (max-width:760px) {
    .step-heading h1 {
        font-size: 16px;
    }

    .step-heading {
        margin-bottom: 10px;
    }

    .a2-step2 label {
        width: 100%;
        float: none;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .a2-step2 input[type=text] {
        width: 100%;
        float: none;
    }
}


/**** STEP 3 ****/
.upload-document {
    padding: 0 0 40px 0;
}

.upload-document select {
    max-width: 300px;
    float: left;
    margin-right: 10px;
}

.upload-document input {
    float: left;
}

.upload-document .uploaded-form {
    float: left;
}

.upload-document .uploaded-form .pdf {
    display: block;
    background: url(../images/icon-pdf.png) left center no-repeat;
    background-size: auto 26px;
    color: #2E4765;
    font-size: 14px;
    text-decoration: underline;
    padding: 8px 0 9px 30px;
    margin-right: 20px;
    min-width: 290px;
}

.upload-document .sign-plans {
    float: left;
}

@media screen and (max-width:1060px) {
    .upload-document {
        padding: 20px 0;
    }

    .upload-document select {
        max-width: 280px;
    }
}

@media screen and (max-width:760px) {
    .upload-document select {
        max-width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .upload-document input[type=file] {
        margin-bottom: 10px;
    }
}


/**** STEP 4 ****/
.doc-list td {
    padding: 5px 10px;
}

.doc-list .col-doc {
    width: 240px;
    padding: 5px 0;
}

.doc-list .pdf {
    display: block;
    background: url(../images/icon-pdf.png) left center no-repeat;
    background-size: auto 26px;
    color: #2E4765;
    font-size: 14px;
    text-decoration: underline;
    padding: 5px 0 5px 30px;
}

.doc-list .signed {
    display: block;
    background: url(../images/icon-sign.png) left center no-repeat;
    background-size: auto 26px;
    padding-left: 28px;
    color: #2E4765;
    font-size: 14px;
    padding: 5px 0 5px 35px;
}

.sign-plans .signed {
    display: block;
    background: url(../images/icon-sign.png) left center no-repeat;
    background-size: auto 26px;
    padding-left: 28px;
    color: #2E4765;
    font-size: 14px;
    padding: 5px 0 5px 35px;
}

.btn-sign {
    display: inline-block;
    padding: 10px 20px;
    border: 0;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to top, #257386, #21ACA6);
    cursor: pointer;
}

.teams {
    margin: 0 0 40px 0;
}

.teams input[type=checkbox] {
    display: inline-block;
    float: left;
}

.teams p {
    float: right;
    width: calc(100% - 32px);
}

@media screen and (max-width:1060px) {
    .doc-list td {
        padding: 5px;
    }

    .doc-list .col-doc {
        width: 180px;
    }

    .doc-list .pdf {
        background-size: auto 20px;
        font-size: 12px;
        padding: 5px 0 5px 20px;
    }

    .doc-list .signed {
        background-size: auto 20px;
        font-size: 12px;
        padding: 5px 0 5px 25px;
    }

    .btn-sign {
        padding: 8px 10px;
        font-size: 10px;
    }

    .teams {
        margin: 20px 0;
    }

    .teams p {
        font-size: 14px;
    }
}

@media screen and (max-width:760px) {
    .doc-list .col-doc {
        width: 130px;
        word-break: break-all;
    }

    .doc-list .pdf {
        font-size: 10px;
    }

    .btn-sign {
        padding: 5px 8px;
        font-size: 10px;
        line-height: 14px;
        max-width: 120px;
        text-align: center;
    }
}

@media screen and (max-width:480px) {
    .teams p {
        font-size: 12px;
    }

    .teams {
        margin: 10px 0 20px 0;
    }
}


/**** STEP 5 ****/
.submit-successfully p {
    margin-bottom: 20px;
}

.btn-download {
    display: inline-block;
    padding: 0 30px;
    line-height: 46px;
    border: 0;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to top, #257386, #21ACA6);
    cursor: pointer;
}

@media screen and (max-width:1060px) {
    .submit-successfully p {
        font-size: 14px;
    }

    .btn-download {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .submit-successfully p {
        font-size: 12px;
    }

    .btn-download {
        font-size: 12px;
        padding: 0 20px;
        line-height: 40px;
    }
}

/**** About SCS ****/
.photo-bg {
    background: url(../images/bg01.png) center center;
    background-size: cover;
    min-height: 640px;
    padding: 20px 0;
}

.opt-bg {
    background: url(../images/bg02.png) center center;
}

.white-box {
    background-color: #FFF;
    border-radius: 20px;
    padding: 50px 60px;
}

.white-box h1 {
    font-size: 24px;
    font-weight: 600;
    color: #0D999B;
    margin-bottom: 20px;
}

.white-box .icon-home {
    background: url(../images/icon-home.png) left center no-repeat;
    background-size: auto 26px;
    padding-left: 40px;
}

.about-scs p {
    margin-bottom: 20px;
}

.about-scs p:last-child {
    margin-bottom: 0;
}


@media screen and (max-width:1400px) {
    .white-box {
        margin-top: 40px;
    }
}

@media screen and (max-width:1060px) {
    .photo-bg {
        min-height: auto;
    }

    .white-box {
        margin-top: 0;
    }

    .white-box h1 {
        font-size: 20px;
    }

    .about-scs p {
        font-size: 14px;
    }
}

@media screen and (max-width:760px) {
    .white-box {
        padding: 40px;
    }

    .white-box h1 {
        font-size: 18px;
    }
}

@media screen and (max-width:480px) {
    .white-box {
        padding: 20px;
        border-radius: 10px
    }

    .white-box h1 {
        font-size: 16px;
    }

    .about-scs p {
        font-size: 12px;
    }
}


.alt-of-reg-school label {
    float: left;
    width: 300px;
}

.alt-of-reg-school input[type=text] {
    float: right;
    width: calc(100% - 320px);
}

@media screen and (max-width:1060px) {
    .alt-of-reg-school label {
        width: 260px;
    }

    .alt-of-reg-school input[type=text] {
        width: calc(100% - 280px);
    }
}

@media screen and (max-width:760px) {
    .alt-of-reg-school label {
        width: 100%;
        float: none;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .alt-of-reg-school input[type=text] {
        width: 100%;
        float: none;
    }
}


/**** Enter Box ****/
.enter-box {
    max-width: 600px;
    padding: 40px 40px;
}

.enter-box .form-case {
    max-width: unset;
    background: #ECF3F5;
    border: 1px solid #3496B3;
    box-shadow: none;
}

.enter-box label {
    display: block;
    color: #2E4765;
    font-weight: 500;
    margin-bottom: 10px;
}

.enter-box h1 {
    color: #2E4765;
    font-size: 20px;
    margin-bottom: 20px;
}

.enter-box p {
    color: #2E4765;
    margin-bottom: 20px;
}

.g-recaptcha {
    margin-bottom: 20px;
}

.enter-box input[type=button] {
    display: block;
    width: 160px;
    height: 40px;
    border: 0;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to top, #257386, #21ACA6);
    cursor: pointer;
}

/**** Page ****/
.path {
    background-color: #D3E4E8;
}

.path .container {
    padding: 15px 40px;
}

.path ul li {
    float: left;
    list-style-type: none;
    margin-right: 10px;
    color: #585858;
}

.path ul li a {
    color: #17647B;
}

.page-heading {
    font-size: 24px;
    font-weight: 600;
    color: #2E4765;
    margin-bottom: 30px;
}

.page-heading .case-info {
    font-size: 16px;
    color: #666;
    padding-top: 10px;
    margin: 0 -10px 30px;
}

.case-info .field {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    float: left;
}

.case-info .long {
    width: calc(100% - 20px);
}

.case-info label {
    display: block;
    margin-bottom: 5px;
}

.case-info input {
    display: inline-block;
    width: 100%;
    line-height: 36px;
    border: 1px solid #BABABA;
    background: #F0F0F0;
    border-radius: 5px;
    padding: 0 10px;
}

@media screen and (max-width:1060px) {
    .path ul li {
        font-size: 14px;
    }

    .page-heading {
        font-size: 20px;
    }
}

@media screen and (max-width:760px) {
    .page-heading {
        font-size: 16px;
    }

    .page-heading .case-info {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .path .container {
        padding: 15px 20px;
    }

    .page-heading {
        margin-bottom: 10px;
    }
}


/**** Table ****/
.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #FFF;
}

.table thead tr {
    background: #0C6390;
    color: #fff;
}

.table th,
.table td {
    padding: 15px 20px;
    text-align: left;
    font-weight: 400;
}

.table tr:nth-child(even) {
    background: #F5FAFF;
}

.table .table-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 0;
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to top, #257386, #21ACA6);
    cursor: pointer;
}

.table .btn-withdraw {
    background-image: linear-gradient(to top, #A31A2A, #D03030);
}

@media screen and (max-width:1060px) {
    .table {
        font-size: 12px;
    }

    .table .table-btn {
        font-size: 10px;
    }
}

@media screen and (max-width:760px) {

    .table th,
    .table td {
        padding: 15px 10px;
    }
}

@media screen and (max-width:480px) {

    .table th,
    .table td {
        padding: 10px;
    }
}

.case-table {
    overflow-x: auto;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

@media screen and (max-width:760px) {
    .case-table {
        margin-bottom: 20px;
    }
}



/**** Form SC(S)-1 ****/
.sc-step {
    padding: 10px 0;
}

.sc-step label {
    float: left;
    width: 300px;
}

.sc-step input[type=text],
.sc-step select {
    float: right;
    width: calc(100% - 340px);
}

.sc-step input[type=date] {
    float: right;
    width: calc(100% - 340px);
}

.sc-step .long-label {
    float: none;
    width: 100%;
    text-align: left;
}

.sc-step .long-input {
    float: none !important;
    width: 100% !important;
    margin-bottom: 10px;
}

@media screen and (max-width:1060px) {}

@media screen and (max-width:760px) {
    .sc-step label {
        width: 100%;
        float: none;
        line-height: 20px;
        margin-bottom: 5px;
        padding-left: 0 !important;
    }

    .sc-step input[type=text],
    .sc-step select {
        width: 100%;
        float: none;
    }

    .sc-step input[type=date] {
        width: 100%;
        float: none;
    }

    .title-with-name {
        width: 100% !important;
    }
}


.sc-list {
    margin-bottom: 40px;
}

.sc-list li {
    margin-bottom: 20px;
}


.sc-table {
    overflow-x: auto;
    margin-bottom: 40px;
}

@media screen and (max-width:1060px) {
    .sc-list li {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .sc-list li {
        font-size: 12px;
    }
}

.sc-checkbox {
    margin: 0 0 20px 0;
}

.sc-checkbox input[type=checkbox] {
    display: inline-block;
    float: left;
}

.sc-checkbox p {
    float: right;
    width: calc(100% - 32px);
}

@media screen and (max-width:1060px) {
    .sc-checkbox {
        margin: 20px 0;
    }

    .sc-checkbox p {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .sc-table {
        margin-bottom: 20px;
    }

    .sc-checkbox p {
        font-size: 12px;
    }

    .sc-checkbox {
        margin: 10px 0 20px 0;
    }
}

.case-form .row-2 {
    margin: 0 -20px;
}

.case-form .row-2 .field {
    width: 50%;
    float: left;
    padding: 0 20px;
}

.case-form label {
    display: block;
}

@media screen and (max-width:760px) {
    .case-form .row-2 {
        margin: 0;
    }

    .case-form .row-2 .field {
        width: 100%;
        float: none;
        padding: 0;
    }
}



.btn-add-item {
    display: inline-block;
    padding: 10px 20px;
    border: 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to top, #257386, #21ACA6);
    cursor: pointer;
}

@media screen and (max-width:1060px) {
    .btn-add-item {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/**** Page Menu ****/
.form-item {
    background-image: linear-gradient(to right, #00537E, #347598);
    padding: 20px 30px;
    border-radius: 10px;
    width: 100%;
    font-size: 16px;
    margin-bottom: 30px;
    height: 88px;
    display: table;
}

.form-item a {
    display: inline-block;
    width: calc(100% - 40px);
    background: url(../images/icon-form.png) left center no-repeat;
    background-size: 34px auto;
    padding-left: 50px;
    color: #FFF;
    font-size: 18px;
    line-height: 24px;
    display: table-cell;
    vertical-align: middle;
}

.submissions-item {
    background-image: linear-gradient(to right, #007E79, #34986E);
    padding: 20px 30px;
    border-radius: 10px;
    width: 100%;
    font-size: 16px;
    margin-bottom: 30px;
    height: 88px;
    display: table;
}

.submissions-item a {
    display: inline-block;
    width: calc(100% - 40px);
    background: url(../images/icon-submission.png) left center no-repeat;
    background-size: 30px auto;
    padding-left: 50px;
    color: #FFF;
    font-size: 18px;
    line-height: 24px;
    display: table-cell;
    vertical-align: middle;
}

.form-item:after,
.submissions-item:after {
    content: "\f054";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    float: right;
    color: #FFF;
    line-height: 50px;
}

.form-item a strong,
.submissions-item a strong {
    font-weight: 500;
}

.form-item a span {
    font-size: 14px;
}

.page-menu {
    margin-bottom: 40px;
}

@media screen and (max-width:1060px) {}

@media screen and (max-width:760px) {
    .page-menu {
        margin-top: 20px;
    }

    .form-item,
    .submissions-item {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .form-item a {
        background-size: 28px auto;
        padding-left: 40px;
        font-size: 14px;
        line-height: 20px;
    }

    .submissions-item a {
        background-size: 26px auto;
        padding-left: 40px;
        font-size: 14px;
    }

    .form-item a span {
        font-size: 12px;
    }
}

@media screen and (max-width:480px) {

    .form-item,
    .submissions-item {
        padding: 15px;
    }

    .form-item a,
    .submissions-item a {
        font-size: 14px;
        line-height: 16px;
    }

    .form-item a span {
        font-size: 10px;
    }
}


.funtion-menu {
    width: 100%;
    margin: 0 -10px 20px;
}

.funtion-menu ul li {
    display: table;
    list-style: none;
    padding: 0 10px 20px 10px;
    color: #FFF;
    float: left;
    width: 50%;
    height: 100px;
}

.funtion-menu a {
    font-size: 14px;
    color: #FFF;
    text-align: center;
    line-height: 20px;
    padding: 0 20px;
    vertical-align: middle;
    display: table-cell;
    background-color: #33B8BA;
    background-image: linear-gradient(to bottom, #348CC3, #1A6390);
    border-radius: 5px;
}

@media screen and (max-width:1400px) {
    .funtion-menu ul li {
        width: 50%;
    }
}

@media screen and (max-width:1060px) {
    .funtion-menu ul li {
        width: 100%;
        float: none;
    }

    .funtion-menu a {
        padding: 0;
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .funtion-menu a {
        font-size: 12px;
        line-height: 18px;
    }

    .funtion-menu {
        padding: 20px 0;
    }
}

.breadcrumb {
    background-color: #DFEDF0;
}

.breadcrumb .container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.breadcrumb-item {
    display: inline;
    font-size: 14px;
}

.breadcrumb ul li+li:before {
    padding: 8px;
    color: black;
    content: "/";
}

.breadcrumb-item a {
    color: #2E4765;
    text-decoration: none;
}

.breadcrumb-home {
    background: url(../images/icon-home.png) left center no-repeat;
    background-size: 15px auto;
    padding-left: 22px;
}

.guideline-tab .tab-item li {
    float: left;
    width: 33.33%;
    list-style: none;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.guideline-tab .tab-item li a {
    display: block;
    color: #676767;
    border-bottom: 1px solid #676767;
    padding: 20px 0;
    position: relative;
}

.guideline-tab .tab-item li span {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.guideline-tab .tab-item li .icon-tab1 {
    background: url(../images/icon-school-grey.png) left center no-repeat;
    background-size: auto 34px;
    padding-left: 54px;
}

.guideline-tab .tab-item li .icon-tab2 {
    background: url(../images/icon-ccc-grey.png) left center no-repeat;
    background-size: auto 34px;
    padding-left: 60px;
}

.guideline-tab .tab-item li .icon-tab3 {
    background: url(../images/icon-self-grey.png) left center no-repeat;
    background-size: auto 34px;
    padding-left: 50px;
}

.guideline-tab .tab-item li .selected {
    color: #004365;
    border-bottom: 2px solid #004365;
    font-weight: 500;
}

.guideline-tab .tab-item li .selected .icon-tab1 {
    background-image: url(../images/icon-school-blue.png);
}

.guideline-tab .tab-item li .selected .icon-tab2 {
    background-image: url(../images/icon-ccc-blue.png);
}

.guideline-tab .tab-item li .selected .icon-tab3 {
    background-image: url(../images/icon-self-blue.png);
}

.tab-arrow {
    position: absolute;
    left: calc(50% - 10px);
    bottom: -11px;
    display: none;
}

.guideline-tab .tab-item li .selected .tab-arrow {
    display: block;
}

.guideline-box {
    border: 1px solid #256974;
    background-color: #ECF5F4;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.guideline-box h2 {
    background: url(../images/icon-guideline.png) left center no-repeat;
    background-size: auto 30px;
    padding-left: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #256974;
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid #256974;
}

.form-box {
    border: 1px solid #0C6390;
    background-color: #ECF3F5;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-box h2 {
    background: url(../images/icon-form-blue.png) left center no-repeat;
    background-size: auto 30px;
    padding-left: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #0C6390;
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid #0C6390;
}

.link-list {
    padding-top: 25px;
}

.link-list li {
    list-style: none;
    margin-bottom: 10px;
}

.link-list li a {
    color: #256974;
}

.link-list li a:before {
    content: "\f0da";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: .875rem;
    padding-right: 8px;
    color: #256974;
}


@media screen and (max-width:1060px) {
    .guideline-tab .tab-item li span {
        font-size: 14px;
    }

    .guideline-box h2 {
        font-size: 16px;
    }

    .link-list li a {
        font-size: 14px;
    }
}

@media screen and (max-width:760px) {
    .guideline-tab .tab-item li {
        float: none;
        width: 100%;
        padding: 0;
    }

    .guideline-tab .tab-item li a {
        border: 1px solid #004365;
        border-radius: 10px;
    }

    .guideline-tab .tab-item li .selected {
        border: 1px solid #004365;
        border-radius: 10px;
        background: #ECF5F4;
    }

    .guideline-tab .tab-item li .selected .tab-arrow {
        display: none;
    }
}



/**** Popup ****/
#mask {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9000;
    background-color: #26262c;
    display: none;
}

#boxes .window {
    position: absolute;
    left: 0;
    top: 0;
    width: 440px;
    height: 850px;
    display: none;
    z-index: 9999;
    padding: 20px;
    border-radius: 5px;
}

#boxes #dialog {
    width: 900px;
    height: auto;
    padding: 20px;
    background-color: #ffffff;
    font-size: 15pt;
}

#san {
    max-height: 500px;
    overflow-y: scroll;
}

#san h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

#san p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

#san ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    margin-left: 20px;
    list-style-type: none;
}

#san a {
    text-decoration: underline;
}

.agree span {
    font-size: 14px;
    display: inline-block;
    padding-left: 5px;
}

#san .submit {
    display: block;
    width: 140px;
    line-height: 40px;
    border: 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    background-image: linear-gradient(to bottom, #1A6390, #0E4465);
    text-align: center;
    margin-top: 10px;
    text-decoration: none;
}


.preview-pdf {
    max-height: 1200px;
    overflow-y: scroll;
}

.iam-smart .top {
    background: #FFF5D9;
    padding: 8px 10px;
    font-weight: bold;
    font-size: 14px;
}

.iam-smart .instructions {
    padding: 10px;
    font-size: 14px;
}

.iam-smart .green {
    color: #2e685c;
}

.iam-smart .btn-continue {
    background: #2e685c;
    border-radius: 10px;
    color: #FFF;
    padding: 10px 15px;
}