@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body
{
    font-family: Poppins;
}

.yacht-canvas-container {
    max-width: 1100px;
    margin: 50px auto 0 auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Poppins;
    color: #fff;
}

/* Form Styles */
.yacht-canvas-form .form-group {
    margin-bottom: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.yacht-canvas-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #fff;
}

.yacht-canvas-form .form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #fff;
    border-radius: 0px;
    font-size: 16px;
}

.yacht-canvas-form .form-control:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

.yacht-canvas-form .form-submit {
    margin-top: 2em;
}

.yacht-canvas-form .submit-button, .yacht-canvas-project-details .submit-button {
    background: #1C98A9;
    color: #fff;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 0px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.yacht-canvas-project-details .submit-button
{
    /* margin-top: 48px; */
}

.yacht-canvas-form .submit-button:hover, .yacht-canvas-project-details .submit-button:hover {
    background: #1C98A9;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover
{
    background: #1C98A9!important;
}

/* Message Container */
.message-container {
    margin-top: 1em;
    padding: 1em;
    border-radius: 4px;
    display: none;
}

.message-container.success {
    background: #e7f7ed;
    color: #0a6b2e;
    border: 1px solid #84e1a8;
    display: block;
}

.message-container.error {
    background: #fde8e8;
    color: #981b1b;
    border: 1px solid #f8b4b4;
    display: block;
}

/* Modal Styles */
.yacht-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.yacht-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.yacht-modal {
    background: rgba(0, 0, 0, 0.6);
    padding: 2em;
    border-radius: 0px;
    max-width: 1200px;
    width: 90%;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.yacht-modal-overlay.active .yacht-modal {
    transform: translateY(0);
}

.yacht-modal-title {
    font-size: 30px;
    margin-bottom: 1.5em;
    color: #ff8214;
    text-align: center;
    font-family: Poppins;
    font-weight: 600;
    border-top: 2px double #fff;
    border-bottom: 2px double #fff;
    padding: 16px 0;
}

.yacht-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin-bottom: 2em;
}

.yacht-option {
    border-radius: 0px;
    padding: 1.5em;
    padding-top: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.yacht-option:hover {
    border-color: #0073aa;
    transform: translateY(-2px);
}

.yacht-option.selected {
    border-color: #ff8214;
    background-color: rgba(0, 115, 170, 0.05);
}

.yacht-option img {
    width: auto;
    object-fit: contain;
    transform: rotate(45deg);
}

.yacht-option-title {
    font-weight: 600;
    color: #fff;
    margin-top: 50px;
    font-family: Poppins;
    font-size: 25px;
    padding: 8px 20px;
}

.yacht-option:hover .yacht-option-title, .yacht-option.selected .yacht-option-title
{
    background-color: blue;
}

.yacht-modal-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

.yacht-modal-button {
    padding: 0.75em 2em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 500;
    font-family: Poppins;
    transition: background 0.3s ease;
    font-size: 1.1em;
}

.yacht-modal-button.primary {
    background: #1C98A9;
    color: white;
}

.yacht-modal-button.primary:hover {
    background: #005177;
}

.yacht-modal-button.primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Configurator Styles */
#yacht-configurator
{
    height: 100vh;
    overflow: hidden;
    max-height: 100vh;
    background-color: #fff;
}

.yacht-configurator {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(to bottom, #87CEEB, #1E90FF);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.yacht-display {
    transform-origin: center center;
    object-fit: contain;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: relative;
    z-index: 0;
    visibility: hidden;
}

.yacht-dragging
{
    opacity: 0.6;
}

.project-form-heading
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Poppins;
    font-style: italic;
    font-size: 55px;
    gap: 15px;
    margin: 0;
    border-top: 3px double #fff;
    border-bottom: 3px double #fff;
}

.project-form-heading span:first-of-type
{
    color: #ff8214;
}

.project-form-heading span:last-of-type
{
    color: #18d2ff;
}
.project-form-heading svg
{
    width: 100px;
    height: auto;
    fill: #fff;
}
.form-subheading
{
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin: 25px 0 0 0;
}
.intro-form-columns
{
    display: flex;
    gap: 50px;
}
.intro-form-columns > div
{
    flex: 1 1 0;
}
.form-box-heading
{
    text-align: center;
    margin: 20px 0;
}
.yacht-canvas-project-details input
{
    width: 100%!important;
    padding: 8px 10px!important;
    border: 1px solid #fff!important;
    border-radius: 0px!important;
    font-size: 16px!important;
}
.yacht-canvas-project-details .measurements
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.yacht-canvas-project-details .measurements > span
{
    margin-top: 25px;
}
.yacht-canvas-project-details .measurements label
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.yacht-canvas-project-details .form-group
{
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.yacht-canvas-project-details .form-group label
{
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #fff;
}
.yacht-canvas-project-details .select2-selection
{
    border: 0!important;
    border-radius: 0!important;
    height: 42px!important;
}
.yacht-canvas-project-details .select2-selection__rendered
{
    line-height: 42px!important;
}
.yacht-canvas-form, .yacht-canvas-project-details
{
    position: relative;
}
.form-inactive::before
{
    content: "";
    position: absolute;
    min-width: 105%;
    min-height: 105%;
    background-color: #000000;
    opacity: 0.8;
    z-index: 9;
    padding: 30px;
    box-sizing: border-box !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.configurator-wrapper {
    display: flex;
}

.accessories-sidebar {
    width: 350px;
    padding: 20px;
    overflow-y: auto;
    background: #d1d1d1;
    color: #fff;
    margin: 0;
    border-radius: 0;
    font-family: Poppins;
    font-size: 16px;
    height: 100vh;
    border-top-left-radius: 10px;
    margin-top: 10px;
}

.accessories-sidebar h3
{
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding: 10px 0;
    text-transform: uppercase;
    margin: 0;
}

.accessories-sidebar > h3:not(:first-of-type)
{
    margin-top: 50px;
}

.accessories-grid {
    display: grid
;
    grid-template-columns: repeat(1, auto);
    gap: 25px;
}

.accessory-details
{
    text-align: right;
    display: flex;
}

.accessory-item {
    cursor: grab;
    text-align: center;
    padding: 5px;
    border: 1px solid #fff;
    transition: all 0.2s ease;
    border-radius: 10px;
    color: #000;
    font-size: 12px;
    display: flex;
    justify-content: left;
    position: relative;
    gap: 10px;
    align-items: center;
    height: 70px;
}


.accessory-item::before
{
    content: "";
    position: absolute;
    width: 80px;
    height: 110%;
    background-color: #ffffff;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
}

.accessory-item:hover::before {
    background-color: #1caeff;
}

.accessory-item img {
    pointer-events: none;
    position: relative;
    z-index: 2;
    max-width: 50% !important;
    object-fit: contain !important;
    max-height: 80% !important;
}

.accessory-item p
{
    margin: 0;
    position: relative;
    z-index: 2;
}

.accessory-item p:last-child
{
    color: #000;
    font-size: 14px;
    font-weight: normal;
    border-radius: 5px;
}

.canvas-area {
    flex: 1;
}

.canvas-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: white;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
    transform-origin: 50% 50%;
}

/* New class for when panning is active */
.canvas-container.panning {
    cursor: grabbing !important;
}

/* Container for handling the zoom viewport */
.zoom-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.canvas-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.4) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 10; /* Ensure it appears above the content */
    pointer-events: none; /* Allow interactions with content underneath */
    display: none; /* Hide by default */
}

.canvas-container.grid-active::before {
    display: block; /* Show the grid when .grid-active is toggled */
}

.canvas-container.dragover {
    border-color: #0056b3;
    background-color: rgba(0, 86, 179, 0.05);
}

.accessory-element {
    position: absolute;
    touch-action: none;
    user-select: none;
    transform-origin: center;
    z-index: 10; 
    border: 1px solid transparent; 
    box-sizing: border-box;
}
.accessory-element.active {
    border: 2px solid indianred; /* Rand für Aktiv */
    z-index: 999999!important; /* Hoher Z-Index für Aktiv */
    /* Ggf. 'outline' statt 'border' verwenden, wenn box-sizing nicht hilft: */
    /* outline: 1px solid green; */
    /* outline-offset: -1px; */ /* Zieht die Outline nach innen */
    /* border: 1px solid transparent; */ /* Rand bleibt transparent */
}

.accessory-element img {
    pointer-events: none;
    max-width: initial !important;
}


.rotate-handles-wrapper
{
    /* position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%); */
}

.rotate-handles
{
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.rotate-handles-cols
{
    display: flex
;
    gap: 3px;
}

.rotate-free
{
    cursor: grab;
    width: 30px;
    height: 30px;
    background-color: #e5e5e5;
    border-radius: 4px;
    background-image: url(/wp-content/plugins/yacht-canvas/public/assets/icons/rotate-free.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.rotate-step-left {
    cursor: grab;
    width: 30px;
    height: 30px;
    background-color: #e5e5e5;
    border-radius: 4px;
    background-image: url(/wp-content/plugins/yacht-canvas/public/assets/icons/rotate-handle.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.rotate-step-right {
    cursor: grab;
    width: 30px;
    height: 30px;
    background-color: #e5e5e5;
    border-radius: 4px;
    background-image: url(/wp-content/plugins/yacht-canvas/public/assets/icons/rotate-right.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.bottom-handles-wrapper
{
    display: flex;
    gap: 3px;
    /* position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%); */
}

.delete-handle {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: #e5e5e5;
    border-radius: 4px;
    background-image: url(/wp-content/plugins/yacht-canvas/public/assets/icons/delete.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px;
}

.duplicate-handle {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: #e5e5e5;
    border-radius: 4px;
    background-image: url(/wp-content/plugins/yacht-canvas/public/assets/icons/duplicate.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px;
}

.accessory-element.second-active .rotate-handles-wrapper,
.accessory-element.second-active .bottom-handles-wrapper {
    display: flex;
    pointer-events: auto;
    transition: opacity 0.2s ease, visibility 0s linear 0s;
    z-index: 901;
}

.accessory-element.second-active .resize-handle, 
.accessory-element.second-active .rotate-handles-wrapper, 
.accessory-element.second-active .delete-handle, 
.accessory-element.second-active .duplicate-handle {
    display: initial;
}

.accessory-element .resize-handle, 
.accessory-element .rotate-handles-wrapper, 
.accessory-element .delete-handle, 
.accessory-element .duplicate-handle {
    display: none;
    transition: opacity 0.3s;
}

 .rotate-handles-wrapper,
 .bottom-handles-wrapper {
     z-index: auto; 
 }

/*
    Accessory Popup
*/
.accessory-popup {
    position: absolute;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgb(0 0 0 / 33%);
    max-width: 700px;
    display: none;
    z-index: 999999999;
    font-family: Poppins;
}
.accessory-popup img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}
.accessory-popup h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: bold;
    border-top: 2px double;
    border-bottom: 2px double;
    text-align: center;
}
.accessory-popup p {
    margin: 0 0 15px 0;
    font-size: 13px;
    line-height: 1.4;
    font-family: roboto;
}
.popup-inventory-details
{
        gap: 10px;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.accessory-popup .acc-price
{
    font-weight: bold;
    font-family: Poppins;
    font-size: 18px;
    width: max-content;
    padding: 6px 15px;
    margin: 0;
    color: #1C98A9;
}
.popup-internal-cols
{
    display: flex;
    gap: 50px;
}
.popup-internal-cols > div
{
    flex: 1 1 0;
}

/*
    Status
*/
.canvas-status-bar
{
    display: flex
;
    justify-content: space-between;
    padding: 0px 15px 0px 80px;
}
.status-bar-left
{
    display: flex
;
    gap: 20px;
    align-items: stretch;
    background-color: #00000087;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 5px 15px;
}
status-bar-left h4
{
    user-select: none;
}
.status-bar-right
{
    display: flex
;
    align-items: center;
    gap: 20px;
    background-color: #00000087;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 5px 15px;
}
.status-bar-middle
{
    padding: 5px 15px;
    display: flex;
    align-items: center;
}
.logo-container img
{
    max-width: 250px!important;
    user-select: none;
}
.total-bill
{
    display: flex;
    gap: 7px;
}
.total-bill svg
{
    width: 25px;
    height: auto;
    fill: #ff8214;
}
#sidebar-filter
{
    padding: 5px;
}
.total-bill-value
{
    background-color: #1C98A9;
    color: #fff;
    padding: 1px 7px;
    font-size: 12px;
    line-height: 25px;
    font-family: Poppins;
    font-weight: bold;
    border-radius: 2px;
    text-wrap: nowrap;
}
.status-bar-heading
{
    margin: 0;
    color: #fff;
    font-family: Poppins;
    font-size: 11px;
    user-select: none;
}
.background-switcher-container, .grid-toggle-icon, .rotate-yacht-icon, .pdf-download-icon, .reposition-yacht-icon, .canvas-zoom-icons
{
    margin-top: 7px;
}
.switch-bg
{
    width: 25px;
    height: 25px;
    display: inline-block;
    cursor: pointer;
}
.switch-bg-white
{
    background-color: #fff;
}
.switch-bg-blue
{
    background-color: #1C98A9;
}
.grid-toggle-icon, .rotate-yacht-icon, .pdf-download-icon, .reposition-yacht-icon, .canvas-zoom-icons
{
    text-align: center;
    cursor: pointer;
}
.grid-toggle-icon svg, .rotate-yacht-icon svg, .pdf-download-icon svg, .reposition-yacht-icon svg, .canvas-zoom-icons svg
{
    fill: #fff;
    width: 25px;
    height: auto;
}
.canvas-zoom-icons {
    display: flex;
    gap: 3px;
    margin-bottom: 5px; /* Add margin to create space between zoom in/out and reset */
}
.canvas-zoom-reset {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center the reset button */
    width: 25px; /* Match the width of other zoom controls */
}
.canvas-zoom-reset svg {
    fill: #fff;
    width: 25px;
    height: auto;
    transition: transform 0.3s ease;
}
.canvas-zoom-reset:hover svg {
    transform: rotate(-45deg);
}
/*
    Ruler
*/
.ruler-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .ruler-container.hidden {
    display: none;
  }

  .horizontal-ruler {
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
  }

  .vertical-ruler {
    position: fixed;
    height: 100%;
    width: 50px;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
  }

  .h-tick {
    position: absolute;
    width: 1px;
    background: black;
    bottom: 0;
  }

  .v-tick {
    position: absolute;
    height: 1px;
    background: black;
    left: 0;
  }

  .h-tick.major {
    height: 25px;
  }

  .v-tick.major {
    width: 25px;
  }

  .h-tick.minor {
    height: 12px;
  }

  .v-tick.minor {
    width: 12px;
  }

  .h-label {
    position: absolute;
    bottom: -20px;
    transform: translateX(-50%);
    font-size: 12px;
  }

  .horizontal-ruler .h-label
  {
    bottom: initial;
  }

  .v-label {
    position: absolute;
    right: 25px;
    transform: translateY(50%);
    font-size: 12px;
  }

  .unit-label {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
  }

  .h-unit {
    left: 10px;
    bottom: 25px;
  }

  .v-unit {
    top: 40px;
    left: 30px;
  }

  .toggle-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }

  /*
    Accordions
  */
  .accordions-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #1C97A8;
}

.accordion-header {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: #1C98A9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    
}

.accordion-header h3 {
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding: 10px 0;
    text-transform: uppercase;
    margin: 0;
}

.accordion-arrow {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 20px;
}

.accordion-item.active .accordion-content {
    display: block;
}
.intro-form-container {
    
}
.unit-selection
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    gap: 20px;
}
.unit-selection > div
{
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
}
.unit-selection label
{
    display: flex!important;
    flex-direction: column!important;
    justify-content: center!important;
    gap: 9px!important;
    cursor: pointer;
}
.unit-selection input[type="radio"]
{
    display: none;
}
.input-error
{
    border: 1px solid red!important;
}
.custom-radio-circle
{
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50%;
}
.custom-radio-circle::before
{
    content: "";
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #1C98A9;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
}
input:checked + .custom-radio-circle::before
{
    opacity: 1;
}
.logo-container-form
{
    text-align: center;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 11px 0;
}
.logo-container-form img
{
    max-width: 350px!important;
    user-select: none;
}
.ruler-switcher
{
    color: #fff;
}
.switcher__input
{
    position: relative;
    top: 3px;
}
.save-project-button
{
    background-color: #1C98A9;
    border: 0;
    color: #fff;
    font-size: 14px;
    padding: 4px 10px;
    margin-top: 10px;
}

/* Tooltip text */
.rotate-handle .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
   
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
    font-size: 11px;
  }

  .rotate-free .tooltiptext
  {
    top: -50px;
  }
  .rotate-step-left .tooltiptext
  {
    left: -140px;
  }
  .rotate-step-right .tooltiptext
  {
    right: -140px;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .rotate-handle:hover .tooltiptext {
    visibility: visible;
  }
  .opacity-container
  {
    display: flex
;
    justify-content: flex-start;
    gap: 15px;
    color: #fff;
    font-size: 30px;
  }
  .opacity-container span
  {
    cursor: pointer;
    user-select: none;
  }
  .switcher__label
  {
    font-size: 12px;
  }
  .status-bar-left > div
  {
    position: relative;
  }
  .status-bar-left > div::before
  {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    border-right: 1px dotted #fff;
    right: -10px;
  }
  .yacht-dimensions-container
  {
    display: flex
    ;
    flex-direction: column;
    gap: 8px;
    margin-top: 7px;
  }
  .yacht-dimensions-container > label
  {
    display: flex
;
    align-items: center;
    gap: 5px;
    color: #fff;
  }
  .yacht-dimensions-container input
  {
    padding: 5px !important;
    width: 50px !important;
    border-radius: 0 !important;
    height: 27px;
  }
  .smartphone-text
  {
    display: none;
    text-align: center;
    margin-top: 15px;
  }
  .dealer-checkbox-container
  {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
  }
  .dealer-checkbox-container label
  {
    margin: 0;
  }
  .dealer-inputs-container
  {
    margin-top: 15px;
    display: none;
  }
  .edit-again
  {
    margin-top: 15px;
  }
  .edit-again-btn
  {
    background: #1C98A9!important;
    color: #fff!important;
    padding: 0.75em 1.5em!important;
    border: none!important;
    border-radius: 0px!important;
    font-size: 1em!important;
    font-weight: bold!important;
    text-transform: uppercase!important; 
  }
  .submit-button .loader {
    width: 20px;
    padding: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
    display: none;
  }
  .submit-button.loader-active .loader
  {
    display: block;
  }
  @keyframes l3 {to{transform: rotate(1turn)}}

  #yacht-canvas-project-details-form .submit-button
  {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }


  @media(max-width: 768px) {
    .intro-form-columns
    {
        display: none;
    }
    .smartphone-text
    {
        display: block;
    }
  }