.wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
}

.wrapper .content{
    direction: rtl;
}

.wizard {
    width: 920px;
    position: relative;
    background: #fff;
    padding-bottom: 55px;
}

.wizard > .steps {
    position: absolute;
    top: 5%;
    right: 0;
    z-index: 9;
    width: 100%;
}
.wizard > .steps .current-info, .wizard > .content .title,
.wizard > .steps .number {
    display: none;
}

.wizard > .steps ul {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    width: 100%;
    list-style: none;
}

.wizard.center_wizard_item > .steps ul {
    justify-content: center;
    -webkit-justify-content: center;
}

.wizard > .steps li a {
    display: inline-block;
    border: 1px solid #7c7c7c;
    height: 30px;
    border-radius: 30px;
    background: #ffffff;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    line-height: 30px;
    color: #000;
}

.wizard.center_wizard_item > .steps li a {
    margin-left: 65px;
}

.wizard > .steps li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #b5b5b5;
    position: absolute;
    right: -100%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.wizard > .steps li a:after {
    content: "";
    width: 0;
    height: 2px;
    background: #242424;
    position: absolute;
    right: -68px;
    top: 0;
    transition: all 0.6s ease;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.wizard > .steps li.first a {
    background: #4ac7f3!important;
    color: #fff;
}

.wizard > .steps li.checked.done a {
    background: #2b70a9!important;
    text-align: center;
}
.wizard > .steps li.checked a {
    background: #4ac7f3!important;
    color: #fff;
}

.wizard > .steps li.checked a:after {
    width: 100px;
}

.wizard > .steps li:last-child a {
    margin-left: 0;
}

.wizard > .steps li:first-child a:before {
    display: none;
}

.wizard > .steps li:first-child a:after {
    display: none;
}

.wizard > .content {
    position: relative;
    min-height: 450px;
}

.inner {
    display: flex;
    background: #fff;
}

.image-holder {
    width: 40%;

}

.form-content {
    width: 100%;
    padding-top: 65px;
    padding-left: 51px;
    padding-right: 51px;
}

.form-header {
    text-align: center;
}

h3 {
    font-size: 22px;
    color: #453e79;
    text-transform: uppercase;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 75px;
}

p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 26px;
}

.form-row {
    display: flex;
    margin-bottom: 18px;
}

.form-row .form-holder {
    margin-right: 30px;
}

.form-row .form-holder:last-child {
    margin-right: 0;
}

.form-row .form-holder.w-100 {
    width: 100%;
    margin-right: 0;
}

.form-row .select {
    width: 50%;
    margin-right: 30px;
}

.form-row .select .form-holder {
    width: 100%;
    margin-right: 0;
}

.select {
    position: relative;
}

.select .select-control {
    height: 37px;
    border-bottom: 2px solid #e6e6e6;
    width: 100%;
    color: #999;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #fff;
    z-index: 9;
    border: 1px solid #81acee;
}

.select .dropdown li {
    padding: 5px 10px;
}

.select .dropdown li:hover {
    background: #81acee;
    color: #fff;
}

.form-holder {
    position: relative;
}

.form-holder i {
    position: absolute;
    bottom: 7px;
    right: 0;
    font-size: 17px;
}

.actions {
    position: absolute;
    bottom: 55px;
    right: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
}

.actions ul {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    list-style: none;
}

.wizard > .actions li a {
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-sizing: border-box;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    outline: none;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: #fff!important;
    border-radius: 4px;
    padding: 4px 8px;
    min-height: 32px;
    border: none;
    background-color: #2b70a9;
    min-width: 100px;
    height: 30px;
}

.actions li a:hover {
    background: #5fc8f6;
}

.actions li:first-child a {
    width: 144px;
    padding-left: 48px;
}

.actions li:first-child a:before {
    content: '\f2ff';
    position: absolute;
    top: 14px;
    left: 26px;
    font-family: Material-Design-Iconic-Font;
}

.actions li:nth-child(2) a, .actions li:last-child a {
    margin-right: 20px;
    margin-left: 20px;
}

.actions li:last-child a {
    width: 124px;
    background: #6d7f52;
    color: #fff;
}

.actions li:last-child a:hover {
    background: #849963;
}

.actions li:last-child a:before {
    content: '\f26b';
    position: absolute;
    top: 13px;
    right: 28px;
    font-family: Material-Design-Iconic-Font;
}

.actions li[aria-disabled="true"] a {
    opacity: 0;
    transition: all 1s;
}

.actions li[aria-disabled="false"] ~ li a {
    background: #4ac7f3;
    color: #fff;
}

.actions li[aria-disabled="false"] ~ li a:hover {
    background: #4ac7f3;
}

.checkbox-tick label {
    cursor: pointer;
    display: inline-block;
    padding-left: 23px;
    position: relative;
}

.checkbox-tick label.male {
    margin-right: 26px;
}

.checkbox-tick input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-tick input:checked ~ .checkmark {
    background: #999;
}

.checkbox-tick input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-tick .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #999;
    border-radius: 50%;
    font-family: Material-Design-Iconic-Font;
    color: #fff;
    font-size: 11px;
}

.checkbox-tick .checkmark:after {
    top: 0;
    left: 2px;
    position: absolute;
    display: none;
    content: '\f26b';
}

.checkbox-circle {
    position: relative;
    padding-left: 23px;
    margin-top: 41px;
    width: 63%;
}

.checkbox-circle.mt-24 {
    margin-top: 24px;
}

.checkbox-circle label {
    cursor: pointer;
    color: #999;
    font-size: 13px;
    line-height: 1.9;
    transform: translateY(-5px);
}

.checkbox-circle label a {
    color: #6d7f52;
}

.checkbox-circle label a:hover {
    color: #89b843;
}

.checkbox-circle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-circle input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-circle .checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 1px solid #999;
}

.checkbox-circle .checkmark:after {
    content: "";
    top: 2px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #999;
    position: absolute;
    display: none;
}

.download-links{
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 88px;
}
.download-links a{
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #eceaef;
    border-radius: 4px;
    margin-bottom: 16px;
    width: 192px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 64px;
}
.download-links a img{
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    width: 24px;
}
.download-item{
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    margin-right: 16px;
    color: #1E2026;
}
.qr-item{
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    margin-right: 16px;
    color: #1E2026;
    display: inline-block;
}

.download-item .item-name{
    font-weight: bold;
}

.qr_image{
    box-sizing: border-box;
    margin: 0px 0px 16px;
    min-width: 0px;
    width: 96px;
}

@media (max-width: 991px) {
    .wizard {
        max-width: 768px;
    }

    .image-holder img {
        height: 521px;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .inner {
        display: block;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
    }

    .image-holder {
        width: 100%;
    }

    .image-holder img {
        width: 100%;
    }

    .form-content {
        width: 100%;
        padding: 50px 20px 30px;
    }

    .form-row {
        display: block;
    }

    .form-row .form-holder, .form-row .select {
        width: 100%;
        margin-right: 0;
        margin-bottom: 18px;
    }

    .wrapper {
        height: 1201px;
        background: none;
    }

    .checkbox-circle {
        width: 100%;
    }

    .wizard {
        height: 100%;
    }

    .wizard > .steps {
        right: 50%;
        top: 52%;
        transform: translateX(50%);
    }

    .actions {
        right: 50%;
        transform: translateX(50%);
        bottom: 3%;
    }
}

/*# sourceMappingURL=style.css.map */
