.calc-bonus{
    display: flex;
    gap: var(--gap);
    flex-direction: column;
    padding: var(--radius-m);
}

.switch-field {
    display: flex;
    overflow: hidden;
    border-radius: var(--radius-s);

    background-color: #29263D;
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.switch-field label {
    flex: 1;
    border-radius: var(--radius-s);
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    padding: 10px 16px;
    margin-right: -1px;
    transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
    background-color: #809FFF66;
    box-shadow: none;
}

.calc-content{
    display: none;
    flex-direction: column;
    gap: 15px;
}
.calc-content.active{
    display: flex;
}

.calc-content .row{
     display: flex;
    flex-direction: column;
    gap: 5px;
}

.calc-content .row.inline{
    flex-direction: row;
    justify-content: space-between;
}

.calc-content label{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #FFFFFFB2;
}

.calc-content label.inline{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.calc-content .label-required:after{
    content: '*';
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #809FFF;
}

.calc-note{
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-align: left;
    color: #FFFFFF4D;
}

.input-field{
    display: flex;
    align-items: center;
    position: relative;
    background:  #29263D;
    border: 1px solid #3B3854;
    padding: 8px 12px 8px 12px;
    border-radius: 12px;
}

.input-field.error{
    border: 1px solid #872020;
}

.input-field-text{
    color: #5C5C74;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.input-field input{
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: transparent;
    /* Not removed via appearance */
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 20px;
    height: 20px;
    border: 0.15em solid #809FFF;
    border-radius: 50%;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    /* Windows High Contrast Mode */
    background-color: #809FFF;
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

.no_deposit-amount__wrapper:not(.active),
.wager-type__wrapper:not(.active),
.estimated-winning__wrapper:not(.active){
    display: none;
}
