@charset "utf-8";

/* CSS Document */

.tier1 {
    display: flex;
    flex-direction: column;
}

.tier1 p, .tier2 p, .tier3 p {
    /* border-bottom: 1px dashed #2f2f2f; */
    text-align: center;
}

.tier3 p {
    border: none;
}

h1, h2, div, p {
    font-family: montserrat;
    font-weight: 700;
    color: #FFF;
}



.column {
    display: flex;
    flex-basis: 0 0 33%;
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    width: 100%;
}

.calculator {
    flex: 1;
    display: flex;
    flex-basis: 355px;
    flex-wrap: wrap;
    /* justify-content: center; */
    flex-direction: column;
    text-align: center;
    background: #00359D;
    border-radius: 30px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.15);
    /* margin-top: 20px; */
    /* border-radius: 10% 10% 10% 10% / 6% 6% 6% 6%; */
    margin: 5px 0 0 0;
    min-width: 355px;
    max-width: 480px;
}

@media (max-width: 480px) {
    .calculator {
        margin: 5px 0px 10px 0;
    }
}

@media (min-width: 790px) and (max-width: 1155px) {
    .calculator {
        margin-bottom: 5px !important;
    }

    .third-roundrect {
        max-width: 100%;
    }
}

.first-roundrect {
    border-radius: 30px;
    /* margin-top: 5px; */
    /* margin-bottom: 20px; */
    /* margin: 5px 0 0 0; */
}

@media (min-width: 480px) {
    .first-roundrect {
        margin: 5px 10px 0 0;
    }

    .first-roundrect-justify-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 210px;
    }

    .third-roundrect-justify-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 538px;
    }
}

.second-roundrect {
    border-radius: 30px;
    /* margin-bottom: 20px; */
}

@media (min-width: 480px) {
    .second-roundrect {
        margin: 5px 0 0 0;
    }
}

.second-roundrect h3 {
    margin: 7px 0 7px 0;
}

.second-roundrect h2 {
    margin: 10px 0 20px 0;
}

.third-roundrect {
    border-radius: 30px;
}

@media (min-width: 1000px) {
    .third-roundrect {
        margin: 5px 0 0 10px;
    }
}

.third-roundrect h2 {
    margin-bottom: 30px;
}

.third-roundrect .money-diff-container {
    margin-top: -13px;
}

body {
    margin: 0px;
}

.wrapper {
    background: #FFF;
}

@media (min-width: 480px) {
    .wrapper {
        width: -webkit-fill-available;
    }
}

.header {
    display: flex;
    /* align-items: center; */
    text-align: center;
    justify-content: center;
}

.logo {
    margin: 0 0 3px -30px;
}

.avatar {
    margin-top: 10px;
}

.header img {
    height: 100px;
}

.header p {
    color: #00359D;
    font-weight: 300;
    margin-left: -60px;
    margin-bottom: 0px;
    margin-top: -15px;
    font-weight: 700;
}

.slider-dollar-sign {
    margin-right: -20px;
    margin-left: 10px;
    color: #FFF;
}

.green-text {
    font-size: 35px;
    color: #EEC532;
}

.per-month {
    padding-bottom: 0px;
    padding-top: 10px;
}

.per-year {
    padding-bottom: 0px;
    padding-top: 10px;
    margin-left: -15px;
}

.per-text {
    font-size: 13px;
    margin-top: -5px;
}

.on-the-table {
    padding-top: 10px;
    padding-bottom: 15px;
}

.money-diff-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.money-diff {
    display: flex;
    flex-direction: column;
}

