/* Navigation start */
.corphive-header-navigation{
    background-color:var(--blue-color);
    z-index: 9000;
}

.container-header{
    height: 65px;
}

.header-navbar li a{
    color: var(--white-color) !important;
}

.header-navbar li a i{
    vertical-align: middle;
}

.headerNavigation:hover{
    background-color: var(--purpal-color);
    color: var(--white-color) !important;
}

.toggle-navigation{
    z-index: 1000 !important;
    width: 90% !important;
    height: 50vh;
    left: 50%;
    transform: translate(-50%);
    display: none;
}

.fieldValidation ul li a{
    text-decoration: none;
    padding: 8px 10px;
    font-size: 15px;
    font-weight:500;
    color: var(--black-color);
}


.toggleNavButton{
    font-size: 25px;
    cursor: pointer;
    display: none;
}

.action-buttons ul li a{
    font-weight: 600;
    background-color: var(--black-color);
    padding: 5px 10px;
    font-size: 14px;
    color: var(--white-color);
    border-radius: 5px;
}

.header-navbar > li{
    display: inline-block;
    height: 60px;
}

.header-navbar li a{
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
}

.brand-logo a img{
    width: 160px;
}

.header-navbar li:hover .header-navbar-subnav{
    opacity: 1;
    top: 60px;
    transition: all 0.8s ease-in-out;
    pointer-events: visible;
}

.menu-buttons{
    display: block;
    padding: 10px 15px !important;
}

.menu-buttons a{
    text-decoration: none;
    color: var(--white-color) !important;
    background-color: var(--black-color);
    padding: 4px 10px;
}


.applicant_auth_profile{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.applicant_profile_item a{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.applicant_profile_item a span:first-child{
    display: block;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
}

.applicant_profile_item a span:first-child i{
    color: var(--white-color);
}

.applicant_auth_profile img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}


.corphive-header-ticker{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--purpal-color);
    color: var(--white-color);
    padding-top: 3px;
}

.ticker-image{
    width: 20px;
    height: 20px;
}

.ticker-image img{
    width: 100%;
}


/* Home banner start */
.home-banner{
    height: max-content;
    width: 100%;
    background-image: url("../images/home-banner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-list li{
    font-size: 18px;
}

.home-banner .home-banner-content{
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.735);
}

.home-banner-content-left h1{
    font-weight: 900;
    font-size: 40px;
}

.home-banner-content-left p{
    font-size: 17px;
}

.home-banner-form{
    width: 60%;
    z-index: 100 !important;
}

.home-banner-form h4{
    font-weight: 800;
}

.home-banner-form input, .home-banner-form select{
    font-size: 14px;
    padding: 10px;
    color: #808080;
}

.home-banner-form-error{
    font-size: 12px;
}

.home-banner-form-button{
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 4px 15px;
    font-weight: 600;
    border-radius: 5px;
    font-size: 15px;
}

.home-banner-content-search input[type="submit"]{
    background-color: var(--black-color);
    width: 20px;
    color: var(--white-color);
}


/* Home quote start */
.home-quote-content{
    min-height: 400px;
}

.home-quote-card-left{
    width: 500px;
    height: 300px;
    background-color: var(--black-color);
}

.home-quote-image{
    width: 100%;
    height: 100%;
    top: 10px;
    left: 10px;
    transition: all 0.5s ease-in-out;
}

.home-quote-card-left:hover .home-quote-image{
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
}

.home-quote-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0);
}


.home-quote-card-right h2{
    font-weight: 800;
}

.home-quote-card-right p{
    font-size: 18px;
}

.home-quote-card-buttons a{
    text-decoration: none;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 6px 15px;
    font-size: 14px;
}

/* Home category start */

.home-category-wrapper{
    min-height: 300px;
}

.home-category-wrapper h2{
    font-weight: 700;
}

.home-category-sectiion {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
 }

 .home-category-sectiion a div i{
    font-size: 18px;
 }

.category-link{
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 20px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
}

.category-link:hover{
    background-color: var(--black-color);
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
}

.category-link:hover .category_job_count{
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
}


/* Home Why choose us */
.home-whychoose-section{
    min-height: 300px;
}

.home-whychoose-card-right{
    width: 500px;
}

.whychoose-card{
    width: 100%;
    height: 300px;
    background-color: var(--black-color);
}

.whychoose-card-image{
    width: 100%;
    height: 100%;
    top: 10px;
    right: 10px;
    transition: all 0.5s ease-in-out;
}

.whychoose-card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0);
}

