.uxa-steps-success {
    text-align: center;
    display: none;
    padding-top: 40px;
}

.uxa-steps {
    margin-top: -45px;
    position: relative;
}

.uxa-field-message {
    display: none;
}

.uxa-steps__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 90px;
    padding: 0 15px;
}

.uxa-steps__title {
    text-align: center;
}

.uxa-steps__step {
    color: #000044;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: relative;
    border: solid 3px transparent;
    background: #FFF;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.uxa-steps__step.initial {
    display: none;
}

.uxa-steps__step[data-active] {
    color: #D60057;
    border-color: #D60057;
    background: radial-gradient(100% 50% at 50% 100%, rgba(214, 0, 87, 0.15) 0%, rgba(214, 0, 87, 0.00) 100%), #FFF;
}

.uxa-steps__step strong {
    position: absolute;
    top: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
    color: #999999;
    line-height: 1;
    margin-top: 20px;
}

.uxa-steps__step[data-active] strong {
    color: #000044;
    font-weight: bold;
}

.uxa-slider-message span:not([data-number="0"]) {
    display: none;
}

.uxa-field-form input[type="text"],
.uxa-field-form input[type="tel"],
.uxa-field-form input[type="email"] {
    outline: none !important;
    font-size: 14px;
    border-radius: 100px;
    border: 2px solid #DEE5ED;
    background: #FFF;
    padding: 14px 15px;
}

.uxa-field-form select {
    padding: 14px 50px 14px 15px;
    font-size: 14px;
    outline: none !important;
    -webkit-appearance: none;
    border-radius: 100px;
    border: 2px solid #DEE5ED;
    background: #FFF url(../images/ico_select.svg) no-repeat 98% center;
    background-size: 20px 20px;
    cursor: pointer;
}

.uxa-field-form {
    width: 100%;
}

.uxa-field-message {
    padding: 10px 20px;
}

.uxa-field-form.uxa-field-form--half {
    width: calc(50% - 10px);
}

.uxa-field-form.uxa-field-form--third {
    width: calc(33% - 10px);
}

.uxa-field-form > span:first-child {
    color: #000044;
    display: block;
    margin-left: 15px;
    margin-bottom: 10px;
}

.uxa-steps__frame:not([data-active]) {
    display: none;
}

.uxa-steps__frame h2, .uxa-steps__frame h3, .uxa-steps-success h2 {
    font-size: 30px;
    margin-bottom: 10px;
    width: 100%;
}

.uxa-substep {
    display: none;
}

.uxa-question p {
    margin-bottom: 0 !important;
}

.uxa-steps__frame p {
    color: #000044;
    margin-bottom: 40px !important;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.4;
}

.uxa-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 20px;
}

.uxa-field-slider {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uxa-field-slider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000044;
}

/* The slider itself */
.uxa-field-group input[type="range"] {
    -webkit-appearance: none; /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 2px; /* Specified height */
    background: #004; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    cursor: pointer;
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.uxa-field-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #FFF; /* Green background */
    border: solid 5px #D60057;
    border-radius: 50%;
    cursor: pointer; /* Cursor on hover */
}

.uxa-field-group input[type="range"]::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.uxa-field-slider {
    position: relative;
}

.uxa-slider {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.uxa-slider > div:first-child {
    width: 100%;
}

.uxa-slider-message {
    width: 180px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    min-height: 62px;
    border-radius: 5px;
    color: #D60057;
    border: solid 1px #D60057;
    line-height: 1.4;
    font-size: 14px;
    background: radial-gradient(100% 50% at 50% 100%, rgba(214, 0, 87, 0.15) 0%, rgba(214, 0, 87, 0.00) 100%), #FFF;
}

.uxa-slider p {
    color: #004;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 0 0;
    line-height: 1.3;
}

.uxa-field-slider span {
    position: absolute;
    left: 0%;
    top: 100%;
    margin-top: 15px;
    text-align: center;
}

.uxa-btn {
    border: solid 1px #D60057;
    border-radius: 25px;
    padding: 12px 35px;
    text-align: center;
    background-color: #d60057;
    color: #FFF;
    font-size: 16px;
    transition: all 300ms;
}

.uxa-btn.uxa-btn--outline {
    color: #D60057;
    background-color: #FFF;
}

.uxa-btn.uxa-btn--outline:hover {
    background-color: #ebebeb;
}

.uxa-steps__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    align-items: center;
}

