.Wizard {
    background-color: #092f78;
    background:url(../img/home-pattern-blue.jpg) repeat;
    padding-top:100px;
    padding-bottom:100px;
    z-index: 2;
    position: relative;
}

.Wizard__Title h3 {
    color:#fff;
    font-size: 60px;
    line-height: 67px;
    text-align: center;
    margin-bottom:15px;
}

@media (max-width:575px) {
    .Wizard__Title h3 {
        font-size:40px;
        line-height:47px;
    }
}

.Wizard__Title p {
    font-size:24px;
    line-height:31px;
    color:#fff;
    text-align:center;
    margin-bottom:45px;
}
.WizardSteps {
    width:300px;
    height:7px;
    margin: 0 auto;
    display:flex;
    margin-bottom:45px;
}

.WizardSteps__Line {
    background:#fff;
    width:32%;
    height:7px;
    margin: auto 5px;
    -moz-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    -o-transform: skew(-30deg, 0deg);
    -ms-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
    cursor:pointer;
    transition: all .3s ease 0s;
}
.WizardSteps__Line:hover {
    opacity:0.8;
}
.WizardSteps__Disabled {
    cursor:auto !important;
}
.WizardSteps__Disabled:hover {
    opacity:1 !important;
}
.WizardSteps_Active {
    background:#E30613;
}

.WizardStep__Title p {
    font-size:32px;
    line-height:36px;
    color:#fff;
    text-align:center;
    margin-bottom:30px;
}
.WizardSteps__Container {
    max-width: 440px;
    margin:0 auto;
    display:flex;
    align-items: center;
    justify-content: center;
}
.WizardStep__Icons {
    width:240px;
    max-width: 240px;
    height: 240px;
    line-height: 200px;
    margin:5px 10px;
    background:#fff;
    text-align: center;
    -moz-transform: skew(-5deg, 0deg);
    -webkit-transform: skew(-5deg, 0deg);
    -o-transform: skew(-5deg, 0deg);
    -ms-transform: skew(-5deg, 0deg);
    transform: skew(-5deg, 0deg);
    transition: all .3s ease 0s;
    opacity:1;
}
.WizardStep__Icons:hover {
    box-shadow: 1px 3px 10px #ccc;
}
.WizardStep__Icons img {
    -moz-transform: skew(5deg, 0deg);
    -webkit-transform: skew(5deg, 0deg);
    -o-transform: skew(5deg, 0deg);
    -ms-transform: skew(5deg, 0deg);
    transform: skew(5deg, 0deg);
}

