/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


/*===== Global =====*/

body {
    --fitcal-primary: #3952ff;
    --fitcal-quote-bg: #3952ff;
    --fitcal-quote-text: #ffffff;
    --fitcal-secondary: #f2f8fd;
    --fitcal-secondary: #f4f6fa;
    --fitcal-white: #ffffff;
    --fitcal-dark: #161f37;
    --fitcal-dark-text: #95a1b8;
    --fitcal-border-color: #c0d1e4;
    --fitcal-global-color: #7d889c;
    --fitcal-title-color: #202d51;
    --fitcal-shadow: 0 30px 30px rgb(32 45 81 / 10%);
    --fitcal-font-family: 'Outfit', sans-serif;
    --fitcal-transition: all .3s;
}


/* Main Wrapper  */

.fc-calculator-wrapper {
    font-family: var(--fitcal-font-family);
    font-size: 15px;
    margin: 0 0 50px;
    line-height: 1.5;
}

.fc-calculator-wrapper * {
    outline: 0 !important;
    box-sizing: border-box;
}


/* Grid Col */

.fc-col {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}

.fc-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.fc-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fc-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.fc-divider {
    display: block;
    text-align: center;
    margin: 3px 0;
    font-size: 14px;
    font-weight: 500;
}

/*==== Button ====*/

.fc-btn-wrap {
    padding: 10px 0 0;
}

.fc-btn {
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    font-weight: 600;
    border: 0;
    outline: none;
    border-radius: 50px;
    color: var(--fitcal-white);
    background-color: var(--fitcal-primary);
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 180px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 2px;
    box-shadow: 0px 0 40px 0px rgb(57 82 255 / 28%) !important;
}

.fc-btn:before {
    background-color: var(--fitcal-white);
    content: "";
    height: 150px;
    left: -75px;
    position: absolute;
    top: -35px;
    transform: rotate(45deg);
    transition: all 1.6s cubic-bezier(.19, 1, .22, 1);
    width: 60px;
    opacity: 0;
}

.fc-btn:hover {
    color: var(--fitcal-white);
    border: 0;
}

.fc-btn:hover:before {
    left: 120%;
    transition: all 1.3s cubic-bezier(.19, 1, .22, 1);
    opacity: .25;
}


/* Title */

.fc-title h1 {
    margin: 0 0 20px;
    color: var(--fitcal-title-color);
    font-weight: 700;
    font-size: 22px;
    text-align: center;
}


/* Input Style */

.fc-calculator-wrapper .fc-input-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 24px;
}

.fc-calculator-wrapper .fc-input-wrapper label {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--fitcal-global-color);
    width: 100%;
    display: inline-block;
}

.fc-calculator-wrapper .fc-input-wrapper input,
.fc-calculator-wrapper .fc-input-wrapper select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--fitcal-border-color);
    padding: 0 20px;
    border-radius: 6px;
    max-width: 100%;
}

.fc-calculator-wrapper .fc-input-wrapper select option {
    cursor: pointer;
}

.fc-calculator-wrapper .fc-input-wrapper input:focus,
.fc-calculator-wrapper .fc-input-wrapper select:focus {
    border-color: var(--fitcal-primary);
    box-shadow: none;
}

.fc-calculator-wrapper .fc-input-wrapper select {
    color: var(--fitcal-global-color);
    font-size: 14px;
    cursor: pointer;
}


/* Calculator Section */

.fc-calculator-section {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px;
}

.fc-calculator-section>* {
    width: calc(50% - 15px);
}


/* Quote */

.fc-quote-wrap {
    background: var(--fitcal-quote-bg);
    color: var(--fitcal-quote-text);
    padding: 20px 40px 20px 100px;
    border-radius: 10px;
    position: relative;
    min-height: 80px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
}

