* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    font-size: 13px;
}

.login_main .container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    overflow: hidden;
    max-width: 100%;
}

.color-blue {
    color: #2B3990;
}

.navbar-nav li:last-child {
    display: none;
}

.bottom-table-main tbody tr:hover {
    background: #e7e7e7;
    cursor: pointer;
}

.login_main .container:before {
    content: '';
    position: absolute;
    width: 2000px;
    height: 2000px;
    border-radius: 50%;
    background: linear-gradient(to right, #40378e, #40378e, #40378e, #df2b7d);
    top: -10%;
    right: 48%;
    transform: translateY(-50%);
    z-index: 6;
    transition: 1.8s ease-in-out;
}

.container.sign-up-mode:before {
    background-image: linear-gradient(to left, #40378e, #40378e, #40378e, #df2b7d);
}

.login_main .forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.login_main .signin-signup {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 50%;
    display: grid;
    grid-template-columns: 1fr;
    z-index: 5;
    transition: 1s 0.7s ease-in-out;
}

.login_main form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 5rem;
    overflow: hidden;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    transition: 0.2s 0.7s ease-in-out;
}

.login_main form.sign-in-form {
    z-index: 2;
}

.login_main form.sign-up-form {
    z-index: 1;
    opacity: 0;
}

.login_main .title {
    font-size: 1.7rem;
    color: #444;
    margin-bottom: 10px;
}

.login_main .input-field,
.login_main .input-area {
    max-width: 380px;
    width: 100%;
    height: 55px;
    background-color: #f0f0f0;
    margin: 10px 0;
    border-radius: 55px;
    display: flex;
    grid-template-columns: 15% 85%;
    padding: 0 .4rem;
    column-gap: 15px;
}

.input-check {
    text-align: left;
    display: block;
    width: 380px;
    margin: 10px 0;
    padding: 0 0.4rem;
}

.input-check label,
.input-check input {
    display: inline-block;
    vertical-align: middle;
}

.input-check label {
    margin: 0px 0 0 1px;
    font-size: 15px;
}

.login_main .sign-up-form .input-field,
.login_main .sign-up-form .input-area {
    max-width: 100%;
}

.login_main .input-field i,
.login_main .input-area i {
    text-align: center;
    line-height: 55px;
    color: #acacac;
    font-size: 1.1rem;
    padding: 0 0 0 14px;
}

.login_main .input-field input,
.login_main .input-area textarea,
.login_main .input-field select {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    width: 100%;
}

.login_main .input-field input::placeholder,
.login_main .input-area textarea::placeholder {
    color: #999999;
    font-weight: 500;
}

.login_main .input-field.half-input {
    width: 48%;
    float: left;
}

.sign-up-form .row .half-input:first-child {
    margin-right: 2%;
}

.sign-up-form .row .half-input:last-child {
    margin-left: 2%;
}

.login_main .input-area textarea {
    padding: 18px 18px 18px 0;
}

.login_main .input-area {
    height: 90px;
    border-radius: 0;
}

.login_main .btn {
    width: 150px;
    height: 49px;
    border: none;
    outline: none;
    border-radius: 49px;
    cursor: pointer;
    background-color: #2B3990;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    letter-spacing: 0.05em;
    transition: .5s;
}

.login_main .btn:hover {
    background-color: #EE2A7B;
}

.btn:hover {
    color: #fff;
    background-color: #EE2A7B;
    border-color: #EE2A7B;
}

.login_main .social-text {
    padding: .7rem 0;
    font-size: 1rem;
}

.login_main .social-media {
    display: flex;
    justify-content: center;
}

.login_main .social-icon {
    height: 46px;
    width: 46px;
    border: 1px solid #333;
    margin: 0 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    border-radius: 50%;
    transition: 0.3s;
}

.login_main .social-icon:hover {
    color: #4481eb;
    border-color: #4481eb;
}

.login_main .panels-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.forgot-link {
    text-decoration: none;
    color: #666;
    margin-top: 10px;
    background: transparent;
    border: 0px;
}

.forgot-link:hover {
    color: #2B3990;
    cursor: pointer;
    text-decoration: underline;
}

table tr td {
    line-height: 33px;
}

#forgot-password,
.login_main .forgot-mode form,
#otp-password,
.forgot-mode.go-to-otp-mode #forgot-password,
#new-password,
.go-to-otp-mode.new-password-mode #otp-password,
#tenant-password {
    display: none;
}

.forgot-mode #forgot-password,
.go-to-otp-mode #otp-password,
.go-to-otp-mode.new-password-mode #new-password {
    display: flex;
    text-align: center;
}

#forgot-password,
.login_main .forgot-mode form,
#otp-password,
.forgot-mode.go-tenant-mode #forgot-password,
#new-password,
.go-tenant-mode.new-password-mode #otp-password {
    display: none;
}

.forgot-mode #forgot-password,
.go-tenant-mode #tenant-password,
.go-tenant-mode.new-password-mode #new-password {
    display: flex;
    text-align: center;
}

.login_main .panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    z-index: 7;
}

.login_main .left-panel {
    pointer-events: all;
    padding: 3rem 17% 2rem 12%;
}

.login_main .right-panel {
    pointer-events: none;
    padding: 3rem 12% 2rem 17%;
}

.login_main .panel .content {
    color: #fff;
    transition: .9s .6s ease-in-out;
}

.login_main .panel h3 {
    font-weight: 600;
    line-height: 1;
    font-size: 1.5rem;
}

.login_main .panel p {
    font-size: 0.95rem;
    padding: 0.7rem 0;
    line-height: 23px;
}

.login_main .btn.transparent {
    margin: 0;
    background: none;
    border: 2px solid #fff;
    width: 203px;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
    line-height: 27px;
    text-decoration: none;
}

.back_arrow svg {
    fill: #2B3990;
}

.back_arrow {
    margin: 3px 0 0;
    height: 23px;
}

.back_arrow:hover svg {
    fill: #EE2A7B;
}