.money-diff-year {
    margin-left: 30px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.revenue-share {
    display: none;
}

@media (min-width: 480px) {
    .revenue-share {
        margin-top: -15px;
        display: block;
    }
}

.tier-notice {
    color: red;
    font-size: 13;
}

.font-size-22 {
    font-size: 22px;
}

.grand-total {
    font-size: 40px;
    margin-top: -15px;
}

.grand-total-value {
    font-size: 36px;
}

.calculate-raise {
    display: none;
}

@media (min-width: 480px) {
    .calculate-raise {
        margin: 28px 0 28px 0;
        display: block;
    }
}

html input[type=range] {
    outline: 0;
    border: 0;
    border-radius: 40px;
    width: 100%;
    max-width: 100%;
    margin: 24px 0 16px;
    transition: box-shadow 0.2s ease-in-out;
    box-shadow: 10px 10px 5px rgba(0,0,0,0.15);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    html input[type=range] {
        overflow: hidden;
        height: 40px;
        -webkit-appearance: none;
        background-color: #fff;
    }

    html input[type=range]::-webkit-slider-runnable-track {
        height: 40px;
        -webkit-appearance: none;
        color: #444;
        transition: box-shadow 0.2s ease-in-out;
    }

    html input[type=range]::-webkit-slider-thumb {
        width: 40px;
        -webkit-appearance: none;
        height: 40px;
        cursor: ew-resize;
        background: #fff;
        box-shadow: -740px 0 0 720px #EEC532, inset 0 0 0 40px #00359D;
        border-radius: 50%;
        transition: box-shadow 0.2s ease-in-out;
        position: relative;
    }

    html input[type=range]:active::-webkit-slider-thumb {
        background: #fff;
        box-shadow: -740px 0 0 720px #EEC532, inset 0 0 0 3px #00359D;
    }
}

html input[type=range]::-moz-range-progress {
    background-color: #43e5f7;
}

html input[type=range]::-moz-range-track {
    background-color: #9a905d;
}

html input[type=range]::-ms-fill-lower {
    background-color: #43e5f7;
}

html input[type=range]::-ms-fill-upper {
    background-color: #9a905d;
}

.range-slider__value {
    display: inline-block;
    position: relative;
    width: 105px;
    min-width: 80px;
    color: #EEC532;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: #4D75C0;
    padding: 5px 10px;
    margin-left: 8px;
    margin-top: 28px;
    border-top: 1px solid white;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
}

.range-slider__value:after {
    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid white;
    border-bottom: 7px solid transparent;
    content: "";
}

::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}

.slider {
    display: flex;
    justify-content: left;
    margin: -10px 10px 0 10px;
}

h3 {
    font-size: 24px;
}

.cparagraph-fgbtrFboKw1 p {
    color: Black!important;
}

.cparagraph--sfHZVOCG4S p {
    color: black!important;
}

.cparagraph-3aiNcI1RoYO p {
    color: black!important;
}

.compare-comp-container h1 {
    padding-top: 50px!important;
}

.nexa-share-container h1 {
    padding-top: 50px!important;
}

.total-income-container h1 {
    padding-top: 50px!important;
}

.csub-heading-ECIT_2bw1V2 h2 {
    color: black!important;
}

 
.tier1 {
    display: flex;
    flex-direction: column;
}

.tier1 p, .tier2 p, .tier3 p {
    /* border-bottom: 1px dashed #2f2f2f; */
    text-align: center;
}

.tier3 p {
    border: none;
}

h1, h2, div, p {
    font-family: montserrat;
    font-weight: 700;
    color: #FFF;
}



.column {
    display: flex;
/*    flex-basis: 0 0 33%;*/
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    width: 100%;
}

.calculator {
    flex: 1;
    display: flex;
    flex-basis: 355px;
    flex-wrap: wrap;
    /* justify-content: center; */
    flex-direction: column;
    text-align: center;
    background: #00359D;
    border-radius: 30px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.15);
    /* margin-top: 20px; */
    /* border-radius: 10% 10% 10% 10% / 6% 6% 6% 6%; */
/*    margin: 5px 0 0 0;
    min-width: 355px;
    max-width: 480px;*/
}

@media (max-width: 480px) {
    .calculator {
        margin: 5px 0px 10px 0;
    }
}