.fc-quote-wrap:before {
    content: "";
    background: url(../images/quotes-sign.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: inline-block;
    background-size: 100%;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
}
/* QUOTE POSTION */
.fc-top-left, .fc-top-right, .fc-bottom-left, .fc-bottom-right {
    position: fixed;
    z-index: 99999;
    padding: 10px 20px 10px 60px;
    font-size: 14px;
}
.fc-top-left:before, .fc-top-right:before, .fc-bottom-left:before, .fc-bottom-right:before {
    left: 10px;
    width: 30px;
    height: 30px;
}
.fc-top-left {
    top: 0;
    left: 0;
    border-radius: 0px 0px 10px 0px;
}
.fc-top-right {
    top: 0;
    right: 0;
    border-radius: 0px 0px 0px 10px;
}
.fc-bottom-left {
    bottom: 0;
    left: 0;
    border-radius: 0px 10px 0px 0px;
}
.fc-bottom-right {
    bottom: 0;
    right: 0;
    border-radius: 10px 0px 0px 0px;
}
/*Result*/
.fc-calculation-form-inner {
    background: var(--fitcal-white);
    padding: 30px 30px;
    border-radius: 10px;
}
.fc-success-ans span, .fc-cc-success-ans > span  {
    display: block;
    text-align: center;
    background: #01bdb3;
    color: var(--fitcal-white);
    padding: 10px 15px;
    border-radius: 10px;
    margin: 20px 0 0;
}
.fc-cc-success-ans > span span strong {
    background: rgb(255 255 255 / 16%);
    margin: 0 6px;
    border-radius: 2px;
    padding: 3px 11px;
    display: inline-block;
}
.fc-cc-success-ans span  span {
    display: block;
    text-align: left;
}
.fc-calculation-result {
    background: var(--fitcal-white);
    padding: 30px 30px;
    border-radius: 10px;
}
/* Table  */
.fc-result-table {
    width: 100%;
    border-collapse: separate;
    margin: 0;
    border-spacing: 0;
    background: #f9faff;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid #e1e6fb;
    padding: 3px;
}
.fc-result-table th, .fc-result-table td {
    padding: 8px 15px;
    border: 0;
    text-align: left;
}

.fc-result-table th {
    background: var(--fitcal-primary);
    color: var(--fitcal-white);
    font-weight: 700;
}
.fc-result-table tr th:first-child {
    border-radius: 6px 0px 0px 0;
}
.fc-result-table tr th:last-child {
    border-radius: 0px 6px 0 0px;
}
div#bmiChart {
    margin-bottom: -50px;
}
#bmiChartcd {
    display: none;
}
.fc-calculator-wrapper.fc-wake-wrapper.full-width .fc-calculation-form {
    width: 100%;
}
.fc-table-wrap {
    overflow: auto;
}
/**/
.fc-bmi-indicator {
    position: relative;
    margin: -200px 0 30px 0;
    text-align: center;
    height: 100px;
}
.fc-bmi-indicator div {
    width: 6px;
    height: 80px;
    transition: transform 1s linear;
    transform-origin: bottom left;
    transform-style: preserve-3D;
    transform: rotate(-90deg);
    margin: auto;
    background: var(--fitcal-primary);
    border-radius: 30px;
}
.fc-bmi-indicator div:before {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 20px;
    height: 20px;
    background: var(--fitcal-primary);
    border-radius: 10px;
    left: -6.11px;
}
.fc-container {
    max-width: 1380px;
    margin: auto;
}
.fc-one-col.fc-calculator-section>* {
    width: 100%;
}
div#bmiChart {
    position: relative;
    z-index: 1;
}
.fc-col.fc-col-spacer {
    grid-row-gap: 5px;
}
.has-vertical-or-divider {
    position: relative;
    grid-column-gap: 30px;
}
.fc-divider.fc-vertical {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    top: 0;
    width: 30px;
    height: fit-content;
}
.fc-divider {
    text-transform: uppercase;
}
.print-wrapper {
    width: 30px;
}
.fc-wd-result {
    background: var(--fitcal-white);
    padding: 30px 30px;
    border-radius: 10px;
    height: 630px;
}
.fc-wd-result-value1 {
    background-color: #3952ff;
    padding: 40px 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 20px;
}
.fc-wd-result-value2 {
    background-color: #3952ff;
    padding: 40px 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}
.fc-svg svg {
    width: 70px;
    height: 50px;
    margin-bottom: 20px;
}
.fc-wd-result-value1 .fc-wd-mwd6 {
    font-size: 30px;
    font-weight: 600;
}
.fc-wd-result-value2 .fc-wd-mwd6-lower{
     font-size: 30px;
    font-weight: 600;
}
.fc-wd-result-inner .fc-wd-result-value1 label {
    font-size: 18px;
    margin: 0;
}
.fc-wd-result-inner .fc-wd-result-value2 label {
    font-size: 18px;
    margin: 0;
}
.fc-input-wrapper.fc-input-wrapper-new {
    margin: 30px 0 0 0;
}
.fc-bt-result.fc-bt-result-new {
    background: var(--fitcal-white);
    padding: 30px 30px;
    border-radius: 10px;
    height: 330px;
}
.fc-bt-inner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.fc-bt-inner-left1 {
    background-color: #3952ff;
    padding: 10px 40px;
    margin-bottom: 5px;
    color: #ffffff;
    border-radius: 5px;
}
.fc-bt-inner-left1 label {
    font-size: 17px;
}
.print-wrapper.print-wrapper-waling {
    margin-bottom: 20px;
}
.fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result {
    height: 100%;
    margin-top: 20px;
}
.fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner  .fc-wd-result-value1 {
    width: 50%;
    height: 100%;
    margin:0;
        margin: 0px 5px 0 0;
}
.fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner  .fc-wd-result-value2 {
    width: 50%;
    height: 100%;
        margin: 0px 0px 0 5px;
}
.fc-calculator-sectionfc-one-col.oneRowBloodType .fc-bt-result.fc-bt-result-new {
    margin-top: 20px;
        height: 100%;
}
.fc-calculator-sectionfc-one-col.oneRowBloodType .fc-bt-inner-flex {
    justify-content: center;
}
.fc-calculator-sectionfc-one-col.oneRowBloodType .fc-bt-inner-flex .fc-bt-inner-left {
    width: 50%;
    margin: 0px 3px;
}
.fc-calculator-sectionfc-one-col.oneRowBloodType .fc-bt-inner-flex .fc-bt-inner-left  .fc-bt-inner-left1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner .fc-wd-result-value1 {
    height: 250px;
}
.fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner .fc-wd-result-value2 {
    height: 250px;
}