.login_main .image {
    width: 100%;
    transition: 1.1s .4s ease-in-out;
}

.login_main .right-panel .content,
.right-panel .image {
    transform: translateX(800px);
}

/* ANIMATION */

.login_main .container.sign-up-mode:before {
    transform: translate(100%, -50%);
    right: 52%;
}

.container.sign-up-mode .left-panel .image,
.container.sign-up-mode .left-panel .content {
    transform: translateX(-800px);
}

.container.sign-up-mode .right-panel .content,
.container.sign-up-mode .right-panel .image {
    transform: translateX(0px);
}

.container.sign-up-mode .left-panel {
    pointer-events: none;
}

.container.sign-up-mode .right-panel {
    pointer-events: all;
}

.container.sign-up-mode .signin-signup {
    left: 25%;
}

.container.sign-up-mode form.sign-in-form {
    z-index: 1;
    opacity: 0;
}

.container.sign-up-mode form.sign-up-form {
    z-index: 2;
    opacity: 1;
}

@media (max-width: 870px) {
    .login_main .container {
        min-height: 800px;
        height: 100vh;
    }

    .login_main .container:before {
        width: 1500px;
        height: 1500px;
        left: 30%;
        bottom: 68%;
        transform: translateX(-50%);
        right: initial;
        top: initial;
        transition: 2s ease-in-out;
    }

    .signin-signup {
        width: 100%;
        left: 50%;
        top: 95%;
        transform: translate(-50%, -100%);
        transition: 1s 0.8s ease-in-out;
    }

    .login_main .panels-container {
        z-index: 10;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 2fr 1fr;
    }

    .login_main .panel {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 2.5rem 8%;
    }

    .login_main .panel .content {
        padding-right: 15%;
        transition: 0.9s 0.8s ease-in-out;
    }

    .login_main .panel p {
        font-size: 0.7rem;
        padding: 0.5rem 0;
    }

    .login_main .btn.transparent {
        width: 110px;
        height: 35px;
        font-size: 0.7rem;
    }

    .login_main .panel h3 {
        font-size: 1.2rem;
    }

    .login_main .image {
        width: 100px;
        transition: 0.9s 0.6s ease-in-out;
    }

    .login_main .left-panel {
        grid-row: 1 / 2;
    }

    .login_main .right-panel {
        grid-row: 3 / 4;
    }

    .login_main .right-panel .content,
    .right-panel .image {
        transform: translateY(300px);
    }

    .container.sign-up-mode:before {
        transform: translate(-50%, 100%);
        bottom: 32%;
        right: initial;
    }

    .container.sign-up-mode .left-panel .image,
    .container.sign-up-mode .left-panel .content {
        transform: translateY(-300px);
    }

    .container.sign-up-mode .signin-signup {
        top: 5%;
        transform: translate(-50%, 0);
        left: 50%;
    }

}

@media (max-width: 570px) {
    .login_main form {
        padding: 0 1.5rem;
    }

    .login_main .image {
        display: none;
    }

    .login_main .panel .content {
        padding: 0.5rem 1rem;
    }

    .login_main .container:before {
        bottom: 72%;
        left: 50%;
    }

    .login_main .container.sign-up-mode:before {
        bottom: 28%;
        left: 50%;
    }
}

.menu-svg {
    max-width: 21px;
}

.navbar-light .navbar-toggler {
    color: #fff;
    border: 0px;
    padding: 0px;
    position: absolute;
    top: -48px;
    left: 20px;
}

