button.showInput {
    width: fit-content;
    background: limegreen;
    color: white;
    padding: 6px 12px;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'AA';
    text-align: center;
    border: 0;
    outline: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;

    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    margin-bottom: 30px;
}

button.showInput:hover {
    box-shadow: 0 0 5px limegreen;
}

@media screen and (max-width: 550px) {
    button.showInput {
        font-size: 1rem;
    }
}

.input--data {
    border: 1px solid black;
    border-radius: 8px;
    max-height: 0;
    overflow-y: auto;
    width: 100%;
    margin-bottom: 20px;
    opacity: 0;
    padding: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;

    box-shadow: inset 0 0 5px gray;
}

.input--data::-webkit-scrollbar {
    appearance: none;
    -webkit-appearance: none;
    width: 5px;
    background: transparent;
}

.input--data::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 5px;
}

.input--data p {
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.input--data p b {
    font-size: 1rem;
    font-weight: 500;
}

.input--data.show {
    max-height: 300px;
    padding: 5px 10px;
    opacity: 1;
}