html, body {
    background: transparent;
}

body {
    font-family: "Roboto Flex", sans-serif;

    max-width: 600px;
    margin: 0 auto;

    
}


@media (max-width: 575px) {
    .border-end {
        border-right: 0 none !important;
        border-bottom: 2px solid #dee2e6 !important;
        margin-bottom: 10px;
    }
}


.w-33 {
    width: 33%;
}

.plate {
    border: 1px solid #000;
    padding: 2px 5px;
    border-radius: 4px;
    margin-right: 5px;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000 !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #000 !important;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #000 !important;
}
:-moz-placeholder { /* Firefox 18- */
  color: #000 !important;
}

/* input[type*="date"],
#embedFlowStep1_plannedStart,
#embedFlowStep1_plannedEnd{
    background-image: url("../img/calendar-I2_lm3x.png");
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: auto 50%;
    padding-left: 40px;
} */

input.disable-native::-webkit-calendar-picker-indicator,
input.disable-native::-webkit-calendar-picker-indicator {
    display: none;
    pointer-events: none;
}

input.disable-native::-webkit-input-placeholder,
input.disable-native::-webkit-input-placeholder {
    visibility: hidden !important;
    pointer-events: none;
}

.input-group {
    align-items: center;
}


/**
 * Parkman Brand Blue
 */
.bg-primary {
    background-color: #4a7dfe !important;
}
.btn-primary {
    background-color: #4a7dfe;
    border-color: #4a7dfe;
}

.section-header {
    margin-bottom: 40px;
}

h2 {
    font-weight: 800;
    font-size: 35px;
}

h6 {
    font-weight: 600;
}

.craue_formflow_buttons button {
    float: right;
}

label:has(+ [required]):after,
label.required:after {
    content: " *";
    font-weight: 700;
}

#services-list {
    .mb-3 {
        margin-bottom: 10px !important;
    }
}

.has-delete {
    > div:first-child {
        flex-grow: 1;
    }
}

.btn-lg > .material-symbols-outlined {
    font-size: 30px;
}

.thankyou {
    img {
        width: 300px;
        border-radius: 20px !important;
    }
}

.footer-link {
    text-decoration: none;
    color: #ddd;
    font-size: 12px;

    &:hover {
        text-decoration: underline;
        color: #bbb;
    }
}

/**
 * STEPPER
 */
.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ccc;
    margin-bottom: 6px;
    font-size: 14px;
}

.stepper-item.active {
    font-weight: bold;
}

.stepper-item.active .step-counter {
    border: 2px solid #4a7dfe;
}

.stepper-item.completed .step-counter {
    background-color: #4a7dfe;
    border: 2px solid #4a7dfe;
    color: #fff;
}

.stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #4a7dfe;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}


/**
 * Payment btn
 */
.super-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(145deg, #0f0f0f, #1c1c1c);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 1;
  text-decoration: none;
}

.super-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #00ffff, #ff00ff, #00ffff);
  animation: rotate 4s linear infinite;
  z-index: -2;
}

.super-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0a0a0a;
  border-radius: inherit;
  z-index: -1;
}

.super-button:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
  text-decoration: none;
}

.super-button:hover .arrow {
  transform: translateX(6px);
}

.arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease-in-out;
  color: #00ffff;
}

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