@media (min-width: 790px) and (max-width: 1155px) {
    .calculator {
        margin-bottom: 5px !important;
    }

    .third-roundrect {
        max-width: 100%;
    }
}

.first-roundrect {
    border-radius: 6px;
    /* margin-top: 5px; */
    /* margin-bottom: 20px; */
    /* margin: 5px 0 0 0; */
}

@media (min-width: 480px) {
    .first-roundrect {
        margin: 5px 10px 0 0;
    }

    .first-roundrect-justify-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 210px;
    }

    .third-roundrect-justify-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 538px;
    }
}

.second-roundrect {
    border-radius: 6px;
    /* margin-bottom: 20px; */
}

@media (min-width: 480px) {
    .second-roundrect {
        margin: 5px 0 0 0;
    }
}

.second-roundrect h3 {
    margin: 7px 0 7px 0;
}

.second-roundrect h2 {
    margin: 10px 0 20px 0;
}

.third-roundrect {
    border-radius: 6px;
}

@media (min-width: 1000px) {
    .third-roundrect {
        margin: 5px 0 0 10px;
    }
}

.third-roundrect h2 {
    margin-bottom: 30px;
}

.third-roundrect .money-diff-container {
    margin-top: -13px;
}

body {
    margin: 0px;
}

.wrapper {
    background: #FFF;
}

@media (min-width: 480px) {
    .wrapper {
        width: -webkit-fill-available;
    }
}


.green-text {
    font-size: 35px;
    color: #EEC532;
}

.per-month {
    padding-bottom: 0px;
    padding-top: 10px;
}

.per-year {
    padding-bottom: 0px;
    padding-top: 10px;
    margin-left: -15px;
}

.per-text {
    font-size: 13px;
    margin-top: -5px;
}

.on-the-table {
    padding-top: 10px;
    padding-bottom: 15px;
}

.money-diff-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.money-diff {
    display: flex;
    flex-direction: column;
}

.money-diff-year {
    margin-left: 30px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.revenue-share {
    display: none;
}

@media (min-width: 480px) {
    .revenue-share {
        margin-top: -15px;
        display: block;
    }
}

.tier-notice {
    color: red;
    font-size: 13;
}

.font-size-22 {
    font-size: 22px;
}

.grand-total {
    font-size: 40px;
    margin-top: -15px;
}

.grand-total-value {
    font-size: 36px;
}

.calculate-raise {
    display: none;
}

@media (min-width: 480px) {
    .calculate-raise {
        margin: 28px 0 28px 0;
        display: block;
    }
}

html input[type=range] {
    outline: 0;
    border: 0;
    border-radius: 40px;
    width: 100%;
    max-width: 100%;
    margin: 24px 0 16px;
    transition: box-shadow 0.2s ease-in-out;
    box-shadow: 10px 10px 5px rgba(0,0,0,0.15);
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    html input[type=range] {
        overflow: hidden;
        height: 40px;
        -webkit-appearance: none;
        background-color: #fff;
    }

    html input[type=range]::-webkit-slider-runnable-track {
        height: 40px;
        -webkit-appearance: none;
        color: #444;
        transition: box-shadow 0.2s ease-in-out;
    }

    html input[type=range]::-webkit-slider-thumb {
        width: 40px;
        -webkit-appearance: none;
        height: 40px;
        cursor: ew-resize;
        background: #fff;
        box-shadow: -740px 0 0 720px #EEC532, inset 0 0 0 40px #00359D;
        border-radius: 50%;
        transition: box-shadow 0.2s ease-in-out;
        position: relative;
    }

    html input[type=range]:active::-webkit-slider-thumb {
        background: #fff;
        box-shadow: -740px 0 0 720px #EEC532, inset 0 0 0 3px #00359D;
    }
}

html input[type=range]::-moz-range-progress {
    background-color: #43e5f7;
}

html input[type=range]::-moz-range-track {
    background-color: #9a905d;
}

html input[type=range]::-ms-fill-lower {
    background-color: #43e5f7;
}

html input[type=range]::-ms-fill-upper {
    background-color: #9a905d;
}

.range-slider__value {
    display: inline-block;
    position: relative;
    width: 105px;
    min-width: 80px;
    color: #EEC532;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: #4D75C0;
    padding: 5px 10px;
    margin-left: 8px;
    margin-top: 28px;
    border-top: 1px solid white;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
}

.range-slider__value:after {
    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid white;
    border-bottom: 7px solid transparent;
    content: "";
}

::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}