.navbar-light .navbar-toggler-icon {
    background: url(./images/hamburger.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 22px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar.navbar-expand-sm {
    background: #fff;
    align-items: flex-start;
    justify-content: space-between;
}

.custom-header {
    background: #fff;
    padding-top: 10px !important;
    padding-bottom: 12px !important;
}

.input-group .form-control,
.input-group {
    background: #fff;
    border-radius: 5px !important;
    color: #2B3990;
    border-color: #aaa;
    font-size: 13px;
}

.search-main {
    width: 250px;
}

.project-top .search-main {
    width: 200px;
}

nav.navbar {
    padding: 0;
}



button.email-btn {
    padding: 6px 11px 6px;
}

.sort img {
    margin: 1px 0;
    width: 10px;
}

body button.custom-close,
#viewmain .close,
#viewIdealCandidate .close,
#viewWhyCandidateIdeal .close,
#viewSemiCustom .close,
#viewSemiCustomQuick .close,
#viewEmail .close,
#viewGenerateSms .close,
#viewOptoutSmsPanel .close,
#viewOptoutSmsPanel .backsms,
#viewGenerateEmail .close,
#viewReplyEmail .close,
#ViewJdInterpretation .close,
#feedbackPanel .close,
#viewSearchByUrl .close,
#viewSearchByName .close,
#ViewAdvanceSearch .close {
    font-size: 20px;
    font-weight: 900;
    padding: 2px 10px 1px;
    color: #000;
}

.min-75 {
    min-width: 75px;
}

.form-group label {
    color: #919191;
}

.search-main .form-control {
    height: 38px;
}

.search-main .form-control,
.search-main .input-group .btn {
    padding: 4px 10px;
}

select.form-control {
    background: url(../images/black_arrow.svg) no-repeat;
    background-position: calc(100% - 15px);
    50%;
    background-size: 12px;
}

.custom-header h2 {
    font-size: 24px;
    color: #2B3990;
    font-weight: 500;
    margin: 3px 0 0;
}

.custom-header input::placeholder {
    color: #aaa !important;
}

.custom-header input:-ms-input-placeholder {
    color: #aaa !important;
}

.custom-header input::-ms-input-placeholder {
    color: #aaa !important;
}

.input-group .btn {
    border: 0px;
}

.top-right-sec .input-group .btn {
    height: 34px;
    padding: 0 10px;
}

.top-right-sec .input-group .btn img {
    margin: -3px 0 0;
}

.input-group-append {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
}

.profile-name {
    color: #000;
    background: #fff2cc;
    text-decoration: none;
    height: 35px;
    width: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    border-radius: 50%;
    border: 2px solid #ffe499;
}

.helpNav {
    text-decoration: none;
    height: 35px;
    width: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    font-size: 15px;
    border-radius: 50%;
    background: #c4e1f5;
    border: 1px solid #0d6efd;
    margin-left: 10px;
}

.profile-name:hover {
    color: #000;
}

.profile-name:after {
    display: none;
}

.right-head {
    text-align: right;
}

.right-head>a,
.right-head>div {
    margin: 0 0 0 20px;
}

.custom-header .row {
    align-items: center;
}

.nav-item span {
    font-weight: normal;
    color: #585858;
    display: inline-block;
    vertical-align: middle;
}

.nav-item span img {
    margin: -4px 15px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.blue-btn,
.filter,
.view {
    background: #3d85c6;
    color: #fff;
    padding: 4px 20px 4px 15px;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #3d85c6;
    border-radius: 5px;
}

.blue-btn:hover {
    color: #3d85c6;
    background: #fff;
    border: 1px solid #3d85c6;
}

.filter:hover,
.view:hover {
    color: #fff;
    background: #3d85c6;
}

.filter,
.view {
    padding: 4px 25px;
    background: #fff;
    color: #3d85c6;
    border: 1px solid #dee2e6;
}

#filter:hover svg,
#filter:hover svg *,
#view:hover svg,
#view:hover svg * {
    fill: #2B3990 !important;
}

.login_main .left-panel h1,
.container.sign-up-mode .right-panel h1 {
    margin: 0 0 50px;
}

.custom-section {
    margin: 0;
    height: calc(100vh - 250px);
}

.home-custom-section {
    margin: 0;
    height: calc(100vh - 272px);
}

.top-row {
    border-bottom: 1px solid #e7e7e7;
    margin: 0 0 20px;
    padding: 20px;
    border-top: 1px solid #e7e7e7;
    background: rgba(243, 243, 243, 0.5);
}

.bg-gray {
    background: rgba(243, 243, 243, 0.5);
}

table tr td img {
    border-radius: 3px;
}

.white-box {
    border: 1px solid #888;
}

.white-box a {
    padding: 0 0 0 28px;
    position: relative;
    text-decoration: none;
}

.white-box a:before {
    content: "";
    background: url(../images/hand.svg) no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: -6px;
}

.search-main input {
    font-size: 12px !important;
}

.project-top .btn.btn-primary {
    max-width: 94px;
}

.bottom-table {
    margin: 20px;
}

.bottom-table table th:last-child {
    border-right: 0px;
}

.bottom-table table th {
    background: transparent;
    /* border: none;
    border-bottom: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7; */
}

.circle-num {
    background: #f9f9f9;
}

.circle-num {
    background: #f9f9f9;
    width: 60px;
    height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    line-height: 30px;
    margin: 0 auto;
}

.form-check-label img {
    max-width: 35px;
}

.bottom-table .bottom-table-main {
    width: 100%;
    /* transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;  */
    margin: 0px;
    display: inline-block;
}

.table>thead {
    width: 100%;
}

.dots-btn {
    background: #fff;
    border: 1px solid #dee2e6;
    height: 34px;
    display: inline-block;
    width: 50px;
    text-align: center;
    border-radius: 5px;
    line-height: 28px;
}

.top-right-sec .input-group .form-control {
    border: 1px solid #dee2e6;
    border-radius: 5px !important;
    padding: 0 15px;
}

.table .form-check-input[type=checkbox],
.table .form-check-label {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.table .form-check-input[type=checkbox] {
    margin: 0 10px 0 0;
}

.table .form-check {
    padding-left: 10px;
}

.pagination-main {
    padding: 0 20px 20px;
}

.page-item.active .page-link {
    background-color: #EE2A7B;
    border-color: #EE2A7B;
}

.notification {
    position: relative;
}

.notification #staticBackdrop {
    position: absolute;
    width: 360px;
    right: 0;
    left: auto;
    height: auto;
    top: 10px;
}

.notofication_row img {
    border-radius: 50%;
    margin: 0 10px 0;
    display: inline-block;
    vertical-align: top;
    width: 40px;
}

.notofication_row {
    align-items: center;
}

.notofication_row span {
    line-height: normal;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.create .modal.show .modal-dialog,
.create .modal.fade .modal-dialog {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    margin: 0;
    position: fixed;
    width: 500px;
    max-width: calc(100% - 30px);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #2B3990;
}

.notification button img {
    width: 25px;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.line-or {
    position: relative;
}

.line-or:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    height: calc(50%);
    width: 1px;
    background: #aaa;
}

.line-or:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    height: calc(50%);
    width: 1px;
    background: #aaa;
}

.full-line.line-or {
    position: static;
}

.full-line.line-or:before {
    display: none;
}

.full-line.line-or:after {
    height: calc(100% + 30px);
    top: -15px;
    transform: none;
    left: auto;
    right: 10px;
}

.popup-td {
    transform: none !important;
    right: 500px;
    inset: 90px 0 auto auto !important;
    height: calc(100vh - 90px);
    border: 1px solid #aaa !important;
    border-radius: 0px;
}

.table {
    border-collapse: collapse;
    border: 1px solid transparent;
}

.popup-header {
    padding: 20px;
}

.show_sidepopup .bottom-table-main td:nth-child(5) {
    max-width: 210px;
    min-width: 210px;
}

.bottom-table-main td:nth-child(5) {
    max-width: 120px;
    min-width: 120px;
}

.software .bottom-table-main td:nth-child(5) {
    max-width: 100%;
    min-width: 100%;
}

.show_sidepopup .bottom-table .bottom-table-main {
    width: 100%;
    /* transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;  */
    /* margin: 0 -2px;  */
    margin: 0;
    display: inline-block;
    vertical-align: top;
    padding: 0;
}

.sidepopup_content {
    width: 0px;
    overflow: hidden;
    /* transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;   */
    height: 0px;
    border: 1px solid #e3e3e3;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
}

.show_sidepopup .sidepopup_content {
    display: inline-block;
    width: 50%;
    margin: 0 -2px;
    background: #fff;
    vertical-align: top;
    transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    height: 100%;
}

.btn-outline-danger svg {
    display: inline-block;
    vertical-align: middle;
    margin: -2px 2px 0 0;
}

.side-popup-bottom {
    border-top: 1px solid #aaa;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

.w85 {
    width: 85px;
}

.keyword {
    width: 180px;
}

button.btn,
select.form-select {
    font-size: 14px;
}

.project-top {
    width: 360px;
}

button.close {
    border: 0;
    background: transparent;
}

button.close span {
    font-size: 20px;
}

#viewmain .close.close-outline,
#viewIdealCandidate .close.close-outline,
#viewWhyCandidateIdeal .close.close-outline,
#viewSemiCustom .close.close-outline,
#viewSemiCustomQuick .close.close-outline,
#viewEmail .close.close-outline,
#viewGenerateEmail .close.close-outline,
#viewReplyEmail .close.close-outline,
#viewGenerateSms .close.close-outline,
#viewOptoutSmsPanel .close.close-outline,
#viewOptoutSmsPanel .backsms,
#ViewJdInterpretation .close.close-outline,
#feedbackPanel .close.close-outline,
#viewSearchByName .close.close-outline,
#viewSearchByUrl .close.close-outline,
#ViewAdvanceSearch .close.close-outline
{
    border: 1px solid #2B3990;
}

#viewmain .close.close-outline:hover,
#viewIdealCandidate .close.close-outline:hover,
#viewWhyCandidateIdeal .close.close-outline:hover,
#viewSemiCustom .close.close-outline:hover,
#viewSemiCustomQuick .close.close-outline:hover,
#viewEmail .close.close-outline:hover,
#viewGenerateEmail .close.close-outline:hover,
#viewReplyEmail .close.close-outline:hover,
#viewGenerateSms .close.close-outline:hover,
#viewOptoutSmsPanel .close.close-outline:hover,
#viewOptoutSmsPanel .backsms:hover,
#ViewJdInterpretation .close.close-outline:hover,
#feedbackPanel .close.close-outline:hover,
#viewSearchByName .close.close-outline:hover,
#viewSearchByUrl .close.close-outline:hover,
#ViewAdvanceSearch .close.close-outline:hover {
    border: 1px solid #EE2A7B;
}

.modal-header {
    background: #f9f9f9;
}

.top-row .top-right .project-top {
    float: right;
}

.top-row .top-right a {
    float: right;
    clear: both;
}

.login_main .btn[value="Login"] {
    text-align: center;
}

.btn-primary,
.btn-info {
    --bs-btn-bg: #2B3990;
    --bs-btn-border-color: #2B3990;
    --bs-btn-disabled-bg: #2B3990;
    --bs-btn-disabled-border-color: #2B3990;
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: #2B3990;
    --bs-btn-hover-border-color: #2B3990;
    --bs-btn-active-bg: #2B3990;
    --bs-btn-active-border-color: #2B3990;
}

.btn-outline-primary {
    --bs-btn-color: #2B3990;
    --bs-btn-border-color: #2B3990;
    --bs-btn-hover-bg: #2B3990;
    --bs-btn-hover-border-color: #2B3990;
    --bs-btn-active-bg: #2B3990;
    --bs-btn-active-border-color: #2B3990;
    --bs-btn-disabled-color: #2B3990;
    --bs-btn-disabled-border-color: #2B3990;
}

.search-main img {
    width: 16px;
    margin: 7px 0 0;
}

.login_main .btn.transparent:hover {
    background: #EE2A7B;
}

.btn.btn-primary.toggleButton,
.btn.btn-outline-danger.remove-btn,
.btn.btn-primary.whyIdeal {
    background: transparent;
    border: 0;
    padding-left: 5px;
    padding-right: 5px;
}

.sidepopup_content .btn:hover svg path {
    fill: #fff !important;
}

.edit+.btn.btn-outline-danger.remove-btn {
    margin: 0 !important;
}

.calc-165 {
    height: calc(100% - 165px);
}

.search-result table td:last-child {
    text-align: center;
}

.page-link {
    font-size: 14px;
}

.first-col {
    min-width: 94px;
}

.tags>div * {
    display: inline-block;
    vertical-align: middle;
}

table td,
.table-bordered>:not(caption)>*>* {
    height: 40px;
    /* border: 1px solid #e7e7e7; */
}

table td:first-child {
    border-left: 0px;
}

table tr:first-child td {
    border-top: 0px;
}

table td:last-child {
    border-right: 0px;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.steps li {
    text-align: center;
    display: inline-block;
    line-height: 40px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 50%;
    z-index: 1;
}

.steps:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #aaa;
}

#viewGenerateSms
{
    position: absolute;
    background: #fff;
    padding: 0px 0px 20px;
    min-width: 450px;
    z-index: 999;
    max-width: 45%;
    top: 0px;
    right: 0;
    display: none;
    border: 1px solid #e7e7e7;
    min-width: 493px;
}

#viewOptoutSmsPanel
{
    position: absolute;
    background: #fff;
    padding: 0px 0px 20px;
    min-width: 450px;
    z-index: 999;
    max-width: 45%;
    top: 0px;
    right: 0;
    display: none;
    border: 1px solid #e7e7e7;
    min-width: 493px;
}

.steps li.active {
    color: #fff;
    background: #2B3990;
}

#step-two,
#step_three {
    display: none;
}