.whychoose-card-image:hover{
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
}


.home-whychoose-card-left h2{
    font-weight: 800;
}

.home-whychoose-card-left p{
    font-size: 18px;
}

.home-whychoose-points > div{
    background-color: var(--black-trans-color);
    color: var(--black-color);
    padding: 5px 15px;
    padding: 8px 15px;
    font-size: 18px;
    font-weight: 600;
}

.home-whychoose-points > div span i{
    color: var(--purpal-color) !important;
}

/* Home contact secion */

.home-contact-section{
    min-height: 500px;
    background-image: url('../images/home-contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home-contact-section-content{
    width: 100%;
    min-height: 500px;
    background-color: rgba(0, 0, 0, 0.592);
}

/* Home Job card section */
.job-cards-section{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
}

.job-card{
    background-color: var(--white-color);
    padding: 20px;
}

.job-card a{
    font-size: 15px;
    font-weight: 700;
    color: var(--black-color);
}

.job-card .job-experience span{
    font-size: 14px;
    font-weight: 700;
}

.job-card p{
    font-size: 15px !important;
}

.job-features > div span{
    font-size: 13px;
    font-weight: 700;
}

.job-skills{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.job-skills span{
    font-size: 11px;
    font-weight: 500;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 3px 8px;
}

.job-card p{
    font-size: 13px;
    margin-top: 8px;
}

.job-card p a{
    font-size: 13px;
    text-decoration: none;
    color: royalblue;
}

.home-jobs-heading{
    font-weight: 800;
}

.job-recruiter-details .name, .job-recruiter-details .time{
    font-size: 13px;
    font-weight: 400;
}

.job-recruiter-details .jobid, .job-recruiter-details .jobid a{
    font-size: 13px;
    font-weight: 500;
}

.job-recruiter-details .apply-button a{
    font-size: 13px;
    text-decoration: none;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 5px 15px;
}


/* Home partner start */
.home-partner-item{
    background-color: var(--body-color);
    padding: 20px;
    height: 150px;
    border: 3px solid var(--purpal-color) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.61);
    border-radius: 12px;
}

.partner-image{
    width: 70%;
    height: 70%;
}

.partner-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.owl-nav{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.owl-nav .owl-prev span, .owl-nav .owl-next span{
    font-size: 20px;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--black-color);
    color: var(--white-color);
}


/* Home blog start */
.home-blog-section{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
}

.blog-image{
    width: 100%;
}

.blog-image img{
    width: 100%;
    object-fit: cover;
    filter: saturate(0);
}

.blog-card p{
    font-size: 16px;
}

.blog-heading{
    color: var(--black-color);
}

.blog-details .author, .blog-details .time{
    font-size: 13px;
}

.blog-button{
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 5px 15px;
    font-size: 14px;
}



/* Home profile image */
.home-profiles{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
}

.profile-image{
    z-index: 400;
}

.collapse-profile{
    position: relative;
    width: 100%;
}

.collapse-profile .contentContent{
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%);
    background-color: rgba(0, 0, 0, 0.844);
    z-index: 9000;
    width: 300px;
    padding: 10px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    pointer-events: none;
    color: var(--white-color);
}

.collapse-profile span{
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.collapse-profile:hover .contentContent{
    opacity: 1;
    top: -20px;
    transition: all 0.4s ease-in-out;
}

.profile-card .profile-header{
    background-image: url('../images/profile-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 90px;
    width: 100%;
}

.profile-header::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.833);
    z-index: 1000;
}

.profile-card .profile-image{
    width: 110px;
    height: 110px;
    top: 20px;
    left: 50%;
    transform: translate(-50%);
    border: 5px solid var(--white-color);
    z-index: 2000;
}


.profile-profession{
    font-size: 12px;
    font-weight: 600;
}

.profile-card .profile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.experties{
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
}

.read-more{
    font-size: 13px;
    font-weight: 800;
    color: var(--black-color);
}

.profile-content{
    font-size: 13px !important;
}

/* Footer section start */

.footer{
    background-color: var(--black-color);
}

.footer-content{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    grid-auto-flow: dense;
}

.footer-logo{
    width: 200px;
}

.footer-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-item p{
    font-size: 13px;
    color: var(--white-color);
}

.footer-links li a{
    text-decoration: none;
    font-size: 14px;
    color: var(--white-color);
    margin: 5px 0;
}

/* Home Page End */


/* Job Detail page start */
.job-detail-elements li span{
    font-size: 13px;
    font-weight: 500;
}