.slider {
    display: flex;
    justify-content: left;
    margin: -10px 10px 0 10px;
}

h3 {
    font-size: 24px;
}

.cparagraph-fgbtrFboKw1 p {
    color: Black!important;
}

.cparagraph--sfHZVOCG4S p {
    color: black!important;
}

.cparagraph-3aiNcI1RoYO p {
    color: black!important;
}

.compare-comp-container h1 {
    padding-top: 50px!important;
}

.nexa-share-container h1 {
    padding-top: 50px!important;
}

.total-income-container h1 {
    padding-top: 50px!important;
}

.csub-heading-ECIT_2bw1V2 h2 {
    color: black!important;
}

.flex{display:flex}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-grow{flex-grow:9999}.align-center{align-items:center}.h-full{height:100%}.max-w-400{max-width:400px}.text-right{text-align:right}.d-grid{display:grid}.px-0{padding-left:0!important;padding-right:0!important}.gap-2{gap:.625rem}.mt-20{margin-top:20px}.mt-8{margin-top:32px}.ml-3{margin-left:.75rem}.mr-10{margin-right:10px}.mt-4{margin-top:1rem}.mb-4{margin-bottom:1rem}.w-100{width:100%}.h-100{height:100%}.w-50{width:50%}.w-25{width:25%}.mw-100{max-width:100%}.noBorder{border:none!important}.iti__flag{background-image:url(https://stcdn.leadconnectorhq.com/intl-tel-input/17.0.12/img/flags.png)}.pointer{cursor:pointer}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-image:url(https://stcdn.leadconnectorhq.com/intl-tel-input/17.0.12/img/flags@2x.png)}}.iti__country{display:flex;justify-content:space-between}@media (min-width:768px){.hl_wrapper.nav-shrink .hl_wrapper--inner.page-creator,body{padding-top:0}.hl_page-creator--menu{left:0;top:0;z-index:10}.hl_wrapper{padding-left:0}}@media (min-width:1200px){.hl_wrapper.nav-shrink{padding-left:0!important}}html body .hl_wrapper{height:100vh;overflow:hidden}body{-webkit-font-smoothing:antialiased;margin:0}img{border-style:none;vertical-align:middle}.bg-fixed{z-index:-1}.progress-outer{background-color:#f5f5f5;border-radius:inherit;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);font-size:14px;height:35px;line-height:36px;overflow:hidden;padding-bottom:0;padding-top:0;width:100%}.progress-inner{box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);color:#fff;float:left;font-size:14px;height:100%;padding-left:10px;padding-right:10px;transition:width .6s ease;width:0}.progress0{width:0}.progress10{width:10%}.progress20{width:20%}.progress30{width:30%}.progress40{width:40%}.progress50{width:50%}.progress60{width:60%}.progress70{width:70%}.progress80{width:80%}.progress90{width:90%}.progress100{width:100%}.progressbarOffsetWhite{background:#f5f5f5}.progressbarOffsetTransparentWhite{background-color:hsla(0,0%,100%,.5)}.progressbarOffsetBlack{background:#333}.progressbarOffsetTransparentBlack{background-color:hsla(0,0%,49%,.5)}.text-white{color:#fff}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-bold-italic{font-style:italic;font-weight:700}.progressbarSmall{font-size:14px;height:35px;line-height:36px}.progressbarMedium{font-size:19px;height:45px;line-height:45px}.progressbarLarge{font-size:21px;height:65px;line-height:65px}.recaptcha-container{margin-bottom:1em}.recaptcha-container p{color:red;margin-top:1em}.card-el-error-msg{align-items:center;color:#e25950;display:flex;font-size:13px;justify-content:flex-start;padding:10px 0;text-align:center}.card-el-error-msg svg{color:#f87171;margin-right:2px}.hl-faq-child-heading{border:none;cursor:pointer;justify-content:space-between;outline:none;padding:15px;width:100%}.hl-faq-child-head,.hl-faq-child-heading{align-items:center;display:flex}.v-enter-active,.v-leave-active{transition:opacity .2s ease-out}.v-enter-from,.v-leave-to{opacity:0}.faq-separated-child{margin-bottom:10px}.hl-faq-child-panel img{border-radius:15px;cursor:pointer}.hl-faq-child-heading-icon.left{margin-right:1em}.expand-collapse-all-button{background-color:transparent;border:1px solid #d1d5db;border-radius:15px;color:#3b82f6;cursor:pointer;font-size:12px;font-weight:400;line-height:16px;margin:1em 0;padding:5px 15px}.hl-faq-child-panel{transition:padding .2s ease}.v-spinner .v-moon1{position:relative}.v-spinner .v-moon1,.v-spinner .v-moon2{animation:v-moonStretchDelay .6s linear 0s infinite;animation-fill-mode:forwards}.v-spinner .v-moon2{opacity:.8;position:absolute}.v-spinner .v-moon3{opacity:.1}@keyframes v-moonStretchDelay{to{transform:rotate(1turn)}}.generic-error-message{color:red;font-weight:500;margin-top:.5rem;text-align:center}#faq-overlay{background:var(--overlay);height:100vh;opacity:.8;width:100vw}#faq-overlay,#faq-popup{position:fixed;z-index:1000}#faq-popup{background:#fff;height:auto;left:50%;margin-left:-250px;margin-top:-250px;top:50%;width:500px}#popupclose{cursor:pointer;float:right;padding:10px}.popupcontent{height:auto!important;width:100%!important}#button{cursor:pointer}.dark{background-color:#000}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.spotlight{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);bottom:-30vh;filter:blur(20vh);height:40vh}.z-10{z-index:10}.right-0{right:0}.left-0{left:0}.fixed{position:fixed}.text-black{--tw-text-opacity:1;color:rgba(0,0,0,var(--tw-text-opacity))}.overflow-hidden{overflow:hidden}.min-h-screen{min-height:100vh}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.place-content-center{place-content:center}.grid{display:grid}.z-20{z-index:20}.max-w-520px{max-width:520px}.mb-8{margin-bottom:2rem}.text-8xl{font-size:6rem;line-height:1}.font-medium{font-weight:500}.mb-16{margin-bottom:4rem}.leading-tight{line-height:1.25}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-light{font-weight:300}@media (min-width:640px){.sm-text-10xl{font-size:10rem;line-height:1}.sm-text-4xl{font-size:2.25rem;line-height:2.5rem}.sm-px-0{padding-left:0;padding-right:0}}.full-center{background-position:50%!important;background-repeat:repeat!important;background-size:cover!important}.fill-width{background-size:100% auto!important}.fill-width,.fill-width-height{background-repeat:no-repeat!important}.fill-width-height{background-size:100% 100%!important}.no-repeat{background-repeat:no-repeat!important}.repeat-x{background-repeat:repeat-x!important}.repeat-y{background-repeat:repeat-y!important}.repeat-x-fix-top{background-position:top!important;background-repeat:repeat-x!important}.repeat-x-fix-bottom{background-position:bottom!important;background-repeat:repeat-x!important}#overlay{-webkit-overflow-scrolling:touch;bottom:0;height:100%;left:0;opacity:0;overflow-y:scroll;position:fixed;right:0;top:0;transition:opacity .3s ease;width:100%;z-index:999}#overlay.show{opacity:1}.popup-body{background-color:#fff;height:auto;left:50%;min-height:180px;position:absolute;top:10%;transform:translate(-50%,-100vh);transition:transform .25s ease-in-out;z-index:20}.popup-body.show{transform:translate(-50%)}.closeLPModal{cursor:pointer;position:absolute;right:-10px;top:-10px;z-index:21}.settingsPModal{font-size:18px;left:40%;padding:10px;position:absolute;top:-40px;width:32px}.c-section>.inner{display:flex;flex-direction:column;justify-content:center;margin:auto;z-index:2}.c-row>.inner{display:flex;width:100%}.c-column>.inner{display:flex;flex-direction:column;height:100%;justify-content:inherit;width:100%!important}.c-wrapper{position:relative}.previewer{--vw:100vh/100;height:calc(100vh - 170px);margin:auto;overflow:scroll;overflow-x:hidden;overflow-y:scroll;width:100%}.c-element{position:relative}.c-column{flex:1}.c-column,.c-row{position:relative}p+p{margin-top:auto}.hl_page-creator--row.active{border-color:#188bf6}.flip-list-move{transition:transform .5s}.page-wrapper .sortable-ghost:before{background:#188bf6!important;border-radius:4px;content:"";height:4px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.page-wrapper .sortable-ghost{border:none!important;position:relative}.active-drop-area:before{color:grey;content:"";font-size:12px;left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%)}.active-drop-area{border:1px dashed grey}.active-drop-area.is-empty{min-height:60px}.empty-component{align-items:center;border:1px dashed #d7dde9;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:2}.empty-component,.empty-component-min-height{min-height:100px;pointer-events:none}.dividerContainer{width:100%}.items-center{align-items:center}.font-semibold{font-weight:600}.text-2xl{font-size:1.5rem}.text-sm{font-size:.875rem}.w-full{width:100%}.mt-2{margin-top:.5rem}.justify-between{justify-content:space-between}.text-lg{font-size:1.125rem}.font-base{font-weight:400}.justify-end{justify-content:flex-end}.text-center{text-align:center}.centered{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.mx-auto{margin:0 auto}</style>


        p#t1recruits,
        #t2recruits,
        #t3recruits,
        #t4recruits,
        #t5recruits,
        #nexaVolumeDisplay,
        .camount,
        .d-none {
            display: none;
        }

        input#t1recruitslider,
        #t2recruitslider,
        #t3recruitslider,
        #t4recruitslider,
        #t5recruitslider,
        #t1volumeslider,
        .ctext {
            padding: 5px;
            width: 100%;
            outline: 0;
            border: 0;
            border-radius: 40px;
            width: 100%;
            max-width: 100%;
            margin: 24px 0 16px;
            transition: box-shadow 0.2s ease-in-out;
            box-shadow: 10px 10px 5px rgb(0 0 0 / 15%);
            overflow: hidden;
            height: 40px;
            -webkit-appearance: none;
            background-color: #99bed0;
            font-size: 1.5rem;
            padding: 5px 15px;
            text-align: center;
        }

        #t2recruitslider[disabled],
        #t3recruitslider[disabled] {
            background: #d2a8a8;
            cursor: no-drop;
        }

        span.per-text.pnotice {
            display: inline-block;
            clear: both;
        }

        .per-text.pnotice {
            position: relative;
            top: -7px;
        }
		
		
		
		
.column h1{
font-size: 26px;
}		

.column h2{
font-size: 21px;
}	

.column h3{
font-size: 15px;
}	
p#t1recruits, #t2recruits, #t3recruits, #t4recruits, #t5recruits, #nexaVolumeDisplay, .camount, .d-none {
    display: none;
}




.column .col-md-4{
width:32.333% !important;
}	

.column .per-month {
    padding-bottom: 18px !important;
    padding-top: 18px !important;
}

.column .per-year {
    padding-bottom: 18px !important;
    padding-top: 18px !important;
}

.grand-total-value {
    margin: 10px 0px;
}


.column .green-text {
    font-size: 27px !important;
}

.column .grand-total-value {
    font-size: 27px !important;
}