/*#region common*/
.recruitment-page {
    padding-top: 60px;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    color: #303030;
    line-height: 1.42857143;
}

.recruitment-page .page-container {
    width: 100%;
    max-width: 1360px;
    padding: 0 15px;
    margin: 0 auto;
}
.recruitment-page .page-container-ava {
    max-width: 1920px;
}

.recruitment-page a {
    color: inherit;
}

.text-bold {
    font-family: Inter Bold, Arial, sans-serif;
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.page-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.mobile-show {
    display: none;
}

.blue-hl {
    color: #2680eb;
}

.section-margin {
    margin-top: 50px;
}

@media (max-width: 979px) {
    .recruitment-page {
        font-size: 14px;
    }

    .page-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .mobile-show {
        display: block;
    }

    .pc-show {
        display: none;
    }

    .page-title {
        font-size: 24px;
        padding-bottom: 24px;
    }

    .section-margin {
        margin-top: 30px;
    }
}

/*#endregion*/
/*#region banner*/
.banner-page {
    position: relative;
}

.banner-image {
    display: block;
    height: 500px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-page .owl-nav button {
    outline: none;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.banner-page.owl-theme .owl-nav [class*='owl-']:hover {
    background: none;
}

.banner-page.owl-carousel .owl-nav button.owl-prev,
.banner-page.owl-carousel .owl-nav button.owl-next {
    top: calc(50% - 30px);
    top: -webkit-calc(50% - 30px);
    top: -moz-calc(50% - 30px);
    position: absolute;
}

.banner-page.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.banner-page.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

@media (max-width: 979px) {
    .banner-image {
        height: auto;
    }
}

/*#endregion*/
/*#region recruitments*/
.loader {
    top: 0;
}

.recruitments {
    position: relative;
    z-index: 999;
    padding: 50px 0;
}

.recruitments-content {
    display: flex;
    gap: 24px;
}

.recruitments-content .recruitments-main {
    height: fit-content;
    width: 75%;
    position: relative;
}

.recruitments-sidebar {
    width: 25%;
    max-width: 330px;
}

.sidebar-item {
    display: flex;
    justify-content: center;
    padding-bottom: 16px;
}

.sidebar-item .fb-page {
    width: 100%;
}

.recruitments-filter,
.select-box {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.search-box input,
.combo-box .input-container input {
    color: inherit;
    font-size: 16px;
    border: 1px solid #707070;
    border-radius: 8px;
    padding: 12px 16px;
    height: 48px;
    line-height: 1;
    box-sizing: border-box;
}

.combo-box {
    position: relative;
}

.combo-box .input-container input {
    width: 240px;
    padding-right: 24px;
}


.combo-box__dropdown {
    position: absolute;
    display: none;
    border: 1px solid #707070;
    border-radius: 4px;
    padding: 5px 0;
    background-color: #FFFFFF;
    margin-top: 4px;
    width: 100%;
    max-height: 305px;
    overflow-y: auto;
}

.combo-box__dropdown .dropdown-item {
    display: block;
    padding: 6px 12px;
    cursor: pointer;
    user-select: none;
}

.combo-box__dropdown .dropdown-item:hover,
.combo-box__dropdown .dropdown-item.active {
    background-color: #E2E2E2;
}

.combo-box__dropdown .dropdown-item.selected {
    background-color: #DA0B2D;
    color: #FFFFFF;
}

.search-submit {
    flex-shrink: 0;
}

.search-btn {
    background-color: #DA0B2D;
    border-radius: 8px;
    height: 48px;
    padding: 0 24px;
    color: #FFFFFF;
    border: none;
}

.search-btn:focus-visible {
    outline: none;
}

.icon-dropdown {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icon-dropdown.rotate {
    transform: translateY(-50%) rotate(180deg);
}

.icon-dropdown span {
    display: block;
    width: 10px;
    height: 8px;
    background-color: #343434;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.recruitments-keys {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background-color: #E2E2E2;
    padding: 20px;
    border-radius: 12px;
}

.key-item {
    background-color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
}

.key-item.active {
    background-color: #DA0B2D;
    color: #FFFFFF;
}

.highlight-title {
    color: #C8102E;
}

.new-title {
    color: #1877F1;
}

.job-grid .c-row {
    padding: 24px 0;
    display: grid;
    gap: 24px;
    grid-template-columns: 2fr 1fr 0.6fr;
}

.job-grid .c-row:first-child {
    font-family: Inter Bold, Arial, sans-serif;
    font-weight: 700;
    text-align: center;
}

.job-grid .c-row:not(:first-child) {
    border-top: 1px solid #707070;
}

.job-item {
    cursor: pointer;
}

.job-item.hidden-job {
    display: none !important;
}

.job-tag {
    padding: 2px 8px;
    color: #FFFFFF;
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    font-size: 12px;
}

.job-tag.hot {
    background-color: #DA0B2D;
}

.job-tag.new {
    background-color: #1877F1;
}

.job-title {
    display: flex;
    gap: 8px;
}

.load-more {
    display: block;
    border-radius: 12px;
    padding: 10px 24px;
    background-color: #DA0B2D;
    color: #FFFFFF !important;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
}

.social-section {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

#searchResult {
    padding: 32px 0 24px;
}

.c-col.location .pc-show {
    text-align: center;
}

@media (max-width: 1300px) {
    .combo-box .input-container input {
        width: 100%;
    }
}

@media (max-width: 979px) {
    .recruitments-content {
        flex-direction: column;
    }

    .recruitments-content .recruitments-main {
        width: 100%;
    }

    .recruitments-content .recruitments-sidebar {
        display: none;
    }
}

@media (max-width: 767px) {
    .recruitments-filter {
        flex-wrap: wrap;
        margin-top: -100px;
        background-color: #FFFFFF;
        padding: 12px;
        border-radius: 12px;
    }

    .select-box {
        width: 100%;
        order: -1;
        flex-direction: column-reverse;
    }

    .search-box input,
    .combo-box .input-container input {
        width: 100%;
    }

    .search-box {
        width: calc(100% - 120px);
    }

    .select-box>div {
        width: 100%;
    }

    .recruitments-keys {
        display: none;
    }

    .job-grid .c-row:first-child {
        display: none;
    }

    .job-grid .job-item {
        display: block;
        border: 1px solid #303030;
        padding: 16px 12px 8px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .job-title {
        flex-direction: row-reverse;
        justify-content: space-between;
        padding-bottom: 12px;
    }

    .c-col .mobile-show,
    .deadline.mobile-show {
        display: flex;
        gap: 6px;
        padding-bottom: 8px;
    }

    .highlight-jobs {
        margin-bottom: 32px;
    }

    .load-more {
        margin-top: 16px;
    }

    .social-section {
        display: flex;
    }
}

/*#endregion*/
/*#region news*/
.news {
    background: url(/sites/misa/images/pages/recruitment/bg-news.jpg) no-repeat top center;
    background-size: cover;
    padding: 60px 0;
}

.news .n-title {
    color: #FFFFFF;
    font-size: 32px;
    padding-bottom: 30px;
}

.n-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.n-box {
    border-radius: 10px;
    overflow: hidden;
    background-color: #FFFFFF;
}

.n-text {
    background-color: #FFFFFF;
    padding: 15px 20px;
}

.n-name {
    color: #343434;
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.n-desc {
    color: #6d757d;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 979px) {
    .news .n-title {
        font-size: 28px;
    }

    .n-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .news {
        padding: 40px 0;
    }

    .news .n-title {
        font-size: 24px;
    }

    .n-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/*#endregion*/

/* Thêm CSS cho các nút fixed */
.fixed-buttons {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.fixed-btn:hover {
    transform: scale(1.1);
}

.fixed-btn.apply {
    background-color: #DA0B2D;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    text-align: center;
}

@media (max-width: 767px) {
    .fixed-buttons {
        bottom: 15px;
        left: 15px;
        gap: 8px;
    }

    .fixed-btn {
        width: 45px;
        height: 45px;
    }

    .scroll-up {
        display: block !important;
    }
}

.hotline-quick-access,
#chat-widget-container,
#zalo-vr,
.live-chat,
.live-chat-mobile,
.notify {
    display: none !important;
}
/* region ava*/

.ava-message {
  width: 188px;
  height: 123px;
  background: #1877f1;
  opacity: 0.64;
  border-radius: 8px;
  position: absolute;
  left: 39px;
  top: 76px;
}
.ava-message-text {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 30px 24px 18px 9px;
  width: 179px;
  height: 75px;
}
.ava-messages-icon {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 43px;
}
.ava-icon {
  position: absolute;
  left: 168px;
  top: 30px;
}
.ava-chat {
  background: #1877f1;
  border-radius: 8px;
  height: 38px;
  width: 147px;
  position: absolute;
  left: 100px;
  top: 223px;
}
.ava-chat-text {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 16px 11px 12px;
}
.ava-sidebar-mobile{
    display: none;
}
.ava-mobile{
    display: none;
}
@media (max-width: 1366px) {
    .ava-sidebar{
        display: none;
    }
    .ava-sidebar-mobile{
        min-height: 150px;
        display: block;
    }
    .ava-message-mobile {
        width: 188px;
        height: 123px;
        background: #1877f1;
        opacity: 0.64;
        border-radius: 8px;
        position: absolute;
        right: 120px;
    }
     .ava-message-text-mobile {
        color: #fff;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding: 30px 24px 18px 9px;
        width: 179px;
        height: 75px;
    }
    .ava-messages-icon-mobile {
        z-index: 1;
        position: absolute;
        left: -45px;
        top: 10px;
        bottom: 0;
    }
    .ava-icon-mobile {
        position: absolute;
        right: -68px;
        bottom: 42px;
    }
    .ava-chat-mobile {
        background: #1877f1;
        border-radius: 8px;
        height: 38px;
        width: 147px;
        position: absolute;
        bottom: -14px;
        left: 80px;
    }
    .ava-chat-text-mobile {
        color: #fff;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 8px 16px 11px 12px;
    }
	.recruitments-sidebar {
		width: auto;
	}
}

@media (max-width: 767px) {
    .ava-message-mobile {
        position: relative;
        margin-left: 27px;
        right: 0;
    }
    .ava-mobile{
        display: block;
    }
    .ava-icon-mobile {
        bottom: 31px;
        margin-right: 10px;
    }
	.ava-sidebar-mobile{
        min-height: 150px;
        display: block;
		max-width:340px;
		margin: 0 auto;
    }
    .ava-messages-icon-mobile{
        position: relative;
        bottom: 0px;
        left: -15px;
        top: 29px;
    }
    .ava-chat-mobile{
        position: relative;
        bottom: -16px;
        /* left: 84px; */
        margin-left: 27px;
        left: 60px;
    }
	.recruitment {
		position:relative;
		z-index:9999
	}
}
.aib-popup{
	height: calc(100vh - 56px);
}
.show-icon{
	display:none;
}
/*end region*/