
/* ----------------------
    Conto deposito
 ---------------------- */
.deposit__calculator {
    background: #efefef;
    margin-top: 70px;
    min-height: 70px;
}

.deposit__calculator .container {
    position: relative;
}

.calculator__flex {
    width: 100%;
    left: 0;
    display: flex;
    gap: 22px;
    position: absolute;
    top: -85px;
}

.calculator__option {
    font-weight: bold;
    background: #fff;
    padding: 12px 15px 30px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.calculator__option>p {
    margin-bottom: 25px;
}

.calculator__option:nth-of-type(1) {
    flex-basis: 30%;
}

.calculator__option:nth-of-type(2) {
    flex-basis: 20%;
}

.calculator__option:nth-of-type(3) {
    flex-basis: 50%;
}

.option__select select {
    font-weight: normal;
    padding: 15px 20px;
    width: 100%;
    border: 1px solid var(--green);
    border-radius: 8px;
}

.option__checkbox .option__each {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: normal;
    margin-bottom: 15px;
}

.option__checkbox .option__each:last-of-type {
    margin-bottom: 0;
}

.option__each label,
.radio__each label {
    width: 24px;
    height: 24px;
    border: 1px solid var(--green);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option__each label input,
.radio__each label input {
    appearance: none;
}

.option__each label span,
.radio__each label span {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.option__each label input:checked+span,
.radio__each label input:checked+span {
    background: var(--green);
}

.radio__each label,
.radio__each label span {
    border-radius: 20px;
}

.option__radio {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.radio__each {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

.calculator__expand,
.calculator__submit {
    display: none;
}

.calculator__expandable {
    display: flex;
    gap: 22px;
    width: 100%;
}

.card__logo {
    margin-top: 0;
    justify-content: center;
}

/* ==============================
-------- Media Queris --------
 ============================== */
@media (max-width: 767px) {
    .deposit__calculator+.cards__section {
        padding-top: 0;
    }

    .calculator__expandable {
        display: block;
    }

    .calculator__expand,
    .calculator__submit {
        display: block;
    }

    .calculator__flex {
        flex-direction: column;
        gap: 0;
        position: relative;
        top: -35px;
        background: #fff;
        box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        padding-left: 15px;
        padding-right: 15px;
        border: 1px solid var(--black);
    }

    .calculator__option {
        box-shadow: none;
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
        padding-top: 24px;
        padding-bottom: 24px;
        border-top: 1px solid #DDDDDD;
    }

    .option__radio {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator__expand button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 0;
        font-weight: bold;
    }

    .calculator__expandable {
        display: none;
        padding-bottom: 25px;
    }

    .calculator__submit button {
        display: flex;
        background: var(--green);
        color: #fff;
        align-items: center;
        font-size: 18px;
        font-weight: bold;
        gap: 10px;
        text-transform: uppercase;
        padding: 16px 22px;
        justify-content: space-between;
        border-radius: 4px;
        width: 70%;
        margin: 12px auto;
    }

    .calculator__submit button svg {
        flex-shrink: 0;
    }

}