.frontend_help_component {
    background-color: var( --color-components_frontend_help_component_bgnd );
    padding: 96px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.frontend_help_component .frontend_help_component_inner {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 96px;
    row-gap: 16px;
}

.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_left {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_left .frontend_help_component_inner_left_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var( --color-components_frontend_help_component_left_title_color );
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_left .frontend_help_component_inner_left_subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    color: var( --color-components_frontend_help_component_left_subtitle_color );
    text-align: center;
}

.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right {
    flex-grow: 1;
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 8px;
    overflow-x: hidden;
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form input[type="text"],
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form input[type="email"] {
    width: 100%;
    padding: 8px 16px;
    border: none;
    outline: none;
    appearance: none;
    font-weight: 400;
    font-size: 1.1rem;
    color: var( --color-components_frontend_help_component_right_form_field_color );
    background: linear-gradient( 180deg, var( --color-components_frontend_help_component_right_form_field_bgnd_1 ) 0%, var( --color-components_frontend_help_component_right_form_field_bgnd_2 ) 100%);    
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form select {
    width: 100%;
    padding: 8px 16px;    
    border: none;
    outline: none;
    appearance: none;    
    font-weight: 400;
    font-size: 1.1rem;
    color: var( --color-components_frontend_help_component_right_form_field_color );    
    background: linear-gradient( 180deg, var( --color-components_frontend_help_component_right_form_field_bgnd_1 ) 0%, var( --color-components_frontend_help_component_right_form_field_bgnd_2 ) 100%);    
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form textarea {
    width: 100%;
    padding: 8px 16px;    
    border: none;
    outline: none;
    appearance: none;    
    font-weight: 400;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    color: var( --color-components_frontend_help_component_right_form_field_color );    
    background: linear-gradient( 180deg, var( --color-components_frontend_help_component_right_form_field_bgnd_1 ) 0%, var( --color-components_frontend_help_component_right_form_field_bgnd_2 ) 100%);
}

.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right .frontend_help_component_inner_right_form_row.frontend_help_component_inner_right_form_row_message {
    min-height: 20px;
    color: red;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right .frontend_help_component_inner_right_form_submit_loader {
    padding-top: 16px;
    width: 200%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right .frontend_help_component_inner_right_form_submit_loader .frontend_help_component_inner_right_form_submit_loader_submit {
    flex-basis: 100%;
    order: 0;
    display: flex;
    align-items: center;
    justify-content: center;    
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right .frontend_help_component_inner_right_form_submit_loader .frontend_help_component_inner_right_form_submit_loader_submit input[type="submit"] {
    color: var( --color-components_frontend_help_component_right_form_submit_color );
    background-color: var( --color-components_frontend_help_component_right_form_submit_bgnd );
    border: 1px solid var( --color-components_frontend_help_component_right_form_submit_border );
    box-shadow: 0px 2px 4px 0px rgba( 0, 0, 0, 0.25 );
    font-weight: 500;
    padding: 12px 16px;
    font-size: 1rem;
    cursor: pointer;
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right .frontend_help_component_inner_right_form_submit_loader .frontend_help_component_inner_right_form_submit_loader_loader {
    flex-basis: 100%;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right .frontend_help_component_inner_right_form_submit_loader .frontend_help_component_inner_right_form_submit_loader_loader .loader {
    font-size: 4px;
    margin: 0 auto;
}

@media( max-width: 600px ) {
    .frontend_help_component { padding-top: 48px; padding-bottom: 48px; }
    .frontend_help_component .frontend_help_component_inner { flex-direction: column; align-items: stretch; }
    .frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_left .frontend_help_component_inner_left_title { font-weight: 300; font-size: 2rem; }
    .frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_left .frontend_help_component_inner_left_subtitle { font-weight: 400; font-size: 1rem; }
    .frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form input[type="text"] { font-size: 0.9rem; }
    .frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form input[type="email"] { font-size: 0.9rem; }
    .frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form select { font-size: 0.9rem; }
    .frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form textarea { font-size: 0.9rem; }							      
}