.apply-button a{
    background-color: var(--black-color);
    color: var(--white-color);
    font-size: 14px;
    padding: 8px 10px;
}

.job-author-detail .job-author, .job-author-detail .job-id{
    font-size: 14px;
}

.job-details-content p{
    font-size: 17px;
}

.job-skills > div{
    font-size: 13px;
    font-weight: 500;
    padding: 3px;
}

.blog-feature-image{
    width: 100%;
}

.blog-feature-image img{
    width: 100%;
    filter: saturate(0);
}

.blog-paragraph{
    font-size: 17px;
}

.category-list-group li{
    padding: 7px;
}

.category-list-group li a{
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.category-list-group li a span{
    font-size: 13px;
}


/* contact page start */
.contact-wrapper{
    min-height: 100vh;
    background: #ECE9E6;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.image-contact-box{
    width: 100%;
    height: 350px;
}
.contact-support-image{
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
}

.contact-support-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0);
}


/* About page start */
.about-image-container{
    background-color: var(--black-color);
    width: 100%;
    height: 300px;
}

.about-image{
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0);
}

.about-para{
    font-size: 18px;
}

.about-card{
    min-height: 430px;
}

.about-card p{
    font-size: 16px;
}

.category-heading{
    font-size: 17px;
}


/* Home counter section start */
.home-job-counter-wrapper{
    height: 250px;
    position: relative;
}

.home-job-counter-wrapper .counterImage{
    width: 100%;
    height: 100%;
}

.home-job-counter-wrapper .counterImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0);
}

