/*Button style start*/

.wizard-information-button,
.wizard-information-button-mobile{
    outline: none;
    -webkit-box-shadow: 0 0 0 0 rgba(240, 130, 33, 1);
       -moz-box-shadow: 0 0 0 0 rgba(240, 130, 33, 1);
            box-shadow: 0 0 0 0 rgba(240, 130, 33, 1);
    border: solid 2px rgba(240, 130, 33, 1);
    color: rgba(240, 130, 33, 1);
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
            border-radius: 6px;
    padding: 8px 26px;
    background-color: #FFF;
    -webkit-animation: wizard_pulsing 2s infinite cubic-bezier(0.66, 0, 0, 1);
       -moz-animation: wizard_pulsing 2s infinite cubic-bezier(0.66, 0, 0, 1);
         -o-animation: wizard_pulsing 2s infinite cubic-bezier(0.66, 0, 0, 1);
            animation: wizard_pulsing 2s infinite cubic-bezier(0.66, 0, 0, 1);
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    font-family: inherit;
    display: block;
    float: right;
    margin: 36px 10px 0 0;
}
.mobile-wizard-button-container,
.wizard-information-button-mobile{
    display: none;
}

.wizard-information-button:hover {
    background-color: rgba(240, 130, 33, 1);
    color: #FFF;
}

@-webkit-keyframes wizard_pulsing {
    to {
        -webkit-box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
                box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes wizard_pulsing {
    to {
        -moz-box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
             box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
    }
}

@-o-keyframes wizard_pulsing {
    to {
        box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
    }
}

@keyframes wizard_pulsing {
    to {
        -webkit-box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
           -moz-box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
                box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
    }
}

/*button style end*/

/*modal style start*/

.wizard-information-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 1.5;
    display: none;
    font-family: inherit;
}

.wizard-information-modal.wizardmodal-show {
    display: block;
}

.wizard-information-modal * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.wizard-inf-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.wizard-inf-modal {
    display: inline-block;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
}

.wizard-inf-content {
    width: 500px;
    height: 600px;
    background-color: #f8f1f1;
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    color: #222831;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    text-align: center;
    position: relative;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
       -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    -webkit-animation-name: wizard_zoomIn;
       -moz-animation-name: wizard_zoomIn;
         -o-animation-name: wizard_zoomIn;
            animation-name: wizard_zoomIn;
    -webkit-animation-duration: 200ms;
       -moz-animation-duration: 200ms;
         -o-animation-duration: 200ms;
            animation-duration: 200ms;
    -webkit-animation-timing-function: ease-in;
       -moz-animation-timing-function: ease-in;
         -o-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
}

.wizard-inf-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    opacity: 0.6;
    z-index: 99;
}

.wizard-inf-steps {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 50px 30px;
    display: none;
}

.wizard-inf-steps.show-step {
    display: block;
}

.wizard-inf-item {
    margin-bottom: 30px;
}

.wizard-inf-title1 {
    font-size: 24px;
    font-weight: 700;
    color: rgba(240, 130, 33, 1);
    line-height: 1.2;
}

.wizard-inf-title1 a{
    text-decoration: underline;
}

.wizard-inf-description {
    font-size: 16px;
}

.wizard-inf-description a {
    color: rgba(240, 130, 33, 1);
    text-decoration: underline;
}

.wizard-inf-description ul {
    display: block;
    text-align: left;
    margin-left: 50px;
}
.wizard-inf-description ul li{
    margin-left: 0 !important;
}
.wizard-inf-description ul li span {
    color: rgba(240, 130, 33, 1);
}

.wizard-inf-actions {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 50px;
    text-align: center;
    padding: 0 30px;
}

.wizard-inf-btn {
    padding: 10px 30px;
    margin: 0 10px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    border: none;
    -webkit-border-radius: 6px;
       -moz-border-radius: 6px;
            border-radius: 6px;
    -webkit-box-shadow: 0 5px #CCC;
       -moz-box-shadow: 0 5px #CCC;
            box-shadow: 0 5px #CCC;
    position: relative;
    font-family: inherit;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}