.tool_data {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: none;
    width: 300px;
    border: 1px solid #aaa;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
    border-radius: 9px;
    z-index: 10;
}

.tooltip_main {
    position: relative;
    padding: 0 5px 5px;
    cursor: pointer;
}

.tooltip_main:hover .tool_data {
    display: inline-block;
}

.view_active,
.view_icps_active,
.view_ideal_candidate_active,
.view_expand_narrow_active,
.view_email_active,
.view_email_generate_active {
    /* overflow: hidden; */
}

#filtermain {
    position: absolute;
    background: #fff;
    padding: 0px 0px 20px;
    min-width: 450px;
    z-index: 999;
    max-width: calc(100% - 30px);
    top: 50px;
    display: none;
    border: 1px solid #e7e7e7;
}

#viewmain,
#viewIdealCandidate,
#viewWhyCandidateIdeal,
#viewSemiCustom,
#viewSemiCustomQuick,
#viewEmail,
#ViewJdInterpretation,
#feedbackPanel,
#viewSearchByName,
#viewSearchByUrl,
#viewGenerateEmail,
#viewReplyEmail
{
    position: fixed;
    background: #fff;
    padding: 0px 0px 20px;
    min-width: 450px;
    z-index: 999;
    max-width: 45%;
    top: 0px;
    right: 0;
    display: none;
    border: 1px solid #e7e7e7;
    min-width: 493px;
}