.counterContent{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.counterTitle{
    font-weight: 800;
    font-size: 40;
    color: var(--white-color);
}

.countNumber{
    font-size: 50px;
    color: var(--white-color);
    font-weight: 900;
}

.plusSign{
    font-size: 50px;
    color: var(--white-color);
    font-weight: 900;
}

.category_job_count{
    color: var(--purpal-color);
    transition: all 0.3s ease-in-out;
}

.job-category-detail-card{
    min-height: 200px;
    height: 100%;
}

.job-with-category-cards{
    border: 1px solid var(--black-color);
    position: relative;
}


.categoryOverlay{
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
    background-color: var(--purpal-color);
    border-radius: 0 0 100% 0;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.categoryOverlay .category-heading{
    display: none;
}

.job-with-category-cards:hover .categoryOverlay{
    width: 100%;
    height: 100%;
    background-color: var(--purpal-color);
    border-radius: 0;
    transition: all 0.4s ease-in-out;
}

.job-with-category-cards:hover .categoryOverlay .category-heading{
    display: block;
    text-wrap: nowrap;
}

.listIcon{
    width: 30px !important;
    height: 30px !important;
    background-color: var(--purpal-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.listIcon i{
    color: var(--white-color) !important;
    font-size: 12px;
}

.partial-part{
    color: var(--purpal-color);
}

.btnmaroom{
    background-color: var(--purpal-color) !important;
    color: var(--white-color) !important;
}

.fieldValidation:hover{
    background-color: var(--purpal-color);
}

.director-profile{
    min-height: max-content;
    width: 320px;
}

.senior-profile{
    min-height: max-content;
    width: 300px;
}




/*  Menus hoverable */

.header-navbar-subnav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--blue-color);
    border-top: 1px solid #ccc;
    z-index: 1000;
    width: 100%;
}

.header-navbar-subnav .sub_menus {
    display: flex;
    padding: 10px;
}

.menu-list {
    margin: 0;
    padding: 30px;
    padding-top: 20px;
    list-style: none;
    width: 50%;
    padding-bottom: 50px;
}

.menu-list li{
    margin: 0 !important;
}

.menu-list > li .sub-menu-anchor{
    display: flex;
    padding: 8px 15px;
    text-decoration: none;
    color: var(--white-color) !important;
    border: 1px solid var(--black-color);
    border-left: 5px solid var(--purpal-color);
    border-right: 5px solid transparent;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    margin: 5px 0 !important;
}

.menu-list > li > .sub-menu-anchor:hover{
    background-color: rgba(0, 0, 0, 0.5);
    border-left: 5px solid var(--purpal-color);
    border-right: 5px solid var(--purpal-color);
    transform: translate(10px);
}


.header-navbar-subnav .menu-list li{
    margin-bottom: 5px;
}

.header-navbar-subnav .menu-list .active .sub-menu-anchor{
    background-color: rgba(0, 0, 0, 0.5);
    border-right: 5px solid var(--purpal-color);
    border-left: 5px solid transparent;
    transform: translate(10px);
}

.header-navbar-subnav .menu-description {
    padding: 35px;
    border-left: 1px solid #ccc;
    color: var(--white-color);
    width: 50%;
}

.header-navbar-subnav .menu-description p {
    margin: 0;
    font-size: 14px !important;
}

.header-navbar-subnav .menu-list li:hover + .menu-description p {
    display: block;
}

.header-navbar li:hover .header-navbar-subnav {
    display: block;
}

/* User Auth style start */

.auth-wrapper{
    min-height: 100vh;
    background-image: url('../images/background1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.auth-form{
    width: 400px;
    margin: 0 auto;
}

.signu-form label{
    font-size: 14px;
}

.cor-inputs{
    width: 100%;
    outline: none;
    border: 1px solid #e2e2e2;
    padding: 8px;
    border-radius: 4px !important;
    margin-top: 2px;
    transition: box-shadow 0.5s ease, border 0.5s ease; 
    outline: none;
}

.signu-form .input-group{
    margin-top: 10px;
}

.cor-inputs::placeholder{
    font-size: 14px;
}

.cor-inputs:focus {
    border: 1px solid transparent; 
    box-shadow: 0 0 0 2px var(--blue-color); 
    outline: none;
}

.signup-button{
    border: none;
    outline: none;
    background-color: var(--blue-color);
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 2px;
    font-size: 13px;
    color: var(--white-color);
    width: 100%;
    text-transform: uppercase;
    font-weight: 800;
}

.toggle-eyes{
    position: absolute;
    top: 35px;
    right: 10px;
    cursor: pointer;
}

.form-auth-options{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.form-auth-options a{
    text-decoration: none;
    font-size: 12px;
    border: 1px solid #e9e9e9ee;
    background-color: var(--body-color);
    padding: 10px;
    font-weight: 700;
    border-radius: 2px;
    width: 50%;
    text-align: center;
}

.form-auth-options a img{
    width: 20px;
}

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

.login-link a{
    text-decoration: none;
}

.ctc-heading-signup{
    font-size: 14px;
}

.ctc-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ctc-wrapper .card-radio-btn{
    width: 100%;
}

.signpForm{
    display: none;
}

.workassit_logo{
    width: 200px;
}

.workassit_logo img{
    width: 100%;
}

#contentText{
    font-size: 14px;
}

/* User Auth style end */

/* User Profile style start */

.profile-avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-wrapper{
    min-height: 100vh;
}

.profile-left .card{
    height: 100%;
}

.profile-right .card{
    height: 100%;
}

.profile-bio{
    font-size: 13px;
    margin-top: 10px;
}

.profile-left-list{
    font-size: 13px;
}

.profile-left-list li{
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 3px 0;
}

.profile-left-headings{
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.education-details{
    padding-left: 20px;
}

.education-details li{
    margin-bottom: 10px;
    position: relative;
}

.education-details li::after{
    position: absolute;
    content: "";
    top: 15px;
    left: -14px;
    height: 100%;
    width: 3px;
    background-color: var(--purpal-color);
}

.education-details li::before{
    position: absolute;
    content: "";
    top: 4px;
    left: -20px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--purpal-color);
}

.education-details li:last-child::after {
    content: none;
}

.education-description{
    font-size: 14px;
}

.education-heading span{
    font-size: 14px;
}

.profile-content-heading{
    color: var(--blue-color);
}

.position-heading{
    font-size: 15px;
}

.user-cv{
    display: block;
    width: 100%;
    background-color: var(--purpal-color);
    padding: 10px 15px;
    text-decoration: none;
    color: var(--white-color);
    border-radius: 3px;
    font-weight: 800;
    text-align: center;
}

.user-cv:hover{
    color: var(--white-color);
}

/* Profile edit page stylel */

.cor-textarea{
    width: 100%;
    outline: none;
    border: 1px solid #e2e2e2;
    padding: 8px;
    border-radius: 4px !important;
    margin-top: 2px;
    transition: box-shadow 0.5s ease, border 0.5s ease; 
    outline: none;
}

.cor-textarea::placeholder{
    font-size: 14px;
}

.cor-textarea:focus {
    border: 1px solid transparent; 
    box-shadow: 0 0 0 2px var(--blue-color); 
    outline: none;
}

.add-content{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.494);
    color: var(--white-color);
    font-size: 15px;
}

.modal{
    z-index: 9000;
}

.edit-education{
    color: green;
    background-color: rgba(27, 223, 5, 0.36);
    display: block;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.delete-education, .delete-experience{
    color: red;
    background-color: rgba(223, 5, 5, 0.36);
    display: block;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.skill-delete{
    cursor: pointer;
}


.avatar-label{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: rgba(0, 0, 0, 0.624);
    cursor: pointer;
}

.avatar-icon i{
    color: var(--white-color);
}



/* Dashboard start */
.dashboard-profile-image{
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.dashboard-profile-image img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.dashboard-item li a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dashboard-item li a span:first-child{
    display: block;
    width: 35px;
    height: 35px;
    background-color: rgba(27, 11, 255, 0.23);
    text-align: center;
    line-height: 35px;
    color: var(--dark-color);
    border-radius: 50%;
    margin-right: 8px;
}

.dashboard-item li a{
    color: var(--blue-color);
    background-color: rgba(0, 132, 255, 0.115);
    border-radius: 5px;
    padding: 10px;
}


.dashboard-analytics-card{
    height: 230px;
    background-color: rgba(0, 8, 255, 0.082);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card-icon{
    font-size: 30px;
    display: block;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 21, 255, 0.238);
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
}

.dashboard-number strong{
    display: block;
    text-align: center;
    font-size: 30px;
    color: royalblue;
}

.dashboard-number{
    font-size: 20px;
}

.no-data-box{
    width: 100%;
    height: 200px;
}

.no-data-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Profile progress start */

:root {
    --accent-color: #EAEAEA;
    --primary-color: #28411B;
    --primary-font: "JetBrains Mono";
  }
  
  #progress-bar--container {
    display: flex;
    justify-content: center;
  }
  
  #progress-bar--container svg {
    width: 150px;
  }
  
  #progress--circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    stroke-linecap: round;
  }
  
  #progress--text {
    font-family: var(--primary-font);
    fill: var(--primary-color);
    font-weight: 750;
    font-size: 6.5px;
    transform-origin: center;
    transform: rotate(90deg);
  }
  
  svg {
    transform: rotate(-90deg);
  }
  
  .meter-info {
    box-sizing: border-box;
    font-family: var(--primary-font);
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    padding: 30px 20px;
  }
  
  #meter--ranger {
    width: 100%;
  }
  