.wizard-inf-btn:active {
    -webkit-box-shadow: 0 2px #BBB;
       -moz-box-shadow: 0 2px #BBB;
            box-shadow: 0 2px #BBB;
    -webkit-transform: translateY(3px);
       -moz-transform: translateY(3px);
        -ms-transform: translateY(3px);
         -o-transform: translateY(3px);
            transform: translateY(3px);
}

/*default*/

.wizard-inf-btn.default {
    background-color: #bbbfca;
    color: #321f28;
    text-shadow: none;
    -webkit-box-shadow: 0 5px #aaaaaa;
       -moz-box-shadow: 0 5px #aaaaaa;
            box-shadow: 0 5px #aaaaaa;
}

.wizard-inf-btn.default:hover,
.wizard-inf-btn.default:active {
    background-color: #CCC;
}

.wizard-inf-btn.default:active {
    -webkit-box-shadow: 0 2px #aaaaaa;
       -moz-box-shadow: 0 2px #aaaaaa;
            box-shadow: 0 2px #aaaaaa;
}

/*green*/

.wizard-inf-btn.green {
    background-color: #82BF56;
}

.wizard-inf-btn.green:hover,
.wizard-inf-btn.green:active {
    background-color: #669644;
}

/*blue*/

.wizard-inf-btn.blue {
    background-color: #40AFF5;
}

.wizard-inf-btn.blue:hover,
.wizard-inf-btn.blue:active {
    background-color: #3592CC;
}

/*yellow*/

.wizard-inf-btn.yellow {
    background-color: #F2CF66;
}

.wizard-inf-btn.yellow:hover,
.wizard-inf-btn.yellow:active {
    background-color: #D1B358;
}

/*red*/

.wizard-inf-btn.red {
    background-color: #E74C3C;
}

.wizard-inf-btn.red:hover,
.wizard-inf-btn.red:active {
    background-color: #BD3E31;
}

/*red*/

.wizard-inf-btn.orange {
    background-color: #f08221;
}

.wizard-inf-btn.orange:hover,
.wizard-inf-btn.orange:active {
    background-color: #CC6E1B;
}

@-webkit-keyframes wizard_zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

@-moz-keyframes wizard_zoomIn {
    from {
        opacity: 0;
        -moz-transform: scale(0.5);
             transform: scale(0.5);
    }
    to {
        opacity: 1;
        -moz-transform: scale(1);
             transform: scale(1);
    }
}

@-o-keyframes wizard_zoomIn {
    from {
        opacity: 0;
        -o-transform: scale(0.5);
           transform: scale(0.5);
    }
    to {
        opacity: 1;
        -o-transform: scale(1);
           transform: scale(1);
    }
}

@keyframes wizard_zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.5);
           -moz-transform: scale(0.5);
             -o-transform: scale(0.5);
                transform: scale(0.5);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
}

.animate-wizard {
    -webkit-animation-name: wizard_fadeIn;
       -moz-animation-name: wizard_fadeIn;
         -o-animation-name: wizard_fadeIn;
            animation-name: wizard_fadeIn;
    -webkit-animation-duration: 500ms;
       -moz-animation-duration: 500ms;
         -o-animation-duration: 500ms;
            animation-duration: 500ms;
    -webkit-animation-timing-function: ease-in;
       -moz-animation-timing-function: ease-in;
         -o-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
}

.animate-wizard-up {
    -webkit-animation-name: wizard_fadeInUp;
       -moz-animation-name: wizard_fadeInUp;
         -o-animation-name: wizard_fadeInUp;
            animation-name: wizard_fadeInUp;
    -webkit-animation-duration: 300ms;
       -moz-animation-duration: 300ms;
         -o-animation-duration: 300ms;
            animation-duration: 300ms;
    -webkit-animation-timing-function: ease-in;
       -moz-animation-timing-function: ease-in;
         -o-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
}

