vehicle-quotation-form::part(container) {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

vehicle-quotation-form::part(vehicle-quotation-tiq) {
    margin: 64px 0px;
    font-family: "Droid Arabic Kufi", Roboto, Arial, sans-serif ;
}

vehicle-quotation-form::part(inputs_wrapper) {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
} 

@media (min-width: 640px) {
    vehicle-quotation-form::part(inputs_wrapper) {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

vehicle-quotation-form::part(vehicle-wrapper) {
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    vehicle-quotation-form::part(vehicle-wrapper) {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        gap: 24px;
    }
}

vehicle-quotation-form::part(hr) {
    margin-top: 24px;
    margin-bottom: 24px;
    border-color: rgb(203 213 225);
}

vehicle-quotation-form::part(vehicle-image-wrapper) {
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: center;
    position: relative;
}



@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

vehicle-quotation-form::part(vehicle-image-loader-icon) {
    animation: spin 2s linear infinite;
    width: 32px;
    height: 32px;
    
}

vehicle-quotation-form::part(section-title) {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 8px;
    color: black; 
}

vehicle-quotation-form::part(vehicle-image-loading-wrapper) {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition-property: all;
    transition-duration: 100ms;
    background-color: white;
    color: rgb(15 23 42);
}

vehicle-quotation-form::part(vehicle-image-active-loading-wrapper) {
    opacity: 1;
}