/* Profile progress end */


/* CTC */
hr.style-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 2px solid rgba(0, 0, 0, 0.07);
  }
  
  .fw-500 {
    font-weight: 400;
  }
  
  .fw-600 {
    font-weight: 500;
  }
  
  .mt_2 {
    margin-top: 2rem !important;
  }
  
  /*Simple radio btn input CSS*/
  .custom-control-label {
    cursor: pointer;
  }
  
  .cap-opt-1 {
    display: inline-block;
  }
  
  .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #59a9f7;
    background-color: #59a9f7;
  }
  /*Card Button CSS*/
  
  .card-radio-btn .content_head {
    color: #333;
    font-size: 0.8rem;
    font-weight: 500;
    text-wrap: nowrap;
  }
  
  .card-radio-btn .content_sub {
    color: #9e9e9e;
    font-size: 14px;
  }
  
  .card-input-element + .card {
    width: 100%;
    justify-content: center;
    color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid transparent;
    border-radius: 3px;
    text-align: center;
  }

  .submit-btn{
    width: 105px;
    height: 70px;
    margin: 10px;
    justify-content: center;
    background-color: var(--blue-color);
    color: var(--white-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid transparent;
    border-radius: 10px;
    text-align: center;
    -webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: 700;
  }
  
  
  .card-input-element + .card:hover {
    cursor: pointer;
  }
  
  .card-input-element:checked + .card {
    border: 2px solid #719eca;
    -webkit-transition: border 0.3s;
    -o-transition: border 0.3s;
    transition: border 0.3s;
  }
  
  .card-input-element:checked + .card::after {
    content: "\f058";
    color: rgba(113, 158, 201, 0.6);
    position: absolute;
    right: 5px;
    top: 5px;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-animation-name: fadeInCheckbox;
    animation-name: fadeInCheckbox;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  @-webkit-keyframes fadeInCheckbox {
    from {
      opacity: 0;
      -webkit-transform: rotateZ(-20deg);
    }
  
    to {
      opacity: 1;
      -webkit-transform: rotateZ(0deg);
    }
  }
  
  @keyframes fadeInCheckbox {
    from {
      opacity: 0;
      transform: rotateZ(-20deg);
    }
  
    to {
      opacity: 1;
      transform: rotateZ(0deg);
    }
  }
  

.profileName{
    margin-top: 30px;
}