#ViewAdvanceSearch {
    position: absolute;
    background: #fff;
    padding: 0px 0px 20px;
    z-index: 999;
    max-width: 85%;
    top: 0px;
    right: 0;
    display: none;
    border: 1px solid #e7e7e7;
    min-width: 85%;
}

#viewmain .side-popup-bottom,
#viewIdealCandidate .side-popup-bottom,
#viewWhyCandidateIdeal .side-popup-bottom,
#viewSemiCustom .side-popup-bottom,
#viewSemiCustomQuick .side-popup-bottom,
#viewEmail .side-popup-bottom,
#viewGenerateEmail .side-popup-bottom,
#viewReplyEmail .side-popup-bottom,
#viewGenerateSms .side-popup-bottom,
#viewOptoutSmsPanel .side-popup-bottom,
#ViewJdInterpretation .side-popup-bottom,
#feedbackPanel .side-popup-bottom,
#ViewAdvanceSearch .side-popup-bottom {
    height: calc(100vh - 100px);
}

#filtermain .modal-header,
#viewmain .modal-header,
#viewIdealCandidate .modal-header,
#viewWhyCandidateIdeal .modal-header,
#viewSemiCustom .modal-header,
#viewSemiCustomQuick .modal-header,
#viewEmail .modal-header,
#viewGenerateEmail .modal-header,
#viewReplyEmail .modal-header,
#viewGenerateSms .modal-header,
#viewOptoutSmsPanel .modal-header,
#ViewJdInterpretation .modal-header,
#feedbackPanel .modal-header,
#ViewAdvanceSearch .modal-header {
    padding: 5px 20px;
}

#filtermain .modal-body,
#viewmain .modal-body,
#viewIdealCandidate .modal-body,
#viewWhyCandidateIdeal .modal-body,
#viewSemiCustom .modal-body,
#viewSemiCustomQuick .modal-body,
#viewEmail .modal-body,
#viewGenerateEmail .modal-body,
#viewReplyEmail .modal-body,
#viewGenerateSms .modal-body,
#viewOptoutSmsPanel .modal-body,
#ViewJdInterpretation .modal-body,
#feedbackPanel .modal-body,
#ViewAdvanceSearch .modal-body {
    padding: 20px 20px;
}

#filtermain .modal-footer,
#viewmain .modal-footer,
#viewIdealCandidate .modal-footer,
#viewWhyCandidateIdeal .modal-footer,
#viewSemiCustom .modal-footer,
#viewSemiCustomQuick .modal-footer,
#viewEmail .modal-footer,
#viewGenerateEmail .modal-footer,
#viewReplyEmail .modal-footer,
#viewGenerateSms .modal-footer,
#viewOptoutSmsPanel .modal-footer,
#ViewJdInterpretation .modal-footer,
#feedbackPanel .modal-footer,
#ViewAdvanceSearch .modal-footer {
    padding: 0 20px 10px;
}

@media (max-width: 990px) {
    .navbar-collapse.collapse {
        position: fixed;
        background: #fff;
        z-index: 9;
        top: 0;
        bottom: 0;
        left: -100%;
        padding: 20px;
        width: calc(100% - 60px);
        display: inline-block;
    }

    .navbar-collapse.collapse.show {
        left: 0;
    }
}

.side-popup-bottom button,
.expand_arrow .tags button,
.side-popup-bottom button:hover,
.expand_arrow .tags button:hover,
.side-popup-bottom button:focus,
.expand_arrow .tags button:focus

/* .side-popup-bottom button:active,.expand_arrow .tags button:active */
    {
    padding: 3px 7px;
    font-size: 13px;
    color: #fff !important;
    background: #919191 !important;
    border-color: #919191 !important;
}

#viewSemiCustom .side-popup-bottom button#find-perfect-match-inferred-data-btn,
#viewSemiCustom .side-popup-bottom button#find-perfect-match-inferred-data-btn:focus,
#viewSemiCustomQuick .side-popup-bottom button#find-perfect-match-inferred-data-btn,
#viewSemiCustomQuick .side-popup-bottom button#find-perfect-match-inferred-data-btn:focus,
#ViewJdInterpretation .side-popup-bottom button#find-perfect-match-initial-query,
#ViewJdInterpretation .side-popup-bottom button#find-perfect-match-initial-query:focus,
#ViewAdvanceSearch .side-popup-bottom button#btn-get:focus,
#ViewAdvanceSearch .side-popup-bottom button#btn-get
{
    color: #fff !important;
    background: #2b3990 !important;
    border-color: #2b3990 !important;
}

#viewSemiCustom .side-popup-bottom button#find-perfect-match-inferred-data-btn:hover,
#viewSemiCustomQuick .side-popup-bottom button#find-perfect-match-inferred-data-btn:hover,
#ViewJdInterpretation .side-popup-bottom button#find-perfect-match-initial-query:hover,
#ViewAdvanceSearch .side-popup-bottom button#btn-get:hover
{
    color: #fff !important;
    background: #EE2A7B !important;
    border-color: #EE2A7B !important;
}

