@font-face {
    font-family: 'Satoshi-Regular';
    src: url('/assets/Satoshi_Complete/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2') format('woff2'),
        url('/assets/Satoshi_Complete/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff') format('woff'),
        url('/assets/Satoshi_Complete/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.ttf') format('truetype'),
        url('/assets/Satoshi_Complete/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff2') format('woff2'),
        url('/assets/Satoshi_Complete/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.woff') format('woff'),
        url('/assets/Satoshi_Complete/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Bold.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

.application-container {
    max-width: 500px;
    margin: 50px auto;
}

.form-header {
    margin-bottom: 30px;
}

.disclosure {
    font-size: 0.75rem;
    color: #6c757d;
}

.container {
    position: fixed;
    width: 100%;
    align-items: end;
}

.banner-image {
    width: 100%;
    height: auto;
}

.content {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo {
    max-width: 70px;
    margin: 0px;
}

.text {
    font-weight: bold;
}

.form-container {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.5);
    /* Red shadow border */
}

.search-bar {
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    border: none;
    box-shadow: none;
}

.search-bar input:focus {
    outline: none;
    box-shadow: none;
}

.search-bar .divider {
    height: 24px;
    width: 1px;
    background-color: #dee2e6;
}

.search-bar .icon {
    color: #6c757d;
    margin-right: .5rem;
    margin-left: .5rem;
}

.floating-apply-btn {
    position: fixed;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-container.discipline .dropdown-menu,
.dropdown-container.states .dropdown-menu {
    width: 100%;
    padding: 15px;
    max-height: 40vh;
    overflow: scroll;
}

.dropdown-toggle.discipline,
.dropdown-container.states .dropdown-menu {
    overflow: scroll;
}

.dropdown-menu {
    width: 100%;
    padding: 0.5em;
    max-height: 40vh;
    overflow: auto;
}

.checkLabel {
    margin-left: 0.5em;
}

.dropdownSpan {
    display: inline-block;
    width: 90%;
    overflow-x: auto;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--main-hm-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


input::placeholder {
    color: #D3D3D3 !important;
}

input::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #D3D3D3 !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.announcement-banner {
    background-color: #6a1b9a;
    /* Purple background similar to the image */
    padding: 10px 20px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Ensure it stays above other elements */
}


.jobTitle {
    font-size: 20px;
    margin-top: 6px;
    font-weight: bold
}

#redirectOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0072fecf;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

#loader-2 span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: white;
    margin: 35px 5px;
}

#loader-2 span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
}

#loader-2 span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

#loader-2 span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {

    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.loader1 {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

#topMainNavbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 0.5em;
}

.navbar {
    border-bottom: 2px solid lightgrey !important;
    padding-top: 1em;
    padding-bottom: 0;
    background: white;
}

.navbar-content {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    width: 100%;
    background: white;
}

.navbar .form-control:focus {
    border-color: none;
    box-shadow: none;
}

.navbarLogo {
    max-width: 100%;
    max-height: 50px;
    display: block;
    height: auto;
    margin: 0px auto;
}

.navbar-brand {
    padding: 0 2em;
    width: 25%;
}

.navbar-search {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navbar .btn:hover {
    border: none;
}

.navbar-menu {
    width: 25%;
    padding: 0 5%;
}

.dfaic {
    display: flex;
    align-items: center;
}

.search-container {
    box-shadow: 0 0 5px 1px lightgrey;
    color: grey;
    border-radius: 0.4em;
    padding: 0 0.5em;
    width: 70%;
    background-color: white;
}

.sort-by-container {
    /* margin-left: auto; */
}



.customScroll {
    overflow-y: auto;
}

.customScroll::-webkit-scrollbar {
    width: 6px;
}

.customScroll::-webkit-scrollbar-track {
    background: white;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.customScroll::-webkit-scrollbar-thumb {
    background: lightgray;
    border-radius: 10px;
}

.customScroll::-webkit-scrollbar-thumb:hover {
    background: gray;
}

.pac-container {
    z-index: 10000 !important;
}

#desktopJobsOuterContainer {
    width: 100%;
    border: none;
    /* border-right: 1px solid #ddd; */

    /* temp for single pane jobs list */
    /* border-left: 1px solid #ddd; */
    height: calc(100vh - 100px);
}


@media (min-width: 991px) {
    #desktopJobsOuterContainer {
        width: 80% !important;
    }
}


#desktopFiltersContainer {
    width: 20%;
    padding-right: 1em;
}

#desktopJobDetailsContainer {
    border: none;
    border-right: 1px solid #ddd;
    position: inherit;
    top: 100px;
    height: calc(100vh - 60px);
    overflow: auto;
}

#chatApplyContainer {
    height: calc(100vh - 60px);
    overflow: auto;
    position: sticky;
    top: 100px;
}

.main-container {
    /* border-left: 1px solid #ddd; */
    /* border-right: 1px solid #ddd; */
    display: flex;
    margin-top: 120px;
    /* Height of the navbar */
    justify-content: center;
}

.main-container-mobile {
    margin-top: 120px;
    /* Height of the navbar */

}

.navbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.6em;
}

.card-body {
    padding: 1.5rem 1rem;
}

.job-banner img {
    width: 100%;
    height: auto;
}

.chat-container {
    border-radius: 8px;
    max-width: 100%;
    padding: 1em;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: calc(50vh - 100px);
    justify-self: center;
}

