.support__inner{
    
}

.support__form{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.support__row{
    display: flex;    
    justify-content: flex-start;
    width: 100%;
}

.support__col{
    margin-right: 50px;
    width: 30%;
}

.support__col_vertical{
    display: flex;
    flex-direction: column;
    width: 140px;
}

.support__col_w100{
    width: 100%;
}

.support__col_w100 textarea{
    margin-bottom: 20px;
    padding: 10px;
    width: 100% !important; 
    height: 200px;
    resize: none;    
}

.support__label{
    padding: 5px;
}

.support__input{
    width: 100%;
    padding: 10px;
}

.support__input_size{
    width: auto;
}

/* Adaptive 1024 */
@media(max-width: 1024px){
    .support__row{
        flex-direction: column;
    }

    .support__col {
        margin-right: 0;
        width: 100%;
    }

    .support__col_w100 textarea{
        height: 150px !important;
    }
}


