
* {
    scrollbar-width: thin;
    scrollbar-color: #b8b7b7 #ffffff;
}

    *::-webkit-scrollbar {
        width: 20px;
    }

    *::-webkit-scrollbar-track {
        background: #ffffff;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #b8b7b7;
        border-radius: 13px;
        border: 6px none #ffffff;
    }

.bg-recruiter-signup {
    background-image: url(./public/bg-signup.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    object-fit: cover;
}

.add-application-pool input[type="checkbox"]:checked {
    background-color: #bfddff;
    border-color: #2064DB;
}

    .add-application-pool input[type="checkbox"]:checked::after {
        content: '';
        border: solid #2064DB;
        border-width: 0 2px 2px 0;
    }

.purple-checkbox input[type="checkbox"]:checked {
    background-color: #5E56FF;
    border-color: #5E56FF;
}

    .purple-checkbox input[type="checkbox"]:checked::after {
        content: '';
        border: solid #fff;
        border-width: 0 2px 2px 0;
    }

.transition-slide {
    transition: all 0.3s ease-in-out;
}

.card {
    margin-bottom: 1.25rem;
    border-radius: .375rem;
    border-width: 0px;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-shadow-color: #e2e8f0;
    /* --tw-shadow: var(--tw-shadow-colored); */
}


input[type="checkbox"] {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1.5px solid #D0D5DD;
    border-radius: 6px;
    background-color: white;
    position: relative;
    margin-right: 8px;
    cursor: pointer;
    display: block;
}

.custom-checkbox input[type="checkbox"]:checked {
    background-color: #bfddff;
    border-color: #2064DB;
}

    .custom-checkbox input[type="checkbox"]:checked::after {
        content: '';
        border: solid #2064DB;
        border-width: 0 2px 2px 0;
    }

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.animate-ping {
    -webkit-animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}


[tooltip] {
    position: relative;
}

    [tooltip]::before,
    [tooltip]::after {
        text-transform: none;
        font-size: .9em;
        line-height: 1;
        user-select: none;
        pointer-events: none;
        position: absolute;
        display: none;
        opacity: 0;
    }

    [tooltip]::before {
        content: '';
        border: 5px solid transparent;
        z-index: 1001;
    }

    [tooltip]::after {
        content: attr(tooltip);
        font-family: Helvetica, sans-serif;
        text-align: center;
        min-width: 3em;
        max-width: 21em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 1ch 1.5ch;
        border-radius: 10px;
        box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
        background: #354860;
        color: #fff;
        z-index: 1000;
    }

    [tooltip]:hover::before,
    [tooltip]:hover::after {
        display: block;
    }

[tooltip='']::before,
[tooltip='']::after {
    display: none !important;
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #354860;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
}

[tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #354860;
}

[tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
    left: 50%;
    transform: translate(-50%, .5em);
}

[tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #354860;
    left: calc(0em - 5px);
    transform: translate(-.5em, -50%);
}

[tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -50%);
}

[tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #354860;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
}

[tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
}

@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
}

input[type="radio"]:checked + label span {
    background-color: #3490DC;
    box-shadow: 0px 0px 0px 2px #D4E8FF inset;
    border: 4px solid #D4E8FF;
    outline: 1px solid #298DFE;
    outline-offset: 0px;
}


.slick-slider .slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #2064DB;
    outline: none;
    background: #2064DB;
}


.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #298dfe;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav-link.active::before {
    transform: scaleX(1);
}

.profile-pic-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pic-holder {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

    .pic-holder .pic {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }

    .pic-holder .upload-file-block,
    .pic-holder .upload-loader {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(90, 92, 105, 0.7);
        color: #f8f9fc;
        font-size: 12px;
        font-weight: 600;
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }

    .pic-holder .upload-file-block {
        cursor: pointer;
    }

.uploadProfileInput {
    width: 0px;
    height: 0px;
    position: absolute;
}

    .pic-holder:hover .upload-file-block,
    .uploadProfileInput:focus ~ .upload-file-block {
        opacity: 1;
    }

.pic-holder.uploadInProgress .upload-file-block {
    display: none;
}

.pic-holder.uploadInProgress .upload-loader {
    opacity: 1;
}

/* Snackbar css */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    transform: translateX(-50%);
}

    .snackbar.show {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

#line-dash::before {
    content: "";
    border-top: 1px dashed #1877f2;
    opacity: 0.5;
    width: 90px;
    height: 10px;
    margin-top: 17px;
    position: absolute;
    margin-left: -43px;
}

.indicator-box {
    width: 89px;
}

