.frontend_help_component {
    background-color: rgba( 250, 250, 250, 1 );
    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: #304559;
}
.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: #505050;
    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"] {
    font-family: "Poppins", sans-serif;
    width: 100%;
    padding: 8px 16px;
    border: none;
    outline: none;
    appearance: none;
    font-weight: 400;
    font-size: 1.1rem;
    color: #737373;
    background: linear-gradient( 180deg, rgba( 255, 255, 255, 1 ) 0%, rgba( 178, 194, 210, 0.2 ) 100%);    
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form select {
    font-family: "Poppins", sans-serif;    
    width: 100%;
    padding: 8px 16px;    
    border: none;
    outline: none;
    appearance: none;    
    font-weight: 400;
    font-size: 1.1rem;
    color: #737373;
    background: linear-gradient( 180deg, rgba( 255, 255, 255, 1 ) 0%, rgba( 178, 194, 210, 0.2 ) 100%);    
}
.frontend_help_component .frontend_help_component_inner .frontend_help_component_inner_right form textarea {
    font-family: 'Poppins', sans-serif;    
    width: 100%;
    padding: 8px 16px;    
    border: none;
    outline: none;
    appearance: none;    
    font-weight: 400;
    font-size: 1.1rem;
    color: #737373;
    background: linear-gradient( 180deg, rgba( 255, 255, 255, 1 ) 0%, rgba( 178, 194, 210, 0.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"] {
    font-family: "Poppins", sans-serif;    
    color: #fafafa;
    background-color: #304559;
    border: 1px solid #fafafa;
    box-shadow: 0px 2px 4px 0px rgba( 0, 0, 0, 0.25 );
    font-weight: 500;
    padding: 12px 16px;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.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"]:hover {
    color: #304559;
    background-color: #fafafa;
    border-color: #304559;
}
.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; }							      
}
