.lf-calculator {
    background-color: #F9F9F9;
    margin: 60px 0;
    border-radius: 20px;
    border: 1px solid #1c1b1b;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.lf-header {
    height: 60px;
    line-height: 60px;
    background: #1c1b1b;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.lf-header h2 {
    line-height: 60px;
    color: #FFFFFF;
    margin: 0;
    padding: 0 40px;
}

.lf-calculator-settings {
    padding: 0 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.lf-calculator-settings label {
    display: flex;
    flex-flow: column;
    gap: 20px;
    font-weight: 600;
}

.lf-calculator-odds {
    padding: 0 40px;
    margin-bottom: 20px;
}

.lf-bonus-section, .lf-stake-section {
    padding: 0 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 50px;
}

.lf-bonus-section h4, .lf-stake-section h4 {
    width: 100%;
}

.lf-bonus-section label, .lf-stake-section label {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.lf-summary-table-wrapper {
    padding: 0 40px 40px;
}

.lf-errors-placeholder {
    padding: 0 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-flow: column;
    gap: 5px;
    color: #830a07;
}

.lf-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.lf-buttons button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border: none;
    border-radius: 5px;
    min-width: 200px;
    color: #fff;
    text-transform: uppercase;
    padding: 0 20px;
}

.lf-button-calculate {
    background-color: #589333;
}

.lf-button-clear {
    background-color: #830a07;
}

.lf-error {
    border-color: #830a07;
}

.lf-dead-heat-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lf-dead-heat-inputs label {
    display: flex;
    flex-flow: column;
    gap: 5px;
    width: 65px;
}

.lf-hidden {
    display: none;
}

@media screen and (max-width: 991px) {
    .lf-calculator-odds {
        overflow: scroll;
    }

    .lf-buttons button {
        min-width: 100px;
    }
}
