body {
    --section-space: 100px;
    --theme-hue: 196;
    --theme-saturation: 100%;
    --theme-lightness: 50%;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInRight {
    0% {
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        visibility: visible;
    }

    100% {
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.rocket-form-wrap .input-wrap .form-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: -15px;
    margin-left: -15px;
}

.rocket-form-wrap .input-wrap .form-grid>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 30px;
    flex: 0 0 auto;
    width: 50%;
}

.rocket-form-wrap .input-wrap .form-grid .form-group {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rocket-form-card .form-label {
    color: #161515;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    display: block;
    font-weight: 700;
}

@-webkit-keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        visibility: visible;
    }

    100% {
        transform: translateX(0);
    }
}

.rocket-form-wrap {
    margin: 0 auto;
    line-height: 1.5;
    padding: 50px 30px;
    background-color: hsl(var(--theme-hue), 0%, 95%);
    overflow: hidden;
    border-radius: 10px;
}

.rocket-form-progress .progress {
    max-width: 80px;
    margin: 0 auto 30px auto;
    line-height: 0;
}

.rocket-form-progress .circle-progress-circle {
    stroke-width: 2;
    stroke: hsl(var(--theme-hue), 0%, 30%);
}

.rocket-form-progress .circle-progress-value {
    stroke-width: 4;
    stroke: hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness));
}

.rocket-form-progress .circle-progress-text {
    fill: hsl(var(--theme-hue), 0%, 0%);
}

.rocket-form-inner-wrapper .rocket-form-step:not(.active) {
    display: none;
}

.rocket-form-footer {
    margin-top: 40px;
    text-align: center;
}

.rocket-form-wrap .alert {
    padding: 6px 10px;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    margin: 0 auto 1rem auto;
    display: inline-block;
    text-align: left;
}

.rocket-form-wrap .alert:empty {
    display: none !important;
}

.rocket-form-wrap .alert.rocket-error {
    background-color: #ff3333;
}

.rocket-form-wrap .alert.rocket-success {
    background-color: #1b6811;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.rocket-form-footer .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.rocket-form-card .card-header {
    text-align: center;
    margin-bottom: 30px;
}

.rocket-form-card .card-body .choice-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.rocket-form-choice .choice-radio {
    display: none;
    z-index: -99;
    opacity: 0;
    visibility: hidden;
}

.rocket-form-choice .choice-label {
    width: 200px;
    color: #161515;
    display: block;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.5em;
    cursor: pointer;
    line-height: 1.5;
    height: 100%;
    background-color: hsl(var(--theme-hue), 0%, 100%);
    border: 1px solid hsl(var(--theme-hue), 50%, 75%);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all 350ms ease-in-out;
}

.rocket-form-choice .choice-label .choice-image {
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto 15px auto;
    transition: all 200ms ease-in-out;
}

.rocket-form-choice .choice-label:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    background-color: hsl(var(--theme-hue), 50%, 95%);
    border-color: hsl(var(--theme-hue), 80%, 40%);
}

.rocket-form-choice .choice-radio:checked+.choice-label {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    background-color: hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness));
    border-color: hsl(var(--theme-hue), var(--theme-saturation), 25%);
}

.rocket-form-choice .choice-radio:checked+.choice-label .choice-image {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.rocket-form-wrap input {
    font-size: 1rem;
    box-shadow: none;
    outline: none;
    width: 100%;
    max-width: 100%;
    line-height: 1.5;
    padding: 0.5em 1em;
    color: var(--main-color);
    border: 1px solid hsl(var(--theme-hue), 50%, 75%);
}

.rocket-form-wrap input:focus {
    border-color: hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness));
    box-shadow: 0 0 0 0.25rem hsla(var(--theme-hue), var(--theme-saturation), var(--theme-lightness), 0.25);
}

.rocket-form-wrap .form-group:not(:last-child) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness));
}



.rocket-form-wrap .form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}

.rocket-form-wrap .form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

.rocket-form-wrap .form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.rocket-form-wrap .form-check-input {
    width: 1em !important;
    height: 1em !important;
    margin-top: 0.25em;
    padding: 0;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness));
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    font-size: unset;
    print-color-adjust: exact;
}

.rocket-form-wrap .form-check-input[type=checkbox] {
    border-radius: 0.25em;
}

.rocket-form-wrap .form-check-input[type=radio] {
    border-radius: 50%;
}

.rocket-form-wrap .form-check-input:active {
    filter: brightness(90%);
}

.rocket-form-wrap .form-check-input:focus {
    border-color: hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness));
    outline: 0;
    box-shadow: 0 0 0 0.25rem hsla(var(--theme-hue), var(--theme-saturation), var(--theme-lightness), 0.25);
}

.rocket-form-wrap .form-check-input:checked {
    background-color: hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness));
    border-color: hsl(var(--theme-hue), var(--theme-saturation), var(--theme-lightness));
}

.rocket-form-wrap .form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.rocket-form-wrap .form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.rocket-form-wrap .input-wrap {
    max-width: 700px;
    margin: 0 auto;
}



@media (max-width: 767px) {
    body {
        --section-space: 60px;
    }

    .rocket-form-wrap {
        padding: 20px 15px;
    }

    .rocket-form-footer .button-group,
    .rocket-form-card .card-body .choice-wrap {
        gap: 15px;
    }

    .rocket-form-choice .choice-label {
        font-size: 14px;
        width: 150px;
    }

    .rocket-form-choice .choice-label .choice-image {
        max-width: 60px;
        max-height: 60px;
    }

    .rocket-form-card .card-header h4 {
        font-size: 1.2rem;
    }

    .rocket-form-wrap .input-wrap .form-grid>* {
        flex: 0 0 auto;
        width: 100%;
    }
}


@media (max-width: 575px) {
    body {
        --section-space: 40px;
    }
}