.header-img {
    position: absolute;
    transform: translate(0, -50%);
    left: 3%;
    width: 20%;
}

.header-img img {
    width: 100%;
    height: auto;
    border: 1px solid lightgrey;
}

.header-container {
    /* display: flex; */
}

.header-text {
    margin-left: calc(20% + 30px);
    padding: 0.5rem;
    font-size: 0.9em;
}

.job-details-container,
.job-full-details-container {
    padding: 1rem;
}

.header-title {
    font-size: 1.4em;
    font-weight: bold;
}

.card-title {
    font-weight: bold;
    font-size: 1.2em;
}

.job-card-logo-container {
    width: 16.6667%;
}

.card-title-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 0.5rem;
}

.job-container {
    display: block;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
    z-index: 2;
}
.v2-job-container {
    display: block;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
    z-index: 2;
}

.apply-button-container {
    display: flex;
    width: 100%;
    align-items: space-between;
}
#job-form-container {
    margin-top: 1.5em;
}

.job-info-tag {
    background-color: #e7e7e7;
    color: #343434;
    border-radius: 6px;
    font-size: 0.8em;
    padding: 4px 8px;
    margin: 0 0.5em;
}

.backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 25px;
}

.card-container {
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    max-width: 1440px;
    margin: 0 auto;
    cursor: pointer;
}
.chat-user-logo {
    height: 75px;
    width: 75px;
    align-self: center;
    justify-self: center;
    border-radius: 100%;
}

#v2BannerContainer {
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0.5em 0;
}
.v2NavbarLogo {
    max-width: 100%;
    max-height: 50px;
    display: block;
    height: auto;
}
.job-container {
    position: relative;
    z-index: 2;
}
.v2-job-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    justify-self: center;
}

#v2BackgroundImgContainer {
    position: relative;
    color: white !important;
    padding: 2em 5%;
    width: 100%;
    height: auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: 1;
    justify-self: center;
    align-self: start;
}
#v2BackgroundImgContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.apply-form-container {
    color: #333;
}
.v2-job-desc {
    color: white;
}
.section {
    margin-bottom: 3em;
}
.sectionHeadline, .sectionIcon {
    font-size: 2em;
    font-weight: bold;
}
.sectionIcon {
    margin-right: 0.5em;
}
.iframeContainer {
    max-width: 100%; 
    overflow: hidden;
    aspect-ratio: 16/9;
}
.iframeContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.actionBtn {
    font-size: 1em;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-brand {
        width: auto;
    }

    .navbar-menu {
        margin-left: auto;
    }

    .header-text {
        margin-left: calc(20% + 15px);
        padding: 0.5rem;
    }

    .main-container {
        font-size: 0.9em;
    }
}

@media (min-width: 768px) {
    .desktopContainer {
        display: block !important;
    }

    .mobileContainer {
        display: none !important;
    }

    .job-container {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        padding: 1em;
    }
    .v2-job-container {
        display: flex;
        align-items: flex-start;
    }
    .apply-form-container {
        width: 40%;
        position: sticky;
        top: 6.5em;
        max-height: 90vh;
        overflow-y: auto;
    }
    .job-desc-container {
        width: 60%;
    }
    .v2-job-desc-container {
        width: 60%;
    }
    .lp-details-container  {
        padding-right: 3em;
    }
}

@media (max-width: 767.98px) {
    .desktopContainer {
        display: none !important;
    }

    .mobileContainer {
        display: block !important;
    }

    .navbar {
        padding-top: 0;
        border-bottom: none !important;
    }

    .navbar-brand {
        margin: 0;
        padding: 0;
    }

    .navbarLogo {
        margin: 0 0 0 1em;
        max-height: 40px;
    }

    .navbar-search {
        width: 100%;
        margin-top: 0.4em;
    }

    .search-container {
        width: 90%;
    }

    .user-location-container {
        width: 60%;
        display: flex;
        align-items: center;
    }

    .sort-by-container {
        width: 40%;
        color: grey;
        display: flex;
        justify-content: flex-end;
    }
    .card-container {
        padding: 0 3%;
    }

    .card-body {
        padding: 1rem 0.75rem;
    }

    .job-card-logo-container {
        width: 10%;
    }
    .v2-job-desc-container {
        padding: 5%;
    }
    #v2BackgroundImgContainer { 
        background-size: cover;
    }
    #v2BannerContainer {
        padding: 0 5%;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        width: 75%;
    }

    .navbar-menu {
        width: 25%;
    }

    .job-card-logo-container {
        width: 20%;
    }
}

@media (min-width: 1400px) {
    .main-container {
        /* margin: 0 5vw; */
    }

    .job-card-logo-container {
        width: 10%;
    }
}
@media (max-width: 1200px) {
    #v2BannerContainer {
        padding: 0 5%;
    }
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.full-viewport {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#desktopJobsOuterContainer {
    height: 100%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

#careerwebContainer {
    display: flex !important;
    flex-direction: row;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#jobOuterContainer,
#details-container {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

#chat-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-left: 1px solid #f2f5f8;
}

chat-widget {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

#chat-input {
    margin-bottom: 20px !important;
}

#chat-messages{
    padding-bottom: 2px !important;
}


/* custom forms */
.required:after,input[class="required"]::after {
    content:" *";
    color: red;
}

.input-error,.submit-error {
    box-shadow: 0 0 12px #ff000078 !important;
}