* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    font-size: 15px;
    font-weight:400;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-image: linear-gradient(125deg, #dd7e00 0%, #00b14f 100%);
    border-radius: 10px;
    height: 100px;
}

.app {
    overflow: hidden;
}

a:hover {
    text-decoration: none;
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}
.skiptranslate {
    display: none;
}
.text-required {
    color: #dc3545;
}
/* Turn off scrollbar when body element has the loading class */
body.loading {
    overflow: hidden;
}
/* Make spinner image visible when body element has the loading class */
body.loading .overlay {
    display: block;
}

html{
    font-size: 15px; /* 62.5%;  = 10px */
    line-height: 1.6em;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    font-weight: 400;
}

.text-active {
    color: #00b14f !important;
}

.text-line-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.text-line-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.font-13 {
    font-size: 13px !important;
}

#msgAlert {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99;
}

.bg-active {
    background-color: #00b14f !important;
}

.line-high {
    background-color: #666;
    width: 100%;
    height: 1px;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-5 {
    margin-top: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mr-5 {
    margin-right: 5px;
}

.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.full_width {
    display: block;
    max-width: 100%;
    height: auto;
}

.full_height {
    display: block;
    max-height: 100%;
    width: auto;
}

.w-100 {
    width: 100%;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.button--link {
    background-color: #00b14f;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    border-radius: 5px;
    padding: 10px;
    align-items: center;
    outline: none;
    opacity: .8;
    cursor: pointer;
    line-height: 15px;
}

.button--link:hover {
    opacity: 1;
    color: #fff;
}

div.dropdown-menu.open {
    max-height: 314px !important;
    overflow: hidden;
}

ul.dropdown-menu.inner {
    max-height: 260px !important;
    overflow-y: auto !important;
}

/* Header */
.header {
    height: 70px;
    display: flex;
    align-items: center;
    background-color: #413f3f;
}

#header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    animation: fadeIn .5s linear;
}

@keyframes fadeIn {
    from {
        top: -70px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes showForm {
    0% {
        opacity: 0;
        transform: translate(-50%, -100%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0%);
    }
}

.header__logo {
    margin-right: 20px;
}

.header__logo--link,
.header__logo--link:hover,
.header__logo--link:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.header__logo--link > img {
    display: block;
    height: 70px;
    width: auto;
}

.header__navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header__navbar--list {
    display: flex;
    list-style: none;
    height: 100%;
    align-items: center;
    margin: 0;
    flex: 1;
}

.header__navbar--item {
    margin: 0 5px;
    padding: 15px 10px;
    position: relative;
}

.navbar-item a {
    padding-left: 30px;
}

.navbar-item:hover a {
    color: #00b14f;
}

.header__navbar--item:hover > a::before,
.header__navbar--item.active > a::before {
    color: #fff;
    background-color: #00b14f;
}

.header__navbar--item a, .header__login--item a {
    color: #fff;
    position: relative;
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    padding: 10px 0;
    text-wrap: nowrap;
}

.header__navbar--item i {
    font-size: 12px;
}

.header__navbar--item a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.header__navbar--item:hover > .header__subnav {
    display: block;
}

.header__navbar--item i {
    transition: transform .2s linear;
}

.header__navbar--item:hover i {
    transform: rotate(180deg);
}

.header__subnav {
    position: absolute;
    top: 100%;
    left: -10px;
    min-width: 260px;
    z-index: 10;
    list-style: none;
    background-color: #413f3f;
    padding: 20px 15px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
    transition: all .25s linear;
}

.header__subnav li {
    min-width: 100%;
}

.header__subnav a {
    text-decoration: none;
    display: block;
    padding: 10px 8px;
}

.header__subnav li:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.flex-center,
.header__navbar--login {
    display: flex;
    align-items: center;
}

.header__login--item {
    padding: 10px 15px;
    padding-right: 0;
}

.header__login--item:hover a{
    color: #00b14f;
}

.header__login--item.employer a{
    padding: 10px;
    border: 1px solid transparent;
    border-bottom: 4px solid #00b14f;
    transition: all .25s linear;
}

.header__login--item.employer:hover a {
    border: 1px solid #00b14f;
}

.header__icon--bars {
    font-size: 35px;
    color: #fff;
    padding: 0 20px;
    display: none;
    cursor: pointer;
}

.header__navbar--menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 300px;
    bottom: 0;
    background-color: #fff;
    z-index: 9;
    transition: transform .3s linear;
}

.header__navbar--menu.show__nav {
    transform: translateX(0);
}

.header__navbar--close {
    position: absolute;
    top: 0px;
    right: 0px;
}

.header__navbar--close::after {
    content: "×";
    padding: 0px 10px;
    font-size: 40px;
}

.header__navbar--close:hover::after {
    color: #fff;
    background-color: #249ce7;
    cursor: pointer;
}

.header__navbar__content {
    margin-top: 50px;
}

.header__navbar--description {
    list-style: none;
}

.header__navbar--item-mb > a {
    color: #333;
    text-decoration: none;
    padding: 16px 20px;
    display: block;
    font-weight: 400;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    transition: all .1s ease;
}

.header__navbar--item-mb:hover > a {
    background-color: rgba(0,0,0, .1);
}

.header__navbar--item-mb.navbar-item > a {
    padding-left: 30px;
}

@keyframes show_navbar {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header info user */
.header__user--info {
    position: relative;
}

.user__info--content {
    color: #fff;
    font-size: 17px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user__info--img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user__info--name::after {
    content: '\f078';
    margin-left: 5px;
    font-family: 'FontAweSome';
    color: #fff;
}

.header__user--info:hover .user__groups {
    display: block;
}

.user__groups {
    position: absolute;
    top: 100%;
    right: 0px;
    min-width: 260px;
    z-index: 10;
    list-style: none;
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
    transition: all .25s linear;
    display: none;
}

.user__groups > li a {
    text-decoration: none;
    display: block;
    font-size: 15px;
    padding: 10px 8px;
}

.user__groups > li:hover a {
    background-color: #c6f4ff;
}

/* Main Search */
.main__search {
    border-top: 1px solid #666;
    background-color: #413f3f;
    padding: 30px 0;
}

.main__search--wrapper {
    text-align: center;
}

.main__search--title {
    padding: 20px 0px;
    color: #fff;
    font-size: 28px;
}

.main__search--form {
    padding: 20px 0px;
    font-size: 16px;
}

.search__item {
    margin-bottom: 10px;
    position: relative;
}

.search__item .search__icon {
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 6%;
    font-size: 18px;
    color: #86add4;
}

.search__input_main {
    padding: 12px 0px 12px 20px;
    outline: none;
    font-size: 15px;
    line-height: 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    display: block;
    background-color: #fff;
    width: 100%;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    padding: 7px 15px;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: 1px solid #00b14f !important;
}

.search__input_main:focus {
    border-color: #00b14f;
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

select.search__input_main {
    -webkit-appearance: none;
    appearance: none;
}

select.search__input_main option {
    padding: 10px;
    display: block;
}

.search__autocom--box {
    position: absolute;
    z-index: 99;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: left;
    background-color: #fff;
    max-height: 230px;
    overflow-y: auto;
    box-shadow: 0px -1px 2px 3px rgba(0, 0, 0, 0.2);
    display: none;
}

.search__autocom--box.active {
    display: block;
    padding: 5px 0px;
}

.search__autocom--box li {
    list-style: none;
    padding: 8px 15px;
    line-height: 22px;
    cursor: pointer;
    font-size: 15px;
}

.search__autocom--box li:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.search__submit {
    border: none;
    width: 100%;
    height: 100%;
    font-size: 15px;
}

.search__submit:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    color: rgba(255, 255, 255, 0.8);
}

.footer__wrapper {
    padding-top: 20px;
    padding-bottom: 15px;
    background-color: #413f3f;
}

.footer__item {
    margin-bottom: 20px;
}

.footer__item--name {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.footer__item--hotline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 27px;
    font-weight: 800;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer__item--hotline > a {
    font-weight: bold;
    font-size: 20px;
    padding: 5px;
    color: #00b14f;
    text-decoration: none;
    display: inline-block;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.footer__link--list a {
    color: #fff;
    text-decoration: none;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.footer__link--fb:hover {
    color: #1773ea;
    background-color: #fff;
}

.footer__link--twitter:hover {
    color: #1da1f2;
    background-color: #fff;
}

.footer__link--ytb:hover {
    color: #ff0000;
    background-color: #fff;
}

.footer__item--content {
    list-style-type: square;
}

.footer__content--item {
    margin-left: 18px;
    margin-bottom: 15px;
}

.footer__content--item a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.footer__content--item:hover a {
    text-decoration: underline;
}

.footer__content--form {
    padding: 10px 25px 25px;
    border: 1px solid #00b14f;
}

.footer__form--name,
.footer__form--phone {
    padding: 5px;
}

.input__name,
.input__phone {
    display: block;
    width: 100%;
    padding: 0 12px;
    border: 1px solid rgb(221, 221, 221);
    font-size: 16px;
    line-height: 37px;
    height: 37px;
    outline: none;
}

.footer__form--submit {
    border: none;
    padding: 9px 12px;
    margin: 5px;
}

.footer__wrapper--copyright {
    border-top: 1px solid #666;
    background-color: #413f3f;
    text-align: center;
}

.footer__copyright--content {
    line-height: 50px;
}

/* Scroll */
.icon__scroll {
    position: fixed;
    bottom: -40px;
    right: 20px;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border-radius: 50%;
    border: 2px solid #00b14f;
    color: white;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transition: all .25s linear;
    line-height: 50px;
}

.icon__scroll > i {
    line-height: 50px;
    color: #00b14f;
}

.icon__scroll:hover {
    background-color: #fff;
    border-color: #00b14f;
}

.icon__scroll.show {
    opacity: 1;
    bottom: 5px;
}

.label-required::after {
    content: "*";
    margin-left: 3px;
    color: red;
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #28a745;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-control.is-valid:focus, .was-validated .form-control:valid:focus {
        border-color: #28a745;
        box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
    }

    .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip, .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip {
        display: block
    }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.custom-select.is-valid, .was-validated .custom-select:valid {
    border-color: #28a745;
    padding-right: calc((1em + .75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)
}

    .custom-select.is-valid:focus, .was-validated .custom-select:valid:focus {
        border-color: #28a745;
        box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
    }

    .custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip {
        display: block
    }

.form-control-file.is-valid ~ .valid-feedback, .form-control-file.is-valid ~ .valid-tooltip, .was-validated .form-control-file:valid ~ .valid-feedback, .was-validated .form-control-file:valid ~ .valid-tooltip {
    display: block
}

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
    color: #28a745
}

.form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip, .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip {
    display: block
}

.custom-control-input.is-valid ~ .custom-control-label, .was-validated .custom-control-input:valid ~ .custom-control-label {
    color: #28a745
}

    .custom-control-input.is-valid ~ .custom-control-label::before, .was-validated .custom-control-input:valid ~ .custom-control-label::before {
        border-color: #28a745
    }

.custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip, .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip {
    display: block
}

.custom-control-input.is-valid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    border-color: #34ce57;
    background-color: #34ce57
}

.custom-control-input.is-valid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
}

.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745
}

.custom-file-input.is-valid ~ .custom-file-label, .was-validated .custom-file-input:valid ~ .custom-file-label {
    border-color: #28a745
}

.custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip, .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip {
    display: block
}

.custom-file-input.is-valid:focus ~ .custom-file-label, .was-validated .custom-file-input:valid:focus ~ .custom-file-label {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40,167,69,.25)
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220,53,69,.9);
    border-radius: .25rem
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
    }

    .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip {
        display: block
    }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.custom-select.is-invalid, .was-validated .custom-select:invalid {
    border-color: #dc3545;
    padding-right: calc((1em + .75rem) * 3 / 4 + 1.75rem);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)
}

    .custom-select.is-invalid:focus, .was-validated .custom-select:invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
    }

    .custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip {
        display: block
    }

.form-control-file.is-invalid ~ .invalid-feedback, .form-control-file.is-invalid ~ .invalid-tooltip, .was-validated .form-control-file:invalid ~ .invalid-feedback, .was-validated .form-control-file:invalid ~ .invalid-tooltip {
    display: block
}

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
    color: #dc3545
}

