@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@tailwind base;
@tailwind components;
@tailwind utilities;


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.cursor-pointer {
    cursor: pointer;
}

/* Bootstrap Reset */
.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hero-section {
    background: no-repeat right url("../images/hero-background.png");
    height: 100vh;
}

#left-arrow:hover {
    cursor: pointer;
}

.download-section {
  min-height: 200px;
}

.main-heading {
  font-weight: 700;
  font-size: 54.2px;
}

.staffApp {
    font-weight: 400;
    font-size: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background-color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #06C328;
}

.qr-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.iosCard {
    width: 331px;
    height: 296px;
    border-radius: 21.37px;
    background-color: #F1F1F1;
    text-align: start;
    padding: 27px;
    font-size: 11px;
    font-weight: 400;
}

.iosCard a img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.benefitsCard {
    margin-top: 100px;
    width: 100%;
    background-color: #06c328;
    padding: 60px 30px;
    color: white;
    box-sizing: border-box;
}

.benefits-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.benefits-header h2 {
    font-size: 28px;
    font-weight: 700;
    flex: 1 1 300px;
}

.highlight {
    color: #FDB813;
}

.benefit-description {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 300px;
}

.vertical-line {
    width: 4px;
    height: 70px;
    background-color: white;
}

.benefits-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.feature-item p {
    font-size: 15px;
    font-weight: 400;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background-color: #FFFFFF;
    margin: 0 auto;
}

.downloadApps {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.online {
  max-width: 1240px;
  margin: 78px auto 170px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 45px;
  background: #F1F1F1;
  padding: 65px;
  box-sizing: border-box;
}

.online-text {
  flex: 1 1 500px;
}

.online-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.online-image img {
  max-width: 100%;
  height: auto;
}

.online h1 {
  font-weight: 700;
  font-size: 44.94px;
  text-transform: capitalize;
  color: #006A13;
}

.subheading {
  font-weight: 400;
  font-size: 25px;
  color: #525151;
  margin: 10px 0 20px;
}

.online-icons {
  margin-bottom: 23px;
  max-width: 100%;
  height: auto;
}

.bullets {
  font-weight: 400;
  font-size: 21px;
  color: #525151;
  margin-bottom: 10px;
}

.onlineBtn {
  background: #06C328;
  width: 272px;
  height: 66px;
  border-radius: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.onlineBtn:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.onlineBtn p {
  font-weight: 600;
  font-size: 22px;
  color: white;
  margin-bottom: 0px !important;
}

@media (max-width: 347px) {
    .main-heading {
        font-size: 38px;
    }

    .staffApp {
        font-size: 17px;
    }

}

@media (max-width: 575px) {
    .main-heading {
        font-size: 45px;
    }

    .downloadApps {
        flex-direction: column;
        align-items: center;
    }

    .onlineBtn {
        width: 200px;
        height: 50px;
    }

    .onlineBtn p {
        font-size: 18px;
    }

}

@media (max-width: 768px) {
    .benefits-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-description {
        justify-content: center;
    }

    .benefit-description {
        flex: 0;
    }

    .benefits-header h2 {
        flex: 0;
    }


    .iosCard {
        width: 331px;
        height: 330px;
        border-radius: 21.37px;
        background-color: #F1F1F1;
        text-align: start;
        padding: 27px;
        font-size: 11px;
        font-weight: 400;
    }
}


@media (max-width: 872px) {
    .vertical-line {
        background-color: transparent;
    }
}


@media (max-width: 992px) {
  .online {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .online-text,
  .online-image {
    flex: 1 1 100%;
  }

  .online-icons {
    display: block;
    margin: 0 auto 23px;
  }

  .onlineBtn {
    margin: 20px auto 0;
  }

}

#right-arrow:hover {
    cursor: pointer;
}

/* Initial position of the content */
#dynamic-content {
    position: relative;
    transition: transform 0.5s ease-in-out;
    opacity: 1;
}

/* Slide out to the left */
#dynamic-content.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

/* Slide in from the right */
#dynamic-content.slide-in-right {
    transform: translateX(100%);
    opacity: 0;
}

/* Slide out to the right */
#dynamic-content.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

/* Slide in from the left */
#dynamic-content.slide-in-left {
    transform: translateX(-100%);
    opacity: 0;
}

/* Reset to normal position after the transition */
#dynamic-content.active {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s ease-in-out, opacity 0.3s;
}

