/*======================================
|   Variables
========================================*/
/*======================================
|   Custom Style
========================================*/
*, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Noto Sans Khmer", sans-serif;
  background: #F9FAFB;
  color: #212B36;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#job-list{
 padding: 0px !important;
}
.btn-apply {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-apply:hover {
  color: white;
}

/*======================================
|   Custom Bootstrap
========================================*/
.btn, .btn:focus, .btn:active,
.form-control, .form-control:focus, .form-control:active,
.form-check-input, .form-check-input:focus, .form-check-input:active,
.form-select, .form-select:focus, .form-select:active {
  box-shadow: none;
}

.dropdown_disabled_civon::before {
  display: none !important;
}
.dropdown_disabled_civon::after {
  display: none !important;
}

.badge_general {
  border-radius: 4px;
  background: #EDEFF1;
  color: #212B36;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 8px;
}
.badge_general.badge_info {
  background: #D4F6F9;
  color: #003768;
}
.badge_general.badge_success {
  background: #DBF6E5;
  color: #118D57;
}
.badge_general.badge_danger {
  background: #FFE4DE;
  color: #B71D18;
}
.badge_general.badge_warning {
  background: #FFF1D6;
  color: #B71D18;
}

.navbar-light .navbar-nav .nav-link {
  color: #637381;
  font-weight: 500;
}
.navbar-light .navbar-nav .nav-link.active {
  color: #212B36;
}

.pagination-footer .link-page .pagination {
  gap: 3px;
}
.pagination-footer .link-page .pagination .page-item .page-link {
  width: 30px;
  height: 30px;
  font-size: 14px;
  background: #F4F6F8;
  color: #637381;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.pagination-footer .link-page .pagination .page-item .page-link:focus, .pagination-footer .link-page .pagination .page-item .page-link:active, .pagination-footer .link-page .pagination .page-item .page-link:hover {
  box-shadow: none;
  background: #DFE3E8;
}
.pagination-footer .link-page .pagination .page-item.active .page-link {
  border: none;
  background: #212B36;
  color: #F9FAFB;
}

/*======================================
|   General Style
========================================*/
.btn_general {
  transition: all 0.3s ease-out;
}
.btn_general:hover {
  background: #DFE3E8;
}

.btn_icon_circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  font-size: 20px;
}
.btn_icon_circle.btn_gray {
  background: #DFE3E8;
  color: #637381;
  border-color: #DFE3E8;
}
.btn_icon_circle svg {
  width: 24px;
  height: 24px;
}

.btn_avatar_wrapper {
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.btn_avatar_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  border-radius: 50%;
}
.btn_avatar_wrapper::after {
  display: none;
}

.link_general {
  color: #212B36;
  text-decoration: none;
  opacity: 1;
  transition: all 0.15s ease-out;
}
.link_general:hover {
  color: #212B36;
  opacity: 0.7;
}

.line_clamp_1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

.line_clamp_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.line_clamp_3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.line_clamp_4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.rounded_sm {
  border-radius: 2px;
}

.rounded_md {
  border-radius: 4px;
}

.rounded_lg {
  border-radius: 8px;
}

.rounded_xl {
  border-radius: 12px;
}

.rounded_xxl {
  border-radius: 20px;
}

.text_dark {
  color: #212B36;
}

.text_gray {
  color: #637381;
}

.text_info {
  color: #003768;
}

.text_warning {
  color: #B76E00;
}

.text_danger {
  color: #B71D18;
}

.list-group_aside .list-group-item.active {
  background: #F9FAFB;
  border-color: #DFE3E8;
}
.list-group_aside .list-group-item.active a {
  color: #0067F4 !important;
  font-weight: 500;
}
.list-group_aside .list-group-item:hover {
  background: #F9FAFB;
  border-color: #DFE3E8;
}
.list-group_aside .list-group-item a:hover {
  color: #212B36 !important;
}

