/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.0.2.1717599958
Updated: 2024-06-05 15:05:58

*/

#vin-api-ajax-form-container
{
    /*display: grid;*/
    /*grid-template-columns: 1fr auto;*/
    /*gap: 10px;*/
}
#vin-api-form-input, #vin-api-ajax-form-container input, #vin-api-ajax-form-container select
{
    border: 1px solid rgb(254, 212, 48);
    border-radius: 10px;
}
#vin-api-ajax-form-container select:focus, #vin-api-ajax-form-container select:active
{
    outline: none;
}
#vin-api-form-submit
{
    border: 1px solid rgb(254, 212, 48);
    border-radius: 10px;
    background-color: rgb(254, 212, 48);
    color: #000;
    text-transform: uppercase;
    width: 80px;
}
#vin-api-form-submit:focus, #vin-api-form-submit:active
{
    outline: none;
}
#response
{
    margin-top: 50px;
}
#response h1
{
    font-size: 18px;
    font-weight: bold;
}
.vehicle-detail-pill
{
    display: flex;
}
.vehicle-details-columns .column
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vehicle-detail-pill
{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}
.auto-type-input-container, .vin-input-container
{
    display: none;
}
.vin-form-label
{
    margin-bottom: 10px;
}
.insurance-type-container
{
    padding: 15px;
}
.data-inputs-container
{
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 20px;
    margin-top: 25px;
}
.personal-data-inputs-container > .form-inputs
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row-double
{
    display: flex;
    gap: 10px;
}
.form-row-double > div
{
    flex: 1 1 0;
}
.form-inputs h5
{
    margin: 20px 0 0 0;
}
.form-submit-container
{
    margin: 15px 0 0 0;
}
.form-submit-container button
{
    width: 100%;
    border: 1px solid rgb(254, 212, 48);
    border-radius: 10px;
    background-color: rgb(254, 212, 48);
    color: #000;
    text-transform: uppercase;
}
.form-submit-container button:hover
{
    background-color: rgb(254, 212, 48);
    color: #000;
}
.vin-input
{
    position: relative;
}
.cross, .check
{
    display: none;
    max-width: 15px;
    max-height: 15px;
    position: absolute;
    top: 14px;
    right: 15px;
}
.vin-input.wrong-vin .cross {
    display: initial;
}
.vin-input.right-vin .check {
    display: initial;
}
/*
    CSS Loader
*/
#vin-api-form-submit.loading span.button-text
{
    display: none;
}
.vin-input.loading .loader
{
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 10px;
}
.vin-input .loader {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    animation: rotate 1s linear infinite
  }
  .vin-input .loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 2px solid #000;
    animation: prixClipFix 2s linear infinite ;
  }

  @keyframes rotate {
    100%   {transform: rotate(360deg)}
  }

  @keyframes prixClipFix {
      0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
      25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
      75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
      100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
  }