#go-top-btn {
    position: fixed;
    bottom: 20px;
    right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: none;
    transition: opacity 0.4s, transform 0.4s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    z-index: 99;
    opacity: 0;
    transform: scale(0.9);
}

#go-top-btn.show {
    opacity: 1;
    transform: scale(1);
}

#go-top-btn i {
    color: #fff;
    font-size: 25px;
}

.navbar-toggler:focus {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    outline: none !important;
    box-shadow: none !important;
}

.about-us-section {
    background: url("../images/stylish-line.svg") no-repeat;
    background-position: bottom left;
}

/* Features Section CSS */

.feature-card-1 {
    background: url("../images/feature-card-1-bg.png") no-repeat center;
    background-size: cover;
    height: 350px;
    border-radius: 20px;
}

.feature-card-2 {
    background: url("../images/feature-card-2-bg.png") no-repeat center;
    background-size: cover;
    height: 350px;
    border-radius: 20px;
}

.feature-card-3 {
    background: url("../images/feature-card-3-bg.png") no-repeat center;
    background-size: cover;
    height: 350px;
    border-radius: 20px;
}

/* How It Works CSS */

.how-it-works-bg {
    background: url("../images/how-it-works-bg.svg") no-repeat center;
    background-size: cover;
    height: max-content;
}

.circle {
    height: 40px;
    width: 40px;
}

.btn-modal-close {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.slick-next {
    background-color: #ffffff !important;
    box-shadow: 0px 0px 26px 0px #0000001c !important;

    padding: 20px !important;
    right: -60px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #06c328 !important;
    font-size: 15px !important;
    border-radius: 5px !important;
}

.slick-next:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: none !important;
}

.slick-prev {
    background-color: #ffffff !important;
    box-shadow: 0px 0px 26px 0px #0000001c !important;
    border-radius: 5px !important;
    padding: 20px !important;
    left: -60px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #06c328 !important;
    font-size: 15px !important;
}

.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: none !important;
}

.quotes-section {
    background: url("../images/quote-bg.png") no-repeat center;
    background-size: cover;
    height: max-content;
}

.input-group-style-reset {
    background-color: #f5f5f5 !important;
}

.input-group-style-reset:focus {
    box-shadow: none !important;
    border: 1px 1px 0px 1px !important;
    border-style: solid !important;
    border-color: #ced4da !important;
    outline: none !important;
}

.bootstrap-input-reset-style:focus {
    box-shadow: none !important;
    outline: none !important;
}

.contact-border {
    border-radius: 0px 0px 94px 0px;
}

.footer-link-underline {
    text-decoration: underline;
    text-decoration-color: #06c328;
    text-decoration-style: solid;
}

.email-placeholder::placeholder {
    color: white !important;
}

.input-reset-style {
    background-color: #21212180 !important;
}

.input-reset-style:focus {
    border: 1px solid #ced4da !important;
    box-shadow: none !important;
    outline: none !important;
}

.footer {
    background-color: #07444eb0;
}

.mobile-hidden {
    display: block;
}

/* Dashboard Page CSS */

.bgDashboard {
    background-color: #fafafb;
}

.staff-bar {
    height: calc(100vh - 320px);
    overflow: auto;
}



::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #cecece;
}



.yellow-circle {
    height: 25px;
    width: 25px;
}

#staffDropArea {
    transition: background-color 0.3s;
    /* Smooth transition */
}

#staffDropArea.hovered {
    background-color: red;
    /* Change background color to red */
}

#staffDropArea i {
    cursor: pointer;
    /* Change cursor to pointer for icons */
}

.remove-icon {
    color: red;
    /* Change color as desired */
}

/* Custom scrollbar for WebKit browsers (Chrome, Safari, etc.) */
.staff-bar::-webkit-scrollbar {
    height: 8px;
    /* Adjust scrollbar height for horizontal scroll */
}

.staff-bar::-webkit-scrollbar-thumb {
    background-color: #a0aec0;
    /* Tailwind gray-400 */
    border-radius: 5px;
    /* Rounded scrollbar thumb */
}

.staff-bar::-webkit-scrollbar-track {
    background-color: #e2e8f0;
    /* Tailwind gray-200 */
}



/* Custom scrollbar for IE, Edge, and older browsers */


.btn-reset-style:focus {
    outline: none;
    box-shadow: none !important;
}

.flag-dropdown {
    overflow-y: scroll !important;
    height: 205px !important;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 1px;
    background-color: #121212;
    /* or any color you prefer */
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
}