/*======================================
|   Custom Card
========================================*/
.card.card_dashboad_label {
  background: var(--card_label_background);
  border-radius: 12px;
}
.card.card_dashboad_label .card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 30px 50px;
}
.card.card_dashboad_label .card-body .card_info {
  color: var(--card_label_color);
}
.card.card_dashboad_label .card-body .card_info h1 {
  font-size: 48px;
  font-weight: 700;
}
.card.card_dashboad_label .card-body .card_info p {
  font-weight: 500;
}
.card.card_dashboad_label .card-body img {
  opacity: 0.7;
}

.card.card_text_floating {
  overflow: hidden;
  border: 0 !important;
}
.card.card_text_floating .card-body {
  padding: 0;
  position: relative;
  border: 0 !important;
}
.card.card_text_floating .card-body .thumbnail img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
.card.card_text_floating .card-body .thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 100%);
}
.card.card_text_floating .card-body .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.card.card_text_floating .card-body .info a {
  color: #FFF;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}
.card.card_text_floating .card-body .info p {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
}

.card.crad_memo {
  border-radius: 8px;
  transition: all 0.15s ease-out;
}
.card.crad_memo a {
  text-decoration: none;
  height: 100%;
}
.card.crad_memo a .card-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
}
.card.crad_memo a .card-body .card_content {
  width: 100%;
  padding: 10px;
}
.card.crad_memo a .card-body .card_content .announced_date {
  font-size: 14px;
  color: #637381;
}
.card.crad_memo a .card-body .card_content h6 {
  font-size: 16px;
  font-weight: 500;
  color: #212B36;
}
.card.crad_memo a .card-body .card_content .short_info {
  font-size: 14px;
  font-weight: 400;
  color: #637381;
}
.card.crad_memo a .card-body .card_content .short_info p {
  margin-bottom: 0;
}
.card.crad_memo a .card-body .card_icon {
  width: 100px;
  min-width: 100px;
  background: #EDEFF1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #637381;
  border-radius: 4px;
}
.card.crad_memo:hover {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.card.card_department {
  border-radius: 8px;
  transition: all 0.15s ease-out;
}
.card.card_department .card-body {
  padding: 0;
}
.card.card_department .card-body a {
  text-decoration: none;
  color: #212B36;
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.card.card_department .card-body a img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  border-radius: 50%;
}
.card.card_department:hover {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.card.crad_team_member {
  border-radius: 8px;
  transition: all 0.15s ease-out;
}
.card.crad_team_member .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
}
.card.crad_team_member .card-body img {
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.card.crad_team_member .card-body a {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #212B36;
  margin-bottom: 0;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.card.crad_team_member .card-body a:hover {
  color: #0067F4;
}
.card.crad_team_member .card-body p {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #637381;
  margin-bottom: 0;
}
.card.crad_team_member:hover {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

@media screen and (max-width: 576px) {
  .card.crad_memo a .card-body .card_icon {
    display: none;
  }
}
.swal2-sm {
  font-size: 16px; /* Adjust popup size as needed */
}

.swal2-icon-sm {
  font-size: 16px; /* Adjust icon size as needed */
}

.swal2-title-sm {
  font-size: 16px; /* Adjust title size as needed */
  font-weight: 500;
}

.card.card_view_team_member .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.card.card_view_team_member .card-body .thumbnail {
  padding: 10px;
  border: 1px dashed #C4CDD5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.card.card_view_team_member .card-body .thumbnail img {
  aspect-ratio: 1/1;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card.card_view_team_member .card-body h5 {
  color: #212B36;
  font-weight: 600;
}
.card.card_view_team_member .card-body p {
  font-size: 14px;
  color: #637381;
}
.card.card_view_team_member .card-body table {
  margin-top: 20px;
}
.card.card_view_team_member .card-body table th, .card.card_view_team_member .card-body table td {
  font-size: 14px;
  color: #637381;
}

.job-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.job-card .card {
  padding: 20px;
}
.job-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
}
.job-card .text-muted {
  font-size: 0.875rem;
}
.job-card .candidates {
  color: #28a745;
  font-weight: bold;
}
.job-card .candidates i {
  color: #28a745;
}
.job-card .fa-ellipsis-v {
  color: #6c757d;
  cursor: pointer;
}
.job-card hr {
  margin: 10px 0;
}
.job-card .row .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.job-card .row .col p {
  margin: 0;
}
.job-card .row .col i {
  margin-bottom: 5px;
}

.img-placeholder {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  color: white;
  border-radius: 25%;
  margin-left: 10px;
}

.company-name {
  margin-top: 10px;
}

.dropdown-item:hover {
  border-radius: 8px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 48px;
  font-weight: bold;
}


/*======================================
|   Home
========================================*/
#top_navbar .menu_list .nav-item.active {
  background: #F9FAFB;
}
#top_navbar .menu_list .nav-item.active a {
  color: #0067F4 !important;
}
#top_navbar .menu_list .nav-item .nav-link {
  background: transparent;
  color: #637381;
}
#top_navbar .menu_list .nav-item .nav-link.dropdown-toggle.active {
  color: #0067F4 !important;
}
#top_navbar .menu_list .nav-item .dropdown-menu .dropdown-item {
  color: #637381 !important;
}
#top_navbar .menu_list .nav-item .dropdown-menu .dropdown-item.active {
  background: #FFF;
  color: #0067F4 !important;
}
#top_navbar .menu_list .nav-item .dropdown-menu .dropdown-item:focus, #top_navbar .menu_list .nav-item .dropdown-menu .dropdown-item:active {
  background: #F9FAFB;
}
#top_navbar .btn-toggle-menu {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}
#top_navbar .btn-toggle-menu .btn-toggle-menu-wrapper {
  display: inline-block;
  cursor: pointer;
}
#top_navbar .btn-toggle-menu .btn-toggle-menu-wrapper .line {
  width: 28px;
  height: 3px;
  background-color: #637381;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 100px;
}
#top_navbar .btn-toggle-menu.active .line1 {
  transform: translate(0, 9px) rotate(45deg);
}
#top_navbar .btn-toggle-menu.active .line2 {
  opacity: 0;
}
#top_navbar .btn-toggle-menu.active .line3 {
  transform: translate(0, -9px) rotate(-45deg);
}
#top_navbar .btn-toggle-menu:focus {
  box-shadow: none !important;
}

