﻿.innerSectionLayout {
    height: 100%;
    width: 100%;
}

.hidden {
    display: none !important
}
.form-control {
    font-size: 14px;
    height: 34px;
    padding: 6px 12px;
}

.formRowList {
    margin-bottom: 15px !important;
}
.formRowList label {
    font-weight: 700;
    padding-bottom: 5px;
}
.btn {
    font-size: 14px;
}
.card .card-header button {
    text-decoration: none;
}
.formContact form {
    display: flex;
    flex-wrap: wrap;
    padding: 0 7px;
}
.formContact form .row {
    width: 100%;
}
.uploadPicBox {
    position: relative;
}
/*** Header ***/
.fixedHeader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
}

header {
    position: relative;
    z-index: 1;
    background: #fff;
    height: 64px;
    box-shadow: 0 0 2px 0 rgb(121 121 121 / 50%);
    /* box-shadow: 0 4px 16px #e0e0e0; */
}

.competencyDesc {
    padding-left: 16.667%;
    padding-bottom: 20px;
}

.skillsSearch {
    min-height: 365px;
    height: auto !important;
    padding-top: 15px;
}

.competencySearchBox {
    width: 75%;
}

#select2-skillsSearch-container {
    position: absolute;
    width: 100%;
    top: 35px;
    overflow: hidden;
    overflow-y: scroll;
    min-height: 310px;
    max-height: 310px;
    margin: 0;
    padding: 0 0 15px;
}
#select2-skillsSearch-container:empty::-webkit-scrollbar {
    display: none;
}

.menuLink {
    display: none;
    margin: 2rem 3rem 0 1rem;
}

    .menuLink a {
        border: 1px solid #fff;
        border-radius: 5px;
        display: inline-block;
        padding: 5px 10px;
    }

        .menuLink a i {
            color: #f0f3f8;
            font-size: 15px;
            line-height: 1.5;
        }

.logo {
    max-width: 100%;
    padding: 2px 0 0px;
}

    .logo a {
        /*display: inline-block;*/
    }

    .logo svg {
        height: 60px;
    }

.loginInfo {
    display: flex;
    flex-direction: row;
    height: 64px;
    justify-content: flex-end;
    align-items: center;
}

.activeLogin {
    align-items: center;
    color: #f0f3f8;
    display: flex;
    flex-direction: row;
    font-size: 1.5rem;
    position: relative;
}

.activeUser {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f0f3f8;
    font-weight: 700;
    border: 2px solid #ffffff;
    border-radius: 23px;
    margin-right: 10px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    background: #eca20a;
}

    .activeUser img {
        width: 100%;
    }
.headerHelpIcon {
    margin-left: 8px;
}
.headerHelpIcon svg path {
    fill: #0096d4;
}
.userName {
    color: #222;
    padding-right: 20px;
    position: relative;
}

    .userName::after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #222;
        content: '';
        margin-top: 9px;
        position: absolute;
        right: 0;
        top: 0;
    }

.loginPopup {
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 9;
    padding-top: 6px;
    display: none;
    overflow: hidden;
}

.poplist {
    font-size: 1.3rem;
    color: #222;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    transform: translateY(-150px);
    transition: transform 1s ease-in-out;
}

    .poplist a {
        color: #222;
        display: inline-block;
        font-size: 1.4rem;
        padding: 10px 15px;
        text-decoration: none;
        width: 100%;
    }

        .poplist a:hover {
            color: #0078d4;
        }

.activeLogin:hover .loginPopup {
    display: block;
}

    .activeLogin:hover .loginPopup .poplist {
        transform: translateY(0);
    }

.btnLogin {
    background: #eca20a;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 2rem;
    transition: background .2s ease-in;
}

    .btnLogin:hover {
        background: #dd9706;
        color: #ffffff;
    }

.navBar {
    list-style-type: none;
    margin: 0 0 0 50px;
    padding: 0;
}

    .navBar li {
        display: inline-block;
        padding-right: 15px;
        vertical-align: top;
    }

        .navBar li a {
            border-bottom: 2px solid transparent;
            color: #f0f3f8;
            cursor: pointer;
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 600;
            padding: 22px 10px 14px;
            text-decoration: none;
        }

            .navBar li a:hover, .navBar li .active {
                border-bottom: 2px solid #eca20a;
            }

/*** Link Animation ***/

.linkAnimation {
    position: relative;
}

    .linkAnimation::before,
    .linkAnimation::after {
        position: absolute;
        width: 100%;
        height: 1px;
        background: #0078d4;
        top: 100%;
        left: 0;
        pointer-events: none;
    }

    .linkAnimation::before {
        content: '';
        /* show by default */
    }

    .linkAnimation::before {
        transform-origin: 100% 50%;
        transform: scale3d(0, 1, 1);
        transition: transform 0.3s;
    }

    .linkAnimation:hover::before {
        transform-origin: 0% 50%;
        transform: scale3d(1, 1, 1);
    }

/*** Content ***/

.mainSection {
    width: 100%;
    background: #FCF9FE;
    min-height: calc(100% - 92px);
    position: relative;
    justify-content: center;
    display: flex;
}

.collapseMenu {
    background: #3686d8;
    display: none;
    height: 100%;
    left: -300px;
    position: absolute;
    top: 0;
    transition: left 1s ease-in-out;
    width: 300px;
    z-index: 99;
}

.showMenu {
    left: 0;
}

.sideMenu {
    background: #3686d8;
    height: 100%;
    width: 220px;
    display: flex;
    padding-bottom: 30px;
    position: relative;
}


.toggleSideMenu {
    right: -33px;
    position: absolute;
    display: none;
    color: #3686d8;
}

.sideList {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .sideList li {
        align-items: center;
        border-bottom: 1px solid #ffffff;
        color: #ffffff;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        font-size: 1.4rem;
        font-weight: 400;
        padding: 6px 1px 6px 4px;
        transition: background .3s ease-in;
    }

        .sideList li.visited {
            border-right: 5px solid #eca20a;
        }

        .sideList li a {
            align-items: center;
            color: #ffffff;
            display: flex;
            flex-direction: row;
            text-decoration: none;
        }

            .sideList li a:hover {
                text-decoration: none;
            }

        .sideList li:hover, .sideList li.active {
            background: #69a5e2;
        }

.listIcon {
    background: #fff;
    border-radius: 25px;
    display: inline-block;
    height: 50px;
    margin-right: 15px;
    text-align: center;
    width: 50px;
}

    .listIcon i {
        color: #0078d4;
        font-size: 24px;
        font-weight: 600;
        line-height: 50px;
    }

.listTitle {
    display: inline-block;
    vertical-align: middle;
}

.chooseTemplateContainer {
    min-height: 300px;
    padding: 32px;
    width: 100%;
    background: #FCF9FE;
}

.actionContainer {
    text-align: center;
    margin: 20px 0;
}

.mainDataContainer {
    width: 100%;
    display: flex;
}

.formContainer {
    min-height: 300px;
    padding: 33px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.examplesContainer {
    padding-top: 20px;
    height: 90vh;
    overflow: hidden;
}

    .examplesContainer .input-group {
        z-index: 0;
    }
    .examplesContainer .input-group-addon, .examplesContainer .form-control {
        border: 1px solid #ccc;
    }
    .examplesContainer .input-group-addon .searchButton {
        height: 97%;
    }
.skillTextEditor {
    margin-top: 15px;
}
.examplesContainerContent {
    max-height: 100%;
    overflow-y: auto;
}

.ui-autocomplete {
    max-height: 320px;
    overflow-y: auto;
    width: 18.6%;
}

.collapsedAdvice {
    display: none;
}

.expandedAdvice {
    height: 260px;
}

.title {
    border-bottom: 1px solid #ccc;
    color: #465A6B;
    font-size: 2.2rem;
    font-weight: 600;
    padding-bottom: 3px;
    position: relative;
}

    .title i {
        font-size: 14px;
        position: absolute;
        right: 5px;
        top: 10px;
        transform: rotate(90deg);
        transition: all 300ms ease-in;
    }

        .title i.on {
            transform: rotate(-90deg);
        }

/*** Signin Form Container ***/

.signinFormInfo {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    min-height: 300px;
    overflow: hidden;
    width: 570px;
}

.signinData {
    align-items: center;
    background: url(/images/login_bg.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 35px 0;
    position: relative;
    z-index: 1;
}

    .signinData::after {
        background: rgba(89, 82, 165, 0.7);
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
    }

.signinHeading {
    color: #f0f3f8;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.signinDetails {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.signinRow {
    display: flex;
    margin-bottom: 15px;
}

.passwordRow {
    padding-top: 30px;
}

.signinIconInfo {
    margin-right: 15px;
}

    .signinIconInfo i {
        color: #f0f3f8;
        font-size: 20px;
    }

.signinLabelInfo {
    display: flex;
    flex-direction: column;
}

.signinLabel {
    color: #f0f3f8;
    font-size: 16px;
}

.signinInput {
    background: transparent !important;
    border: none;
    border-bottom: 2px solid #fff;
    color: #f0f3f8 !important;
    font-size: 16px;
    padding: 3px 0;
    width: 300px;
}

    .signinInput:focus {
        border-bottom: 2px solid #ad803f;
    }

    .signinInput::placeholder {
        color: #f0f3f8;
        text-transform: uppercase;
    }

.signUp {
    color: #0078d4 !important;
}

.error-message {
    color: #ff2d2d;
    font-size: 1.4rem;
    padding-top: 3px;
}

.terms-display {
    color: #0078d4;
    font-size: 12px;
    margin: 20px 0;
    display: inline-block;
}

.rememberInfo {
    color: #f0f3f8;
    font-size: 14px;
    font-weight: 400;
    padding: 0 6px 0 4px;
}

.forgotTextInfo {
    color: #FFD9E6;
    font-size: 14px;
    font-weight: 600;
}

    .forgotTextInfo:hover {
        color: #ff85ae;
    }

.signButtonInfo {
    justify-content: center;
    margin-top: 30px;
}

.signinButton {
    margin-right: 10px;
}

/*** Forgot Password ***/

.forgotContainer {
    padding: 40px;
    width: 100%;
}

.titleHeading {
    color: #222222;
    font-size: 26px;
    padding-bottom: 10px;
}

.forgotInput {
    align-items: center;
    display: flex;
    margin-bottom: 40px;
}

    .forgotInput label {
        color: #222222;
        font-size: 16px;
        font-weight: 600;
        margin: 0 10px 0 0;
    }

    .forgotInput input {
        border: 1px solid #cccccc;
        color: #222222;
        font-size: 16px;
        padding: 3px 6px;
        width: 300px;
    }


/*** Professional Tips ***/

.tipsContainer {
    padding-top: 2px;
    margin-left: 10px;
}

.tipsList {
    margin: 0;
    padding: 10px 0 0 20px;
}

    .tipsList li {
        color: #222;
        font-size: 1.4rem;
        padding-bottom: 10px;
    }

        .tipsList li i {
            color: #0078d4;
            margin-top: 2px;
        }

.tipsList-preview {
    margin: 0;
    padding: 0 0 0 20px;
}

    .tipsList-preview li {
        color: #f0f3f8;
        font-size: 1.4rem;
        padding-bottom: 10px;
    }

/*** Button ***/

.marginRight {
    margin-right: 5px;
}

.formButtonInfo {
    margin-top: 35px;
    margin-bottom: 20px;
}

.white-btn {
    border: 1px solid #fff;
    border: none;
    border-radius: 4px;
    color: #f0f3f8;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
}

    .white-btn:hover, .white-btn:focus, .white-btn:active {
        color: #eca20a;
        outline: none;
        text-decoration: none;
    }

.uploadPhotoButton {
    font-size: 14px;
    color: #555;
    background-color: #fff;
    border: 1px solid #0096d4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    margin-top: 10px;
}

.photoLabel {
    color: #666;
}

.photoBox {
    width: 150px;
    height: 150px;
    background: #e9e8e8;
    border: 1px solid #0096d4;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    border-radius: 4px;
}

    .photoBox img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.uploadedImage {
    height: 24px;
    width: 24px;
    margin-right: 10px;
    display: none;
    vertical-align: baseline;
    cursor: pointer;
}

.photoEditDiv {
    position: absolute;
    left: 46%;
    top: 155px;
    bottom: -15px;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    padding: 6px;
    background: #ffffff;
    border: 1px solid #222;
    transform: translateX(-50%);
    cursor: pointer;
}

.contactEditPhoto {
    display: flex;
    position: absolute;
    text-align: left;
    width: 30px;
    height: 30px;
    padding: 6px;
    cursor: pointer;
    margin-left: -7px;
    margin-top: -6px;
}

.contactDelIcon {
    display: flex;
    width: 30px;
    height: 30px;
    padding: 4px;
    cursor: pointer;
    margin-top: -7px;
    margin-left: 35px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #222;
}

.margin-top10 {
    margin-top: 10px;
}

.trans-btn {
    background-color: transparent;
    border: 1px solid #eca20a;
    border-radius: 4px;
    color: #eca20a;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 30px;
}

    .trans-btn:hover, .trans-btn:focus, .trans-btn:active {
        background-color: #eca20a;
        color: #ffffff;
        text-decoration: none;
    }

.trans-defaultBtn {
    background-color: transparent;
    border: 1px solid #eca20a;
    border-radius: 4px;
    color: #eca20a;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 30px;
}

    .trans-defaultBtn:hover, .trans-defaultBtn:focus, .trans-defaultBtn:active {
        background-color: #dd9706;
        color: #ffffff;
        text-decoration: none;
    }

.editResumeBtn {
    background-color: transparent;
    border: 1px solid #eca20a;
    border-radius: 4px;
    color: #eca20a;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .editResumeBtn svg {
        width: 24px;
    }

        .editResumeBtn svg path {
            fill: #eca20a;
        }

    .editResumeBtn:hover, .editResumeBtn:focus, .editResumeBtn:active {
        color: #fff;
        background: #eca20a;
    }

        .editResumeBtn:hover .toplinkLabel, .editResumeBtn:focus .toplinkLabel, .editResumeBtn:active .toplinkLabel {
            color: #fff;
        }

        .editResumeBtn:hover svg path, .editResumeBtn:focus svg path, .editResumeBtn:active svg path {
            fill: #fff;
        }

.resumeJobBtn {
    background-color: transparent;
    border: 1px solid #eca20a;
    border-radius: 4px;
    color: #eca20a;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .resumeJobBtn:hover, .resumeJobBtn:focus, .resumeJobBtn:active {
        color: #fff;
        background: #eca20a;
    }

.selectJobBox {
    width: 90% !important;
    margin-top: 10px;
    border: 1px solid #0096d4;
    padding: 5px 6px;
}

.renameSectionIcon {
    background-color: transparent;
    cursor: pointer;
}

    .renameSectionIcon svg {
        width: 24px;
        padding-left: 6px;
        margin-left: 10px;
    }


.renameSectionEditIcon {
    color: #0096d4;
}

    .renameSectionEditIcon svg path {
        fill: #0096d4;
    }

.renameSectionSaveIcon {
    color: darkgreen;
}

    .renameSectionSaveIcon svg path {
        fill: darkgreen;
    }

.renameSectionCancelIcon {
    color: darkred;
}

    .renameSectionCancelIcon svg path {
        fill: darkred;
    }

.renameSectionIcon:hover, .renameSectionIcon:focus, .renameSectionIcon:active {
    opacity: 0.7;
}


/*** Resume Journey Start ***/

.resumeJourneyInfo {
    color: #222b56;
    font-family: 'Lato';
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 10px;
    margin-top: 30px;
    padding: 5px 0 7px;
    position: relative;
}

    .resumeJourneyInfo::after {
        background: #eca20a;
        bottom: 0;
        content: '';
        height: 4px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        width: 60px;
    }

.resumeJobSearch {
    color: #222;
    font-size: 22px;
    margin-bottom: 30px;
}

.resumeList {
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 35px 20px 17px;
}

    .resumeList i {
        font-size: 80px;
        padding-bottom: 25px;
    }

.resumeHeading {
    color: #222;
    font-size: 22px;
    padding-bottom: 15px;
    line-height: 1.3;
    text-align: center;
    word-break: break-word;
}

.resumeText {
    color: #222;
    font-size: 16px;
    text-align: center;
}

.resumeBtnInfo {
    margin-bottom: 20px;
    margin-top: 20px;
}

.resumeSafeInfo {
    color: #666;
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}

/*** Register From Container ***/

.formContainerInfo {
    margin: 0 auto;
    padding: 40px 20px 0;
    width: 400px;
}

.registerFrom {
    padding: 30px 0;
}

.formTitle {
    width: 100%;
    color: #465A6B;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.3;
}

.registerFormGroup {
    height: inherit !important;
    margin-bottom: 20px !important;
}

    .registerFormGroup label {
        font-weight: 600;
    }

    .registerFormGroup .form-input {
        margin-top: 8px;
    }

.registerAccount {
    color: #666;
    font-size: 1.4rem;
    font-weight: 400;
    cursor: pointer;
}

.policyLinks {
    color: #0078d4;
}

    .policyLinks:hover {
        color: #0078d4;
    }

.registerForgotText {
    color: #0078d4;
    font-size: 1.4rem;
    font-weight: 600;
}

    .registerForgotText:hover {
        color: #0078d4;
    }
/*** Skill Review Section ***/

.showRatingContainer {
    display: flex;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    color: #222222;
}

.labelBoxInfo {
    width: 75%;
    display: flex;
    align-items: center;
    background: #5f5f5f;
    border: 1px solid #222;
    margin-left: 10px;
    border-radius: 4px;
}

.itemLabel {
    font-size: 8px;
    color: #f0f3f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
    border-left: 1px solid #e5e5e5;
}

    .itemLabel:first-child {
        border-left: 0;
    }

    .itemLabel.active {
        font-weight: bold;
    }

    .itemLabel span {
        font-size: 12px;
    }

.skillLabelBox {
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-size: 14px;
    color: #222222;
    font-weight: 400;
}

    .skillLabelBox label {
        font-size: 14px;
        color: #222222;
        font-weight: 400;
        margin-bottom: 0;
    }

.addSkillSection {
    display: flex;
    margin-top: 20px;
}

.skillItemInfo {
    height: inherit !important;
}

.iconAdd {
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #616161;
    display: block;
    margin-right: 6px;
}

    .iconAdd::before {
        content: '';
        position: absolute;
        width: 2px;
        height: 10px;
        background: #333;
        top: 4px;
        left: 8px;
    }

    .iconAdd::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 2px;
        background: #333;
        top: 8px;
        left: 4px;
    }

/*** Experience Review Starts ***/

.experienceInfo {
    padding-top: 20px;
}

.experienceSectionRow {
    border: 2px dotted #0096d4;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 17px 20px;
    position: relative;
    background: #FFF;
    box-shadow: 0 0 10px rgba(152, 152, 152, 0.2)
}

.experienceAddSection {
    align-items: center;
    color: #666;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    padding-top: 15px;
}

    .experienceAddSection i {
        font-size: 24px;
        padding-right: 10px;
    }

    .experienceAddSection a {
        display: inline-flex;
        color: #0078d4;
    }

.experienceEditInfo {
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 1;
    display: flex;
}

.experienceCurrentlyWorking {
    margin: 20px 0 0 !important;
    position: absolute
}

.previewLinkInfo {
    display: inline-block;
    padding: 0 10px;
}

    .previewLinkInfo i {
        color: #f0f3f8;
        cursor: pointer;
        font-size: 24px;
    }

.userProfile {
    display: flex;
    flex-wrap: wrap;
}

    .userProfile li {
        padding: 4px 8px !important;
        border: 1px solid #8e8e8e;
        background: #fff;
        border-radius: 6px;
        float: left;
    }

.resumeBoxContainer {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    padding: 20px 0;
}

.iFrameBox {
    background: #fff;
    box-shadow: 0 0 14px rgba(152, 152, 152, 1);
    border-radius: 4px;
}

.experLinkInfo {
    margin-left: 10px;
    display: flex;
}

    .experLinkInfo i {
        color: #0096D4;
        cursor: pointer;
        font-size: 20px;
    }

    .experLinkInfo:hover {
        text-decoration: none;
    }

.hoverExample {
    border-bottom: 1px dashed #ccc;
    cursor: pointer;
}

.experCompanyInfo {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    padding-right: 66px;
}

.experCitiInfo {
    color: #666;
    font-size: 14px;
    font-weight: normal;
}

.experPositionInfo {
    color: #222;
    font-size: 16px;
    padding-bottom: 8px;
}

.experCompanyDetailInfo {
    color: #222;
    font-size: 16px;
}

/*** Experience Review End ***/

/*** Start 404 ***/

.errorContainer {
    background: #fff;
    min-height: 100vh;
    padding: 40px 0;
}

.errorImageInfo {
    display: inline-block;
    width: 60%;
}

    .errorImageInfo img {
        max-width: 100%;
    }

.errorHeading {
    color: #666666;
    font-size: 36px;
    padding: 40px 0 20px;
}

.errorSubHeading {
    color: #666666;
    font-size: 20px;
    padding-bottom: 30px;
}

.errorText {
    color: #666666;
    font-size: 24px;
    font-weight: 300;
}

.errorSubText {
    color: #666666;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 20px;
}

.goButton {
    background: #eca20a;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    padding: 15px 25px;
    text-transform: uppercase;
    margin: 0 10px 15px 0;
}

    .goButton a {
        background: #eca20a;
        color: #ffffff;
        text-decoration: none;
    }

    .goButton:hover, .goButton:focus {
        background: #dd9706;
        color: #ffffff;
        text-decoration: none;
    }

.errorBox {
    height: 100px;
    margin: 20px 0px;
    width: 50%;
}

/*** End 404 ***/

/*** Start Settings , also used in change password ***/

/* General Styles */
.settings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.settings-header {
    background-color: #0096d4;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.settings-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.profile-info {
    display: flex;
    align-items: center;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
}

.profile-email {
    margin-left: 10px;
    font-size: 14px;
    color: #e0e0e0;
}

/* Account Info Section */
.account-info-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.info-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: bold;
}

.account-type {
    color: #0096d4;
}

/* Notifications Section */
.notifications-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0096d4;
}