.custom-nav-tabs.active {
    background-color: #ffdd38 !important;
    color: black !important;
}

.date-range-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #fafafb;
    border-radius: 8px;
    width: fit-content;
    cursor: pointer;
    position: relative;
}

.calendar-icon {
    font-size: 20px;
    margin-right: 10px;
}

.date-range-text {
    display: flex;
    flex-direction: column;
}

.date-range-text .days {
    font-weight: bold;
    font-size: 9px;
}

.date-range-text .dates {
    color: #555;
    font-size: 9px;
}

.dropdown-icon {
    margin-left: 10px;
    font-size: 12px;
}

/* Date Picker Styling */
.date-picker-container {
    display: none;
    margin-top: 10px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 40px;
}

.date-picker-container input {
    margin-right: 10px;
}

.personal-info {
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    border: 2px solid green;
}

.file-input {
    display: none;
}

/* Custom button styles */
.file-upload-btn {
    background-color: #3b7471;
    color: white;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
.file-upload-btn:hover {
    background-color: #237156;
}

/* Button focus effect */
.file-upload-btn:focus {
    outline: none;
    /* box-shadow: 0 0 5px #2b8e6e; */
}

.custom-date-container {
    position: relative;
}

.custom-date-input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    /* Add space for the arrow */
    border-radius: 5px;
    border: 1px solid #d1d5db;
    background-color: #f3f4f6;
    font-size: 16px;
    transition: all 0.3s;
}

.custom-date-input:focus {
    /* border-color: #4ade80; */
    outline: none;
    /* box-shadow: 0 0 5px rgba(72, 187, 120, 0.5); */
}

/* Right-side arrow */
.date-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Prevent the arrow from blocking clicks */
}

/* Optional: Style the placeholder to always be aligned to the left */
.custom-date-input::placeholder {
    color: #9ca3af;
}

.custom-month-container {
    position: relative;
    /* width: 250px; */
}

.custom-month-input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    /* Add space for the arrow */
    border-radius: 5px;
    border: 1px solid #d1d5db;
    background-color: #f3f4f6;
    font-size: 16px;
    transition: all 0.3s;
}

.custom-month-input:focus {
    /* border-color: #4ade80; */
    outline: none;
    /* box-shadow: 0 0 5px rgba(72, 187, 120, 0.5); */
}

/* Right-side arrow */
.month-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Prevent the arrow from blocking clicks */
}

/* Placeholder styling */
.custom-month-input::placeholder {
    color: #9ca3af;
}

.custom-year-container {
    position: relative;
}

.custom-year-input {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    /* Add space for the arrow */
    border-radius: 5px;
    border: 1px solid #d1d5db;
    background-color: #f3f4f6;
    font-size: 16px;
    transition: all 0.3s;
}

.custom-year-input:focus {
    /* border-color: #4ade80; */
    outline: none;
    /* box-shadow: 0 0 5px rgba(72, 187, 120, 0.5); */
}

/* Right-side arrow */
.year-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* Prevent the arrow from blocking clicks */
}

/* Placeholder styling */
.custom-year-input::placeholder {
    color: #9ca3af;
}

.staff-image {
    height: 45px;
    width: 45px;
}

.staff-image img {
    height: 100%;
    width: 100%;
    border: 2px solid #ccc;
}

.equipment-image {
    height: 45px;
    width: 45px;
}

.equipment-image img {
    height: 100%;
    width: 100%;
    border: 2px solid #ccc;
}

.file-drop-zone {
    border: 2px dashed #ced4da;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    background-color: #f9fafc;
    transition: background-color 0.3s ease;
}

.file-drop-zone-inner {
    color: #6c757d;
}

.icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.browse-file {
    color: #3b7471;
    font-weight: 600;
    cursor: pointer;
}

.file-size {
    font-size: 12px;
    color: #adb5bd;
}

.file-drop-zone.dragover {
    background-color: #f1f3f5;
}

.file-item {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #ffffff;
    align-items: center;
}

.file-name {
    font-weight: bold;
}

.file-size-display {
    color: #6c757d;
    font-size: 12px;
}

.delete-icon {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background-color: #e6ede5;
}

.delete-icon img {
    width: 10px;
    /* Adjust width */
    height: 10px;
    /* Adjust height */
    cursor: pointer;
}

/* Styling for Read-Only Document */
.file-drop-zone.readonly-document {
    border: 2px dashed #28a745;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    background-color: #f9fafc;
    margin-bottom: 20px;
}

