/* ========== INVESTMENT CALCULATOR ========== */
.bst-investment-return-calculator {
    border-width: 5px 0 5px 0;
    border-color: var(--bst-primary-color);
    border-style: solid;
    max-width: 500px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--bst-theme);
    margin: 25px 0 0;
}
.bst-calculator-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.bst-calculator-field,
.bst-calculator-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.floating-label {
    background-color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    position: relative;
}
.bst-calculator-field input {
    outline: none !important;
    border: 1px solid var(--bst-gray-light)!important;
    background: #fff !important;
    width: 110px!important;
    text-align: right;
    height: 22px;
    font-family: inherit;
    padding-right: 8px!important;
}
.bst-calculator-field input.invalid{
    border-color: var(--bst-light-red);
}
.floating-label span {
    position: absolute;
    z-index: 22;
    padding: 0 10px;
    border-right: 1px solid #eee;
}
.bst-calculator-field span:nth-child(1),
.bst-calculator-result span:nth-child(1) {
    font-weight: 500;
}
.bst-calculator-field span:nth-child(2),
.bst-calculator-result span:nth-child(2) {
    font-weight: 700;
}
.bst-calculator-results {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}
.disabled {
    opacity: 0.4;
}
.bst-investment-return-calculator .bst-btn {
    padding: 10px 30px;
    /* color: var(--bst-theme); */
}
.bst-investment-return-calculator .bst-title h4 {
    text-transform: uppercase;
}