.animate-wizard-down {
    -webkit-animation-name: wizard_fadeInDown;
       -moz-animation-name: wizard_fadeInDown;
         -o-animation-name: wizard_fadeInDown;
            animation-name: wizard_fadeInDown;
    -webkit-animation-duration: 300ms;
       -moz-animation-duration: 300ms;
         -o-animation-duration: 300ms;
            animation-duration: 300ms;
    -webkit-animation-timing-function: ease-in;
       -moz-animation-timing-function: ease-in;
         -o-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
}

.animate-wizard-zoomin {
    -webkit-animation-name: wizard_zoomIn;
       -moz-animation-name: wizard_zoomIn;
         -o-animation-name: wizard_zoomIn;
            animation-name: wizard_zoomIn;
    -webkit-animation-duration: 300ms;
       -moz-animation-duration: 300ms;
         -o-animation-duration: 300ms;
            animation-duration: 300ms;
    -webkit-animation-timing-function: ease-in;
       -moz-animation-timing-function: ease-in;
         -o-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
}

@-webkit-keyframes wizard_fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes wizard_fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes wizard_fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wizard_fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wizard_zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.7);
           -moz-transform: scale(0.7);
             -o-transform: scale(0.7);
                transform: scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
}

@-webkit-keyframes wizard_fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

@-moz-keyframes wizard_fadeInDown {
    from {
        opacity: 0;
        -moz-transform: translateY(-30px);
             transform: translateY(-30px);
    }
    to {
        opacity: 1;
        -moz-transform: translateX(0);
             transform: translateX(0);
    }
}

@-o-keyframes wizard_fadeInDown {
    from {
        opacity: 0;
        -o-transform: translateY(-30px);
           transform: translateY(-30px);
    }
    to {
        opacity: 1;
        -o-transform: translateX(0);
           transform: translateX(0);
    }
}

@keyframes wizard_fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
           -moz-transform: translateY(-30px);
             -o-transform: translateY(-30px);
                transform: translateY(-30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
           -moz-transform: translateX(0);
             -o-transform: translateX(0);
                transform: translateX(0);
    }
}

@-webkit-keyframes wizard_fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
                transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

@-moz-keyframes wizard_fadeInUp {
    from {
        opacity: 0;
        -moz-transform: translateY(30px);
             transform: translateY(30px);
    }
    to {
        opacity: 1;
        -moz-transform: translateX(0);
             transform: translateX(0);
    }
}

@-o-keyframes wizard_fadeInUp {
    from {
        opacity: 0;
        -o-transform: translateY(30px);
           transform: translateY(30px);
    }
    to {
        opacity: 1;
        -o-transform: translateX(0);
           transform: translateX(0);
    }
}

@keyframes wizard_fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
           -moz-transform: translateY(30px);
             -o-transform: translateY(30px);
                transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
           -moz-transform: translateX(0);
             -o-transform: translateX(0);
                transform: translateX(0);
    }
}

@media screen and (max-width: 500px) {
    .wizard-inf-modal {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translate(0, 0);
           -moz-transform: translate(0, 0);
            -ms-transform: translate(0, 0);
             -o-transform: translate(0, 0);
                transform: translate(0, 0);
        z-index: 2;
        width: 100%;
        height: 100%;
    }
    
    .wizard-inf-content {
        position: absolute;
        left: 10px;
        top: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        height: auto;
    }

    .wizard-inf-item{
        margin-bottom: 10px;
    }

    .wizard-inf-item img{
        width: 90px !important;
        height: auto !important;
    }
    .wizard-inf-title1{
        font-size: 18px !important;
    }
    .wizard-inf-description{
        font-size: 14px;
    }
    .wizard-inf-btn{
        display: block;
        width: 100%;
        margin: 10px 0 0 0;
    }
}


@media screen and (max-width: 768px){
    .wizard-information-button{
        display: none !important;
    }
    .mobile-wizard-button-container{
        display: block !important;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 130px;
    }
    .wizard-information-button-mobile{
        display: block !important;
        width: 100%;
        margin: 0 !important;
    }
}