.browse-readonly-file {
    color: #3b7471;
    cursor: pointer;
    font-weight: 600;
}

/* Uploaded Read-Only Files Preview Section */
#readonlyFileList .file-item {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #ffffff;
    align-items: center;
}

#readonlyFileList .file-name {
    font-weight: bold;
}

#readonlyFileList .file-size-display {
    color: #6c757d;
    font-size: 12px;
}

#readonlyFileList .delete-icon {
    cursor: pointer;
}

#readonlyFileList .delete-icon img {
    width: 10px;
    height: 10px;
    cursor: pointer;
}

div:where(.swal2-container).swal2-center>.swal2-popup {
    grid-column: 2;
    grid-row: 2;
    place-self: center center;
    width: 450px;
    border-radius: 20px;
}

div:where(.swal2-container) h2:where(.swal2-title) {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0 !important;
    color: inherit;
    font-size: 1.875em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

div:where(.swal2-container) div:where(.swal2-actions) {
    display: flex;
    z-index: 1;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 !important;
    padding: 0;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    border: 0;
    border-radius: 0.25em;
    background: initial;
    background-color: #3b7471 !important;
    color: #fff;
    font-size: 1em;
}

div:where(.swal2-container) .swal2-html-container {
    z-index: 1;
    justify-content: center;
    margin: 0;
    padding: 1em 1em 0.3em !important;
    overflow: auto;
    color: #7d7d7d !important;
    font-size: 1em !important;
    font-weight: normal;
    line-height: 1.4rem !important;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
}

.time-text {
    font-size: 9px;
}

/* Styling for Examination Certificate */
.file-drop-zone.exam-certificate {
    border: 2px dashed #237156;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    background-color: #f0f8ff;
    margin-bottom: 20px;
}

.browse-exam-certificate {
    color: #237156;
    cursor: pointer;
    font-weight: 600;
}

/* Uploaded Examination Certificate Files Preview Section */
#examCertificateFileList .file-item {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #ffffff;
    align-items: center;
}

#examCertificateFileList .file-name {
    font-weight: bold;
}

#examCertificateFileList .file-size-display {
    color: #6c757d;
    font-size: 12px;
}

#examCertificateFileList .delete-icon {
    cursor: pointer;
}

#examCertificateFileList .delete-icon img {
    width: 10px;
    height: 10px;
    cursor: pointer;
}

/* Styling for User Manual Details */
.file-drop-zone.user-manual {
    border: 2px dashed #237156;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    background-color: #f0f8ff;
    margin-bottom: 20px;
}

.browse-user-manual {
    color: #237156;
    cursor: pointer;
    font-weight: 600;
}

/* Uploaded User Manual Files Preview Section */
#userManualFileList .file-item {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: #ffffff;
    align-items: center;
}

#userManualFileList .file-name {
    font-weight: bold;
}

#userManualFileList .file-size-display {
    color: #6c757d;
    font-size: 12px;
}

#userManualFileList .delete-icon {
    cursor: pointer;
}

#userManualFileList .delete-icon img {
    width: 10px;
    height: 10px;
    cursor: pointer;
}

.test {
    height: auto;
    width: auto;
    overflow-x: scroll;
    white-space: nowrap;
}

/* Custom scrollbar for WebKit browsers (Chrome, Safari, etc.) */
.test::-webkit-scrollbar {
    height: 8px;
    /* Adjust scrollbar height for horizontal scroll */
}

.test::-webkit-scrollbar-thumb {
    background-color: #a0aec0;
    /* Tailwind gray-400 */
    border-radius: 5px;
    /* Rounded scrollbar thumb */
}

.test::-webkit-scrollbar-track {
    background-color: #e2e8f0;
    /* Tailwind gray-200 */
}

/* Custom scrollbar for Firefox */
.test {
    scrollbar-width: thin;
    /* Thin scrollbar */
    scrollbar-color: #f3f4f6 #ffffff;
    /* Thumb color and track color */
}

/* Custom scrollbar for IE, Edge, and older browsers */
.test {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /* IE and Edge */
}

.custom-hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    /* Tailwind gray-200 */
    flex: 1;
    /* Make the line take up the available space */
    margin: 0;
    /* Remove default margins */
}

.time {
    height: 500px;
    overflow-y: scroll;
}

/* Custom scrollbar for WebKit browsers (Chrome, Safari, etc.) */
.time::-webkit-scrollbar {
    height: 8px;
    /* Adjust scrollbar height for horizontal scroll */
}