#viewSemiCustom .side-popup-bottom .select2-selection__choice__remove,
#viewSemiCustomQuick .side-popup-bottom .select2-selection__choice__remove,
#ViewAdvanceSearch .side-popup-bottom .select2-selection__choice__remove
{
    background-color: transparent !important;
    border: none !important;
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
    color: #888 !important;
    cursor: pointer !important;
    font-size: 1em !important;
    font-weight: bold !important;
    padding: 0 4px !important;
}

.expand_arrow .tags button,
.expand_arrow .tags .form-select {
    height: 30px;
}

.email-btn img {
    max-width: 30px;
}

.login_main .btn.reset-password {
    text-align: center;
    width: 180px;
}

.expand_arrow .tags button.blue-btn {
    background: #2B3990 !important;
    border-color: #2B3990 !important;
}

.sign-up-text {
    text-align: center;
    margin: 0 0 20px;
    max-width: 470px;
    color: #333;
    font-size: 15px;
    line-height: 20px;
}

.sign-up-mode .sign-up-text {
    max-width: 430px;
}

.error-danger {
    color: #dc3545;
}

label.error {
    font-size: 14px;
    color: #dc3545;
}

#loader-wrapper, #screenshotMessage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader {
    width: 150px;
    height: 150px;
}

.expand-narrow-search.dropdown-menu {
    --bs-dropdown-min-width: 35rem;
    overflow-y: auto;
    height: 550px
}

.w-30 {
    width: 30%;
}

.expand-narrow-tab-content.tab-content,
#updated-sql-div {
    overflow-y: auto;
    height: calc(100vh - 300px);
}

.text-primary {
    color: #2B3990 !important;
}

#candidate_skills span {
    font-weight: 400 !important;
}

#viewmain .upload,
.sidepopup_content .refresh,
.sidepopup_content .view-pdl-data,
.sidepopup_content .add-candidate {
    font-size: 18px;
    /* font-weight: 900; */
    padding: 2px 10px 1px;
    color: #000 !important;
}

.project-table-main tbody tr:hover {
    cursor: pointer;
}

.fw-bold-500 {
    font-weight: 500 !important;
}

#div_tab1 .small,
#div_tab1 small {
    font-size: 0.80em;
}

#jd_links a {
    cursor: pointer;
}

#myTabContent {
    /* overflow-y: auto; */
    /* height: 550px */
}

.select2-container .select2-selection--multiple,
table.interpreted-jd .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    /* min-height: 32px; */
    user-select: none;
    -webkit-user-select: none;
    line-height: 1.5;
}

.select2-container--default .select2-selection--multiple,
table.interpreted-jd .select2-container--default .select2-selection--multiple {
    border: solid #dee2e6 1px !important;
    outline: 0;
}

.select2-container--default .select2-selection--multiple,
table.interpreted-jd .select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 0.375rem;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    min-width: 100%;
}

.bootstrap-tagsinput {
    background-color: #fff;
    border: 1px solid #aaa;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    display: inline-block;
    padding: 4px 6px;
    color: #555;
    vertical-align: middle;
    border-radius: 4px;
    max-width: 100%;
    line-height: 22px;
    cursor: text;
}

.input-tags,
table.interpreted-jd .input-tags {
    width: 100% !important;
    /* padding: 15px;
    display: block;
    margin: 0 auto;
    min-width: 200px; */
}

.label-info,
table.interpreted-jd .label-info {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    display: inline-block;
    /* margin-left: 5px; */
    margin-top: 5px;
    padding-left: 2px;
    padding-right: 2px;
    line-height: 1.5;
}

.bootstrap-tagsinput .tag,
table.interpreted-jd .bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: black !important;
}

.bootstrap-tagsinput .tag [data-role="remove"],
table.interpreted-jd .bootstrap-tagsinput .tag [data-role="remove"] {
    margin-left: 3px;
    cursor: pointer;
    color: #888 !important;
    font-size: 1em !important;
    font-weight: bold !important;
    padding: 0 4px !important;
}

table.interpreted-jd tr td {
    line-height: 20px;
}

.search-info p,
.search-info li {
    font-size: 12px;
    font-weight: normal;
}

.search-info button {
    padding: 3px 7px;
    font-size: 13px;
    color: black !important;
    background: none !important;
    border-color: none !important;
}

.search-info-btn.btn-group {
    position: absolute;
    right: 10px;
    top: 13px;
}

#inferred-data-div {
    position: relative;
}

.search-info.dropdown-menu {
    width: 520px;
}

.inferred-data-search-info-btn.btn-group {
    position: absolute;
    right: 3px;
    top: 50px;
}

.search-info-btn .btn.show {
    border-color: transparent !important;
}