.notification-item {
    margin-bottom: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #0096d4;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

.checkbox-container input {
    display: none;
}

    .checkbox-container input:checked + .checkmark::after {
        content: '';
        position: absolute;
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid #0096d4;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.checkbox-label {
    font-size: 14px;
}

.success-message {
    color: #28a745;
    font-size: 14px;
    margin-top: 10px;
}

/* Plan Details Section */
.plan-details-section {
    margin-bottom: 20px;
}

.plan-table {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-header, .table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

    .table-row:last-child {
        border-bottom: none;
    }

.table-cell {
    flex: 1;
    padding: 5px;
    text-align: center;
}

.table-header .table-cell {
    font-weight: bold;
    background-color: #0096d4;
    color: #fff;
}

/* Footer Note */
.footer-note {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}

/* Buttons */
.default-btn-blue {
    background-color: #0096d4;
    border-color: #0096d4;
    padding: 6px 18px;
}

.trans-btn-blue {
    border-color: #0096d4;
    color: #0096d4;
    padding: 6px 18px;
}

.organFormButtonInfo a.trans-btn {
    padding: 10px 16px;
}
/*** End Settings ***/


/*** Start Login ***/
.loginContainer {
    align-items: center;
    background: #5a7ec5;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.loginSection {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 18px 1px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 570px;
}

.loginData {
    align-items: center;
    background: url(/images/login_bg.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 35px 0;
    position: relative;
    z-index: 1;
}

    .loginData::before {
        background: rgba(89, 82, 165, 0.7);
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 0;
    }

.loginTitle {
    color: #f0f3f8;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.loginDetails {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.loginFormRow {
    align-items: center;
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}

.LoginiconInfo {
    margin-right: 15px;
}

    .LoginiconInfo i {
        color: #f0f3f8;
        font-size: 20px;
    }

.lofinLabelInfo {
    display: flex;
    flex-direction: column;
    position: relative;
}

.inputInfo {
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #f0f3f8;
    font-size: 16px;
    padding: 3px 0;
    width: 300px;
}

input.inputInfo::placeholder {
    color: #f0f3f8;
    text-transform: uppercase;
}

.errorMessInfo {
    bottom: -17px;
    color: #ffb8d0;
    font-size: 1.1rem;
    left: 0;
    padding-top: 3px;
    position: absolute;
}

.passwordRow {
    padding-top: 35px;
    position: relative;
}

.forgotInfo {
    bottom: 6px;
    color: #FFD9E6;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    position: absolute;
    right: 0;
    text-transform: uppercase;
}

    .forgotInfo:hover {
        color: #ff85ae;
    }

.loginButtonInfo {
    padding-top: 25px;
}

.loginBtn {
    text-transform: uppercase;
}

.createAccount {
    color: #FFD9E6;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
    text-transform: uppercase;
}

    .createAccount:hover {
        color: #ff85ae;
    }

.loginWithSocial {
    align-items: center;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    padding: 45px 0;
}

.faceBookBtn {
    align-items: center;
    background-color: #3B5998;
    border-radius: 4px;
    color: #f0f3f8;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    padding: 10px 30px;
    width: 230px;
}

    .faceBookBtn:hover, .faceBookBtn:focus, .faceBookBtn:active {
        background-color: #4d70bb;
        color: #f0f3f8;
        text-decoration: none;
    }

    .faceBookBtn i {
        font-size: 18px;
        padding-right: 7px;
    }

.twitterBtn {
    align-items: center;
    background-color: #1DA1F2;
    border-radius: 4px;
    color: #f0f3f8;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
    margin-top: 20px;
    padding: 10px 30px;
    width: 230px;
}

    .twitterBtn:hover, .twitterBtn:focus, .twitterBtn:active {
        background-color: #349cdc;
        color: #f0f3f8;
        text-decoration: none;
    }

    .twitterBtn i {
        font-size: 16px;
        padding-right: 7px;
    }

/*** End Login ***/

/*** Start Change Password ***/

.mb-3 {
    margin-bottom: 15px;
}

.cp-form-control {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/*** End Change Password ***/

/*** Start Upload Resume ***/
.resumeUploadContainer {
    display: flex;
    justify-content: center;
}

.uploadResumeSection {
    display: flex;
    margin: 60px 0;
}

.uploadPhoto {
    margin: 10px;
    width: 50%;
    display: inline-block;
}

    .uploadPhoto .uploadPicIcon {
        width: 30px;
        height: 20px;
        margin-right: 4px;
    }

.showUserImage {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.image-preview {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

    .image-preview img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 5px;
    }

.uploadItemBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 260px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 0 10px;
    position: relative;
}

    .uploadItemBox svg {
        width: 40px;
        margin-bottom: 10px;
    }

    .uploadItemBox label {
        font-size: 16px;
        color: #222;
        font-weight: 500;
        cursor: pointer;
    }

    .uploadItemBox input {
        display: none;
        font-size: 16px;
        color: #222;
        font-weight: 400;
        text-align: center;
    }

.editSampleBox {
    background: none;
    border: 0px;
    border-radius: 0px;
    padding-left: 25px;
}

.uploadResumeBtn {
    font-size: 16px;
    color: #222;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .uploadResumeBtn:hover {
        color: #222;
    }

.uploadOrArea {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    padding: 20px;
}

.uploadMessage {
    padding-top: 20px;
    color: #3686d8;
    font-weight: 600;
    font-size: 14px;
}

.EditSampleMessage {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #3686d8;
    font-weight: 600;
    font-size: 14px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin-bottom: 20px;
}
/*** End Upload Resume ***/
/*** Start Donate ***/
.designTitle {
    color: #222;
    font-size: 28px;
}

.designTag {
    background: #DFEEFF;
    border: 1px solid #A7B7C9;
    border-radius: 4px;
    color: #666;
    font-size: 22px;
    padding: 2px 15px;
}

.thankResumeInfo {
    color: #222;
    font-size: 24px;
    line-height: 1.3;
    padding: 55px 15% 0;
}

.onlineResumeInfo {
    color: #222;
    font-size: 15px;
    padding: 45px 20% 0;
}

.donateImageInfo {
    padding: 10px 0;
}

.donateNominalInfo {
    color: #222;
    font-size: 22px;
    padding: 0 25% 35px;
}

.donateSupportInfo {
    color: #222;
    font-size: 17px;
    padding-bottom: 15px;
}

.donateFormInfo {
    display: inline-flex;
    margin: 20px 0 60px;
}

.donateFormRow {
    align-items: center;
    display: inline-flex;
    padding-right: 30px;
}

.donateFormText {
    color: #222;
    font-size: 17px;
    line-height: 1;
}

.radioBtn[type='checkbox'] {
    display: none;
}

    .radioBtn[type='checkbox'] + label {
        border: 1px solid #ebebeb;
        border-radius: 500%;
        height: 20px;
        margin-bottom: 0;
        margin-right: 10px;
        position: relative;
        width: 20px;
    }

    .radioBtn[type='checkbox']:checked + label {
        border: 1px solid #eca20a;
    }

        .radioBtn[type='checkbox']:checked + label::before {
            background: #eca20a;
            border-radius: 500%;
            content: '';
            height: 14px;
            left: 2px;
            position: absolute;
            top: 2px;
            width: 14px;
        }


.donateAmount {
    color: #222;
    font-size: 17px;
}

    .donateAmount input {
        border: none;
        border-bottom: 1px solid #ebebeb;
        margin-left: 5px;
    }

.donateBtnInfo {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.donateBtn {
    align-items: center;
    background: #eca20a;
    border-radius: 23px;
    color: #f0f3f8;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    height: 46px;
    justify-content: center;
    padding: 0 25px;
    text-transform: uppercase;
}

    .donateBtn img {
        padding-right: 15px
    }

    .donateBtn:hover, .donateBtn:focus {
        background-color: #ad803f;
        color: #f0f3f8;
        text-decoration: none;
    }

.donateRightInfo {
    color: #999;
    font-size: 13px;
    padding-bottom: 30px;
    padding-top: 15px;
}

/*** End Donate ***/


/***  Start Form ***/


.errorInfo {
    color: #FF2D2D;
    display: none;
    font-size: 1.1rem;
    padding-top: 3px;
}

.successInfo {
    color: green;
    display: none;
    font-size: 1.1rem;
    padding-top: 3px;
}

.successMsg {
    color: green;
    font-size: 1.4rem;
    padding-top: 3px;
}

.mb-3 label {
    color: #666;
}

.input-group-dropdown {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 2px solid #0078d4;
    border-radius: 0;
    box-shadow: none;
    height: 32px;
    outline: none;
    padding-left: 10px;
    width: 100%;
}

    .input-group-dropdown option {
        padding: 8px 12px; /* Adjust padding values as needed */
    }

.mb-3 input {
    border: 1px solid #0096d4;
}

.input-group-addon {
    color: #0096d4;
    background-color: #fff;
    border: 1px solid #0096d4;
}

.mb-3 input {
    border: 1px solid #0096d4;
}

    .mb-3 input:focus {
        border: 2px solid #0078d4;
    }

.invalid {
    border: 1.5px solid red !important;
}

.mb-3 input:focus {
    border: 2px solid #0078d4;
}

.mb-3 input:visited {
    border: 2px solid #0078d4;
}

.searchButton {
    border: none;
    background: #fff;
}
/*** End Form ***/
.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.5s ease-in-out;
}

.formPanel {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.formHeading {
    border-bottom: 1px solid #ccc;
    color: #222;
    font-size: 1.9rem;
    font-weight: 600;
    padding-bottom: 3px;
}

.formContact {
    padding: 15px 0 25px;
}

.card {
    border: 1px solid #ccc;
    margin-bottom: 10px;
}
.faqAccordion .card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px !important;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.faqAccordion .faqHead {
    width: 100%;
    font-size: 18px;
    color: #222;
    line-height: 1.2;
    position: relative;
    text-align: left;
}
.faqAccordion .faqHead:active {
    font-size: 18px;
    color: #222;
}

.card .card-header {
    border-bottom: none !important;
    color: #666;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
    padding: 6px 0px 6px 4px;
}

.card .card-header a {
    color: #666;
    text-decoration: none;
}
.faqAccordion .faqHead.collapsed::after {
    transform: rotate(45deg) translate(-12px, 0);
}
.faqAccordion .faqHead::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    padding: 4px;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    transform: rotate(225deg) translate(10px, -3px);
}
.faqAccordion .card-body {
    border-top: 1px solid #eee;
    padding: 15px;
    text-align: left;
}
/*** Custom Checkbox ***/
.input[type='checkbox'] {
    display: none;
}

    .input[type='checkbox'] + label {
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
        margin: 0;
        overflow: hidden;
    }

        .input[type='checkbox'] + label.check {
            background: #fff;
            border: 1px solid #DDDDDD;
            border-radius: 2px;
            display: inline-flex;
            height: 18px;
            margin-right: 10px;
            position: relative;
            width: 18px;
        }

    .input[type='checkbox']:checked + label.check {
        border: 1px solid #eca20a;
    }

        .input[type='checkbox']:checked + label.check::before {
            animation: checkAnimation 0.2s;
            border-bottom: 2px solid #eca20a;
            border-left: 2px solid #eca20a;
            content: '';
            height: 6px;
            left: 2px;
            position: absolute;
            top: 8px;
            transform: rotate(-45deg);
            transform-origin: left top;
            width: 10px;
        }

@keyframes checkAnimation {
    0% {
        height: 0;
        width: 0;
    }

    50% {
        height: 4px;
        width: 0;
    }

    100% {
        height: 4px;
        width: 8px;
    }
}
/*** Custom Radio ***/

.customRadioInfo {
    display: flex;
    align-items: center;
    user-select: none;
}


    .customRadioInfo .radioButton[type="radio"]:checked, .customRadioInfo .radioButton[type="radio"]:not(:checked) {
        position: absolute;
        left: -9999px;
    }

        .customRadioInfo .radioButton[type="radio"]:checked + label,
        .customRadioInfo .radioButton[type="radio"]:not(:checked) + label {
            position: relative;
            padding-left: 24px;
            cursor: pointer;
            line-height: 18px;
            display: inline-block;
            font-size: 14px;
            color: #222;
            margin: 0;
            min-width: 54px;
        }

            .customRadioInfo .radioButton[type="radio"]:checked + label:before,
            .customRadioInfo .radioButton[type="radio"]:not(:checked) + label:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 18px;
                height: 18px;
                border: 1px solid #eca20a;
                border-radius: 100%;
                background: #fff;
            }

            .customRadioInfo .radioButton[type="radio"]:checked + label:after,
            .customRadioInfo .radioButton[type="radio"]:not(:checked) + label:after {
                content: '';
                width: 10px;
                height: 10px;
                background: #eca20a;
                position: absolute;
                top: 4px;
                left: 4px;
                border-radius: 100%;
                -webkit-transition: all 0.2s ease;
                transition: all 0.2s ease;
            }

            .customRadioInfo .radioButton[type="radio"]:not(:checked) + label:after {
                opacity: 0;
                -webkit-transform: scale(0);
                transform: scale(0);
            }

            .customRadioInfo .radioButton[type="radio"]:checked + label:after {
                opacity: 1;
                -webkit-transform: scale(1);
                transform: scale(1);
            }

    .customRadioInfo .imageButton[type="radio"]:checked + label, .customRadioInfo .imageButton[type="radio"]:not(:checked) + label {
        min-width: 34px;
        width: 38px;
        height: 38px;
        padding: 4px;
        background: #3686d8;
        border: 2px solid #fff;
        border-radius: 4px;
    }

    .customRadioInfo .imageButton[type="radio"] + label svg {
        width: 100%;
    }

        .customRadioInfo .imageButton[type="radio"] + label svg path {
            fill: #fff;
        }

    .customRadioInfo .imageButton[type="radio"]:checked + label {
        border: 2px solid #eca20a;
    }

        .customRadioInfo .imageButton[type="radio"]:not(:checked) + label::after, .customRadioInfo .imageButton[type="radio"]:checked + label::after {
            display: none !important;
        }

        .customRadioInfo .imageButton[type="radio"]:not(:checked) + label::before, .customRadioInfo .imageButton[type="radio"]:checked + label::before {
            display: none !important;
        }


    .customRadioInfo .bgGraphicImg[type="radio"]:checked + label, .customRadioInfo .bgGraphicImg[type="radio"]:not(:checked) + label {
        min-width: 34px;
        width: 88px;
        height: 32px;
        padding: 0;
        background: #fff;
        border: 2px solid #3686d8;
        border-radius: 4px;
        overflow: hidden;
        color: #3686d8 !important;
        font-weight: 600;
        text-align: center;
        line-height: 26px;
    }

    .customRadioInfo .bgGraphicImg[type="radio"] + label img {
        width: 100%;
    }

    .customRadioInfo .bgGraphicImg[type="radio"]:checked + label {
        border: 2px solid #eca20a;
    }

        .customRadioInfo .bgGraphicImg[type="radio"]:not(:checked) + label::after, .customRadioInfo .bgGraphicImg[type="radio"]:checked + label::after {
            display: none !important;
        }

        .customRadioInfo .bgGraphicImg[type="radio"]:not(:checked) + label::before, .customRadioInfo .bgGraphicImg[type="radio"]:checked + label::before {
            display: none !important;
        }


/**Test**/
/* Style for the modal */
.uploadModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border: 2px solid #ccc;
    z-index: 1000;
}

.overlayPreview {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.img-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/**Test**/
/*** Upload Section Styling ***/

.uploadInfo {
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.uploadTitle {
    font-size: 22px;
    font-weight: 600;
    color: #222b56;
}

.uploadFileBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 20px 0;
    border: 2px dashed #ccc;
    border-radius: 10px;
    position: relative;
}

.uploadData {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.fileUpload {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.uploadImgBox {
    width: 42px;
    margin-bottom: 20px;
}

.dragText {
    font-size: 16px;
    color: #222b56;
    text-align: center;
}

.maxSizeText {
    font-size: 12px;
    color: #222;
    line-height: 1.2;
    margin-top: 12px;
    text-align: center;
}

.formatText {
    font-size: 12px;
    color: #222;
    line-height: 1.2;
    text-align: center;
}

.uploadedImgInfo {
}

    .uploadedImgInfo .img-container {
        max-width: 250px;
        max-height: 350px margin: 0 auto;
    }

.uploadedText {
    font-size: 12px;
    color: #222;
    line-height: 1.2;
    text-align: center;
    margin-top: 12px;
}

.uploadButtonInfo {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
/***  Preview Side Menu  ***/
.previewContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-top: 60px;
}

.previewTabInfo {
    display: flex;
    flex-direction: row;
    width: 25%;
}

.previewTabList {
    background: #3686d8;
    width: 22%;
}

    .previewTabList .tabView {
        margin: 0;
        padding: 0;
    }

        .previewTabList .tabView li {
            cursor: pointer;
            padding: 12px 4%;
            text-align: center;
        }

            .previewTabList .tabView li:hover, .previewTabList .tabView li.active {
                background: #69a5e2;
            }

.previewDataContainer {
    min-height: 550px;
    text-align: center;
    width: 75%;
}

.actionBtn {
    padding-bottom: 10px;
    padding-top: 10px;
}

.tabIcon {
    color: #f0f3f8;
    font-size: 16px;
}

.tabTitle {
    color: #f0f3f8;
    display: block;
    font-size: 14px;
    padding-top: 8px;
}

.previewTabAction {
    background: #69a5e2;
    padding: 15px;
    width: 78%;
}

.previewBGGraphic1 {
    background: url("/images/BG1.png");
    height: 10px;
    width: 30px;
}

.previewBGGraphic2 {
    background: url("/images/BG1.png");
    height: 10px;
    width: 30px;
}

.previewBGGraphic3 {
    background: url("/images/BG1.png");
    height: 10px;
    width: 30px;
}

.previewBGGraphic4 {
    background: url("/images/BG1.png");
    height: 10px;
    width: 30px;
}

.res-modal .modal-dialog {
    width: 450px;
}

.linkedInSummaryModal .modal-dialog {
    width: 550px;
}

.copy-message {
    display: none;
    margin-left: 8px;
    color: green;
    font-size: 0.9rem;
}

.res-modal .modal-content {
    width: 100%;
    padding: 10px;
}

    .res-modal .modal-content .modal-header {
        padding: 10px 15px;
    }

    .res-modal .modal-content .modal-body {
        padding: 10px 15px;
    }

    .res-modal .modal-content .modal-footer button {
        margin: 0;
    }

        .res-modal .modal-content .modal-footer button + button {
            margin: 0 0 0 10px;
        }

.res-modal .modal-footer .modal-footer-button-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
/***  Edit section  ***/
.editSection {
    display: block;
}

.editLinkInfo {
    align-items: center;
    background: #5294d8;
    border: 1px dashed #cce1f6;
    border-radius: 4px;
    color: #f0f3f8;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-size: 14px;
    height: 50px;
    margin-bottom: 8px;
    padding: 0 10px 0 15px;
}

    .editLinkInfo .experLinkInfo {
        opacity: 0;
    }

        .editLinkInfo .experLinkInfo i {
            color: #f0f3f8;
        }

    .editLinkInfo:hover {
        background: #3686d8;
        cursor: move;
    }

    .editLinkInfo:first-child:hover {
        cursor: default;
    }

    .editLinkInfo:hover .experLinkInfo {
        opacity: 1;
    }

    .editLinkInfo i {
        font-size: 16px;
        padding: 0 6px;
    }

    .editLinkInfo svg {
        width: 24px;
        margin-top: 4px;
    }

        .editLinkInfo svg path {
            fill: #fff;
        }

    .editLinkInfo .preview-btn {
        background: none;
        border: none;
        color: #f0f3f8;
    }

        .editLinkInfo .preview-btn:hover {
            color: #f0f3f8;
            text-decoration: none;
        }

.borderNone {
    border: none;
}

.editTitle {
    flex: 1;
    line-height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    padding-right: 4px;
}

/***  Format section  ***/

.formatSection {
    display: none;
    width: 100%;
}

.tabHeading {
    color: #f0f3f8;
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 15px;
}

.changeTemplateBox {
    display: flex;
    flex-wrap: wrap;
    max-height: 90%;
    overflow-y: scroll;
}

    .changeTemplateBox .item {
        width: 100%;
        margin-bottom: 20px;
    }

.itemImageBox {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.itemName {
    font-size: 1.6rem;
    color: #f0f3f8;
    padding: 6px 0;
    text-align: center;
}

.formatRow {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

    .formatRow label {
        color: #f0f3f8;
        font-size: 1.2rem;
        font-weight: normal;
        padding-left: 7px;
    }

.formatItemDetails {
    width: 100%;
}

.formatItemHeading {
    font-size: 1.6rem;
    color: #f0f3f8;
    padding-bottom: 4px;
}

.formatItemData {
    display: flex;
    flex-wrap: wrap;
    //background: #f0f7ff;
    background: rgba(240, 247, 255, 30%);
    border-radius: 2px;
    padding: 8px 10px 0 12px;
}

    .formatItemData .customRadioInfo {
        margin: 0 10px 10px 0;
    }

        .formatItemData .customRadioInfo label {
            color: #f0f3f8 !important;
        }

.selectInfo {
    border-bottom: 1px solid #ffffff;
    position: relative;
    z-index: 0;
}

.selectLabel {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #f0f3f8;
    font-size: 1.6rem;
    margin-bottom: 0;
    outline: none;
    padding: 0 7px 5px;
    width: 100%;
}

    .selectLabel option {
        background: #5a7ec5;
    }

.selectInfo .arrow {
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    height: 8px;
    position: absolute;
    right: 15px;
    top: 10px;
    transform: rotate(-45deg);
    width: 8px;
    z-index: -1;
}

.inputLabel {
    background: transparent;
    border: none;
    border-bottom: 1px solid #BEB9E9;
    color: #f0f3f8;
    font-size: 1.6rem;
    padding: 3px 7px;
    width: 70px;
}

.colorLabel {
    width: 100px;
}


/***  Themes Section  ***/

.themesSection {
    display: none;
}

.themeRowInfo {
    align-items: center;
    background: #5294d8;
    border: 1px dashed #cce1f6;
    border-radius: 4px;
    color: #f0f3f8;
    cursor: default;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    margin-bottom: 6px;
    padding: 10px 15px;
}

    .themeRowInfo:hover {
        background: #3686d8;
        cursor: default;
    }

.themeTitle {
    color: #f0f3f8;
    flex: 1;
    font-size: 16px;
    line-height: 18px;
    padding: 5px 20px 5px 0;
}

.colorPicker {
    border: 1px solid #e2e4e6;
    height: 26px;
    overflow: hidden;
    width: 80px;
}

    .colorPicker ul {
        display: flex;
        margin: 0;
        padding: 0;
    }

    .colorPicker li {
        height: 40px;
        list-style-type: none;
        min-width: 33%;
        flex: 1;
    }

/***  Add New Section  ***/

.addSection {
    display: none;
}

.addSectionRow {
    align-items: center;
    border-bottom: 1px dashed #ffffff;
    color: #f0f3f8;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    padding-bottom: 5px;
    padding-top: 6px;
}

.sectionTitle {
    flex: 1;
}

/***  Change Template Section  ***/

.changeTemplateSection {
    display: none;
    position: fixed;
    top: 60px;
    width: 90%;
    height: calc(100% - 60px);
    left: 10%;
    color: #ffffff;
    background: #69a5e2;
    padding: 16px;
    z-index: 8;
}

.overflowHidden {
    overflow: hidden;
}

.closeIcon {
    text-align: right;
}

/***  Tips Section  ***/

.tipsSection {
    display: none;
    width: 95%;
    padding: 0 0 55px;
}

/*** ***/
.fileNameField {
    font-size: 14px;
    color: #222;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 6px;
    color: #0078d4;
    display: none;
}

.fileResumeUpload {
    display: block;
}

.uploadBtn {
    background-color: #eca20a;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 22px;
    display: none;
}

    .uploadBtn:hover {
        background-color: #dd9706;
        color: #fff;
        outline: none !important;
        text-decoration: none;
    }

.margin-left37 {
    margin-left: 37%;
}

.uploadError {
    font-size: 12px;
    color: #ff2d2d;
    line-height: 1.2;
    padding-top: 2px;
    display: none;
}

.visible {
    display: block;
}
/*** Sell Page Start ***/

.payment-faq {
    padding: 30px 0 30px 0;
    text-align: center;
    font-size: 15px;
}

.faqHead {
    font-size: 16px;
}

.selectPlanContainer {
    width: 100%;
}

.paymentPlanInfo {
    background: #fff;
}

.fullHeight {
    height: 98%;
}

.sucessfullInfo {
    padding: 30px 15px 35px;
}

.congratInfo {
    color: #222;
    font-size: 42px;
}

.sellStepInfo {
    color: #222;
    font-size: 22px;
}

.oneTimeInfo {
    color: #666;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 0 10px;
    font-weight: bold;
}

.secureCheckout {
    color: #666;
    padding-top: 0px;
    font-size: 15px;
}

.recurringInfo {
    color: #222;
    font-size: 18px;
}

.freeTemplateInfo {
    background: #EEEEEE;
    border: 1px solid #B5B5B5;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 425px;
    padding: 30px 20px 20px;
}

.templateHeading {
    font-family: 'Lato';
    font-size: 26px;
    padding-bottom: 10px;
}

.templatePrice {
    font-size: 20px;
    font-weight: 600;
}

.discountedTemplatePrice {
    font-size: 20px;
    font-weight: 600;
    color: blue;
}

.margin-right5 {
    margin-right: 5px !important;
}

.nodiscount {
    font-size: 22px;
    font-weight: 600;
}

.templatePriceStrike {
    font-size: 16px;
    font-weight: 600;
    text-decoration: line-through;
    margin-left: 5px;
}

.freePlan {
    font-size: 20px;
}

.freePlanPadding {
    padding-bottom: 35px;
}

.templatePriceZeroGap {
    padding-bottom: 165px;
}

.templateList {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
    min-height: 130px;
    padding: 0 0 0 20px;
}

    .templateList li {
        color: #222;
        font-size: 16px;
        line-height: 1.2;
        padding-bottom: 10px;
        text-align: left;
    }

.templateButton {
    margin-top: 40px;
}

.continueBtn {
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
}

.greyedOut {
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid #CCC;
    background-color: #ccc;
}

.chargesPerDay {
    font-size: 18px;
}



ul li.check-green::after {
    content: "\f00c"; /* Font Awesome code for checkmark */
    font-family: FontAwesome; /* Replace with your icon library font family */
    color: green;
    font-size: 12px;
    margin-left: 10px;
}

ul li.check-red::after {
    content: "\f00d"; /* Font Awesome code for x mark */
    font-family: FontAwesome; /* Replace with your icon library font family */
    color: red;
    font-size: 12px;
    margin-left: 10px;
}

.bestSeller {
    position: absolute;
    left: -18px;
    top: 18px;
    color: white;
    font-weight: bold;
    background-color: green;
    padding: 2px 10px;
    border-radius: 20px;
    transform: rotate(-45deg);
}

.basicTemplateInfo {
    background: #D3CEA6;
    border: 1px solid #B5B5B5;
    border-radius: 8px;
    min-height: 425px;
    padding: 30px 20px 20px;
    margin-bottom: 15px;
    position: relative;
}

.standardTemplateInfo {
    background: #A6D3D1;
    border: 1px solid #B5B5B5;
    border-radius: 8px;
    min-height: 425px;
    padding: 30px 20px 20px;
    position: relative;
    margin-bottom: 15px;
}

.premiumTemplateInfo {
    background: #B1D3A6;
    border: 1px solid #B5B5B5;
    border-radius: 8px;
    min-height: 425px;
    padding: 30px 20px 20px;
    position: relative;
    margin-bottom: 15px;
}

.eliteTemplateInfo {
    background: cornSilk;
    border: 1px solid #B5B5B5;
    border-radius: 8px;
    min-height: 425px;
    padding: 30px 20px 20px;
    position: relative;
    margin-bottom: 15px;
}

.extTemplate {
    display: flex;
    flex-direction: column;
    min-height: 200px !important;
}

.extList {
    min-height: 100px !important;
}

.commonFeatureInfo {
    background: #555555;
    padding: 50px 0;
}

.featureHeading {
    color: #f0f3f8;
    font-family: 'Lato';
    font-size: 30px;
}

.colorBlack {
    color: #000;
}

.alignRight {
    text-align: right;
}

.featureContainer {
    padding: 70px 0 50px;
}

.featureItem {
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    height: 100px;
    width: 100px;
}

    .featureItem i {
        color: #666;
        font-size: 56px;
        line-height: 100px;
    }

    .featureItem .iconTimes {
        font-size: 42px;
    }

    .featureItem .iconJob {
        font-size: 50px;
    }

    .featureItem .iconAccess {
        font-size: 34px;
    }

.featureText {
    color: #f0f3f8;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 10px;
    margin-bottom: 20px;
}

.featureNoteInfo {
    font-size: 13px;
    margin-bottom: 4px;
    margin-top: 20px;
    text-align: center;
}

.dreamJobInfo {
    background: linear-gradient(to right, #A7385F 0%, #EF86B4 55%, #EF86B4 55%, #EF86B4 100%);
    padding: 40px 0;
}

.dreamHeading {
    color: #f0f3f8;
    font-size: 34px;
    font-weight: 300;
    padding: 0 20%;
}

.jobContainer {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

.jobList {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 14.28%;
}

.jobUserInfo {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    height: 110px;
    justify-content: center;
    overflow: hidden;
    width: 110px;
}

    .jobUserInfo img {
        width: 90%;
    }

.jobUserText {
    color: #f0f3f8;
    font-size: 16px;
    font-weight: 600;
    padding-top: 10px;
    text-align: center;
}

.currency {
    font-size: 32px;
    text-transform: uppercase;
    padding-right: 5px;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

/*** Sell Page End ***/

/*** Dashboard Page Start ***/

.dashboardContainer {
    background: #FCF9FE;
    padding: 45px 0;
}

.dashboardSection {
    padding-right: 70px;
}

.DashboardInput {
    display: flex;
    padding: 30px 0 20px;
}

.dashboardLabel {
    color: #222;
    font-size: 1.8rem;
    font-weight: 600;
    padding-right: 10px;
    width: 40%;
}

.noResumeDashboardLabel {
    color: #666;
    font-size: 1.8rem;
    font-weight: 600;
    padding-right: 10px;
    width: 60%;
}

    .noResumeDashboardLabel a {
        color: #337ab7;
    }

.dashboardSelect {
    width: 60%;
    border-radius: 3px;
}

    .dashboardSelect select {
        background: transparent;
        border: none;
        border-bottom: 2px solid #ccc;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        color: #999;
        font-size: 16px;
        outline: none;
        width: 100%;
    }

.padding-B0 {
    padding-bottom: 0px;
}

.previewFilters button {
    color: #fff;
    border-color: #fff;
}

    .previewFilters button.active {
        background: #fff;
        color: #0096d4;
    }

.previewInfo {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 25px 15px;
}

.previewTopLink {
    display: flex;
    justify-content: flex-end;
    margin: 0 10px 20px 0;
}

.toplinkLabel {
    font-size: 11px;
    font-weight: 600;
    color: #eca20a;
    line-height: 1.2;
    margin-top: 6px;
}

.previewActionButtons {
    float: left;
    margin-top: 9px;
    width: 60%;
    text-align: right;
}

    .previewActionButtons .default-btn:not(:first-child) {
        margin-left: 10px;
    }

.actionButtonInfo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.marginR10 {
    margin-right: 10px;
}

.marginR14 {
    margin-right: 14px;
}

.marginB5 {
    margin-bottom: 5px;
}

.marginB6 {
    margin-bottom: 6px;
}

.marginB40 {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.resumePreviewInfo {
    margin: 0 10px;
    position: relative;
}

    .resumePreviewInfo:hover .previewAction, .resumePreviewInfo:hover .resumebackInfo {
        visibility: visible;
    }

.resumeContainer {
    margin: 0;
    height: 850px;
    overflow: hidden;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.linkedInSummarySection {
    width: 100%;
    background: #FCF9FE;
    padding: 32px;
}

.linkedinBtn {
    display: flex;
    font-size: 16px;
    color: #5a7ec5;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 20px;
    text-align: center;
}

    .linkedinBtn:hover {
        color: #5a7ec5;
        opacity: 0.6;
    }

.linkedTopRow {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
}

.linkedTopRow .linkedSelect {
    width: 100%;
}

    .linkedLabel {
        color: #222;
        font-size: 1.8rem;
        font-weight: 600;
        padding-bottom: 4px;
    }

.linkedSelect {
    width: 100%;
}

.linkedPreviewInfo {
    margin: 0 !important;
    position: relative;
}


.stepItem {
    margin-bottom: 25px;
    justify-content: center;
    min-height: 170px;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(51, 51, 51, 0.2)
}

.stepItemText {
    font-size: 16px;
    color: #222;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

.powerFeatureHeadingRow {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.powerFeatureIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #0078d4;
    border-radius: 50px;
    margin-right: 12px;
}

    .powerFeatureIcon svg {
        display: flex;
        width: 28px;
        height: 28px;
    }

.powerFeatureHeading {
    display: flex;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}


@media screen and (max-width: 400px) {
    .resumeContainer {
        height: 337px;
    }

    .enable-touch {
        touch-action: auto !important
    }
}

.resumeContainerBox {
    height: 850px;
    overflow: hidden;
}

.resumeContainerLinkedIn {
    height: 403px;
    background: #fff;
}

.previewAction {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 9;
}

    .previewAction a {
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }

.resumebackInfo {
    background: rgba(0, 0, 0, 0);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 2;
}

.resumeDetailInfo {
    color: #666;
    font-size: 13px;
    padding-top: 20px;
}

.resumeDetailText {
    color: #222;
    font-weight: 600;
    text-align: left;
}

.newResumeInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 20px 10px 10px;
}

.emptyResumeBox {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .emptyResumeBox p {
        font-size: 20px;
        color: #222;
        text-align: center;
    }

    .emptyResumeBox a {
        background: #eca20a;
        border-radius: 4px;
        color: #fff;
        cursor: pointer;
        display: flex;
        justify-content: center;
        flex: 1;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 20px;
        border: 1px solid #eca20a;
        margin-top: 20px;
        white-space: nowrap;
    }

        .emptyResumeBox a:hover, .emptyResumeBox a:active {
            color: #fff !important;
            opacity: 0.7;
            text-decoration: none;
        }

.createResumeInfo {
    background: #fff;    
    border-radius: 6px;    
    text-align: center;
}

    .createResumeInfo i {
        color: #5a7ec5;
        font-size: 150px;
    }
.previewActionButtons {
    width: 53%; 

}
.actionButtonInfo .default-btn {
    padding: 10px 20px;
}

.dashboardHeading {
    display: block;
    font-size: 1.8rem;
    padding: 30px 0 4px;
}

.linkNoDecoration {
    text-decoration: none !important;
}

.cardSummaryDetails {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 24px 0 0;
}

.summaryCard {
    width: calc(50% - 24px);
    display: flex;
    padding: 10px 14px;
    margin: 0 12px 24px;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(152, 152, 152, 0.3);
}

    .summaryCard.selected {
        border: 1px solid #0096d4;
        background: aliceblue;
    }

.linkedNote {
    font-size: 12px;
    color: #555;
    padding: 0 12px;
}

.linkedInText {
    padding: 10px 0px 0px 0px;
    font-size: 14px;
    color: #222222;
    line-height: 1.5;
    padding-bottom: 10px;
    margin: 0;
}

.summaryCard .card-title {
    font-size: 14px;
    line-height: 1.4;
    color: #337ab7;
}

.summaryCard .card-text {
    font-size: 14px;
    line-height: 1.4;
    margin: 8px 0 0;
}

.btnLinkedInSummary {
    font-size: 14px;
    font-weight: 600;
    background-color: #5a7ec5 !important;
    padding: 7px 14px;
    outline: none !important;
    border: none;
}

    .btnLinkedInSummary:hover, .btnLinkedInSummary:focus, .btnLinkedInSummary:active, .btnLinkedInSummary:active:focus, .btnLinkedInSummary:active:hover {
        background-color: #5a7ec5 !important;
        outline: none !important;
        opacity: 0.8;
    }

.summary-card {
    cursor: pointer;
    transition: transform 0.2s;
}

    .summary-card:hover {
        transform: scale(1.05);
        border-color: #007bb5;
    }

.generateSummaryLinked {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 30px 20px;
}

.generateBtn {
    padding: 8px 24px;
}

    .generateBtn:focus, .generateBtn:active:focus {
        background-color: #007bb5 !important;
        border-color: #007bb5 !important;
        outline: none;
    }

.linkedGenerateDetails {
    width: 100%;
    padding: 0 12px;
}

.generateSummaryDetails {
    padding: 8px 0 14px;
}



.generatedSummarySection {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 12px;
}

.previousLinkedInSummaries {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 24px 0 0;
}

    .previousLinkedInSummaries .list-group-item {
        border-radius: 12px;
        padding: 12px 20px 20px;
    }

.listGroupHeaderRow {
    width: 100%;
    display: flex;
    width: 100%;
}

.listGroupHeading {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    font-size: 2rem;
    color: #222;
    line-height: 1.2;
}

    .listGroupHeading span {
        display: flex;
        align-items: center;
    }

.listGroupDate {
    font-size: 12px;
    color: #9d9d9d;
    padding-left: 6px;
}

.listGroupHeadingAction {
    width: 50%;
    justify-content: flex-end;
}

.listGroupResumeName {
    font-size: 13px;
    color: #333333;
    font-weight: 600;
    padding-right: 6px;
}

.listGroupDeleteBtn {
    display: flex;
    background: none;
    border: none;
    padding: 6px;
    transform: scale(1);
    transition: transform 0.3s ease-in;
}

    .listGroupDeleteBtn svg {
        width: 18px;
    }

        .listGroupDeleteBtn svg path {
            fill: #eca20a;
        }

    .listGroupDeleteBtn:hover {
        transform: scale(1.3);
    }

.listGroupDataDetails {
    padding-top: 20px;
    border-top: 1px solid #e2e2e2;
    margin-top: 8px;
}

.listGroupDataRow {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.listGroupDataHeading {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    line-height: 1.2;
}

.listGroupDataRight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.listGroupCopyBtn {
    display: flex;
    background: #fbfbfb;
    border: none;
    padding: 6px;
    border-radius: 4px 4px 0 0;
    margin-bottom: 5px;
}

    .listGroupCopyBtn svg {
        width: 18px;
        transform: scale(1);
        transition: transform 0.3s ease-in;
    }

        .listGroupCopyBtn svg path {
            fill: #eca20a;
        }

    .listGroupCopyBtn:hover svg {
        transform: scale(1.2);
    }

.listGroupDataSummary {
    background: #fbfbfb;
    font-size: 13px;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px 0 8px 8px;
}

.listGroupSkillDataDetails {
    margin-top: 24px;
}
.optimizeOptionsSection {
    padding: 0 12px;
}
.jobDescTextarea {
    min-height: 70px !important;
    margin-bottom: 8px;
}
.optimizationResultsSummary {
    padding-top: 0 !important;
}
.optimizationDetailInfo {
    padding: 0 12px;
}
.generatedSummaryInfo {
    margin-top: 24px;
}


    .generatedSummaryInfo .form-label {
        font-size: 14px;
        font-weight: 600;
    }

    .generatedSummaryInfo .form-control {
        font-size: 14px;
    }

.linkedGeneratedDataList {
    background: #fff;
    padding: 1px 20px 20px;
    box-shadow: 0 4px 10px rgba(169, 169, 169, 0.5);
    border-radius: 8px;
    margin-bottom: 24px;
}

.generatedListSummaryTextarea textarea:focus {
    box-shadow: none;
    border: 1px solid #0096d4;
}

.generatedCopyBtn {
    background: #fbfbfb;
    border: 1px solid #ccc;
    padding: 4px 6px;
    display: flex;
    border-radius: 4px 4px 0 0;
    margin-right: 4px;
}

    .generatedCopyBtn svg {
        width: 20px;
    }

        .generatedCopyBtn svg path {
            fill: #eca20a;
        }

.linkedinAccordion {
    width: 100%;
}

    .linkedinAccordion .card {
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        margin-bottom: 10px !important;
    }

        .linkedinAccordion .card:first-child {
            border-top: 1px solid #eee;
        }

    .linkedinAccordion .card-header {
        background: #fff;
        padding: 0;
        border-bottom: none;
        border-radius: 8px 8px 0 0;
    }

        .linkedinAccordion .card-header .linkinHead {
            width: 100%;
            display: flex;
            align-items: center;
            font-size: 18px;
            color: #222;
            line-height: 1.2;
            padding: 14px 25px 14px 16px;
            border: none;
            outline: none;
            text-decoration: none;
            position: relative;
        }

    .linkedinAccordion .linkinSummDate {
        font-size: 12px;
        color: #9d9d9d;
        padding-left: 10px;
    }

    .linkedinAccordion .card-header .linkinHead.collapsed::after {
        transform: rotate(45deg) translate(-12px, 0);
    }

    .linkedinAccordion .card-header .linkinHead::after {
        content: '';
        position: absolute;
        right: 5px;
        top: 50%;
        padding: 4px;
        border-right: 2px solid #ccc;
        border-bottom: 2px solid #ccc;
        transform: rotate(225deg) translate(10px, -3px);
    }

    .linkedinAccordion .card-body {
        background: #fff;
        padding: 10px 15px 20px;
        border-top: 1px solid #eee;
    }

.linkinSummCardHeader {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 0 6px;
    border-bottom: 1px solid #eee;
}

.linkinSummCardTitle {
    font-size: 13px;
    color: #222;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 90%;
}

    .linkinSummCardTitle strong {
        padding-right: 6px;
    }

.linkinSummCardDeleteBtn {
    padding: 2px;
    border: none;
    background: transparent;
}

    .linkinSummCardDeleteBtn svg {
        width: 18px;
        display: flex;
        transform: scale(1);
        transition: transform 0.5s ease-in;
    }

        .linkinSummCardDeleteBtn svg path {
            fill: #eca20a;
        }

    .linkinSummCardDeleteBtn:hover svg {
        transform: scale(1.3);
    }

.linkinSummCardDetails {
    display: flex;
    flex-direction: column;
    margin: 18px 0 0;
}

.linkinSummCardTopAction {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #222;
    font-weight: 600;
    margin-bottom: 12px;
}

.linkinSummCardActionCopyBtn {
    background: #fff;
    padding: 4px 10px;
    border: 1px solid #eca20a;
    border-radius: 4px;
    margin-left: 20px;
    margin-bottom: 5px;
}

    .linkinSummCardActionCopyBtn svg {
        width: 18px;
        display: flex;
    }

        .linkinSummCardActionCopyBtn svg path {
            fill: #eca20a;
        }

.copySummaryBtn {
    margin-left: 0;
}

.linkinSummCardSummary {
    font-size: 14px;
    color: #222;
    line-height: 1.5;
    background: #fcfcfc;
    padding: 10px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(152, 152, 152, 0.3);
}

.linkedinCreditsSection {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.linkedinCreditsDetails {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #222;
    line-height: 1.5;
}

    .linkedinCreditsDetails span {
        font-size: 15px;
        color: #eca20a;
        font-weight: 700;
        padding: 0 2px;
    }

    .linkedinCreditsDetails .linkedinCreditBtn {
        margin-top: 10px;
        padding: 6px 18px;
    }

.modal-header {
    color: white;
}

.btn-primary {
    background-color: #0096d4;
    border-color: #0096d4;
}

    .btn-primary:hover {
        background-color: #007bb5;
        border-color: #007bb5;
    }

.optimizeSection {
    width: 100%;
    margin-top: 30px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    box-shadow: 0 0 14px rgba(152, 152, 152, 0.15);
}

.optimizeTitle {
    font-size: 20px;
    color: #465A6B;
    font-weight: 600;
    padding-bottom: 20px;
}

.optimizeDetails {
    display: flex;
    justify-content: center;
    align-items: center;
}

.optimizeIcon {
    width: 80px;
    margin: 0 20px 0 0;
}

.optimizeData {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.optimizeCount {
    font-size: 32px;
    color: #0096d4;
    line-height: 1.4;
}

.optimizeCountNo {
    font-size: 50px;
    color: #eca20a;
    line-height: 1.4;
}
.dashboardSectionBox {
    width: 100%;
    margin-top: 24px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    box-shadow: 0 0 14px rgba(152, 152, 152, 0.15);
}
.dashboardSectionBox .dashboardHeading {
    padding: 4px 0 4px;
    margin-bottom: 10px;
}
.resumeTopButtonSection {
    text-align: center;
    margin: 0 8% 15px;
}

.resumeTopButtonSection button + button {
    margin-left: 8px;
}

.btnOptimize {
    background-color: #eca20a;
    border: 1px solid #eca20a;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    padding: 8px 14px;
    position: relative;
}

    .btnOptimize:hover, .btnOptimize:focus, .btnOptimize:active {
        background-color: #dd9706;
        border: 1px solid #dd9706;
        color: #fff;
        outline: none !important;
        text-decoration: none;
    }


/*** Dashboard Page End ***/
/*** Earn With Us Page Start ***/
.earnWithUs {
    text-decoration: underline;
    font-weight: 400;
}

.referralJourneyInfo {
    color: #222b56;
    font-family: 'Lato';
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 10px;
    margin-top: 30px;
    padding: 5px 0 7px;
    position: relative;
}

    .referralJourneyInfo::after {
        background: #eca20a;
        bottom: 0;
        content: '';
        height: 4px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        width: 60px;
    }

.referralKick {
    color: #222;
    font-size: 22px;
    margin-bottom: 40px;
}

.referralEarnMoney {
    font-size: 22px;
    color: #222;
    padding: 30px 0 5px;
}

.referralEachPerson {
    font-size: 22px;
    color: #222;
}

.referralResumeList {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 35px 20px 17px;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 18px;
    background: #fff;
}

.referralDashBG {
    background: url('/images/invite.jpg') no-repeat top;
    height: 400px;
    width: 100%;
    text-align: center;
}

.referralDashTitle {
    padding-top: 380px;
}

.referralDashContent {
    padding: 40px 0 20px;
}

    .referralDashContent p {
        font-size: 16px;
        color: #444;
    }

.referralDashTnC p {
    font-size: 16px;
    color: #444;
}

.referralDashTnC a {
    color: #0078d4;
}

.referralTremsInfo {
    display: inline-flex;
    align-items: center;
    border: 1px solid #adadad;
    background: #ffffff;
    padding: 4px 14px;
    border-radius: 4px;
}

    .referralTremsInfo input {
        margin: 0 6px 0 0;
    }

    .referralTremsInfo label {
        margin-bottom: 0;
    }

.referralLinkInfo {
    padding: 0 0 40px 0;
}

    .referralLinkInfo p {
        font-size: 16px;
        color: #444;
    }

    .referralLinkInfo input {
        width: 280px;
        border: 1px solid #adadad;
        font-size: 16px;
        background: #ffffff;
        padding: 6px 8px;
        margin-right: 8px;
    }

.btnCopyLink {
    background-color: #eca20a;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
}

    .btnCopyLink:hover, .btnCopyLink:focus, .btnCopyLink:active {
        background-color: #dd9706;
        color: #fff;
        outline: none !important;
        text-decoration: none;
    }

.referralsPaymentInfo {
    margin-bottom: 30px;
}

.boxContainerInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
}

    .boxContainerInfo .labelName {
        font-size: 18px;
        color: #333;
        font-weight: 600;
    }

    .boxContainerInfo .gridSection {
        width: 80%;
        overflow: hidden;
        overflow-x: scroll;
    }

    .boxContainerInfo .gridInfo {
        display: flex;
        flex-direction: column;
        width: max-content;
        min-width: 100%;
        margin: 10px 0 0;
        border: 1px solid #0275a4;
    }

        .boxContainerInfo .gridInfo .gridRow {
            display: flex;
            width: 100%;
        }

            .boxContainerInfo .gridInfo .gridRow:not(:last-child) {
                border-bottom: 1px solid #0275a4;
            }

        .boxContainerInfo .gridInfo .gridHeader, .boxContainerInfo .gridInfo .gridHeader gridColum {
            background: #0096d4;
        }

            .boxContainerInfo .gridInfo .gridHeader .gridColum {
                font-size: 14px;
                color: #fff !important;
                font-weight: 600;
            }

        .boxContainerInfo .gridInfo .gridRow .gridColum:not(:first-child) {
            min-width: 100px;
            flex: 1;
        }

        .boxContainerInfo .gridInfo .gridRow .gridColum {
            display: flex;
            font-size: 14px;
            color: #333;
            padding: 6px 10px;
            border-left: 1px solid #0275a4;
            white-space: nowrap;
        }

            .boxContainerInfo .gridInfo .gridRow .gridColum:first-child {
                min-width: 70px;
                width: 70px;
                border-left: none;
            }

        .boxContainerInfo .gridInfo .onRecordText {
            justify-content: center;
            font-size: 16px;
            color: #333;
            padding: 10px 0;
        }


.pendingSubTextInfo {
    font-size: 16px;
    color: #444;
    padding: 20px 0 40px;
}
/*** Earn With Us Page End ***/
/*** Footer ***/
footer {
    border-bottom: 4px solid #ECA20A;
}

.footerCopyInfo {
    background: #222b56;
    border-bottom: 4px solid #0078d4;
    color: #f0f3f8;
    font-size: 1.3rem;
    padding: 5px 0;
}

    .footerCopyInfo a {
        color: #f0f3f8;
        font-size: 1.3rem;
        padding: 0 5px;
        text-decoration: none;
    }

        .footerCopyInfo a:hover, footerCopyInfo a:focus {
            color: #eca20a;
        }

/*** Upload spinner modal ***/

.upload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.upload-overlay-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #0096d4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinnerText {
    font-size: 20px;
    color: #0096d4;
    font-weight: 600;
    transition: opacity 0.5s ease-in-out;
    margin-top: 14px;
}

    .spinnerText::after {
        color: #eca20a;
        font-weight: 700;
        content: "|";
        animation: blink 1s step-start infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.sectionLoader {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
    display: none;
}

.loaderTrack {
    display: flex;
    flex: 1;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 20px;
    background: #f2f9fc;
    border-radius: 10px;
    border: 1px solid #3686d8;
    overflow: hidden;
}

.loaderLine {
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 10;
    height: 12px;
    border-radius: 10px;
    background: #3686d8;
    background: linear-gradient(0deg, #3686d8 0%, #8BB9E6 100%);
}

.loaderLine20 {
    width: calc(20% - 6px);
    animation: loadingBg20 5s ease-in-out;
}

.loaderLine40 {
    width: calc(40% - 6px);
    animation: loadingBg40 5s ease-in-out;
}

.loaderLine60 {
    width: calc(60% - 6px);
    animation: loadingBg60 5s ease-in-out;
}

.loaderLine80 {
    width: calc(80% - 6px);
    animation: loadingBg80 5s ease-in-out;
}

.loaderLine100 {
    width: calc(100% - 6px);
    animation: loadingBg100 5s ease-in-out;
}

.loaderPerAnimation {
    width: 50px;
    padding-left: 10px;
}

    .loaderPerAnimation::after {
        display: block;
        text-align: left;
        font-size: 16px;
        color: #3686d8;
        line-height: 1.25;
    }

.perTextAnimation20::after {
    content: "20%";
    animation: percentageText20 5s ease-in-out;
}

.perTextAnimation40::after {
    content: "40%";
    animation: percentageText40 5s ease-in-out;
}

.perTextAnimation60::after {
    content: "60%";
    animation: percentageText60 5s ease-in-out;
}

.perTextAnimation80::after {
    content: "80%";
    animation: percentageText80 5s ease-in-out;
}

.perTextAnimation100::after {
    content: "100%";
    animation: percentageText100 5s ease-in-out;
}

@keyframes loadingBg20 {
    0% {
        width: 0;
    }

    20% {
        width: calc(20% - 6px);
    }
}

@keyframes loadingBg40 {
    0% {
        width: 0;
    }

    40% {
        width: calc(40% - 6px);
    }
}

@keyframes loadingBg60 {
    0% {
        width: 0;
    }

    60% {
        width: calc(60% - 6px);
    }
}

@keyframes loadingBg80 {
    0% {
        width: 0;
    }

    80% {
        width: calc(80% - 6px);
    }
}

@keyframes loadingBg100 {
    0% {
        width: 0;
    }

    100% {
        width: calc(100% - 6px);
    }
}

@keyframes percentageText20 {
    1% {
        content: "1%";
    }

    2% {
        content: "2%";
    }

    3% {
        content: "3%";
    }

    4% {
        content: "4%";
    }

    5% {
        content: "5%";
    }

    6% {
        content: "6%";
    }

    7% {
        content: "7%";
    }

    8% {
        content: "8%";
    }

    9% {
        content: "9%";
    }

    10% {
        content: "10%";
    }

    11% {
        content: "11%";
    }

    12% {
        content: "12%";
    }

    13% {
        content: "13%";
    }

    14% {
        content: "14%";
    }

    15% {
        content: "15%";
    }

    16% {
        content: "16%";
    }

    17% {
        content: "17%";
    }

    18% {
        content: "18%";
    }

    19% {
        content: "19%";
    }

    20% {
        content: "20%";
    }
}

@keyframes percentageText40 {
    1% {
        content: "1%";
    }

    2% {
        content: "2%";
    }

    3% {
        content: "3%";
    }

    4% {
        content: "4%";
    }

    5% {
        content: "5%";
    }

    6% {
        content: "6%";
    }

    7% {
        content: "7%";
    }

    8% {
        content: "8%";
    }

    9% {
        content: "9%";
    }

    10% {
        content: "10%";
    }

    11% {
        content: "11%";
    }

    12% {
        content: "12%";
    }

    13% {
        content: "13%";
    }

    14% {
        content: "14%";
    }

    15% {
        content: "15%";
    }

    16% {
        content: "16%";
    }

    17% {
        content: "17%";
    }

    18% {
        content: "18%";
    }

    19% {
        content: "19%";
    }

    20% {
        content: "20%";
    }

    21% {
        content: "21%";
    }

    22% {
        content: "22%";
    }

    23% {
        content: "23%";
    }

    24% {
        content: "24%";
    }

    25% {
        content: "25%";
    }

    26% {
        content: "26%";
    }

    27% {
        content: "27%";
    }

    28% {
        content: "28%";
    }

    29% {
        content: "29%";
    }

    30% {
        content: "30%";
    }

    31% {
        content: "31%";
    }

    32% {
        content: "32%";
    }

    33% {
        content: "33%";
    }

    34% {
        content: "34%";
    }

    35% {
        content: "35%";
    }

    36% {
        content: "36%";
    }

    37% {
        content: "37%";
    }

    38% {
        content: "38%";
    }

    39% {
        content: "39%";
    }

    40% {
        content: "40%";
    }
}

@keyframes percentageText60 {
    1% {
        content: "1%";
    }

    2% {
        content: "2%";
    }

    3% {
        content: "3%";
    }

    4% {
        content: "4%";
    }

    5% {
        content: "5%";
    }

    6% {
        content: "6%";
    }

    7% {
        content: "7%";
    }

    8% {
        content: "8%";
    }

    9% {
        content: "9%";
    }

    10% {
        content: "10%";
    }

    11% {
        content: "11%";
    }

    12% {
        content: "12%";
    }

    13% {
        content: "13%";
    }

    14% {
        content: "14%";
    }

    15% {
        content: "15%";
    }

    16% {
        content: "16%";
    }

    17% {
        content: "17%";
    }

    18% {
        content: "18%";
    }

    19% {
        content: "19%";
    }

    20% {
        content: "20%";
    }

    21% {
        content: "21%";
    }

    22% {
        content: "22%";
    }

    23% {
        content: "23%";
    }

    24% {
        content: "24%";
    }

    25% {
        content: "25%";
    }

    26% {
        content: "26%";
    }

    27% {
        content: "27%";
    }

    28% {
        content: "28%";
    }

    29% {
        content: "29%";
    }

    30% {
        content: "30%";
    }

    31% {
        content: "31%";
    }

    32% {
        content: "32%";
    }

    33% {
        content: "33%";
    }

    34% {
        content: "34%";
    }

    35% {
        content: "35%";
    }

    36% {
        content: "36%";
    }

    37% {
        content: "37%";
    }

    38% {
        content: "38%";
    }

    39% {
        content: "39%";
    }

    40% {
        content: "40%";
    }

    41% {
        content: "41%";
    }

    42% {
        content: "42%";
    }

    43% {
        content: "43%";
    }

    44% {
        content: "44%";
    }

    45% {
        content: "45%";
    }

    46% {
        content: "46%";
    }

    47% {
        content: "47%";
    }

    48% {
        content: "48%";
    }

    49% {
        content: "49%";
    }

    50% {
        content: "50%";
    }

    51% {
        content: "51%";
    }

    52% {
        content: "52%";
    }

    53% {
        content: "53%";
    }

    54% {
        content: "54%";
    }

    55% {
        content: "55%";
    }

    56% {
        content: "56%";
    }

    57% {
        content: "57%";
    }

    58% {
        content: "58%";
    }

    59% {
        content: "59%";
    }

    60% {
        content: "60%";
    }
}

@keyframes percentageText80 {
    1% {
        content: "1%";
    }

    2% {
        content: "2%";
    }

    3% {
        content: "3%";
    }

    4% {
        content: "4%";
    }

    5% {
        content: "5%";
    }

    6% {
        content: "6%";
    }

    7% {
        content: "7%";
    }

    8% {
        content: "8%";
    }

    9% {
        content: "9%";
    }

    10% {
        content: "10%";
    }

    11% {
        content: "11%";
    }

    12% {
        content: "12%";
    }

    13% {
        content: "13%";
    }

    14% {
        content: "14%";
    }

    15% {
        content: "15%";
    }

    16% {
        content: "16%";
    }

    17% {
        content: "17%";
    }

    18% {
        content: "18%";
    }

    19% {
        content: "19%";
    }

    20% {
        content: "20%";
    }

    21% {
        content: "21%";
    }

    22% {
        content: "22%";
    }

    23% {
        content: "23%";
    }

    24% {
        content: "24%";
    }

    25% {
        content: "25%";
    }

    26% {
        content: "26%";
    }

    27% {
        content: "27%";
    }

    28% {
        content: "28%";
    }

    29% {
        content: "29%";
    }

    30% {
        content: "30%";
    }

    31% {
        content: "31%";
    }

    32% {
        content: "32%";
    }

    33% {
        content: "33%";
    }

    34% {
        content: "34%";
    }

    35% {
        content: "35%";
    }

    36% {
        content: "36%";
    }

    37% {
        content: "37%";
    }

    38% {
        content: "38%";
    }

    39% {
        content: "39%";
    }

    40% {
        content: "40%";
    }

    41% {
        content: "41%";
    }

    42% {
        content: "42%";
    }

    43% {
        content: "43%";
    }

    44% {
        content: "44%";
    }

    45% {
        content: "45%";
    }

    46% {
        content: "46%";
    }

    47% {
        content: "47%";
    }

    48% {
        content: "48%";
    }

    49% {
        content: "49%";
    }

    50% {
        content: "50%";
    }

    51% {
        content: "51%";
    }

    52% {
        content: "52%";
    }

    53% {
        content: "53%";
    }

    54% {
        content: "54%";
    }

    55% {
        content: "55%";
    }

    56% {
        content: "56%";
    }

    57% {
        content: "57%";
    }

    58% {
        content: "58%";
    }

    59% {
        content: "59%";
    }

    60% {
        content: "60%";
    }

    61% {
        content: "61%";
    }

    62% {
        content: "62%";
    }

    63% {
        content: "63%";
    }

    64% {
        content: "64%";
    }

    65% {
        content: "65%";
    }

    66% {
        content: "66%";
    }

    67% {
        content: "67%";
    }

    68% {
        content: "68%";
    }

    69% {
        content: "69%";
    }

    70% {
        content: "70%";
    }

    71% {
        content: "71%";
    }

    72% {
        content: "72%";
    }

    73% {
        content: "73%";
    }

    74% {
        content: "74%";
    }

    75% {
        content: "75%";
    }

    76% {
        content: "76%";
    }

    77% {
        content: "77%";
    }

    78% {
        content: "78%";
    }

    79% {
        content: "79%";
    }

    80% {
        content: "80%";
    }
}

@keyframes percentageText100 {
    1% {
        content: "1%";
    }

    2% {
        content: "2%";
    }

    3% {
        content: "3%";
    }

    4% {
        content: "4%";
    }

    5% {
        content: "5%";
    }

    6% {
        content: "6%";
    }

    7% {
        content: "7%";
    }

    8% {
        content: "8%";
    }

    9% {
        content: "9%";
    }

    10% {
        content: "10%";
    }

    11% {
        content: "11%";
    }

    12% {
        content: "12%";
    }

    13% {
        content: "13%";
    }

    14% {
        content: "14%";
    }

    15% {
        content: "15%";
    }

    16% {
        content: "16%";
    }

    17% {
        content: "17%";
    }

    18% {
        content: "18%";
    }

    19% {
        content: "19%";
    }

    20% {
        content: "20%";
    }

    21% {
        content: "21%";
    }

    22% {
        content: "22%";
    }

    23% {
        content: "23%";
    }

    24% {
        content: "24%";
    }

    25% {
        content: "25%";
    }

    26% {
        content: "26%";
    }

    27% {
        content: "27%";
    }

    28% {
        content: "28%";
    }

    29% {
        content: "29%";
    }

    30% {
        content: "30%";
    }

    31% {
        content: "31%";
    }

    32% {
        content: "32%";
    }

    33% {
        content: "33%";
    }

    34% {
        content: "34%";
    }

    35% {
        content: "35%";
    }

    36% {
        content: "36%";
    }

    37% {
        content: "37%";
    }

    38% {
        content: "38%";
    }

    39% {
        content: "39%";
    }

    40% {
        content: "40%";
    }

    41% {
        content: "41%";
    }

    42% {
        content: "42%";
    }

    43% {
        content: "43%";
    }

    44% {
        content: "44%";
    }

    45% {
        content: "45%";
    }

    46% {
        content: "46%";
    }

    47% {
        content: "47%";
    }

    48% {
        content: "48%";
    }

    49% {
        content: "49%";
    }

    50% {
        content: "50%";
    }

    51% {
        content: "51%";
    }

    52% {
        content: "52%";
    }

    53% {
        content: "53%";
    }

    54% {
        content: "54%";
    }

    55% {
        content: "55%";
    }

    56% {
        content: "56%";
    }

    57% {
        content: "57%";
    }

    58% {
        content: "58%";
    }

    59% {
        content: "59%";
    }

    60% {
        content: "60%";
    }

    61% {
        content: "61%";
    }

    62% {
        content: "62%";
    }

    63% {
        content: "63%";
    }

    64% {
        content: "64%";
    }

    65% {
        content: "65%";
    }

    66% {
        content: "66%";
    }

    67% {
        content: "67%";
    }

    68% {
        content: "68%";
    }

    69% {
        content: "69%";
    }

    70% {
        content: "70%";
    }

    71% {
        content: "71%";
    }

    72% {
        content: "72%";
    }

    73% {
        content: "73%";
    }

    74% {
        content: "74%";
    }

    75% {
        content: "75%";
    }

    76% {
        content: "76%";
    }

    77% {
        content: "77%";
    }

    78% {
        content: "78%";
    }

    79% {
        content: "79%";
    }

    80% {
        content: "80%";
    }

    81% {
        content: "81%";
    }

    82% {
        content: "82%";
    }

    83% {
        content: "83%";
    }

    84% {
        content: "84%";
    }

    85% {
        content: "85%";
    }

    86% {
        content: "86%";
    }

    87% {
        content: "87%";
    }

    88% {
        content: "88%";
    }

    89% {
        content: "89%";
    }

    90% {
        content: "90%";
    }

    91% {
        content: "91%";
    }

    92% {
        content: "92%";
    }

    93% {
        content: "93%";
    }

    94% {
        content: "94%";
    }

    95% {
        content: "95%";
    }

    96% {
        content: "96%";
    }

    97% {
        content: "97%";
    }

    98% {
        content: "98%";
    }

    99% {
        content: "99%";
    }

    100% {
        content: "100%";
    }
}

.expandMobileMenu {
    position: absolute;
    top: 4px;
    right: -30px;
    z-index: 999;
    display: none;
}

.expandIcon {
    width: 28px;
    display: flex;
    cursor: pointer;
}

.serviceChargeIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    width: 24px !important;
    display: none;
}

.template-services {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
}

    .template-services.Free {
        display: none;
    }

.services-icon {
    width: 24px;
}

#profile-quota-info {
    font-size: 16px;
    margin: 6px 0 4px;
}

.existingProfileHeading {
    margin: 0 0 6px;
}

.profileNoteInfo {
    font-size: 12px;
    color: #909090;
}

.profileQuestion {
    font-size: 14px;
    font-weight: 600;
    padding-top: 10px;
}

.profile-info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    background-color: #0096d4; /* your brand color */
    color: white;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    cursor: pointer;
}

    .profile-info-icon .info-circle::after {
        content: "i";
        display: inline-block;
    }

.download-modal .modal-dialog {
    width: 600px;
}

    .download-modal .modal-dialog .modal-content {
        width: 100%;
    }

.download-modal .downloadFooterInfo {
    display: flex;
}

    .download-modal .downloadFooterInfo button {
        height: 40px;
        margin: 0;
    }

.existingProfiles {
    margin: 0 0 10px;
    background: #f3f3f3;
    border-radius: 6px;
    padding: 10px 15px;
}

    .existingProfiles ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .existingProfiles ul li {
            margin: 0 8px 8px 0;
        }

.downloadProfileMessage {
    text-align: right;
}

.downloadFooterInfo .buyProfileMessage {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    margin-left: 20px;
}

.profileMessage {
    font-size: 12px;
    font-weight: 400;
    margin: 10px 0 0;
    padding: 15px;
}

.applyJobPostInfo {
    width: 100%;
    margin-top: 30px;
}

.docProfileName {
    font-size: 20px;
}

.editLinkNote {
    font-size: 11px;
    color: #fff;
    padding: 8px 0;
}

.linkedInSummaryBtn {
    height: 42px
}

    .linkedInSummaryBtn span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .linkedInSummaryBtn span svg {
            margin-right: 4px;
        }
/*** ***/
.earnSection {
    padding: 52px 0;
    background: hsla(0, 0%, 100%, 1);
    background: linear-gradient(45deg, hsla(0, 0%, 100%, 1) 41%, hsla(202, 78%, 91%, 1) 100%);
}

.earnReferralSection {
    width: 100%;
    display: flex;
}

.earnReferralLeft {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 60px;
}

.earnReferralHeading {
    font-weight: 600;
    font-size: 24px;
    color: #222;
    text-align: left;
    margin-bottom: 12px;
}

.earnReferralRight {
    width: 40%;
    padding: 0 20px;
}

.earnReferralImg {
    width: 80%;
}

    .earnReferralImg img {
        width: 100%;
    }

.earnTitle {
    font-size: 38px;
    color: #222;
    font-weight: 600;
    margin-bottom: 20px;
}

.earnHeading {
    font-size: 24px;
    color: #222;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}

.earnDetails {
    margin: 12px 0 0;
}

    .earnDetails p {
        font-size: 16px;
        color: #222;
        line-height: 1.5;
    }

.earnSectionBox {
    padding: 52px 0;
}

.earnWhiteSection {
    background: #fff;
}

.earnSectionData {
    width: 90%;
    margin: 0 auto;
}

.earnWorkDetails {
    display: flex;
    gap: 24px;
}

.earnWorkList {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    padding: 20px 24px;
    border: 1px solid #ccc;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(152, 152, 152, 0.2);
}

.earnWorkHeading {
    font-size: 20px;
    color: #222;
    font-weight: 600;
}

.earnWorkList p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.earnYouGetData {
    width: 80%;
    margin: 0 auto;
}

.earnYouGetDetails {
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(152, 152, 152, 0.2);
}

.earnYouGetList {
    font-size: 16px;
    color: #222;
    line-height: 1.4;
}

    .earnYouGetList:not(:last-child) {
        margin-bottom: 24px;
    }

    .earnYouGetList strong {
        display: flex;
        margin-bottom: 4px;
    }

.earnRecommendSection {
    background: hsla(0, 0%, 100%, 1);
    background: linear-gradient(45deg, hsla(202, 78%, 91%, 1) 0%, hsla(0, 0%, 100%, 1) 60%);
}

.earnRecommendDetails {
    width: 40%;
    margin: 0 auto;
}

.earnRecommendList {
    margin: 0 0 24px;
    padding: 0 0 0 15px;
}

    .earnRecommendList li {
        font-size: 16px;
        color: #222;
        line-height: 1.3;
        margin-bottom: 10px;
    }

.earnRecommendBottomText {
    font-size: 14px;
    color: #222;
    line-height: 1.3;
}

.earnReferringData {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.referListItem {
    margin: 0 0 0 5px;
    padding: 0 0 0 15px;
}

    .referListItem li {
        font-size: 14px;
        color: #222;
    }

.earnReferringText {
    font-size: 16px;
    color: #222;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 24px;
}

.earnReferringMore {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    background: rgba(207, 234, 255, 0.5);
    padding: 10px;
    border-radius: 8px;
    border: 2px dashed #0096d4;
}

.earnReferringBtn {
    margin: 30px 0 0;
    background-color: #eca20a;
    border: 1px solid #eca20a;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 30px;
    position: relative;
}

    .earnReferringBtn:hover {
        background-color: #dd9706;
        border: 1px solid #dd9706;
        color: #fff;
        outline: none !important;
        text-decoration: none;
    }

.applyPluginSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 0 52px;
}

.applyPluginTopText {
    font-size: 16px;
    padding: 24px 0 50px;
    margin: 0;
}

.applyPluginWorkSection {
    background: #eff2f9;
    padding: 52px 0;
}

.applyPluginWorkInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pluginWorkHeading {
    font-size: 26px;
    color: #222;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
}

.applyPluginWorkItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px #ccc;
}

.applyItemIcon {
    font-size: 32px;
    margin-bottom: 12px;
}

.applyItemHeading {
    font-size: 22px;
    color: #222;
    font-weight: 600;
    margin-bottom: 24px;
}

.applyItemText {
    min-height: 67px;
    font-size: 16px;
    color: #222;
    line-height: 1.4;
    text-align: center;
    padding: 0;
    margin: 0;
}

.applyPluginWorkButton {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
/** Resume Writing Section **/
.resumeWritingSection {
    padding: 52px 0;
    background: hsla(0, 0%, 100%, 1);
    background: linear-gradient(45deg, hsla(0, 0%, 100%, 1) 10%, hsla(202, 78%, 91%, 1) 100%);
}

.resumeWritingSubHeading {
    font-size: 20px;
    color: #606060;
    font-weight: 500;
    margin-bottom: 8px;
}

.resumeWritingHeading {
    font-size: 42px;
    color: #222;
    font-weight: 600;
    margin-bottom: 20px;
}

.resumeWritingText {
    font-size: 16px;
    color: #222;
    line-height: 1.6;
}

.resumeWritingPlan {
    padding: 52px 0 0;
}

.resumeWritingPlanItem {
    width: 90%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px #ccc;
}

.writingTitle {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.writingDetailText {
    font-size: 16px;
    color: #666;
    text-align: center;
}

.writingPrice {
    font-size: 42px;
    color: #000;
    font-weight: 600;
    padding: 20px 0;
    text-align: center;
}

.writingOrderButton {
    margin: 30px 0;
    text-align: center;
}

.writingItemList {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .writingItemList li {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 4px;
    }

        .writingItemList li svg {
            width: 16px;
            margin-right: 6px;
        }

            .writingItemList li svg path {
                fill: #eca20a;
            }

.itemCenter {
    display: flex;
    justify-content: center;
}

.resumeDaySection {
    margin: 50px 0 0;
    text-align: center;
}

.resumeDayHeading {
    font-size: 18px;
    color: #666;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.resumeDayText {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.resumeCustomizeSection {
    padding: 52px 0;
    background: #fff;
}

.resumeCustomizeTitle {
    font-size: 32px;
    color: #666;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.resumeCustomizeText {
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 42px;
}

.resumeCustomizeDetails {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 24px;
}

.resumeCustomizeItem {
    width: calc(33.3% - 24px);
    background: rgba(237, 247, 255, 0.3);
    padding: 20px;
    border: 1px solid #b5eeff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(152, 152, 152, 0.2);
}

    .resumeCustomizeItem h4 {
        font-size: 18px;
        color: #222;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .resumeCustomizeItem p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin: 0;
        padding: 0;
    }

.resumeMoreData {
    font-size: 22px;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 62px 0 42px;
}

    .resumeMoreData span {
        font-size: 42px;
        font-weight: 600;
        line-height: 1;
        display: flex;
    }

.resultSearchText {
    font-size: 13px;
    color: #cacaca;
    text-align: center;
}

.writingProcessSection {
    padding: 52px 0;
}

.writingProcessInfo {
    margin: 42px 0 0;
}

.writingProcessTopRow {
    display: flex;
}

.writingNoCountBox {
    display: flex;
    padding: 20px 20px 0;
}

.writingNoCount {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 82px;
    color: #dcdcdc;
    font-weight: 700;
    line-height: 1;
}

.writingProcessImage {
    width: 100%;
    border-radius: 12px 12px 0 0;
    border: 1px solid #ccc;
    border-bottom: none;
}

.writingProcessBox {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    border-radius: 12px 0 12px 12px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px #ccc;
}

.writingProcessHeading {
    font-size: 22px;
    color: #222;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
}

.writingProcessText {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

.writingProcessButton {
    margin: 32px 0 0;
    text-align: center;
}

.faqResumeWritingSection {
    background: #eff2f9;
    padding: 52px 0;
}

.faqResumeWritingHeading {
    font-size: 32px;
    color: #666;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}

.faqWritingAccordion {
    width: 100%;
}

    .faqWritingAccordion .card {
        width: 100%;
        background: transparent;
        margin-top: -1px;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }

.faqWritingHead {
    width: 100%;
    font-size: 20px;
    color: #222;
    font-weight: 500;
    text-align: left;
    white-space: normal;
    padding: 14px 24px 14px 0;
    border-bottom: none;
    position: relative;
    border: none;
}

    .faqWritingHead:hover, .faqWritingHead:focus, .faqWritingHead:focus-visible, .faqWritingHead:active {
        color: #222;
        text-decoration: none;
        border-bottom: 1px solid #ccc;
        outline: none !important;
        border: none;
    }

.faqWritingAccordion .card-body {
    width: 100%;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    padding: 10px 0;
    text-align: left;
    border-top: 1px solid #ccc;
}
/*** ***/

.driver-popover-title {
    font-size: 17px !important;
    box-shadow: none;
    height: auto;
    background: transparent;
}

.driver-popover-footer {
     padding-bottom: 6px;
}
.driver-popover-prev-btn {
    color: #0096d4 !important;
    line-height: 1.2 !important;
    border: 1px solid #0096d4 !important;
}
.driver-popover-next-btn {
    padding: 4px 10px !important;
    background-color: #0096d4 !important;
    border: 1px solid #0096d4 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
}
.driver-popover-navigation-btns button + button {
    margin-left: 8px !important;
}
.driver-popover-close-btn {
    font-size: 26px !important;
    color: #2d2d2d !important;
    z-index: 99 !important;
}
.dashboardLeftSide {
    padding: 0 10px;
}
.dashboardRightSide {
    padding: 0 10px;
}
.moreDashLink {
    display: none;
}
.linkedSummaryLeft {
    padding: 0 10px;
}
.linkedSummaryRight {
    padding: 0 10px;
}
.organSubScripTable {
    width: 100%;
    overflow: auto;
}
.organSubScripTable table {
    margin-bottom: 0 !important;
}
.switchModeInfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.switchModeRadioInfo {
    display: flex;
    gap: 20px;
}
.switchModeList {
    display: flex;
    flex-direction: column;
    margin: 20px 10px 0 0;
}
.switchModeListDetails {
    width: calc(50% - 10px);
    display: flex;
    gap: 10px;
}
.switchModeCountInfo {
    display: flex;
    align-items: flex-start;
    
}
.switchModeCountNo {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #0078d4;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #0078d4;
}
.switchModeSectionBg {
    width: 100%;
    background: #F0F8FF;
    border-radius: 10px;
    padding: 15px;
}
.switchModeSectionBg li {
   font-size: 12px;
}
.switchModeNumberList {
    list-style-type: decimal;
    padding-left: 12px;
}
.switchModeBulletList {
    list-style-type: disc;
    padding-left: 12px;
}
.switchModeBorderList {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
}
.switchModeBorderList li {
    border: 1px solid #59B7FF;
    padding:2px 8px;
    margin: 0 8px 8px 0;
    border-radius: 4px;
}
.switchModeBgcolorList {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
}
.switchModeBgcolorList li {
    background: #59B7FF;
    color: #fff;
    padding: 2px 8px;
    margin: 0 8px 8px 0;
    border-radius: 4px;
}
.switchModeClassicList {
    font-size: 12px;
    margin-bottom: 2px;
}
.switchListLable {
    display: flex;
    align-items: center;
}

.switchListLable input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
}
.switchTextData {
    margin-top: 10px;
    font-size: 14px;
}
.switchModeListData {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px 0;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.switchModeListData img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-device-width: 480px) {
    .footerCopyInfo {
        text-align: center;
    }

    .footerCopyInfo .text-end {
        padding-top: 10px;
        text-align: center !important;
    }

    .default-btn {
        vertical-align: middle;
        padding: 5px 15px;
    }
}

@media (min-width:768px) and (max-width: 1024px) {
    .editResumeBtn {
        min-width: 60px;
        margin-right: 6px;
    }

        .editResumeBtn:last-child {
            margin-right: 0;
        }

        .editResumeBtn .toplinkLabel {
            white-space: nowrap;
            font-weight: 600;
        }

    .boxContainerInfo .gridSection {
        width: 100%;
    }

    .linkedInSummarySection {
        padding: 32px 0;
    }

    .linkedSelect {
        width: 50%;
    }

    .optimizeSection {
        display: flex;
        justify-content: center;
        max-width: 400px;
        margin: 30px auto 24px;
        padding: 10px;
    }
    .optimizeIcon {
        margin: 0 10px 0 0;
    }
    .applyPluginWorkItem {
        margin-bottom: 32px;
    }

    .applyPluginWorkButton {
        margin-top: 10px;
    }

    /** Resume Writing Section **/

    .resumeWritingPlanItem {
        margin-bottom: 32px;
    }

    .writingProcessBox {
        margin-bottom: 32px;
    }

    .optimizeData .default-btn {
        text-align: center;
        padding: 10px 15px;
    }
    .dashboardSectionBox .newResumeInfo {
        padding: 20px 0 10px;
    }
    .dashboardSectionBox .default-btn {
        text-align: center;
        padding: 10px 15px;
    }
}

@media (max-width: 767px) {
    header {
        height: 56px;
    }

    .footerCopyInfo .text-end {
        text-align: center !important;
    }
    .chooseTemplateContainer {
        padding: 32px 25px 5px;
    }
    .chooseTemplateBox > div {
        padding: 0 15px;
    }
    .choose-template-class {
       width: 100% !important;
       padding-bottom: 130% !important;
    }
    .resumeUploadContainer .col-xs-9 {
        width: 75%;
    }
    .mobileFormRow {
        margin-right: 0;
        margin-left: 0;
    }

    header .mobileHeaderView {
        padding-right: 5px;
        padding-left: 10px;
    }

    .fixedHeader .mobileHeaderView {
        display: flex;
        align-items: center;
    }

    .logo svg {
        height: 52px;
    }

    .skillsSearch {
        padding-left: 0;
        min-height: 450px;
    }

    .formTitle {
        font-size: 22px;
        text-align: center;
    }

    .tips-button {
        width: 26px;
    }

    .trumbowyg-button-pane button {
        width: 24px !important;
    }

    .trumbowyg-editor, .trumbowyg-textarea {
        padding: 15px !important;
    }

    .trumbowyg-button-pane .trumbowyg-open-dropdown::after {
        border-top-color: #ffffff !important;
        right: 0 !important;
    }

    .previewActionButtons {
        margin-top: 0;
        display: flex;
        flex: 1;
        justify-content: center;
    }

    .chooseTemplateBox {
        margin-bottom: 5px !important;
    }

    .logo {
        cursor: pointer;
        display: inline-block;
        overflow: hidden;
        flex: 1;
    }

    .loginInfo {
        min-width: 50px;
        height: 56px;
    }

    .menuButton {
        height: 20px;
    }

        .menuButton::before {
            top: 7px;
        }

    .previewContainer {
        padding-top: 56px;
        padding-bottom: 60px;
    }

    .login-with-google-btn {
        width: 100% !important;
        padding: 12px 16px 12px 50px !important;
        background-position: 74px 14px !important;
    }

    .formContainerInfo {
        width: 100%;
        padding: 40px 30px 0;
    }

    .menuLink {
        display: block;
    }

    .navBar {
        display: none;
    }

    .sideMenu {
        width: 66px;
    }

    .sideList li {
        padding: 6px 1px;
    }

        .sideList li.visited {
            border-right-width: 3px;
        }

        .sideList li a {
            font-size: 1.05rem;
        }

        .sideList li a {
            flex-direction: column;
            text-align: center;
            width: 100%;
        }

        .sideList li .listIcon {
            background: inherit;
            border-radius: 0;
            display: inline-block;
            height: inherit;
            margin-right: 0;
            text-align: center;
            width: inherit;
        }

            .sideList li .listIcon i {
                color: #fff;
            }

    .mobileDownloadBtn {
        display: flex;
        align-items: center;
        padding: 4px 10px;
        font-size: 12px;
    }

        .mobileDownloadBtn svg {
            width: 18px;
            margin-right: 8px;
        }

            .mobileDownloadBtn svg path {
                fill: #ffffff;
                stroke: #ffffff;
            }

    .toggleSideMenu {
        display: block
    }
    .chooseTemplateTitle {
        font-size: 30px;
    }
    .resumeJourneyInfo {
        font-size: 30px;
    }

    .chooseTemplateSubHeading {
        font-size: 18px !important;
    }

    .switchTemplateLater {
        font-size: 18px !important;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        height: 100%;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        white-space: normal !important;
    }

    .resumeJobSearch {
        font-size: 20px;
    }

    .resumeList {
        min-height: auto;
        padding: 35px 20px 35px;
        margin-bottom: 20px;
    }

    .formContainer {
        margin-left: 0;
        width: 100%;
    }

    .collapseMenu {
        display: block;
    }

    .referralResumeList {
        min-height: 100px;
        margin-bottom: 20px;
    }

    .footerLink li {
        text-align: center;
    }

    .default-btn {
        padding: 5px 15px;
    }


    .previewTabInfo {
        width: 50px;
    }

    .previewTabList {
        width: 50px;
    }

    .tabIcon {
        font-size: 18px;
    }

    .tabTitle {
        font-size: 11px;
        padding-top: 4px;
    }

    .mobilePreviewDataContainer {
        min-height: 150px;
        width: 100%;
        height: 100%;
        overflow: hidden;
        overflow-y: scroll;
    }
    .mobilePreviewDataContainer .resumeBoxContainer {
        padding: 10px;
    }

    .mobilePreviewTabAction {
        padding: 4px 6px;
        border: 1px solid #3686d8;
    }

    .mobileTabAction {
        width: 100%;
        display: flex;
    }

        .mobileTabAction .editSection {
            display: none;
            flex-direction: column;
            width: 100%;
        }

        .mobileTabAction .editLinkInfo {
            align-items: center;
            background: #5294d8;
            border: none;
            border-radius: 4px;
            color: #f0f3f8;
            cursor: pointer;
            display: flex;
            flex-direction: row;
            font-size: 14px;
            font-weight: 600;
            height: 40px;
            margin: 0;
            padding: 0px 4px 0 10px;
        }

            .mobileTabAction .editLinkInfo:not(:last-child) {
                margin: 0 0 12px 0;
            }

        .mobileTabAction .editTitle {
            font-size: 16px;
            padding-right: 8px;
        }

        .mobileTabAction .editLinkInfo i {
            font-size: 16px;
            padding: 0 6px;
        }

        .mobileResumeBoxInfo {
            padding: 15px;
        }



    .mobilePreviewTabAction .selectLabel {
        background: #5294d8;
        font-size: 1.1rem;
        padding: 4px 26px 4px 6px;
    }

    .mobilePreviewTabAction .selectInfo .arrow {
        border-bottom: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
        right: 10px;
        top: 6px;
        z-index: 0;
    }

    .mobilePreviewTabAction .tabHeading {
        font-size: 1.6rem;
        color: #5294d8;
    }

    .mobilePreviewTabAction .formatRow {
        margin: 0 6px 6px 0;
    }

    .mobileFormatSection {
        display: flex;
        flex-direction: column;
    }

    .mobileThemesSection {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .mobileThemesSection .themeRowInfo {
            padding: 4px 6px;
            margin: 0 6px 6px 0;
        }

        .mobileThemesSection .themeTitle {
            font-size: 12px;
            line-height: 18px;
            padding: 5px 20px 5px 0;
        }

    .mobileAddSection {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .mobileAddSection .addSectionRow {
            font-size: 12px;
            color: #222b56;
            border: 1px dashed #5294d8;
            margin: 0 6px 6px 0;
            padding: 4px 6px;
            background: #ffffff;
            border-radius: 4px;
        }

        .mobileAddSection .sectionTitle {
            padding-right: 10px;
        }

        .mobileAddSection .input[type='checkbox'] + label.check {
            margin-right: 0;
            border: 1px solid #5294d8;
        }

    .mobileBtnAddSection {
        padding: 6px 0;
    }

        .mobileBtnAddSection .default-btn {
            width: 100%;
            padding: 8px 15px;
        }

    .mobileTipsContainer {
        width: 100%;
    }

        .mobileTipsContainer .tipsList-preview li {
            color: #222b56;
            font-size: 14px;
            line-height: 1.4;
            padding-bottom: 8px;
        }

    .mobileChangeTemplateSection {
        width: 100%;
        padding: 0 0 55px;
    }

        .mobileChangeTemplateSection .skinItem {
            width: 100%;
            padding: 0;
        }

            .mobileChangeTemplateSection .skinItem a {
                border: 1px solid #666;
                width: 100%;
                padding-bottom: 141%;
            }

                .mobileChangeTemplateSection .skinItem a .templateName {
                    width: 100%;
                    padding: 2px 12px;
                    font-size: 14px;
                }

        .mobileChangeTemplateSection .chooseTemplateBox > div {
            width: 100%;
            margin-bottom: 12px;
        }

    .mobileBottomSpace {
        margin-bottom: 20px;
    }

    .editResumeBtn {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        height: 100%;
        padding: 2px;
        border: none;
        border-radius: 0;
        margin: 0;
        color: #3686d8;
        font-size: 12px;
        line-height: 1.2;
        font-weight: 500;
        min-width: auto;
    }

        .editResumeBtn svg {
            margin-bottom: 4px;
        }

            .editResumeBtn svg, .editResumeBtn svg path {
                fill: #eca20a;
            }

        .editResumeBtn:first-child {
            flex: 0.8;
        }

        .editResumeBtn:hover {
            color: #3686d8;
            background: #f5f5f5;
        }

            .editResumeBtn:hover .toplinkLabel, .editResumeBtn:focus .toplinkLabel, .editResumeBtn:active .toplinkLabel {
                color: #3686d8;
            }

            .editResumeBtn:hover svg path {
                fill: #5294d8;
            }

    .resumeContainerBox {
        height: 100%;
    }

        .resumeContainerBox iframe {
            height: 100%;
        }

    .dashboardLabel {
        padding-right: 8px;
        width: 45%;
    }

    .dashboardSelect {
        width: 55%;
    }

    .resumeContainer {
        height: 390px;
    }

    .templateNoteDesc {
        padding: 0 0 0 70px;
    }

    .uploadResumeSection {
        flex-direction: column;
        margin: 30px 0;
    }

    .uploadItemBox {
        flex: inherit;
    }

    .editSampleBox {
        flex: inherit;
    }

    .previewInfo {
        padding: 15px;
    }

    .previewTopLink {
        margin: 0 0px 20px 0;
    }

    .mobileFixedDashboardInfo {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 60px;
        background: #fff;
        z-index: 999;
        margin: 0;
        align-items: center;
        box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.5);
    }

    .toplinkLabel {
        display: block;
        color: #3686d8;
        font-weight: 500;
    }

    .resumePreviewInfo {
        margin: 0;
    }

    .freeTemplateInfo {
        margin-bottom: 24px;
    }

    .uploadInfo {
        width: 90%;
        padding: 14px 16px;
    }

    .uploadTitle {
        font-size: 20px;
    }

    .dragText {
        font-size: 15px;
    }

    .experienceSectionRow {
        padding: 10px 12px;
    }

    .experCompanyInfo {
        font-size: 16px;
        line-height: 1.4;
        padding-right: 24px;
    }

    .experCitiInfo {
        display: flex;
        font-size: 12px;
    }

    .experPositionInfo {
        font-size: 14px;
    }

    .experCompanyDetailInfo {
        font-size: 14px;
    }

        .experCompanyDetailInfo ul {
            padding: 0 0 0 15px;
            margin: 0 0 0 15px;
        }


    .photoEditDiv {
        left: 44%;
    }

    .mobileFormatRow .formatItemHeading {
        color: #222;
    }

    .mobileFormatRow .formatItemData {
        background: rgba(240, 247, 255, 40%);
        border: 1px dashed #3686d8;
    }

        .mobileFormatRow .formatItemData .customRadioInfo label {
            color: #222 !important;
            font-weight: 400;
        }

    .modal .modal-content {
        width: 90%;
        margin: auto;
    }

        .modal .modal-content .modal-header .modal-title {
            font-size: 2rem;
        }

        .modal .modal-content .modal-header {
            padding: 0 0 10px;
        }

        .modal .modal-content .modal-body {
            padding: 10px 0;
        }

        .modal .modal-content .modal-footer {
            display: flex;
            justify-content: space-between;
            padding: 15px 0 0;
        }

        .modal .modal-content .modal-footer {
            padding: 0px 0 15px 0px;
        }

    .res-modal .modal-content .modal-header {
        padding: 5px 10px 10px;
    }

    .res-modal .modal-content .modal-body {
        padding: 10px;
    }

    .res-modal .modal-content .modal-footer {
        padding: 0 10px 15px;
    }

    .resumeTopButtonSection {
        margin: 0 0 10px;
    }

    .btnOptimize {
        font-size: 12px;
        padding: 6px 12px;
    }

    .linkedInSummaryModal .modal-dialog {
        width: calc(100% - 20px) !important;
    }

    .linkedInSummaryModal .modal-footer {
        padding: 15px 0 !important;
    }

    .cardSummaryDetails {
        flex-direction: column;
    }

    .summaryCard:not(:first-child) {
        margin-left: 0;
        margin-top: 16px;
    }

    .res-modal .modal-dialog {
        width: calc(100% - 20px);
    }

    .mobileOptimizeModal .modal-dialog-centered {
        display: flex;
        align-items: center;
        min-height: calc(100% - 1rem);
    }

    /**Added FAQ section CSS**/
    .faq-section {
        padding: 40px 0;
    }

    .featureHeading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faqAccordion {
        width: 100%;
    }

    .faqHead {
        font-size: 16px;
    }
   
    .faqAccordion .card-body {
        font-size: 14px;
        padding: 10px 0;
    }

    .download-modal .modal-dialog {
        width: auto;
    }

    .download-modal .downloadFooterInfo {
        flex-direction: column;
    }

        .download-modal .downloadFooterInfo button {
            width: 100%;
            margin: 0 0 15px;
        }

    .downloadProfileMessage {
        text-align: center;
    }

    .downloadFooterInfo .buyProfileMessage {
        margin-left: 0;
        width: 100%;
    }

    .downloadProfileMessage .profileMessage {
        text-align: center;
    }

    .referralLinkInfo input {
        width: 100%;
    }

    .referralLinkInfo .btnCopyLink {
        width: 100%;
        margin-top: 10px
    }

    .boxContainerInfo .gridSection {
        width: 100%;
    }

    .linkedInSummarySection {
        padding: 24px 10px;
    }

    .linkedTopRow {
        padding: 0 0 24px;
    }

    .optimizeSection {
        margin: 24px auto 24px;
    }

    .linkedSummaryContainer .title {
        font-size: 2rem;
        text-align: center;
    }

    .linkedLabel {
        text-align: center;
    }

    .summaryCard {
        width: 100%;
        margin: 0 0 14px;
    }

    .linkedinCreditsDetails {
        text-align: center;
    }

    .linkedGenerateDetails {
        padding: 0;
    }

    .linkedGeneratedDataList {
        padding: 1px 14px 16px;
        margin-bottom: 18px;
    }

    .listGroupDataRow {
        gap: 10px;
    }

    .listGroupDataHeading {
        font-size: 15px;
    }

    .generatedSummarySection {
        padding: 20px 0;
    }

    .linkedinAccordion .card-header .linkinHead {
        font-size: 16px;
    }

    .linkinSummCardTopAction {
        font-size: 14px;
    }

    .linkinSummCardSummary {
        font-size: 12px;
    }

    .listGroupHeading {
        flex-direction: column;
        gap: 10px;
    }

        .listGroupHeading span {
            width: 100%;
        }

    .earnTitle {
        font-size: 32px;
        text-align: center;
    }

    .earnReferralHeading {
        font-size: 22px;
        text-align: center;
    }

    .earnDetails p {
        font-size: 14px;
        text-align: center;
    }

    .earnReferralSection {
        flex-direction: column;
    }

    .earnReferralLeft {
        width: 100%;
        padding-right: 0px;
    }

    .earnReferralRight {
        width: 100%;
        padding: 20px 0 0;
        display: flex;
        justify-content: center;
    }

    .earnWorkDetails {
        flex-direction: column;
    }

    .earnWorkList {
        width: 100%;
        border-radius: 12px;
        padding: 16px 20px;
    }

    .earnWorkHeading {
        font-size: 18px;
    }

    .earnWorkList p {
        font-size: 14px;
    }

    .earnYouGetDetails {
        width: 100%;
    }

    .earnRecommendDetails {
        width: 80%;
    }

    .earnYouGetList {
        font-size: 14px;
    }

    .earnRecommendList li {
        font-size: 14px;
    }

    .earnReferringData {
        width: 80%;
    }

    .earnReferringText {
        font-size: 14px;
    }

    .applyPluginSection {
        padding: 12px 0 42px;
    }

    .applyPluginWorkItem {
        margin-bottom: 24px;
    }

    .applyPluginTopText {
        font-size: 14px;
        text-align: center;
        padding: 24px 0 32px;
    }

    .applyPluginWorkSection {
        padding: 42px 0;
    }

    .pluginWorkHeading {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .applyItemIcon {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .applyItemHeading {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .applyItemText {
        min-height: auto;
        font-size: 14px;
    }

    .applyPluginWorkButton {
        margin-top: 10px;
    }
    .uploadPicSection {
        width: 100%;
    }
    .skillsSearch .select2-container {
        width: 100% !important;
    }
    .organFormButtonInfo a.trans-btn {
        padding: 5px 16px;
    }
    .organizationSection {
        width: 100%;
        padding: 20px !important;
    }
    
    /** Resume Writing Section **/
    .resumeWritingSection {
        padding: 32px 0;
        background: linear-gradient(90deg, hsla(0, 0%, 100%, 1) 10%, hsla(202, 78%, 91%, 1) 100%);
    }

    .resumeWritingSubHeading {
        font-size: 18px;
        text-align: center;
    }

    .resumeWritingHeading {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }

    .resumeWritingText {
        font-size: 14px;
        text-align: center;
    }

    .resumeWritingPlan {
        padding: 32px 0 0;
    }

    .resumeWritingPlanItem {
        width: 90%;
        padding: 28px 20px;
        margin-bottom: 24px;
    }

    .writingTitle {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .writingDetailText {
        font-size: 14px;
    }

    .writingPrice {
        font-size: 38px;
        padding: 18px 0;
    }

    .writingOrderButton {
        margin: 32px 0;
    }

    .writingItemList li {
        font-size: 13px;
    }

        .writingItemList li svg {
            width: 14px;
            margin-right: 4px;
        }

    .resumeDaySection {
        margin: 32px 0 0;
    }

    .resumeDayHeading {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .resumeDayText {
        font-size: 13px;
        margin: 0;
        padding: 0;
    }

    .resumeCustomizeSection {
        padding: 32px 0;
    }

    .resumeCustomizeTitle {
        font-size: 24px;
        margin-bottom: 10px;
        padding: 0 20px;
    }

    .resumeCustomizeText {
        font-size: 14px;
        padding: 0 20px;
        margin-bottom: 42px;
    }

    .resumeCustomizeDetails {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 24px;
    }

    .resumeCustomizeItem {
        width: 80%;
        padding: 16px;
        text-align: center;
    }

        .resumeCustomizeItem h4 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .resumeCustomizeItem p {
            font-size: 14px;
        }

    .resumeMoreData {
        font-size: 20px;
        margin: 42px 0 22px;
    }

    .resumeMoreData {
        font-size: 20px;
        margin: 42px 0 22px;
    }

        .resumeMoreData span {
            font-size: 36px;
        }

    .resultSearchText {
        font-size: 12px;
    }

    .writingProcessSection {
        padding: 32px 0;
    }

    .writingProcessInfo {
        margin: 0;
    }

    .writingProcessBox {
        padding: 20px;
        text-align: center;
        margin-bottom: 32px;
    }

    .writingProcessHeading {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .writingProcessText {
        font-size: 14px;
    }

    .writingProcessButton {
        margin: 10px 0 0;
    }

    .faqResumeWritingSection {
        padding: 32px 0;
    }

    .faqResumeWritingHeading {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .faqWritingHead {
        font-size: 18px;
        padding: 12px 0;
    }


    .faqWritingAccordion .card-body {
        font-size: 14px;
    }
    .resumeDetailInfo {
        padding-top: 0;
        text-align: center;
    }
    .resumeDetailInfo .alignRight {
        text-align: center;
        margin: 5px 0;
    }
    .mobileDashLink {
        display: none;
    }
    .moreDashLink {
        display: flex;
    }

    .moreMobileOptionModel.active {
        display: block;
        bottom: 0;
    }
    .optimizeOptionsSection {
        padding: 0;
    }
    .jobDescTextarea {
        min-height: 100px !important;
    }
    .optimizationResultsSummary {
        padding-top: 20px !important;
    }
    .optimizationDetailInfo {
        padding: 0;
    }
    #viewOptimizationChangesBtn {
        margin-top: 12px;
    }
    .congratInfo {
        font-size: 34px;
        margin-bottom: 30px;
    }
    .headerHelpIcon {
        margin: 0 6px 0 0 !important;
    }
    .switchModeRadioInfo {
        flex-direction: column;
        gap: 10px;
    }
    .switchModeListData {
        gap: 10px;
    }
    .switchModeListDetails {
        width: 100%;
    }

}

.fixedMobileBottom {
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.5);
}

.mobileBottomInfo {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

.mobileBottomItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    font-size: 12px;
    line-height: 1.2;
    color: #3686d8;
}

    .mobileBottomItem:first-child {
        flex: 1.2;
    }

    .mobileBottomItem.moreMobile {
        flex: 0.8;
    }

    .mobileBottomItem:hover {
        color: #5294d8;
        background: #f5f5f5;
    }

    .mobileBottomItem svg {
        width: 24px;
        margin-bottom: 4px;
    }

        .mobileBottomItem svg path {
            fill: #eca20a;
        }

    .mobileBottomItem label {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        font-weight: 500;
        width: 100%;
        height: 100%;
        justify-content: center;
    }

        .mobileBottomItem label.active {
            color: #5294d8;
            background: #f5f5f5;
        }

            .mobileBottomItem label.active svg, .mobileBottomItem label.active svg path, .mobileBottomItem:hover svg, .mobileBottomItem:hover svg path {
                fill: #5294d8;
            }




    .mobileBottomItem i {
        color: #222;
        margin-bottom: 4px;
    }

.moreMobile {
    position: relative;
}

.moreMobileOption {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    z-index: 99;
    background: #fff;
    padding: 0;
    border-radius: 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.moreMobileOptionList {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    height: 100%;
    font-size: 16px;
    color: #3686d8;
}

    .moreMobileOptionList:first-child {
        flex: 1.5;
    }

    .moreMobileOptionList:hover {
        color: #3686d8;
        background: #f5f5f5;
    }

        .moreMobileOptionList:hover svg, .moreMobileOptionList:hover svg path {
            fill: #3686d8;
        }

    .moreMobileOptionList svg {
        width: 24px;
        margin: 0 0 4px;
    }

        .moreMobileOptionList svg path {
            fill: #eca20a;
        }

    .moreMobileOptionList label {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 500;
        margin: 0;
        text-align: center;
        width: 100%;
        height: 100%;
        padding: 0;
    }

        .moreMobileOptionList label.active {
            color: #5294d8;
            background: #f5f5f5;
        }

            .moreMobileOptionList label.active svg, .moreMobileOptionList label.active svg path, .moreMobileOptionList:hover svg, .moreMobileOptionList:hover svg path {
                fill: #5294d8;
            }

.template-border {
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 10px;
    overflow: hidden;
    padding-top: 120%;
    position: relative;
    transform: scale(1);
    z-index: 1;
}

.template-overlay {
    background: transparent;
    cursor: pointer;
    opacity: 1;
    z-index: 100;
}


/* TODO:Commented the scaling part for now, needs better experience
  .select-template .template-border:hover {
  background: white;
  opacity: 1;
  transition: top 450ms ease-in-out 0s;
  transform: scale(1.4);
  z-index: 10;
}*/

.skinImage {
    padding-left: 10px;
    padding-right: 10px;
}

    .skinImage img {
        height: auto;
        width: auto;
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.carousel-arrow {
    opacity: 0;
}

.select-template .template-border:hover .select-btn {
    display: block;
    text-decoration: none;
}

.template-data iframe {
    border: none;
    height: 100%;
    width: 100%;
}

.template-data {
    background: #fff;
    height: 367px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.template-details {
    color: #f0f3f8;
    font-size: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.padding-bottom10 {
    padding-bottom: 10px;
}

.padding-top15 {
    padding-top: 15px;
}

.padding-left5 {
    padding-left: 5px;
}

.display-flex {
    display: flex;
}

.display-none {
    display: none;
}

.loading-widget {
    background: url(/images/loading.gif) center center no-repeat #fff;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.saveAndNextLoader {
    background: url(/images/loading.gif) center center no-repeat #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 60px;
    width: 60px;
    z-index: 10;
}

.saveLoaderBtn {
    position: absolute;
    top: 8px;
    right: 2px;
    z-index: 10;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(farthest-side,#FFFFFF 94%,#0000) top/4px 4px no-repeat, conic-gradient(#0000 30%,#FFFFFF);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 4px),#000 0);
    animation: circleSpinner 1s infinite linear;
}

.disabledLoaderBtn {
    background-color: #edbe5b;
    border-color: #edbe5b;
}

/* Photo Image CSS*/

.modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 70%; /* 70% of the screen width */
    max-width: 800px;
    max-height: 80%; /* Ensure it doesn't take up the whole screen */
    overflow: auto;
}

.modal-footer {
    text-align: center;
    margin-top: 10px;
}

    .modal-footer button {
        margin: 10px;
    }

/* Photo Image CSS Ends*/


/*Journey Inner Section Layout*/
.innerSectionJourneyLayout {
    width: 100%;
    height: 100%;
}

.choose-template-select-text {
    position: absolute;
    z-index: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(200,200,200,0.1);
    color: #fff;
    font-size: 20px;
    width: 100%;
    height: 100%;
}

.display-block {
    display: block;
}

.toastify.on {
    border-radius: 8px;
}

.select-template-anchor:hover .choose-template-select-text {
    display: flex;
}

.edit-sample-resume-anchor .choose-template-select-text {
    display: flex;
}

.choose-template-class {
    width: 95%;
    height: 0;
    padding-bottom: 123%;
    overflow: hidden;
    position: relative;
    background: #fff;
    /* border-radius */
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    /* box-shadow */
    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 8px;
    -moz-box-shadow: rgba(0,0,0,0.8) 0 0 8px;
    box-shadow: rgba(0,0,0,0.8) 0 0 8px;
}

.chooseTemplateSubHeading {
    font-family: 'Lato';
    color: #222b56;
    font-size: 20px;
    line-height: 1.3;
    margin: 10px 0 20px;
    padding: 5px 0 7px;
    position: relative;
    text-align: center;
}

.switchTemplateLater {
    font-family: 'Lato';
    color: #0078d4;
    font-size: 20px;
    line-height: 1.3;
    margin: 10px 0 10px;
    padding: 5px 0 7px;
    position: relative;
    text-align: center;
}

.chooseTemplateTitle {
    font-family: 'Lato';
    color: #222b56;
    font-size: 32px;
    line-height: 1.3;
    margin: 10px 0 20px;
    padding: 5px 0 7px;
    position: relative;
    text-align: center;
}

    .chooseTemplateTitle::after {
        content: '';
        width: 60px;
        height: 4px;
        background: #eca20a;
        bottom: 0;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        border-radius: 4px;
    }

.st-filter-btn {
    background: transparent;
    border: 1px solid #0096d4;
    color: #0096d4;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.filterBtnMob {
    background: transparent;
    border: 1px solid #0096d4;
    color: #0096d4;
    padding: 2px 6px;
    margin: 4px 2px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.st-filter-btn.active {
    background: #0096d4;
    color: white;
}

.st-filter-container {
    text-align: center;
}

.chooseTemplateBox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    margin-top: 25px;
}

    .chooseTemplateBox > div {
        margin-bottom: 30px;
        padding: 0 15px;
    }

}

.templateItem {
    width: 100%;
    display: flex;
}

.skinItem {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    padding: 20px 9px;
}

    .skinItem a {
        display: flex;
        flex-direction: column;
        position: relative;
        background: #fff;
    }

        .skinItem a:hover {
            text-decoration: none;
        }

            .skinItem a:hover .choose-template-info {
                display: flex;
            }

.choose-template-info {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0,0.2);
    z-index: 9;
}

.choose-template-class img {
    position: absolute;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    left: 0;
}

.imgBorder {
    border: 1px solid #ccc;
}

.templateType {
    font-size: 12px;
    color: #f0f3f8;
    font-weight: 700;
    padding: 2px 6px;
    position: absolute;
    bottom: 35px;
    left: 0px;
    height: 22px;
    background: #eca20a;
    text-transform: uppercase;
    white-space: nowrap;
}

.templateLeft {
    left: 15px;
}

.templateType:before {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 0;
    height: 0;
    content: "";
    border-right: 11px solid transparent;
    border-top: 11.5px solid #eca20a;
    border-bottom: 11px solid #eca20a;
}

.templateNote {
    padding-top: 25px;
}

.templateDesc {
    color: #465A6B;
    width: 95%;
}

.templateNoteDesc {
    color: black;
    font-weight: 600;
    padding: 0px 50px;
    position: absolute;
    bottom: 60px;
    height: 22px;
}

.templateName {
    font-size: 20px;
    font-weight: 800;
    color: #465A6B;
    margin-top: 4px;
}

.templateCount {
    float: right;
    margin-right: 15px;
}

.zoom-template {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

    .zoom-template::after {
        content: '';
        position: absolute;
        z-index: -1;
        opacity: 0;
        -webkit-box-shadow: rgba(0,0,0,0.8) 0px 2px 10px;
        -moz-box-shadow: rgba(0,0,0,0.8) 0 2px 10px;
        box-shadow: rgba(0,0,0,0.8) 0 2px 10px;
        transition: opacity 0.3s ease-in-out;
    }

    .zoom-template:hover {
        -webkit-box-shadow: #0078d4 0px 2px 10px;
        -moz-box-shadow: #0078d4 0 2px 10px;
        box-shadow: #0078d4 0 2px 10px;
        transform: scale(1.05, 1.05);
    }

        .zoom-template:hover::after {
            opacity: 1;
        }

.templateName .pagetype {
    font-size: 14px;
    color: #333;
}

.previewSkinName {
    color: #fff;
    font-weight: 600;
}

.previewSkinNameMobile {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    margin-top: 0px;
}

.blueColor {
    color: #0096d4;
}

.adviceBoxInfo {
    margin-bottom: 20px;
}

.reviewInfo {
    background: #EFF5F9;
    color: #f0f3f8;
    padding: 60px 0 55px;
}

.reviewData {
    border-bottom: 2px solid #5a7ec5;
    display: inline-block;
    padding-bottom: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.testimonialDataInfo {
    float: left;
    min-height: 218px;
    padding: 50px 0 0 40px;
    position: relative;
    text-align: left;
    width: 100%;
}

.testimonialName {
    text-align: right;
    margin-top: 5px;
}

.quoteInfo {
    left: 10px;
    position: absolute;
    top: 30px;
}

.reviewText {
    color: #222;
    font-size: 16px;
    line-height: 1.2;
    padding: 0 10px 10px;
}

.footerDisclaimer {
    font-size: 12px;
    padding-left: 5px;
}

.forgotPassword {
    margin-bottom: 20px;
}

.subscription-message {
    color: #0078d4;
    font-size: 22px;
    padding-top: 3px;
    font-weight: 600;
}

.mobile-preview {
    align-items: center;
    color: #f0f3f8;
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    position: relative;
}

.disabled {
    opacity: 0.5; /* visually faded */
    pointer-events: none; /* prevent clicks/interaction */
}

.mobile-previewTabList {
    background: #3686d8;
}

    .mobile-previewTabList .tabView {
        margin: 0;
        padding: 0;
    }

        .mobile-previewTabList .tabView li {
            cursor: pointer;
            padding: 12px 4%;
            text-align: center;
        }

            .mobile-previewTabList .tabView li:hover, .previewTabList .tabView li.active {
                background: #69a5e2;
            }

.m-changeTemplateBox {
    display: flex;
    flex-direction: column;
    max-height: 90%;
    overflow-y: scroll;
}

    .m-changeTemplateBox .item {
        width: 100%;
        margin-bottom: 20px;
    }


.login-with-google-btn {
    transition: background-color .3s, box-shadow .3s;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    /*background-position: 12px 11px;*/
    background-position: 104px 14px;
    width: 360px;
    &:hover

{
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
}

&:active {
    background-color: #eeeeee;
}

&:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25), 0 0 0 3px #c8dafc;
}

&:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    cursor: not-allowed;
}

}

.currentWorkingInfo {
    display: flex;
}

    .currentWorkingInfo span {
        display: flex;
        font-size: 11px;
        margin-left: 18px;
        margin-top: 18px;
    }

.mobileModelData {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -150%;
    z-index: 11;
    overflow: hidden;
    transition: all 500ms ease-in-out;
    opacity: 0;
    padding-bottom: 60px;
}

.mobileModelShowData {
    bottom: 0;
    opacity: 1;
}

.mobileModelData .mobileModelInnerInfo {
    bottom: -150%;
}

.mobileModelShowData .mobileModelInnerInfo {
    bottom: 0;
}

.mobileModelBgInfo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
}

.mobileModelClose {
    position: absolute;
    height: 40px;
    top: 6px;
    right: 6px;
    z-index: 11;
    cursor: pointer;
}

.mobileModelCloseIcon {
    width: 18px;
    margin: 10px 12px;
}

.mobileModelInnerInfo {
    width: 100%;
    display: flex;
    max-height: 80%;
    background: #ffffff;
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
    border-radius: 12px 12px 0 0;
    margin-bottom: 60px;
}

.mobileTabHeading {
    color: #222222;
    font-size: 2.2rem;
    font-weight: 600;
    padding-bottom: 20px;
}

.mobileSectionDetails {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-y: scroll;
}

.mobileSectionDetailBox {
    display: flex;
    flex-direction: column;
}

.mobileModal .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

    .mobileModal .modal-dialog-centered .modal-content {
        width: 94%;
        margin: auto;
    }

#optimize-modal.mobileModal .modal-dialog-centered .footerDisclaimer {
    margin-top: 10px;
}

.moreMobileOptionModel {
    position: fixed;
    left: 0;
    bottom: -150%;
    width: 100%;
    height: 62px;
    z-index: 999;
    margin-bottom: 60px;
    transition: bottom 500ms ease-in-out;
    display: none;
}

.modelShowModel {
    display: block;
    bottom: 0;
}

.moreMobileOptionbg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    //background: rgba(0, 0, 0, 0.5);
}
.dashMoreMobileModel .moreMobileOptionList {
    flex: 1;
    justify-content: center;
}
.dashMoreMobileModel .moreMobileOptionList a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.formatMobileSection {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobileFormatRow {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.mobileFormatDetails {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: scroll;
}

.mobileSelectBox {
    border-bottom: 1px solid #ffffff;
    position: relative;
    z-index: 0;
}

.mobileSelect {
    -webkit-appearance: none;
    background: #5294d8;
    border: none;
    border-radius: 0;
    color: #f0f3f8;
    font-size: 16px;
    margin-bottom: 10px;
    outline: none;
    padding: 5px 8px;
    width: 100%;
}

    .mobileSelect option {
        background: #5a7ec5;
    }

.mobileSelectBox .arrow {
    border-bottom: 2px solid #f0f3f8;
    border-left: 2px solid #f0f3f8;
    height: 10px;
    position: absolute;
    right: 15px;
    top: 17px;
    transform: rotate(-45deg);
    width: 10px;
    z-index: 1;
}

.mobileThemesInfo {
    display: none;
    width: 100%;
    padding: 0 0 55px;
}

.mobileThemeRowInfo {
    align-items: center;
    background: #5294d8;
    border-radius: 4px;
    color: #f0f3f8;
    cursor: default;
    display: flex;
    flex-direction: row;
    font-size: 16px;
    margin-bottom: 12px;
    padding: 8px 10px 8px 15px;
}

    .mobileThemeRowInfo:hover {
        background: #3686d8;
        cursor: default;
    }

.mobileThemeTitle {
    color: #f0f3f8;
    flex: 1;
    font-size: 16px;
    line-height: 18px;
    padding: 5px 10px 5px 0;
}

.mobileColorPicker {
    border: 1px solid #e2e4e6;
    height: 30px;
    overflow: hidden;
    width: 80px;
}

    .mobileColorPicker ul {
        display: flex;
        margin: 0;
        padding: 0;
    }

    .mobileColorPicker li {
        height: 30px;
        list-style-type: none;
        min-width: 33%;
        flex: 1;
    }

.mobileAddInfo {
    display: none;
    width: 100%;
    padding: 0 0 55px;
}

.mobileAddSection .mobileAddSectionRow {
    font-size: 14px;
    color: #222222;
    border: 1px solid #5294d8;
    margin: 0 0 12px 0;
    padding: 8px 10px;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
}

.mobileAddSection .mobileAddSectionTitle {
    padding-right: 10px;
    font-size: 14px;
    color: #222222;
    width: 100%;
}

.mobileAddSection .input[type='checkbox'] + label.check {
    margin-right: 0;
    border: 1px solid #5294d8;
}

.mobileSkinTemplate {
    position: relative;
    width: 100%;
    height: 0;
    display: flex;
    padding-bottom: 129%;
}

    .mobileSkinTemplate img {
        position: absolute;
        top: 50%;
        left: 50%;
        height: auto;
        width: auto;
        max-width: 100%;
        max-height: 100%;
        transform: translate(-50%, -50%);
    }

.settingContInfo {
    width: 100%;
}

.width70 {
    width: 70%;
}

.tips-close {
    text-decoration: underline;
    cursor: pointer;
}

.tips-button {
    font-size: 32px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #cd7f32;
    width: 32px;
    display: inline-flex;
    padding: 0px 0px 5px 5px;
    margin-top: 2px;
    margin-left: 2px;
}

.tips-area {
    position: fixed; /* Fix to viewport */
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    z-index: 9;
    border-radius: 10px 0px 0px 10px;
    border: 1px solid #0096d4;
    border-right: 0px;
}

    .tips-area.visible {
        right: 0; /* Slide in from right on click */
    }


.tipsCloeIcon {
    width: 20px;
    margin: 10px 20px 0px 240px;
}

/*Payment Success Page CSS*/

.payment-success-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.payment-success-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
}

.payment-success-icon {
    color: #28a745;
    font-size: 50px;
    margin-bottom: 10px;
}

.payment-success-title {
    color: #0096d4;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.payment-details, .payment-thank-you, .payment-redirect, .payment-manual-redirect {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.payment-divider {
    height: 2px;
    background: #ddd;
    margin: 10px 0;
}

.payment-amount, .payment-plan, .payment-validity {
    font-weight: bold;
    color: #0096d4;
}

.success-message {
    font-size: 16px;
    margin: 10px 0;
}

.payment-link {
    color: #0096d4;
    font-weight: bold;
    text-decoration: none;
}
/*Payment Success Page CSS Ends*/
.payment-success {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 400px;
}

    .payment-success h2 {
        color: #27ae60;
    }

    .payment-success p {
        margin: 10px 0;
    }

    .payment-success .fa-check-circle {
        color: #27ae60;
        font-size: 48px;
    }

    .payment-success .user-name {
        color: #464646;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 14px;
        line-height: 22px;
        margin: 0;
    }

.line-bar {
    width: 100%;
    height: 2px;
    background-color: #808080;
}

.payment-details {
    color: #464646;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

.line-bar-range {
    flex-grow: 1;
    height: 2px;
    background-color: #808080;
    width: 40%;
    margin-left: 100px;
}

.mobileDownloadInfo {
    padding: 14px 20px 10px;
    display: flex;
    justify-content: center;
}

.premiumPlanBoostInfo {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    margin: 0 0 40px;
}

.generativeAiFeatureQuotaBanner {
    background-color: #3686d8;
    border-color: black;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid;
    color: #fff;
}

.upgradePlanBanner {
    background-color: #3686d8;
    border-color: black;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid;
    color: #fff;
}

    .upgradePlanBanner p {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .upgradePlanBanner .upgrade-plan-link {
        color: #eca20a;
        font-weight: bold;
        text-decoration: underline;
        text-shadow: 1px;
    }

/* Style for the info icon */
.info-icon {
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
    color: #fff;
    font-weight: bold;
}
/* Hover effect for the info icon */
#info-icon:hover {
    color: #fff; /* change color when hovered */
}

.padding40 {
    padding: 40px;
}

.padding-top35 {
    padding-top: 35px;
}

/* Hidden overlay message by default */
.overlay-message {
    display: none;
    position: absolute;
    background-color: #fff;
    color: black;
    padding: 15px;
    border: 2px solid #c9c9c9;
    border-radius: 8px;
    width: 40%;
    top: 104px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: left;
    opacity: 0.99;
}

.overlayUL {
    margin: 0px;
    padding-left: 15px;
}

.overlay-message li {
    text-align: left;
}


/* Styles for the upgrade button inside the overlay */
.overlay-message a {
    text-decoration: none;
    color: white;
    background-color: #eca20a;
    border-radius: 4px;
    padding: 10px 10px;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .overlay-message {
        width: 75%;
        margin-left: 6%;
        margin-top: 55px;
        text-align: center;
    }

    /* Icon size adjustment for smaller screens */
    .info-icon {
        font-size: 14px;
    }
}

.hide {
    display: none;
}

.upload-optimize {
    display: block !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-left: 8px !important;
    margin-top: 8px !important;
}