.time::-webkit-scrollbar-thumb {
    background-color: #a0aec0;
    /* Tailwind gray-400 */
    border-radius: 5px;
    /* Rounded scrollbar thumb */
}

.time::-webkit-scrollbar-track {
    background-color: #e2e8f0;
    /* Tailwind gray-200 */
}

/* Custom scrollbar for Firefox */
.time {
    scrollbar-width: thin;
    /* Thin scrollbar */
    scrollbar-color: #f3f4f6 #ffffff;
    /* Thumb color and track color */
}

/* Custom scrollbar for IE, Edge, and older browsers */
.time {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /* IE and Edge */
}

.hidden-content {
    display: none;
}

/* // X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .mobile-hidden {
        display: none;
    }

    iframe {
        height: 300px;
    }
}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .mobile-hidden {
        display: none;
    }
}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .mobile-hidden {
        display: none;
    }
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* // X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

/* // XX-Large devices (larger desktops) */
/* // No media query since the xxl breakpoint has no upper bound on its width */

@media (min-width: 767.98px) {
    .divider {
        display: block;
        visibility: hidden;
        font-size: 0;
    }
}


/* New CSS */


.job_location {
    font-size: 13px;
}

.job__tags-parent {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

/* .job__badge{
    background: #D3F2E4;
    color:#09774F ;
    border-radius: 20px;
    min-width: 50px;
    padding: 5px 6px;
    text-align: center;
    font-size: 12px;
} */

.job_badge_light {
    background: #D3F2E4;
    color: #09774F;
    color: #000;
    border-radius: 20px;
    min-width: 50px;
    padding: 5px 6px;
    text-align: center;
    font-size: 12px;
}

.job_badge_dark {
    background: #09774F;
    color: #fff;
    border-radius: 20px;
    min-width: 50px;
    padding: 5px 6px;
    text-align: center;
    font-size: 12px;
}

.scroll_div {
    height: calc(100dvh - 200px);
    overflow: auto;
}

.resource_scroll_div {
    height: calc(100dvh - 310px);
    overflow: auto;
}

.job_list_scroll_div {
    height: calc(100dvh - 220px);
    overflow: auto;
}

.job_detail_scroll_div {
    height: calc(100dvh - 270px);
    overflow: auto;
}

.job_column:last-child {
    padding-bottom: 20px;
}

.btn-warning {
    background-color: rgb(251, 146, 60) !important;
    border-color: rgb(251, 146, 60) !important;
    color: white !important;
    ;
}

.btn-warning:hover {
    background-color: rgb(248, 135, 43) !important;
    border-color: rgb(248, 135, 43) !important;
}


.btn-primary {
    background-color: rgb(59 116 113) !important;
    border-color: rgb(59 116 113) !important;
}

.btn-primary:hover {
    background-color: rgba(59, 116, 113, 0.89) !important;
    border-color: rgba(59, 116, 113, 0.89) !important;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(59 116 113) !important;
}

.added__tag {
    border: 1px solid #ddd;
    font-size: 12px;
    border-radius: 5px;
    padding: 5px;
    border-radius: 5px;
}


.form-check-input:checked {
    background-color: #2AB5A8 !important;
    border-color: #2AB5A8 !important;
}

.form-check-input:focus {
    border-color: #2ab5a795;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(59, 246, 208, 0.25);
}

.drag_placeholder {
    /* border-style: dashed !important; */
    border: 1px dashed #2AB5A8 !important;

}


.cross__badge {
    height: 18px;
    width: 18px;
    font-size: 8px;
    display: grid;
    place-items: center;

}

.calendar__nav h6,
button {
    font-weight: 500 !important;
    font-size: 0.85rem !important;
}


.card__shadow-lg{
    box-shadow: 0px 0px 20.89px 0px rgba(0, 0, 0, 0.09) !important;
}
.card__shadow-sm{
    box-shadow: 0px 0px 17.67px 0px rgba(124, 124, 124, 0.16) !important;

}

.bg-warn {
background: rgba(255, 248, 214, 1);


}
.text-warn {
    color: rgba(130, 89, 0, 1);
}
.badge_sm{
    font-size: 0.7rem;
    font-weight: 400;

}
.app__card{
border-radius:20px !important;
}

.text-xs{
    font-size: 0.7rem;
}

.scroll__thin{
    scrollbar-width: thin;


}


.custom-modal-width {
    max-width: 60%;
}



/* .time_line{
    border-left: 1px solid #ccc;
} */
