@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/********** Range Input Styles **********/
/*Range Reset*/
.kdfc-form input[type="range"] {
   -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    border: none !important;
}

/* Removes default focus */
.kdfc-form input[type="range"]:focus {
  outline: none;
}

/***** Chrome, Safari, Opera and Edge Chromium styles *****/
/* slider track */
.kdfc-form input[type="range"]::-webkit-slider-runnable-track {
   background-color: #F68B1E;
   border-radius: 0.5rem;
   height: 4px;  
}
/* slider thumb */
.kdfc-form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
   appearance: none;
   margin-top: -5px;
   background-color: #fff;
   height: 14px;
   width: 14px;
   border: 4px solid #F68B1E;
   border-radius: 50%;
}

/******** Firefox styles ********/
/* slider track */
.kdfc-form input[type="range"]::-moz-range-track {
   background-color: #F68B1E;
   border-radius: 0.5rem;
   height: 4px;  
}

/* slider thumb */
.kdfc-form input[type="range"]::-moz-range-thumb {
   margin-top: -5px;
   background-color: #fff;
   height: 14px;
   width: 14px;
   border: 4px solid #F68B1E;
   border-radius: 50%;
}

/* START */
section.flex-content {
    background: #F4F4F4;
}
.kdfc-calculator {
    /* background: #F4F4F4; */
}
.kdfc-calculator-container {
    padding: clamp(3.125rem, 1.042rem + 5.556vw, 5.625rem) 0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1320px;
}
.kdfc-form {
    /* flex: 0 1 calc(60% - 12px); */
    flex: 0 0 calc(60% - 12px);
    margin: 0;
}
.kdfc-result {
    /* flex: 0 1 calc(40% - 12px); */
     flex: 0 0 calc(40% - 12px);
}
.kdfc-form-item {
    border-radius: 10px;
    background-color: #FFF;
    margin-bottom: 15px;
    padding: 20px 30px;
}
.kdfc-form-item:last-child {
    margin-bottom: 0;
}
.kdfc-form-item-foot,
.kdfc-form-item-head {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.kdfc-form-item-head span {
    color: #1F2A44;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.44px;
    text-transform: uppercase;
}
.kdfc-form-item-head span:last-child {
    min-width: 204px;
    padding: 9px 16px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
    background-color: #FAFAFA;
}
.kdfc-form-item label {
    display: block;
}
.kdfc-form-item label input {
    width: 100%;
}
.kdfc-form-item-foot {
    margin-bottom: 0;
    margin-top: 20px;
}
.kdfc-form-item-foot span {
    color: #1C2231;
    text-align: right;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.875;
    letter-spacing: -0.16px;
    text-transform: capitalize;
}
.kdfc-result {
    background-color: #fff;
    border-radius: 10px;
}
.kdfc-result h2 {
    padding: 28px 50px;
    background: #F68B1E;
    border-radius: 10px 10px 0 0;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.7px;
    text-transform: uppercase;
    margin: 0;
}
.kdfc-result-content {
    padding: 25px 50px 50px;
}
.kdfc-result .kdfc-result-content h3 {
    margin: 0 0 25px;
    color: #1F2A44;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.44px;
    text-transform: uppercase;
}
.kdfc-details {
    padding: 0 0 25px;
    border-bottom: 2px solid #EBEBEB;
    margin-bottom: 25px;
}
.kdfc-payment,
.kdfc-details-item {
    /* display: flex; */
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.kdfc-details-item strong {
    color: #7683A2;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.4px;
}
.kdfc-details-item span {
    color: #1F2A44;
    text-align: right;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.4px;
}
.kdfc-details-item:last-child {
    margin-bottom: 0;
}
.kdfc-payment {
    margin-bottom: 25px;
}
.kdfc-payment strong {
    color: #1F2A44;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.4px;
    max-width: 185px;
}
.kdfc-payment span {
    color: #1F2A44;
    text-align: right;
    font-family: "Open Sans";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.7px;
    text-transform: capitalize;
}
.kdfc-note {
    color: #656565;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    text-transform: capitalize;
}
.kdfc-note b {
    font-family: "Open Sans";
    font-size: 14px;
}
.kdfc-result-content .kdfc-btn {
    border-radius: 60px;
    background: #F68B1E;
    display: block;
    padding: 15px 30px;
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    text-transform: capitalize;
    transition: .3s ease;
    text-decoration: none;
}
.kdfc-result-content .kdfc-btn:focus,
.kdfc-result-content .kdfc-btn:hover {
    text-decoration: none;
    color: #fff;
    background-color: #1F2A44;
}
.kdfc-result-content .kdfc-btn svg {
    margin-left: 10px;
}
.kdfc-result-content p.kdfc-note {
    margin-bottom: 25px;
}
@media (max-width: 1024px) {
    .kdfc-form {
        /* flex: 0 1 calc(50% - 12px); */
        flex: 0 0 calc(50% - 12px);
    }
    .kdfc-result {
        /* flex: 0 1 calc(50% - 12px); */
         flex: 0 0 calc(50% - 12px);
    }
    .kdfc-form-item-head span {
        font-size: 14px;
    }
    .kdfc-form-item-head span:last-child {
        font-size: 20px;
        min-width: 160px;
    }
    .kdfc-form-item-foot span {
        font-size: 14px;
    }
    .kdfc-result h2 {
        padding: 12px 25px;
        font-size: 25px;
    }
    .kdfc-result-content {
        padding: 25px 25px 34px;
    }
    .kdfc-result h3 {
        margin-bottom: 16px;
        font-size: 16px;
    }
    .kdfc-details-item {
        margin-bottom: 12px;
    }
    .kdfc-details-item strong {
        font-size: 14px;
    }
    .kdfc-details-item span {
        font-size: 14px;
    }
    .kdfc-payment strong {
        font-size: 14px;
        max-width: 100%;
    }
    .kdfc-note {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .kdfc-calculator-container {
        flex-direction: column;
        gap: 33px;
    }
    .kdfc-result,
    .kdfc-form {
        flex: 0 1 100%;
        width: 100%;
    }
    .kdfc-form-item {
        padding: 20px;
    }
    .kdfc-form-item-head {
        flex-direction: column;
    }
    .kdfc-payment {
        flex-direction: column;
        align-items: flex-start;
    }
}