.WizardStep__Icons p {
    margin-top: -10px;
    text-align:center;
    color:#666666;
    -moz-transform: skew(5deg, 0deg);
    -webkit-transform: skew(5deg, 0deg);
    -o-transform: skew(5deg, 0deg);
    -ms-transform: skew(5deg, 0deg);
    transform: skew(5deg, 0deg);
}
@media (max-width:575px) {
    .WizardStep__Icons img {
        width:80px;
    }
    .WizardStep__Icons {
        height: 190px;
        line-height: 150px;
    }
}
.WizardSteps__Installations__Button {
    display:block;
    width:90%;
    padding-top:12px;
    padding-bottom:12px;
    border-radius:25px;
    border:2px solid #fff;
    color:#fff !important;
    text-align: center;
    margin: 10px auto;
    font-size:17px;
    line-height:24px;
    transition: all .3s ease 0s;
}
.WizardSteps__Installations__Button:hover {
    background:#fff;
    color:#164194 !important;
}
.WizardSteps__Installations__Button:focus {
    background:#bccef1;
    border:2px solid #bccef1;
    color:#164194 !important;
}
.WizardSteps__Installations a {
    text-align: center;
    line-height: 60px;
}
.WizardSteps__Installation__Types {
    font-size:17px;
    line-height: 30px;
    color:#fff;
    box-sizing: border-box;
    padding: 8px 30px 8px 5px;
    border-bottom:1px dotted #fff;
    display: block;
    transition: all .1s ease 0s;
    position:relative;
}
.WizardSteps__Installation__Types i {
    position: absolute;
    z-index: 1;
    top: 15px;
    right: 5px;
}
.WizardSteps__Installation__Types:hover {
    background:#fff;
    color:#164194;
    border-bottom:1px solid #fff;
    border-radius:3px;
}
.WizardSteps__Installation__Types:focus {
    background:#bccef1;
    color:#164194 !important;
    border-bottom:1px dotted #bccef1;
}
.Wizard .Wizard__Step-Container {
    position: relative;
    min-height:150px;
}
.Wizard .Wizard__Step-Loader {
    /*background:rgba(22,65,148,0.9);*/
    background:rgba(255,255,255,0.7);
    top:0px;
    left:0px;
    box-sizing: border-box;
    position:absolute;
    z-index:1;
    width:100%;
    height:100%;
    display:none;
    text-align:center;
    align-items: center;
    justify-content: center;
}
.Wizard {
    position:relative;
}
.Wizard .Wizard__Step-Loader.Show {
    display:flex;
}
.Wizard .Wizard__Step-Loader img {
    max-width:64px;
    height:auto;
    display:block;
    margin:0px auto;
    animation-name: customSpin;
    animation-duration: 900ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.Wizard .Wizard__Step-Container .Wizard__Step {
    display:none;
    min-height: 315px;
}
.Wizard .Wizard__Step-Container .Wizard__Step.Active {
    display:block;
}

@keyframes customSpin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
.Wizard-Trigger {
    position:fixed;
    padding:15px 25px 15px 25px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: #E30613;
    color:#ffffff !important;
    text-decoration:none;
    transition: all .3s ease 0s;
    bottom:0px;
    right:30px;
    z-index: 9999997;
    box-shadow:0px 0px 6px #ffffff;
}
@media (max-width:767px) {
    .Wizard-Trigger {
        right:auto;
        left:50%;
        transform: translate(-50%,0px);
        font-size:12px;
        white-space: nowrap;
    }
}
.Wizard-Trigger:hover {
    background: #164194;
}
.Wizard-Modal-Fade {
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    z-index: 9999998;
    background:rgba(0,0,0,0.7);
}
.Wizard-Modal-Fade.Show {
    display:block;
}
.Wizard-Modal {
    display:none;
    position:fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: url(../img/home-pattern-blue.jpg) repeat;
    padding-top:40px;
    padding-bottom:30px;
}
.Wizard-Modal.Show {
    display:block;
}
.Wizard-Modal__Content {
    display:block;
    width:100%;
    height:calc(100vh - 40px);
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y:scroll;
}
@media (max-width:767px) {
    .Wizard-Modal__Content {
        display:block;
    }
}
.Wizard-Modal__Inner {
    margin:0px;
    width:100%;
}
.Wizard-Modal__Inner .Wizard {
    width: 100% !important;
    padding:45px 30px !important;
    background:none !important;
}
@media (max-width:767px) {
    .Wizard-Modal__Inner .Wizard {
        padding:45px 5px !important;
    }
    .WizardSteps {
        width: 100% !important;
    }
}
.Wizard-Modal__Inner .Wizard .Wizard__Step-Loader {
    background:rgba(255,255,255,0) !important;
}
.Wizard-Modal__Close {
    position:fixed;
    top:15px;
    right:15px;
    color:#ffffff;
    z-index: 9999999;
}
.Wizard-Modal__Close:hover {
    color:#ffffff;
}
.Wizard-Modal__Close img {
    width:16px;
    margin-top:-3px;
}
body.Fixed, html.Fixed {
    position:fixed;
}
.WizardStep__Link {
    margin-top:15px;
    text-align:center;
}
.WizardStep__Link a {
    color:#ffffff !important;
}
.WizardStep__Link a:hover {
    color:#E30613 !important;
}