.select2-selection__choice.ai-added-skills {
    background-color: #2b72bf29 !important;
    border: 1px solid #2b3990 !important;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

#viewSemiCustom .side-popup-bottom .ai-added-skills .select2-selection__choice__remove,
#viewSemiCustomQuick .side-popup-bottom .ai-added-skills .select2-selection__choice__remove,
#ViewAdvanceSearch .side-popup-bottom .ai-added-skills .select2-selection__choice__remove
{
    background-color: transparent !important;
    border: none !important;
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
    color: #2b3990 !important;
    cursor: pointer !important;
    font-size: 1em !important;
    font-weight: bold !important;
    padding: 0 4px !important;
}

.disabled-input .select2-container--classic .select2-selection--multiple {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
    padding-bottom: 5px;
    padding-right: 5px;
}

.disabled-input .input-group .form-control {
    background: #e4e4e4;
    border-radius: 5px !important;
    color: #2B3990;
    border-color: #aaa;
    font-size: 13px;
    cursor: text;
}

.spinner-border {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

#viewSemiCustom .side-popup-bottom button#find-perfect-match-reset-btn,
#viewSemiCustomQuick .side-popup-bottom button#find-perfect-match-reset-btn,
#viewGenerateEmail .side-popup-bottom button,
#viewReplyEmail .side-popup-bottom button,
#viewGenerateSms .side-popup-bottom button,
#viewOptoutSmsPanel .side-popup-bottom button,
#viewSemiCustom .side-popup-bottom button#find-perfect-match-reset-btn:focus,
#viewSemiCustomQuick .side-popup-bottom button#find-perfect-match-reset-btn:focus,
#viewGenerateEmail .side-popup-bottom button:focus,
#viewReplyEmail .side-popup-bottom button:focus,
#viewGenerateSms .side-popup-bottom button:focus,
#viewOptoutSmsPanel .side-popup-bottom button:focus,
#ViewAdvanceSearch .side-popup-bottom button#btn-reset,
#ViewAdvanceSearch .side-popup-bottom button#btn-reset:focus
{
    color: #2b3990 !important;
    background: #fff !important;
    border-color: #2b3990 !important;
}

#viewSemiCustom .side-popup-bottom button#find-perfect-match-reset-btn:hover,
#viewSemiCustomQuick .side-popup-bottom button#find-perfect-match-reset-btn:hover,
#viewGenerateEmail .side-popup-bottom button:hover,
#viewReplyEmail .side-popup-bottom button:hover,
#viewGenerateSms .side-popup-bottom button:hover,
#viewOptoutSmsPanel .side-popup-bottom button:hover,
#ViewAdvanceSearch .side-popup-bottom button#btn-reset:hover
{
    color: #fff !important;
    background: #EE2A7B !important;
    border-color: #EE2A7B !important;
}

.fs-13 {
    font-size: 13px;
}

.search-info p.fs-13 {
    font-size: 13px;
    font-weight: normal;
}

.create-jd-steps {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.step {
    margin-bottom: 10px;
}

.step .number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(108 115 125 / 11%);
    border: #2B3990 solid 1px;
    color: #2B3990;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.step .title {
    font-size: 14px;
}

/* Styling for active step */
.step.active .number {
    background-color: #2B3990;
    color: white;
}

.step.active .title {
    font-weight: bold;
}

/* Styling for completed step */
.step.completed .number {
    background-color: #198754;
    color: white;
    border-color: #198754;
}

.sub-steps {
    list-style: none;
}

.sub-steps li.active:before {
    content: '\2714\0020';
    color: #198754;
    font-weight: bold;
}

table#update-project-email-tone {
    border-collapse: collapse;
    border-bottom: 1px solid #dee2e6;
}

.email-tones {
    cursor: pointer !important;
}

.email-tones.active-tone,
.email-tones:hover {
    border: var(--bs-border-width) var(--bs-border-style) #2B3990 !important;
    background-color: #2b399017;
}

.text-yellow {
    color: #cb9a0a;
}

.idealness-loader .dropdown-menu {
    width: 500px;
    font-size: 12px;
    text-transform: none;
    line-height: normal !important;
    /* top: 30px;
    left: 10px; */
}

.idealness-loader .btn:hover,
.idealness-loader .btn:active,
.idealness-loader .btn.show {
    background-color: transparent;
    border-color: transparent;
    color: inherit;
}

#send-project-email .input-group .form-control,
#send-project-email .input-group {
    background: #fff;
    border-radius: 5px !important;
    color: #212529;
    border-color: #aaa;
    font-size: 13px;
}

.login_main .right-panel .reset-password.content,
.right-panel .image {
    transform: none;
}

.login_main .reset-password.right-panel {
    pointer-events: auto;
    padding: 3rem 12% 2rem 17%;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #2b399017;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

#candidate-list th {
    cursor: pointer;
}

.idealness-loader .btn {
    padding: 0;
}

.load-candidate-profile {
    font-size: 12px !important;
    cursor: pointer;
}

#togglePassword {
    right: 20px;
    top: 30px;
    cursor: pointer;
}

.query-builder .rules-group-container {
    padding: 10px;
    padding-bottom: 6px;
    border: 1px solid #aaa !important;
    background: none !important;
}

#tooltip {
    position: absolute;
    top: 10px;
}

#tooltip span {
    position: absolute;
    text-align: center;
    display: block;
    line-height: 1;
    padding: 0.125rem 0.25rem;
    color: #fff;
    border-radius: 0.125rem;
    background: #0d6efd;
    font-size: 12px;
    left: 50%;
    transform: translate(-50%, 0);
}

#tooltip span:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #0d6efd;
}


