/* Wizard CSS Variables */
:root {
    /* Wizard Primary Colors */
    --wizard-danger: #fb1616;
    --wizard-white: #ffffff;
    --wizard-black: #000000;

    /* Wizard Text Colors */
    --wizard-text-primary: #242424;
    --wizard-text-secondary: #545454;
    --wizard-text-muted: #888888;

    /* Wizard Background Colors */
    --wizard-bg-light: #f1f1f1;
    --wizard-bg-gray: #c7c5c5;
    --wizard-bg-light-gray: #dddddd;
    --wizard-bg-lightest: #f3f3f3;

    /* Wizard Border Colors */
    --wizard-border-light: #dddddd;
}
.theme1 {
    --wizard-primary: #4586f0;
}
.theme2 {
    --wizard-primary: #4ad991;
}
.theme3 {
    --wizard-primary: #8280ff;
}
.theme4 {
    --wizard-primary: #2d518c;
}
.theme5 {
    --wizard-primary: #fe5c73;
}
.theme6 {
    --wizard-primary: #954cea;
}

.fishy {
    background-color: var(--wizard-white);
    /* box-shadow: 0 0 8px var(--wizard-danger); */
    outline: 1px solid var(--wizard-danger);
}
.wizard-content-left {
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.45);
    background-image: url("https://i.ibb.co/X292hJF/form-wizard-bg-2.jpg");
    background-position: center center;
    background-size: cover;
    height: 100vh;
    padding: 30px;
}
.wizard-content-left h1 {
    color: var(--wizard-white);
    font-size: 38px;
    font-weight: 600;
    padding: 12px 20px;
    text-align: center;
}

.form-wizard {
    color: var(--wizard-text-muted);
    padding: 30px;
}
.form-wizard .wizard-form-radio {
    display: inline-block;
    margin-left: 5px;
    position: relative;
}
.error {
    font-size: 14px;
}
.form-select {
    height: 45px;
}
.form-wizard .wizard-form-radio input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: var(--wizard-bg-light-gray);
    height: 25px;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}
.form-wizard .wizard-form-radio input[type="radio"]:focus {
    outline: 0;
}
.form-wizard .wizard-form-radio input[type="radio"]:checked {
    background-color: var(--wizard-danger);
}
.form-wizard .wizard-form-radio input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: var(--wizard-white);
    border-radius: 50%;
    left: 1px;
    right: 0;
    margin: 0 auto;
    top: 8px;
}
.form-wizard .wizard-form-radio input[type="radio"]:checked::after {
    content: "";
    display: inline-block;
    webkit-animation: click-radio-wave 0.65s;
    -moz-animation: click-radio-wave 0.65s;
    animation: click-radio-wave 0.65s;
    background: var(--wizard-black);
    content: "";
    display: block;
    position: relative;
    z-index: 100;
    border-radius: 50%;
}
.form-wizard .wizard-form-radio input[type="radio"] ~ label {
    padding-left: 10px;
    cursor: pointer;
}
.form-wizard .form-wizard-header {
    text-align: center;
}
.form-wizard .form-wizard-next-btn,
.form-wizard .form-wizard-previous-btn,
.form-wizard .form-wizard-submit {
    background-color: var(--wizard-primary);
    color: var(--wizard-white);
    display: inline-block;
    padding: 8px 28px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.form-wizard-next-btn {
    border-radius: 6px;
    box-shadow: 2px 2px 9px 0 rgba(0, 0, 0, 0.1),
        2px 2px 5px 0 rgba(255, 255, 255, 0.4) inset;
}
.form-wizard .form-wizard-next-btn:hover,
.form-wizard .form-wizard-next-btn:focus,
.form-wizard .form-wizard-previous-btn:hover,
.form-wizard .form-wizard-previous-btn:focus,
.form-wizard .form-wizard-submit:hover,
.form-wizard .form-wizard-submit:focus {
    color: var(--wizard-white);
    opacity: 0.6;
    text-decoration: none;
}
.form-wizard .wizard-fieldset {
    display: none;
}
.form-wizard .wizard-fieldset.show {
    display: block;
}
.form-wizard .wizard-form-error {
    display: none;
    background-color: var(--wizard-bg-gray);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
}
.form-wizard .form-wizard-previous-btn {
    background-color: var(--wizard-bg-gray);
    display: inline-block;
    padding: 8px 28px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
}
.form-wizard .form-control {
    font-weight: 300;
    height: auto !important;
    padding: 15px;
    color: var(--wizard-text-secondary);
    /* background-color: #f1f1f1;
    border: none; */
}
.form-wizard .form-control:focus {
    box-shadow: none;
}
.form-wizard .form-group {
    position: relative;
    margin: 25px 0;
}
.form-wizard .wizard-form-text-label {
    position: absolute;
    left: 10px;
    top: 16px;
    transition: 0.2s linear all;
}
.form-wizard .focus-input .wizard-form-text-label {
    color: var(--wizard-primary);
    top: -18px;
    transition: 0.2s linear all;
    font-size: 12px;
}
.form-wizard .form-wizard-steps {
    margin: 30px 0;
}
.form-wizard .form-wizard-steps li {
    width: 25%;
    float: left;
    position: relative;
}
.form-wizard .form-wizard-steps li::after {
    background-color: var(--wizard-bg-lightest);
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: 1px solid var(--wizard-border-light);
    border-top: 1px solid var(--wizard-border-light);
}
.form-wizard .form-wizard-steps li span {
    background-color: var(--wizard-bg-light-gray);
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 1;
}
.form-wizard .form-wizard-steps li:last-child::after {
    width: 50%;
}
.form-wizard .form-wizard-steps li.active span,
.form-wizard .form-wizard-steps li.activated span {
    background-color: var(--wizard-primary);
    color: var(--wizard-white);
}
.form-wizard .form-wizard-steps li.active::after,
.form-wizard .form-wizard-steps li.activated::after {
    background-color: var(--wizard-primary);
    left: 50%;
    width: 50%;
    border-color: var(--wizard-primary);
}
.form-wizard .form-wizard-steps li.activated::after {
    width: 100%;
    border-color: var(--wizard-primary);
}
.form-wizard .form-wizard-steps li:last-child::after {
    left: 0;
}
.form-wizard .wizard-password-eye {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.wizard-section {
    width: 95%;
    max-width: 700px;
    margin: auto;
    margin-top: 5%;
}
.wizard-fieldset.show .form-check {
    padding: 0;
    margin: 0;
}
.wizard-fieldset.show .form-check .form-check-input {
    margin: 0;
}
.wizard-fieldset.show .form-check label a {
    color: var(--wizard-text-primary);
}

@keyframes click-radio-wave {
    0% {
        width: 25px;
        height: 25px;
        opacity: 0.35;
        position: relative;
    }
    100% {
        width: 60px;
        height: 60px;
        margin-left: -15px;
        margin-top: -15px;
        opacity: 0;
    }
}
@media screen and (max-width: 767px) {
    .wizard-content-left {
        height: auto;
    }
}