.form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip, .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid ~ .custom-control-label, .was-validated .custom-control-input:invalid ~ .custom-control-label {
    color: #dc3545
}

    .custom-control-input.is-invalid ~ .custom-control-label::before, .was-validated .custom-control-input:invalid ~ .custom-control-label::before {
        border-color: #dc3545
    }

.custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip, .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d
}

.custom-control-input.is-invalid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545
}

.custom-file-input.is-invalid ~ .custom-file-label, .was-validated .custom-file-input:invalid ~ .custom-file-label {
    border-color: #dc3545
}

.custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip, .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip {
    display: block
}

.custom-file-input.is-invalid:focus ~ .custom-file-label, .was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center
}

.invalid-feedback {
    color: red;
}

#google_language_translator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}
.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    padding: 5px;
    border: 1px solid #dc7272;
    background-color: #00b14f;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

/* TIP POPUP and FTIP POPUP */
#tip,
#ftip {
    position: absolute;
    color: #333 !important;
    background-color: #eee;
    max-width: 485px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

#tip {
    top: 100%;
    right: 0;
    min-height: 50px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ftip {
    bottom: 25px;
    left: 5px;
    min-height: 51px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

    #tip .bg,
    #ftip .bg {
        padding: 15px;
        border-bottom-color: #aaaaaa;
        border-bottom-width: 1px;
        border-bottom-style: solid;
    }

