html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    background: #212121;
    font-size: 15px;
    color: #ffffff;
}

@media only screen and (max-width: 767px) {
    body {
        background-color: #0c0c0c;
    }
}

img {
    border: 0;
    max-width: 100%;
}

a {
    display: inline-block;
    color: #6496ff;
}

p,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: normal;
}

.wrapper {
    margin: 0 auto;
    max-width: 900px;
    border: 2px solid #ff3311;
    background-color: #0c0c0c;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.wrapper-image {
    width: 380px;
}

.wrapper-image>img {
    display: block;
    height: 500px;
}

.wrapper-content {
    box-sizing: border-box;
    width: 516px;
    padding: 20px 35px;
}

@media only screen and (max-width: 899px) {
    .wrapper-image {
        width: 50%;
    }
    .wrapper-content {
        padding: 15px 15px 0;
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .wrapper-image,
    .wrapper-content {
        width: 100%;
    }
    .wrapper-image>img {
        max-height: 216px;
        margin: auto;
    }
}

@media only screen and (max-width: 767px) {
    .wrapper {
        border: none;
    }
}

@media only screen and (max-width: 350px) {
    .wrapper-image>img {
        margin: 0;
    }
}

.box {
    display: none;
    font-size: 23px;
    color: #fff;
    font-weight: bold;
}

@media only screen and (max-width: 899px) {
    .box {
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    .box {
        font-size: 16px;
    }
}

.box:first-child {
    display: block;
}

.box>* {
    margin-top: 15px;
}

@media only screen and (max-width: 350px) {
    .box>* {
        margin-top: 8px;
    }
    .box>header {
        margin-top: 0;
    }
}

.box header {
    text-align: center;
}

.box header h1,
.box header h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 23px;
    color: #3ebde5;
    font-weight: bold;
}

@media only screen and (max-width: 350px) {
    .box header h2 {
        font-size: 20px;
    }
}

.box header h2.text-transform-none {
    text-transform: none;
}

.box header span {
    color: #666;
    font-style: italic;
    font-size: 18px;
}

@media only screen and (max-width: 375px) {
    .box header span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 350px) {
    .box header span {
        font-size: 14px;
    }
}

.box header h1 {
    font-size: 40px;
}

.box footer {
    text-align: center;
}

.btn {
    border: none;
    font-size: 30px;
    color: #fff;
    font-family: Verdana, Geneva, sans-serif;
    width: 75%;
    min-width: 200px;
    height: 62px;
    line-height: 62px;
    border-radius: 0px;
    display: inline-block;
    font-weight: bold;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    margin: 10px 0;
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    .btn {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 375px) {
    .btn {
        margin: 5px 0;
    }
}

@media only screen and (max-width: 350px) {
    .btn {
        height: 40px;
        line-height: 40px;
    }
}

.btn-info {
    background-color: #51c3ff;
    background-image: -moz-linear-gradient( 90deg, rgb( 44, 139, 169) 0%, rgb( 55, 174, 211) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb( 44, 139, 169) 0%, rgb( 55, 174, 211) 100%);
}

.btn-danger {
    background-color: #f1e707;
    background-image: -moz-linear-gradient( 90deg, rgb( 204, 41, 14) 0%, rgb( 255, 51, 17) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb( 204, 41, 14) 0%, rgb( 255, 51, 17) 100%);
}

.select-list li {
    font-weight: bold;
    background: url(./unchecked_checkbox.png) 10px center no-repeat;
    cursor: pointer;
    margin-bottom: 10px;
    padding-left: 50px;
}

.select-list li.active {
    background: url(./checked_checkbox.png) 10px center no-repeat;
}

.form-control {
    height: 40px;
    padding: 5px 20px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid red;
    margin-top: 5px;
    margin-bottom: 2px;
}

.form-control + small {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    font-style: italic;
    text-transform: capitalize;
}

.final-img-wrap {
    text-align: center;
    margin-top: 5px;
}

.final-img {
    max-height: 300px;
}

.final-text {
    
    font-size: 20px;
}
.text-center {
    text-align: center;
}

.btn-info {
    transition: all 0.2s linear;
}
.btn-info:hover,
.btn-info:focus {
    background-image: -moz-linear-gradient(  90deg, rgb(15 100 128) 0%, rgb(21 151 191) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(15 100 128) 0%, rgb(21 151 191) 100%);
    transform: scale(1.02);
}

.btn-danger {
    transition: all 0.2s linear;   
}

.btn-danger:hover,
.btn-danger:focus {
    background-image: -moz-linear-gradient( 90deg, rgb(232 72 45) 0%, rgb(199 42 16) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(232 72 45) 0%, rgb(199 42 16) 100%);
    transform: scale(1.02);
}

.btn-icon {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}

.btn-icon:before {
    left: 0;
    top: -100%;
    position: absolute;
    height: 100%;
    width: 100%;
    font-size: 140%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-icon:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-icon span {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.3s;
    -moz-backface-visibility: hidden;
    transition: all 0.3s;
    backface-visibility: hidden;
}

.btn-icon.btn-info::before {
    content: "🍆";
}

.btn-icon.btn-danger::before {
    content: "💩";
}

.btn-icon:hover:before {
    top: 0;
    line-height: normal;
}

.btn-icon:hover span {
    -webkit-transform: translateY(300%);
    -moz-transform: translateY(300%);
    -ms-transform: translateY(300%);
    transform: translateY(300%);
}

@media ( max-width: 767px ) {
    .active-js-step9 .wrapper-image {
        display: none;
    }
    .btn-icon span,
    .btn-icon:hover span {
        transform: none;
        width: auto;
        height: auto;
    }
    .btn-icon:before {
        top: 0;
        line-height: normal;
        position: inherit;
        margin-right: 10px;
    }
}