:root {
    --mainFooterHeight: 64px;
    --mainHeaderHeight: 56px;
    --mainHeaderHeightwithTabs: calc(var(--mainHeaderHeight) + 48px);
    --ResumeBuildCard: 140px;
    --primaryColor: #1589ED;

    --cardShadow : 4px 4px 4px rgba(0, 0, 0, 0.1);
    --100vh: calc(var(--vh, 1vh) * 100);
}

body {
     background-color: #fff;
     font-size: 14px;
     user-select: none;
     font-family: 'Montserrat' !important;
     height: var(--100vh);
     overflow-x: hidden;
     overflow: hidden;
}
.container {
    padding: 1rem !important; 
}

body .MainPagesSection.HFMain {
    height: calc(var(--100vh) - var(--mainHeaderHeight) - var(--mainFooterHeight));
    /* height: calc(100vh - var(--mainFooterHeight)); */

    /* margin-top: var(--mainHeaderHeight); */
}

body .MainPagesSection.FMain {
    height: calc(var(--100vh) - var(--mainFooterHeight));

    /* margin-top: var(--mainHeaderHeight); */
}

body .MainPagesSection.HTFMain {
    height: calc(var(--100vh) - var(--mainHeaderHeightwithTabs) - var(--mainFooterHeight));
    /* margin-top: var(--mainHeaderHeightwithTabs); */
}

.MainPagesSection {
    background-color: rgb(242, 242, 242);
    overflow: hidden;
    overflow-y: auto;
}

.appHeader {
    position: relative;
}

.fs-pgtitle {
    /* font-size: 2.3rem; */
    font-size: 1.2rem;
}

form label {
    color: #787878;
    font-weight: 700;
}
form input::placeholder {
    color: #C8C8C8 !important;
}

.mobileMainFooter {
    height: var(--mainFooterHeight);
}

.mobileMainHeader {
    height: var(--mainHeaderHeight);
}

.mobileMainHeader.withTabs {
    height: var(--mainHeaderHeightwithTabs);
}


.productModules {
    line-height: 14px;
}
.productModules span {
    font-size: 12px;
    color: #A9A1A1;
}

/* ResumeBuildCard */
.ResumeBuildCard {
    height: var(--ResumeBuildCard);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
    gap: 12px;
    box-shadow: var(--cardShadow);
}

.ResumeBuildCard .ResumePercantage > * {
    height: 100%;
    width: 120px;
}

.ResumeBuildCard .ResumeData {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.ResumeBuildCard .ResumeData p {
    font-size: clamp(12px, 1.2rem, 15px);
    line-height: clamp(13px, 1.2rem, 16px);
    margin-bottom: 8px;
}

.HeaderTabs {
    height: calc(var(--mainHeaderHeightwithTabs) - var(--mainHeaderHeight));
    width: 100vw;
    padding: 0 10px;
}

.HeaderTabs > div {
    overflow: hidden;
    overflow-x: auto;
}

.HeaderTabs > div button {
    color: #000 !important;
    position: relative;
}
.HeaderTabs > div button.activeTab {
    color: var(--primaryColor) !important;
}
.HeaderTabs > div button.activeTab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primaryColor);
    border-radius: 6px;
}


/* searchform */

.SearchInputFilterBtnContainer {
    display: flex;
    gap: 10px;
    align-items: center;
}
.searchContainer {
    flex-shrink: 0;
    width: calc(100% - 60px);
}
.searchform {
    position: relative;
}
.searchform input,
.FilterBtn{
    border-radius: 10px;
    border: 1px solid #DEDEDE;
    background-color: #fff;
    width: 100%;
}
.searchform input {
    font-size: 14px;
    height: 50px;
}
.searchform input::placeholder {
    color: #7B7B7B;
}

.searchform button {
    position: absolute;
    right: 0;
    top: 0;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
    background-color: #0f6dbe !important;
    border-color: #0f6dbe !important;
}



button.exitButton {
    border: 1px solid #EBEEF1;
    color: black !important;
}




.ResumeSteps {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    display: flex;
}

.ResumeSteps .Step {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: relative;
    cursor: pointer;
}

.ResumeSteps .Step p {
    font-size: 11px;
    color: #1165EF;
    margin: 0;
    line-height: 14px;
    flex-grow: 1;
}



.ResumeSteps .Step .StepNumber {
    background-color: #fff;
    border: 1px solid #1589ED;
    color: #1589ED;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ResumeSteps .Step.active .StepNumber {
    background-color: #1589ED;
    color: #fff;
}

.ResumeSteps .Step .StepNumber::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #1589ED;
    left: 50%;
    z-index: -1;
}

.ResumeSteps .Step:last-child .StepNumber::before {
    display: none;
}

.form-control:focus {
    /* border: 2px solid #1165EF; */
    /* box-shadow: none; */
    box-shadow: 0px 0px 0 1px #1165EF;
}

button {
    height: 50px !important;
}
button:focus {
    box-shadow: 0px 0px 0 1px #1165EF;
}
input {
    height: 45px;
}