[data-action="uxa-form-prev"] {
    display: none;
}


.uxa-field-form [type="radio"] {
    position: absolute;
    visibility: hidden;
}

.uxa-field-form [type="radio"]:checked + label {
    color: #D60057;
}

.uxa-field-form [type="radio"] + label {
    cursor: pointer;
    position: relative;
    padding-left: 44px;
    padding-block: 15px;
    color: #004;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    line-height: 1.5;
}

.uxa-field-form [type="radio"] + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid #D60057;
    border-radius: 100%;
    background: transparent;
    transform: translateY(-50%);
}

.uxa-field-form [type="radio"] + label:after {
    content: '';
    top: 50%;
    width: 30px;
    height: 30px;
    border: solid 7px #D60057;
    background: #FFF;
    position: absolute;
    left: 0;
    border-radius: 100%;
    transform: translateY(-50%);
}

.uxa-field-form [type="radio"]:not(:checked) + label:after {
    opacity: 0;
}

.uxa-field-form [type="radio"]:checked + label:after {
    opacity: 1;
}

.uxa-field-form .uxa-field-slider [type="radio"] + label {
    padding-left: 0 !important;
    color: transparent;
    width: 30px;
    height: 30px;
}

.uxa-field-form .uxa-field-slider [type="radio"] + label:before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 9px #FFF;
    background-color: #D60057;
    margin: 0;
}

.uxa-field-form .uxa-field-slider [type="radio"] + label:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 7px #D60057;
    background-color: #FFF;
    width: 30px;
    height: 30px;
    margin: 0;
}

.uxa-steps.uxa-loading::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.uxa-steps.uxa-loading::after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border: 5px solid #7c0032;
    border-bottom-color: #D60057;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    margin-left: -30px;
}

.uxa-field-checkbox {
    display: flex;
    align-items: flex-start;
    color: #000044;
}

.uxa-field-checkbox input {
    margin-right: 10px;
}

.uxa-field-checkbox label {
    line-height: 23px;
    margin-top: -6px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .uxa-field-form.uxa-field-form--half,
    .uxa-field-form.uxa-field-form--third {
        width: 100%;
    }

    .uxa-steps__step {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .uxa-steps__step strong {
        font-size: 10px;
    }

    .uxa-steps {
        margin-top: -24px;
    }
}


/* Form Library */
#send-email-form label {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding-bottom: 10px;
    color: #000044;
}

#send-email-form textarea {
    background-color: var(--e-global-color-accent);
    border-color: #DEE5ED;
    border-width: 2px 2px 2px 2px;
    border-radius: 15px 15px;
}

#send-email-form input, #send-email-form select {
    background-color: var(--e-global-color-accent);
    border-color: #DEE5ED;
    border-width: 2px 2px 2px 2px;
    border-radius: 25px 25px 25px 25px;
    padding-right: calc(34px / 2);
    padding-left: calc(34px / 2);
    margin-bottom: 20px;
}

#send-email-form *[type=submit] {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    border-style: none;
    border-radius: 100px 100px 100px 100px;
    padding: 16px 24px 16px 24px;
    max-width: 190px !important;
    margin: 0 auto;
}

#send-email-form p {
    font-size: 14px;
    color: #000044;
    line-height: 20px;
    font-weight: 400;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

#send-email-form #mobile {
    margin-bottom: 10px;
}

#send-email-form p strong {
    line-height: 50px;
}

#send-email-form .utm-label {
    display: none;
}

/* End custom CSS */
