/*
Theme Name: Avispa Auto Transport Theme
Theme URI: https://avispaautotransport.com
Template: hello-elementor
Author: Team 911myweb.com
Author URI: https://911myweb.com
Version: 1.0.1.1729872922
Updated: 2024-10-25 16:15:22

*/




#create-quote-form .form-section {
    margin-bottom: 25px;
    padding: 15px 34px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
}
#create-quote-form .form-group-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; 
    margin-bottom: 15px; 
    width: 100%; 
}
#create-quote-form .form-group {
    flex: 50%;
    max-width: 50%;
    margin-bottom: 15px;
    display: inline-grid;
    padding: 3px;
}

#create-quote-form input:not([type="button"]):not([type="submit"]),
#create-quote-form select,
#create-quote-form textarea {
    font-size: clamp(0.875rem, 0.6881rem + 0.3899vw, 1rem);
    font-weight: 400;
    line-height: 1.3em;
    color: #333333;
    background-color: #f6f6f6c7;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px; 
    min-height: 47px;
    padding: 8px 16px; 
    width: 100%;
    transition: all 0.3s ease;
    box-sizing: border-box; 
}
#create-quote-form input:focus,
#create-quote-form select:focus,
#create-quote-form textarea:focus {
    outline: none;
    border-color: #3498db;
    background-color: #fff;
}
#create-quote-form button {
    background-color: #3498db;
    color: white;
    padding: 14px 28px; 
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem; 
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px; 
    margin: 30px auto; 
    display: block;
}
#create-quote-form button:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}
#response {
    margin-top: 30px; 
    padding: 25px; 
    border-radius: 8px;
    font-size: 0.95rem;
}
.success {
    background-color: #e8f6ef;
    border: 1px solid #d1e7dd;
    color: #0f5132;
}
.error {
    background-color: #fff3f3;
    border: 1px solid #f8d7da;
    color: #842029;
}



#create-quote-form .form-group-address {
    grid-column: 1 / -1; /* Span full width */
    display: grid;
    grid-template-areas:
                "carrier carrier"
                "origin-city origin-state"
                "origin-zip dest-city"
                "dest-state dest-zip"
                "date date";
}

#create-quote-form .form-group-address .form-group-row {
    margin: 0;
    display: grid;
    gap: 15px;
}
#create-quote-form .form-group-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; 
    margin-bottom: 25px; 
    width: 100%; 
}
#create-quote-form .form-group-address .form-group {
    flex: 1;
    width: 100%;
    margin-bottom: 15px;
}
#create-quote-form .form-section .form-group-address{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
}
#create-quote-form .form-section:nth-child(1) .form-group-address .form-group:nth-child(1),
#create-quote-form .form-section:nth-child(1) .form-group-address .form-group:nth-child(2) {
    max-width: 100%;
    width: 100%;
    flex: 100%;
}
#create-quote-form .form-section .form-group-address .form-group:nth-child(3),
#create-quote-form .form-section .form-group-address .form-group:nth-child(4),
#create-quote-form .form-section .form-group-address .form-group:nth-child(5) {
    max-width: 33%;
    width: 33%;
    flex: 33%;
}

#create-quote-form .form-section legend {}

#create-quote-form .form-section h4 {
    display: block;
    width: 100%;
}
