
.proposal_container{
    width: 100vw;
    display: grid;
    align-content: center;
}

.proposal_container{
    background-color: rgb(12, 12, 12);
    color: #fff;
    text-align: left;
    padding: 3rem 6rem;
    max-width: max-content;
}

.form_group_heading{
    font-size: 2rem;
    word-wrap: break-word;
    max-width: max-content;
    line-height: 1.2;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.row{
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.radio_container{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    align-content: center;
}

.input_container{
    display: flex;
    flex-direction: column;
    gap:0.5rem;
    margin-bottom: 0.75rem;
}

.label{
    color: rgb(202, 202, 202);
    display: flex;
    font-size: 1rem;
}
.radio_label{
    color: rgb(202, 202, 202);
    display: flex;
    align-content: center;
    font-size: 1rem;
}


.etxt{
    background-color: #1b201f;
    padding: 1rem 0.5rem;
    border: none;
    border-bottom: 2px solid #20C997;
    width: 50ch;
}


input, label, textarea, button, select, option, optgroup{
    color: inherit;
    font: inherit;
}

.flex_grid{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.inner_box{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: 1rem;
    padding-left: 1rem;
    margin-bottom: 1rem;
    border-left: 5px solid #20C997;
}
.hide_inner{
    display: none;
}
.type_box{
    margin-bottom: 1rem;
}
.type_box span{
    background-color: #1b201f;
    border: 1px solid #000;
    width: max-content;
    color: rgb(202, 202, 202);
    padding: 0.3rem .75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 300ms ease-in-out;
}

.type_box span:hover{
    /* color: rgb(58, 58, 58); */
    /* background-color: #20C997; */
    border: 1px solid #20C997;
}

.type_box input:checked + span{
    color: rgb(58, 58, 58);
    background-color: #20C997;
}
.type_box input{
    display: none;
}


.long_text{
    width: 80%;
    padding: 1rem 0.5rem;
    background-color: #1b201f;
    border: none;
    border-bottom: 2px solid #20C997;
    outline: none;
}

.slider-container{
    /* width: 90%; */
    max-width: 480px;
    margin: 2rem 0;
}


input[type='radio'] {
    accent-color: #20C997;
    margin-bottom: .5rem;
}

.note{
    opacity: 0.8;
    margin-block: 1rem;
    font-style: italic;
}

.toast{
    display: none;
    padding: 2rem;
    background-color: rgba(216, 15, 15, 0.6);
    width: max-content;
    position: fixed;
    top: 240px;
    right: 10px;
}

.warn{
    border: 2px solid rgb(216, 15, 15);
    position: relative;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    .proposal_container{
        padding: 2rem 1.5rem;
    }

    .slider-container{
        max-width: 80%;
    }

    .etxt{
        max-width: 95%;
    }

    .row{
        gap:1rem;
    }
}