.tox-notification.tox-notification--in.tox-notification--warning {
  display: none !important;
}
.flexContainer {
  display: flex;
  column-gap: 20px;
}
.text-right {
  text-align: right !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.companyName {
  font-weight: bold;
  font-size: 2em;
}
.border {
  border: 1px solid black;
}
.borderRound {
  border-radius: 10px;
}
.bold {
  font-weight: bold;
}
.socialIcons svg {
  font-size: 30px;
}
.marginCenter {
  margin: 0 auto;
}
.btnLogout {
  margin: 5px 15px;
  text-decoration: none;
}
.contactDetails {
  display: grid;
  grid-template-columns: 1fr 4fr;
}
textarea.form-control {
  height: 100%;
}
ul.check,
ul.cross {
  list-style: none;
  padding-left: 1rem;
}
ul.check li:before {
  content: "✓";
  padding-right: 10px;
  color: green;
}
ul.cross li:before {
  content: "\00d7";
  padding-right: 10px;
  color: red;
}
a.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.display-grid {
  display: grid;
  grid-template-columns: 1fr 5fr 1fr;
  align-items: center;
  justify-items: center;
}
.display-grid .grid-item {
  width: 100%;
  display: grid;
  grid-template-columns: 7fr 1fr;
}
.grid-confirmation {
  grid-template-columns: 2fr 4fr;
  justify-items: start;
  gap: 20px;
}

.noti {
  position: relative;
}
#notification-container {
  display: none;
}
#notification-container {
  position: absolute;
  width: 500px;
  top: 63px;
  right: -10px;
  border-radius: 5px 0 5px 5px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  /*padding: 25px;*/
}
#notiCount span {
  color: orange;
  font-weight: bold;
}
#notification-container h5 {
  padding: 15px;
}
.notification-item .items div {
  border-top: 1px solid black;
  padding: 10px 15px;
  font-size: 16px;
  /*border-bottom: 1px solid #000;*/
}
.notification-item .items div:last-child {
  border-bottom: none;
}
.notiRed {
  position: absolute;
  background: rgba(255, 0, 0, 0.7);
  color: white;
  font-weight: bold;
  border-radius: 50% 50%;
  width: 20px;
  height: 20px;
  top: 15px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: middle;
  align-items: center;
}
.circleIcon {
  background-color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0px 5px;
}
.circleIcon svg {
  color: #004192;
}
.rowApplicant td:nth-child(2) {
  text-align: left;
}
.rowCandi td:nth-child(3) {
  text-align: left;
}
.tableActivity tbody tr td:nth-child(4),
.tableActivity tbody tr td:nth-child(5),
.tableActivity tbody tr td:nth-child(6) {
  text-align: center;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black;*/ /* If you want dots under the hoverable text*/
  opacity: 1;
  font-family: inherit;
  font-size: inherit;
  z-index: 99;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 100;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext {
  width: 160px;
  bottom: 100%;
  left: 50%;
  margin-left: -80px; /* Use half of the width (120/2 = 60), to center the tooltip */
  padding: 5px;
}
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.coverImage {
  max-height: 328px;
  object-fit: cover;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .nav-link {
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  #mainNav.navbar .nav-item:hover .dropdown-menu {
    display: none;
  }
  .navbar .nav-item .dropdown-menu.show {
    display: block !important;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}
/* ============ desktop view .end// ============ */
@media (min-width: 576px) {
  #modalJobDetail .modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
  }
}
.loadingBg {
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: block;
  z-index: 999;
}
#loading {
  position: fixed;
  top: 50%;
  left: 45%;
  z-index: 100;
}
.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #004192; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
.center {
  position: fixed;
  top: 45%;
  left: 45%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  z-index: 99;
  opacity: 0.5;
}

.skillset {
  display: flex;
  flex-wrap: wrap;
}
.skillset div {
  width: 100% !important;
  padding: 0 !important;
  border: none !important;
}
.btn-green {
  background-color: #00bf1a;
}
.range-slider {
  height: 5px;
  position: relative;
  background-color: #e1e9f6;
  border-radius: 2px;
}
.range-selected {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background-color: #1b53c0;
}
.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input input::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px solid #1b53c0;
  background-color: #fff;
  pointer-events: auto;
  -webkit-appearance: none;
}
.range-input input::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 3px solid #1b53c0;
  background-color: #fff;
  pointer-events: auto;
  -moz-appearance: none;
}
#accordionFilter .accordion-item {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.5) !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#accordionFilter label {
  color: #004192;
  font-weight: 600;
}
#accordionFilter .accordion-button:not(.collapsed) {
  color: #000;
  background-color: #fff;
  box-shadow: none;
}
#accordionFilter .accordion-button::after {
  background-image: none;
  content: "[+]";
  font-weight: 600;
  color: #004192;
}
#accordionFilter .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "[-]";
  transform: none;
}
#accordionFilter .accordion-body .form-check label {
  font-size: 0.9em;
}
.borderTop {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.logo_picture {
  max-height: 90px;
}
.companyLogo {
  position: absolute;
  top: 65%;
  left: 5%;
}
/*filter*/
#filter .accordion-button {
  padding: 0.5em;
}
#pagination-search .logo img,
#myCarousel .logo img {
  max-height: 50px;
}
#pagination-search .logo.nameBg,
.profilePic {
  background-color: #283891;
  color: white;
  font-weight: bold;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
}
.d-grid.gridParent {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.btnGuide {
  width: 100%;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
}
.btnGuide:hover {
  background-color: #00bf1a;
  text-decoration: none;
}

ul.wrapper{
    list-style: none;
    padding: 0;
}

ul.wrapper li{
    border-left: 4px solid #e0e0e0;
}

ul.wrapper li .row{
    border: 1px solid #e0e0e0;
}

ul.wrapper li .job_title{
    font-size: 1.6rem;
    font-weight: 600;
}

ul.wrapper li .content_inner{
    display: flex;
    gap: 2rem;
    align-items: center;
    color: #808080;
}

ul.wrapper li .col-2{
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.wrapper li .status {
    border-radius: 4px;
    font-size: 12px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    color: #888;
    padding: 4px 8px;
    line-height: 18px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    min-width: 76px;
    margin: 2px 0 2px 4px;
}

ul.wrapper li:hover{
    background-color: #fafafa;
}

ul.wrapper li a:hover{
    color: #222 !important;
    text-decoration: none;
}

.slick-initialized .slick-slide{
    max-height: 500px;
    object-fit: contain;
}

.bugReport{
    position: absolute;
    width: 150px;
    right: 1rem;
    top: 1rem;
}