/* Responsive */
@media(max-width:1200px){
    .fc-wd-result-inner .fc-wd-result-value1 label {
    font-size: 16px;
}
.fc-wd-result-inner .fc-wd-result-value2 label {
    font-size: 16px;
}
}
@media(max-width:991px){
    .fc-bt-inner-flex {
    justify-content: center;
}
    .fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner  .fc-wd-result-value1 {
    height: 220px;
      
}
   .fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner  .fc-wd-result-value2 {
    height: 220px;
      
}
.fc-calculator-sectionfc-one-col.oneRowBloodType .fc-bt-inner-flex {
    display: block;
}
.fc-calculator-sectionfc-one-col.oneRowBloodType .fc-bt-inner-flex .fc-bt-inner-left {
    width: 100%;
        margin: 0;
}
.fc-bt-inner .fc-bt-inner-flex .fc-bt-inner-left .fc-bt-inner-left1 {
    width: 100%;
}
.fc-bt-inner .fc-bt-inner-flex .fc-bt-inner-left {
    width: 50%;
    margin: 0 3px;
}
.fc-bt-inner-left1 label {
    font-size: 16px;
}
.fc-bt-result.fc-bt-result-new {
    height: 100%;
}
.fc-wd-result {
    height: 100%;
}
}
@media(max-width:580px){
    .fc-wd-result-value1 {
    padding: 50px 20px;
}
 .fc-wd-result-value2 {
    padding: 50px 20px;
}
    .fc-bt-inner .fc-bt-inner-flex .fc-bt-inner-left .fc-bt-inner-left1 {
    padding: 10px 10px;
}
    .fc-bt-inner .fc-bt-inner-flex .fc-bt-inner-left {
    width: 100%;
    margin: 0 ;
}
    .fc-bt-inner-flex {
    display: block;
}
    .fc-calculator-sectionfc-one-col.oneRowBloodType .fc-bt-inner-flex .fc-bt-inner-left  .fc-bt-inner-left1 {
    padding: 10px 10px;
}

    .fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner{
        display:block;
    }
    .fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner  .fc-wd-result-value1 {
    height: 100%;
      width: 100%;
      max-width:100%;
}
.fc-calculator-sectionfc-one-col.oneRowWalking .fc-wd-result-inner  .fc-wd-result-value2 {
    height: 100%;
    width: 100%;
    margin: 10px 0 0 0;
     max-width:100%;
}
.fc-wd-result-value1 .fc-wd-mwd6 {
    font-size: 22px;
}
.fc-wd-result-value2 .fc-wd-mwd6-lower {
    font-size: 22px;
}
}
@media(max-width:380px){
    .fc-wd-result-value1 .fc-wd-mwd6 {
    font-size: 20px;
}
.fc-wd-result-value2 .fc-wd-mwd6-lower {
    font-size: 20px;
}
    .fc-wd-result-value1 {
    padding: 30px 20px;
}
.fc-wd-result-value2 {
    padding: 30px 20px;
}
    
    .fc-calculator-sectionfc-one-col.oneRowBloodType .fc-bt-inner-flex .fc-bt-inner-left  .fc-bt-inner-left1 {
        display: block;
    }
}
@media (min-width: 1200px) {
    .fc-col {
        grid-gap: 30px;
    }
}
@media (max-width: 991.98px) {
	.fc-calculator-section>* {
		width: 100%;
	}
}
@media (max-width: 575.98px) {
	div#bmiChart {
		margin-bottom: 20px;
	}
}
@media (max-width: 479.98px) {
    .fc-bmi-indicator {
        margin: -140px 0 10px 0;
    }
    .fc-bmi-indicator .fc-pendulum {
        height: 60px;
    }
}