.hedging-calc-wrapper {
    display: flex;
    justify-content: space-between;
    flex-basis: 48%;
    margin: 40px 0;
}

.hedging-calc-inputs {
    display: flex;
    flex-flow: column;
    gap: 15px;
    width: 48%;
}

.hedging-calc-input {
    height: 30px;
    line-height: 30px;
    color: #717171;
    width: 100%;
}

.hedging-calc-result {
    display: flex;
    flex-flow: column;
    gap: 15px;
    background: #cfcfcf;
    width: 48%;
    align-self: flex-start;
    padding: 20px;
    border-radius: 5px;
}

.hedging-calc-label {
    font-weight: 700;
    font-size: 16px;
    width: 48%;
}

.hedging-calc-fields-group {
    display: none;
    flex-flow: column;
    gap: 10px;
}

.hedging-calc-wrapper--type-decimal .hedging-calc-fields-group--decimal {
    display: flex;
}

.hedging-calc-wrapper--type-american .hedging-calc-fields-group--american {
    display: flex;
}

.hedging-calc-wrapper--type-fractional .hedging-calc-fields-group--fractional {
    display: flex;
}

.hedging-calc-result-placeholder {
    min-height: 24px;
    height: 24px;
    font-size: 18px;
    font-weight: 700;
}

.hedging-calc-result-title {
    font-weight: 700;
    font-size: 24px;
}

.hedging-calc-result-subtitle {
    font-weight: 700;
    font-size: 20px;
}

.hedging-calc-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hedging-calc-button {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
    padding: 0 15px;
    border-radius: 20px;
    color: #FFFFFF;
    background-color: green;
    cursor: pointer;
}

.hedging-calc-error {
    border-color: red;
}

.hedging-calc-error-message {
    margin: 20px 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
}

.hedging-calc-error-message span {
    color: red;
    font-size: 14px;
}

.hedging-calc-fields-group--commission {
    display: flex;
}