#tip .bg {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ftip .bg {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#tip .tip-footer,
#ftip .tip-footer {
    background-color: #e5e5e5;
    border-width: 1px;
    border-style: solid;
    border-color: #cccccc;
    padding: 10px;
}

#tip .tip-footer {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 10px -15px -16px;
}

#ftip .ftip-footer {
    margin: 10px -15px -15px;
}

#tip h3,
#ftip h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

#tip ul {
    margin: 0;
    padding: 0;
}

#tip a {
    color: #333;
}

#tip .socialList a {
    color: #fff;
}

/* Blocks social-icons,contactDefault and personalArea */
.contactDefault {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.social-icons {
    padding-left: 30px;
}

.personalArea {
    padding-left: 20px;
}

.personalArea a.button.user,
.personalArea a.button.user:hover {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #00b14f;
    background-size: contain;
}

.qlist {
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 100%;
    background-color: #d9e8f4;
    border-width: 1px;
    border-style: solid;
    border-color: #a6c8e6;
    padding: 10px;
    z-index: 9998;
    display: none;
}

/* block counter */
.counter.display-table {
    width: 100%
}

.counter span + span {
    text-align: right;
}

/* guestBlock */

.guestBlock {
    width: 350px;
}

    .guestBlock > h3 {
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: #cccccc;
    }

.guestBlock > h3 > a {
    display: inline-block;
    line-height: 34px;
    padding: 0 17px;
    background-color: #e5e5e5;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.guestBlock > h3 > a:hover,
.guestBlock > h3 > a.current {
    background-color: #cccccc;
}

.socialList,
.contactList {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
}

.socialList li,
.contactList li {
    display: inline-block;
    margin-right: 10px;
}

.socialList li:last-child,
.contactList li:last-child {
    margin-right: 0 !important;
}

.socialList {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.socialList li a {
    display: flex;
    width: 30px;
    height: 30px;
    background-color: #00b14f;
    color: #fff;
    font-size: 16px;
    border-radius: 3px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.enable-animate .socialList li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.socialList li a[href*="facebook"]:hover {
    background-color: #3D5D8C;
}

.socialList li a[href*="google"]:hover,
.socialList li a[href*="youtube"]:hover {
    background-color: #DD4B39;
}

.socialList li a[href*="twitter"]:hover {
    background-color: #50A0D7;
}

.socialList li a[href*="feeds"]:hover {
    background-color: #FF9900;
}

.socialList li a .fa {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#goog-gt-tt {
    display: none !important
}

.goog-te-banner-frame {
    display: none !important
}

.goog-te-menu-value:hover {
    text-decoration: none !important
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important
}

body {
    top: 0 !important
}

#google_translate_element2 {
    display: none !important
}
.header-nav-inner {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 2px 0;
}
.header_top_wraper {
    background-color: #00b14f;
}

.header-nav a {
    color: #dcdcdc;
}

.ui-widget.ui-widget-content {
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.ui-menu .ui-menu-item {
    padding: 5px 10px;
}

.table-full table {
    width: 100%;
}

.table-disable {
    position: relative;
}

.table-disable::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    z-index: 99;
}
.table-fixed {
    table-layout: fixed;
}
.required::after {
    content: '*';
    color: #e23737;
    margin-left: 5px;
}
span.text-danger span {
    font-size: 0.8rem;
}

.job-new-index,
.job-hot-index {
    position: absolute;
    top: 2%;
    right: 0;
    z-index: 1;
}

.job-hot-index {
    left: 8px;
}

.job-new {
    width: 50px;
    background-color: #fc4747;
    font-size: 12px;
    display: inline;
    padding: 5px 10px;
    line-height: 25px;
    text-align: center;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    animation: fadeInOutBg 1s ease-in infinite;
}

.job-hot {
    width: 100px;
    background-color: #fc4747;
    font-size: 12px;
    line-height: 25px;
    display: inline;
    padding: 5px 10px;
    white-space: nowrap;
    text-align: center;
    color: #ffffff;
    letter-spacing: 1px;
}

@keyframes fadeInOutBg {
    0% {
        background-color: lightblue;
    }

    50% {
        background-color: dodgerblue;
    }

    100% {
        background-color: #fc4747;
    }
}