
a {
    text-decoration: none;
}

.mbz_dib {
    display: inline-block;
}

.mbz_width28 {
    width: 28%;
}

.mbz_width18 {
    width: 18%;
}

.mbz_width44 {
    width: 44%;
}

.mbz_success {
    margin: auto;
    padding: 10px;
    background-color: #fff;
    width: 900px;
    height: 600px;
    font-size: 16px;
    border-radius: 5px;
    color: #666666;
}

.mbz_success h1 {
    padding-top: 50px;
    font-size: 40px;
    text-align: center;
}

.mbz_main_content {
    padding-top: 55px;
}

.mbz_main_content p a {
    text-decoration: none;
    color: inherit;
    font-style: italic;
    padding-top: 10px;
}

.mbz_main_content p a:hover {
    text-decoration: underline;
}

.mbz_main_content .mbz_logo_side,
.mbz_main_content .mbz_content_side,
.mbz_main_content .mbz_settings_side {
    vertical-align: top;
}

.mbz_logo_side {
    margin-top: -30px;
}

.mbz_logo_side img {
    width: 100%;
}

.mbz_content_side {
    margin: 0 2%;
    border-radius: 5px;
    background-color: #ffe599;
}

.mbz_content_side {
    min-height: 168px;
    padding: 15px;
}

.mbz_content_side p {
    padding-bottom: 10px;
    text-align: justify;
    line-height: 20px;
}

.mbz_settings_side {
    padding-top: 30px;
}

.mbz_settings_side a {
    background-color: #9fc5f8;
    padding: 15px 15px 15px 51px;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    text-align: left;
    color: #000;
    text-decoration: none;
}

.mbz_settings_side a:last-child {
    margin-bottom: 0;
}

.mbz_settings_side span.icon {
    height: 20px;
    width: 20px;
    display: inline-block;
    position: absolute;
    left: 15px;
    margin: auto;
    top: 0;
    bottom: 0;
}

.mbz_settings_side a {
    position: relative;
}

.mbz_getting_started_video span.icon {
    background-image: url(../images/video_icon.png);
}

.mbz_info span.icon {
    background-image: url(../images/info_icon.png);
}

.mbz_help_dock span.icon {
    background-image: url(../images/help_icon.png);
}

#mbz_progress_side {
    padding-top: 40px;
    width: 70%;
    text-align: center;
}

.mbz_progress {
    width: 100%;
    height: 35px;
    position: relative;
    box-shadow: inset 0 0 15px -5px rgba(128, 121, 128, 1);
    border-radius: 5px;
}

@-webkit-keyframes MOVE-BG {
    from {
        -webkit-transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(46px);
    }
}

@keyframes MOVE-BG {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(46px);
    }
}

@keyframes move-width {
    from {
        width: 0;
    }
}

#mbz_progress {
    overflow: hidden;
    height: 100%;
    display: block;
    position: relative;
    animation-name: move-width;
    animation-duration: 0.5s;
    max-width: 100%;
    border-radius: 5px
}

.mbz_progress_bg {
    position: absolute;
    left: -46px;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    width: 900000px;

    background: -webkit-repeating-linear-gradient(
            55deg,
            #5cb85c 6px,
            #74c374 7px,
            #74c374 16px,
            #5cb85c 17px,
            #5cb85c 25px
    );
    background: repeating-linear-gradient(
            55deg,
            #5cb85c 6px,
            #74c374 7px,
            #74c374 16px,
            #5cb85c 17px,
            #5cb85c 25px
    );

    -webkit-animation-name: MOVE-BG;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    animation-name: MOVE-BG;
    animation-duration: 2.7s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.mbz_progress:before {
    content: 'Setting up Your new instance...';
    font-size: 13px;
    text-align: left;
    position: absolute;
    left: 0;
    top: -25px;
}

.mbz_progress_faild .mbz_progress:before {
    content: 'Something wrong...';
    color: red;
}

#mbz_progress_percentage {
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    height: 24px;
    width: 65px;
    z-index: 120;
    color: #000;
    font-weight: 700;
}

.mbz_progress_faild .mbz_progress_bg {
    position: absolute;
    left: -46px;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    width: 900000px;
    animation: none;

    background: -webkit-repeating-linear-gradient(
            55deg,
            #d10e09 6px,
            #ed4139 7px,
            #ed4139 16px,
            #d10e09 17px,
            #d10e09 25px
    );
    background: repeating-linear-gradient(
            55deg,
            #d10e09 6px,
            #ed4139 7px,
            #ed4139 16px,
            #d10e09 17px,
            #d10e09 25px
    );
}