.group_links {
  position: relative;
}
.group_links .group_links_title .nav-tabs_container {
  display: flex;
  align-items: center;
}
.group_links .group_links_title .nav-tabs_container .nav-tabs_container_inner {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.group_links .group_links_title .nav-tabs_container .nav-tabs_container_inner::-webkit-scrollbar {
  display: none;
}
.group_links .group_links_title .nav-tabs_container .nav-tabs_container_inner .nav-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border: none;
}
.group_links .group_links_title .nav-tabs_container .nav-tabs_container_inner .nav-tabs .nav-link {
  color: #637381;
  font-weight: 500;
  border: 0;
  border-bottom: 3px solid #FFF;
}
.group_links .group_links_title .nav-tabs_container .nav-tabs_container_inner .nav-tabs .nav-link.active {
  border-bottom: 3px solid #212B36;
  font-weight: 500;
  color: #212B36;
}
.group_links .group_links_title .nav-tabs_container #scrollLeft, .group_links .group_links_title .nav-tabs_container #scrollRight {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F9FAFB;
  border: none;
  color: #0067F4;
  height: 40px;
  width: 32px;
  border-radius: 4px;
}
.group_links .group_links_title .nav-tabs_container #scrollLeft {
  margin-right: 10px;
}
.group_links .group_links_title .nav-tabs_container #scrollRight {
  margin-left: 10px;
}

.swiper_campus .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #637381 !important;
  opacity: 1;
}
.swiper_campus .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #F9FAFB !important;
}

footer .the_support {
  color: #637381;
  font-size: 12px;
  font-weight: 500;
  padding: 10px;
  margin: 0;
  text-align: right;
  opacity: 0.8;
  text-align: center;
}
footer p {
  font-weight: 400;
}

/*======================================
|   Memo Detail
========================================*/
.memo_attached_group a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.memo_attached_group a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.memo_attached_group a .card_pdf {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #FFE4DE;
  color: #B71D18;
  font-size: 40px;
}/*# sourceMappingURL=style.css.map */