.range-item {
    position: relative;
  }
  .range-item:not(:last-child) {
    margin-bottom: 24px;
  }
  .range-item .range-input {
    margin-top: 6px;
  }
  .range-item .range-input input {
    position: relative;
    z-index: 2;
    cursor: pointer;
  }
  .range-item ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: calc(100% + 34.4px);
    margin: 0 -17px;
  }
  .range-item ul .list-inline-item:not(:last-child) {
    margin-right: 0;
  }
  .range-item ul .list-inline-item span {
    position: relative;
    min-width: 58px;
    text-align: center;
    display: block;
    font-size: 14px;
    padding-top: 4px;
    word-break: break-word;
    color: #b1b1b1;
  }
  .range-item .range-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: calc(100% - 14px);
    background-color: #ddd;
    z-index: 0;
    margin: 0 7px;
    border-radius: 50px;
    overflow: hidden;
  }
  .range-item .range-input.disable-range + ul .list-inline-item span::before {
    background-color: #b1b1b1;
  }
  .range-item .range-input.disable-range .range-line .active-line {
    background-color: #b1b1b1;
  }
  .range-item
    .range-input.disable-range
    + ul
    .list-inline-item.active
    span::before {
    background-color: #777777;
  }
  .range-item .range-input .dot-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 24px);
    left: 0;
    z-index: 1;
  }
  .range-item .range-input .active-dot {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    cursor: pointer;
    background-color: #ddd;
    height: 18px;
    width: 18px;
    border: 4px solid #0d6efd;
    z-index: 11;
    left: 0%;
    border-radius: 50%;
  }
  .range-item .range-input .range-line .active-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #0d6efd;
    transition: all 0.1s ease;
  }
  .range-item ul .list-inline-item span::before {
    content: "";
    display: block;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #696969;
  }
  .range-item ul .list-inline-item.active span::before {
    background-color: white;
  }
  .range-item .range-input input:disabled ~ .dot-line .active-dot {
    background-color: #d9d9d9;
    border: 4px solid #b1b1b1;
  }
  input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -8px; /* Centers thumb on the track */
    background-color: #0000;
    height: 15px;
    width: 15px;
    border: 4px solid #0000;
    z-index: 11;
    box-shadow: none;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -8px; /* Centers thumb on the track */
    background-color: #0000;
    height: 18px;
    width: 18px;
    border: 4px solid #0000;
    box-shadow: none;
    z-index: 11;
  }

  input[type="range"]::-webkit-slider-runnable-track {
    background-color: #f0f0f000;
  }
  input[type="range"]::-moz-range-progress {
    background-color: #f0f0f000;
  }
  input[type="range"]::-ms-track {
    background-color: #f0f0f000;
  }
  input[type="range"]::-moz-range-track {
    background-color: #f0f0f000;
  }
  /* IE*/
  input[type="range"]::-ms-fill-lower {
    background-color: #f0f0f000;
  }
  input[type="range"]::-ms-fill-upper {
    background-color: #f0f0f000;
  }
  input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: none !important;
    background-color: #f0f0f000;
  }

  input[type="range"]:focus::-moz-range-thumb {
    box-shadow: none !important;
    background-color: #f0f0f000;
  }

  input[type="range"]:focus::-ms-thumb {
    background-color: #f0f0f000;
    box-shadow: none !important;
  }
  input[type="range"]:disabled::-webkit-slider-thumb {
    background-color: #0000;
    border: 4px solid #0000;
  }
  input[type="range"]:disabled::-moz-range-thumb {
    background-color: #0000;
    border: 4px solid #0000;
  }

  .rule-value-container {
    min-width: 50%;
  }
#ViewAdvanceSearch .side-popup-bottom .btn-primary.active
{
    background-color: #2B3990;
    border-color: #2B3990;
    color: white;
}
#ViewAdvanceSearch .side-popup-bottom .btn-primary ,
#ViewAdvanceSearch .side-popup-bottom button#btn-reset
{
    background-color: white;
    border-color: #2B3990;
    color: #2B3990;
}
#ViewAdvanceSearch .side-popup-bottom .btn-success {
    background-color: white !important;
    border-color: #198754 !important;
    color: #198754 !important;
}
#ViewAdvanceSearch .side-popup-bottom .btn-danger {
    background-color: white !important;
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}
.select2.select2-container.select2-container--default {
    margin-top: .25rem!important;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}
.sender-name {
    color: #000 !important;
    background: #fff2cc !important;
    text-decoration: none;
    height: 35px;
    width: 35px;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    border-radius: 50%;
    border: 2px solid #ffe499 !important;
}
.open-email-detail-view, .open-email-histories-view, .send-draft-email{
    cursor: pointer;
}
.open-email-detail-view:hover, .open-email-histories-view:hover{
    background-color: #2b399017;
}
/* #email-list{
    height: 400px;
    overflow-y: auto;
} */
.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.preview-item {
    position: relative;
    display: inline-block;
}

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
#screenshotMessage {
    /* display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1.5em;
    border-radius: 10px;
    z-index: 1000; */
    animation: fadeInOut 2s;
}

.disabled-link {
    pointer-events: none;
    background: grey;
    color: white;
    border-color: grey;
    cursor: not-allowed;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

img.top-five-img {
    width: 16px;
}
.progress-bar {
    font-size: 0.70rem;
    min-width: 10%;
}
.searches .progress-bar {
    background-color: #cf599e;
    color: #000;
}
.searches-per-project .progress-bar {
    background-color: #d566ad;
    color: #000;
}
.searches-per-user .progress-bar {
    background-color: #f47bbf;
    color: #000;
}
.candidates .progress-bar {
    background-color: #7c3388;
}
.candidates-per-project .progress-bar {
    background-color: #85559c;
}
#nylas-hosted-authentication-iframe {
    min-height: 500px;
}
.view_email_btnClass:hover{
    color: #fff !important;
}
.credit-usage-table tr td {
    line-height: 20px;
}

#dropdownActionsVertical::after {
    display: none;
}

#dropdownActionsVertical {
    padding: 0;
}

.choices__inner{
    background-color: white;
}

#back-disable {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.7);
    display: flex;
    justify-content: center;
}

#basic-addon-1 + .bootstrap-tagsinput {
   width: 90%;
}

#viewGenerateSms > textarea {
    border-radius: 20px;
    border: 1px solid #ced4da;
    height: 100px;
}

.note-btn {
    color: rgb(43, 57, 144);
}

#send-message{
    width: 100%;
    padding: 5px;
}

#basic-addon1 + .bootstrap-tagsinput {
    width: 91%;
}

#basic-addon-reply + .bootstrap-tagsinput {
    width: 91%;
}

.note-btn {
    color: rgb(43, 57, 144);
}

#moveProjectErrorMessage, #copyProjectErrorMessage {
    color: red;
}

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

textarea::placeholder {
    color: #999999 !important;
}

input:focus::placeholder {
    color: #999999 !important;
}

#filter_project_id, #sms_filter_project_id{
    width: 250px;
}

#filter_project_id option, #sms_filter_project_id option {
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#firstFollowup, #secondFollowup, #thirdFollowup {
    width: 5%;
    height: 3%;
    border-radius: 3%;
    border: 1.5px solid grey;
}

.disabledInputClass {
    opacity: 0.65;
    pointer-events: none;
    background-color: #e4e4e4;
    border: 1px solid #aaa;
}

.help-icon {
    color:#0d6efd;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.play-button-overlay svg {
    width: 100%;
    height: 100%;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; display: none; }
}

.error-danger {
    animation: fadeOut 1s ease-in-out 2s forwards;
}

.body-greyout {
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;   /* Disable clicks on body */
}