.list-bullets {
    list-style: disc !important;
    padding-left: 24px;
}

.user-card:before {
    content: '';
    position: absolute;
    height: 300%;
    width: 173px;
    background: #6e73a596;
    top: -60px;
    left: -125px;
    z-index: 0;
    transform: rotate(17deg);
}

.custom-shadow {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.text-muted {
    color: #364c62;
}

.slick-slider .slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #2064DB;
    outline: none;
    background: #2064DB;
}

.slick-slide {
    margin: 0 10px;
}

.slick-slider {
    width: 100% !important;
    max-width: 100% !important;
}

.footer {    
    background-size: cover;
    background-repeat: no-repeat;
}

    .footer h4:before {
        background: #fff;
        border: 0 none;
        content: "";
        height: 2px;
        left: 0;
        margin: 8px 0 10px;
        position: absolute;
        bottom: -15px;
        width: 35px;
    }

    .footer ul li a {
        transition: all 0.3s ease-in-out;
    }

        .footer ul li a:hover,
        .footer ul li a:focus {
            opacity: 1;
            letter-spacing: 0.6px;
            transition: all 0.3s ease-in-out;
        }

.subscribe-content-box {
    position: relative;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.10);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.subscribe-title {
    position: relative;
    display: block;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes moveDots {

    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5px, -5px);
    }
}

@layer utilities {
    .animate-float {
        animation: float 6s ease-in-out infinite;
    }

    .animate-dots {
        animation: moveDots 8s ease-in-out infinite;
    }
}

.login-divider:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #d8d8d8;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.career-detail-header{
/*margin: 10px;*/
position: relative;
/*margin-bottom: 1.5rem;*/
display: flex;
flex-direction: column;
border-radius: 0.5rem;
border-width: 0px;
background-color: rgba(255, 255, 255, 1);
font-size: 0.813rem;
color: rgb(17, 24, 39);
box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.05);
}

.card-shadow-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    border-width: 0px;
/*    font-size: 0.813rem;*/
    color: rgb(0, 0, 0); 
    box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.05);
}

/* Full screen loader wrapper */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
/*
.loader {
    width: 50px;
    aspect-ratio: 1;
    --_c: no-repeat radial-gradient(farthest-side,#2064db 92%,#0000);
    background: var(--_c) top, var(--_c) left, var(--_c) right, var(--_c) bottom;
    background-size: 12px 12px;
    animation: l7 1s infinite;
}

@keyframes l7 {
    to {
        transform: rotate(.5turn);
    }
}*/

/* HTML: <div class="loader"></div> */
.loader {
    width: fit-content;
    font-size: 40px;
    font-family: system-ui,sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #0000;
    -webkit-text-stroke: 1px #2064db;
    background: conic-gradient(#2064db 0 0) 0/0% 100% no-repeat text;
    animation: l1 1s linear infinite;
}

    .loader:before {
        content: "DHRP";
    }

@keyframes l1 {
    to {
        background-size: 120% 100%
    }
}
.has-indicator::before {
    z-index: 1;
    position: absolute;
    content: "";
    width: 21px;
    height: 20px;
    background-color: #ffffff;
    /* border-radius: 8px; */
    top: -10px;
    right: -0.2rem;
    transform: translateX(-50%) rotate(45deg);
    transition: 0s;
    margin-left: -2px;
    box-shadow: -13px -8px 24px -7px rgba(46, 45, 116, 0.09);
    border: 1px solid #7474740f;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

@media (max-width: 640px) {
    .indicator-box span {
        display: none;
    }
    .indicator-box span.opacity-100 {
        display: block !important;
    }
    .indicator-box {
        width: 20px !important;
    }
}

/* sirf active step (opacity-100) ka text show hoga */

/*.load {
    position: relative;
    width: 100px;
    height: 100px;
}

    .load hr {
        border: 0;
        margin: 0;
        width: 20%;
        height: 20%;
        position: absolute;
        border-radius: 50%;
        animation: spin 2s ease infinite;
    }

    .load :first-child {
        background: #19A68C;
        animation-delay: -1.5s;
    }

    .load :nth-child(2) {
        background: #F63D3A;
        animation-delay: -1s;
    }

    .load :nth-child(3) {
        background: #FDA543;
        animation-delay: -0.5s;
    }

    .load :last-child {
        background: #193B48;
    }

@keyframes spin {
    0%, 100% {
        transform: translate(0);
    }

    25% {
        transform: translate(160%);
    }

    50% {
        transform: translate(160%, 160%);
    }

    75% {
        transform: translate(0, 160%);
    }
}
*/