@charset "utf-8";
/* ==================================================
   Typography
================================================== */
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed|Oswald');

@font-face {
    font-family: 'Gotham Black';
    src: url('../fonts/Gotham-Black.woff2') format('woff2'), url('../fonts/Gotham-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Book Italic';
    src: url('../fonts/Gotham-BookItalic.woff2') format('woff2'), url('../fonts/Gotham-BookItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'), url('../fonts/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Black Italic';
    src: url('../fonts/Gotham-BlackItalic.woff2') format('woff2'), url('../fonts/Gotham-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Bold Italic';
    src: url('../fonts/Gotham-BoldItalic.woff2') format('woff2'), url('../fonts/Gotham-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Medium';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2'), url('../fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2'), url('../fonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Light Italic';
    src: url('../fonts/Gotham-LightItalic.woff2') format('woff2'), url('../fonts/Gotham-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Light';
    src: url('../fonts/Gotham-Light.woff2') format('woff2'), url('../fonts/Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/* ==================================================
   Base
================================================== */
body, html {
    font-family: 'Roboto Condensed', sans-serif;
    min-height: 100% !important;
    height: 100%;
}

body {
    position: relative;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

    body > .container {
        position: relative;
        z-index: 9;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham Black', sans-serif;
}

ul {
    list-style-type: none;
}

ol {
    list-style-type: decimal;
}

a, a:active, a:focus, a.active {
    color: #222222;
    outline: none;
    cursor: pointer;
}

    a:hover {
        color: #222222;
    }

textarea {
    resize: none;
    width: 100%;
    height: 120px !important;
}

hr {
    border-color: #DDD;
}

blockquote {
    font-size: 14px;
    border-left: 4px solid #222222;
}

img {
    width: 100%;
    height: auto;
    padding: 5px;
    border: 1px solid #DDD;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

.wrap {
    display: block;
}

.nowrap {
    white-space: nowrap;
}

input {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
/* =====================================================
   Margins, Paddings, Borders and Alignments
===================================================== */
/* Margins */
.no-margin {
    margin: 0 !important;
}

.no-left-margin {
    margin-left: 0;
}

.no-right-margin {
    margin-right: 0;
}

.no-top-margin {
    padding-top: 0;
}

.no-bottom-margin {
    margin-bottom: 0;
}

.margin-20 {
    margin-bottom: 20px;
}

.margin-30 {
    margin-bottom: 30px;
}

.margin-40 {
    margin-bottom: 40px;
}

.margin-50 {
    margin-bottom: 50px;
}

.margin-70 {
    margin-bottom: 70px;
}

.margin-80 {
    margin-bottom: 80px;
}

.margin-90 {
    margin-bottom: 90px;
}

.margin-100 {
    margin-bottom: 100px;
}
/* Paddings */
.no-padding {
    padding: 0 !important;
}

.no-left-padding {
    padding-left: 0;
}

.no-right-padding {
    padding-right: 0;
}

.no-top-padding {
    padding-top: 0;
}

.no-bottom-padding {
    padding-bottom: 0;
}

.padding-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.padding-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.padding-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
/* Borders */
.border {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.no-border {
    border: none !important;
}

.border-right {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
/* Alignments */
.vcenter {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hcenter {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.clearfix {
    display: block;
    width: 100%;
    clear: both;
}
/* ==================================================
   Animations
================================================== */
a, .btn, .form-horizontal .form-control, .form-horizontal .input-group, .form-horizontal .input-group-addon, .btn.accordion-toggle:before {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
/*Page Loading Fade Effect */
.fade-in {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.25s;
    -moz-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

.fade-in {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* ==================================================
   Custom
================================================== */
.full-height {
    height: 100%;
}

.panel-group .panel {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
}
/* Main logo */
.logo img {
    padding: 0;
    border: none;
    width: 100%;
    max-width: 250px;
    height: auto;
}
/* ==================================================
   Forms
================================================== */
/* Header */
.header-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #FFF;
    border-bottom: 2px solid #222222;
    z-index: 999;
}

    .header-form img {
        width: 100%;
        max-width: 250px;
        height: auto;
        border: none;
    }
/* Multistep settings */
#progressbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #FFF;
    border-bottom: 1px solid #CCC;
    z-index: 999;
}

    #progressbar ul {
        counter-reset: step;
        text-align: center;
        margin-bottom: 0;
        padding: 20px 0;
    }

    #progressbar li {
        position: relative;
        display: inline-block;
        padding: 0 2%;
    }

        #progressbar li:before {
            display: block;
            content: counter(step);
            counter-increment: step;
            font-weight: 700;
            line-height: 35px;
            background-color: #E7E7E7;
            color: #222222;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -o-border-radius: 100%;
            border-radius: 100%;
            margin: 0 auto 10px;
            width: 35px;
        }

        #progressbar li:after {
            position: absolute;
            left: -50%;
            top: 16px;
            content: "";
            width: 100%;
            height: 4px;
            background-color: #E7E7E7;
            z-index: -1;
        }

        #progressbar li:first-child:after {
            content: none;
        }

        #progressbar li.active:before, #progressbar li.active:after {
            background-color: #222222;
            color: #FFF;
        }

        #progressbar li.active span {
            color: #222222;
        }

        #progressbar li span {
            font-family: 'Roboto Condensed', sans-serif;
        }

        #progressbar li a {
            text-decoration: none;
            color: #222222;
        }

    #progressbar .heading.title {
        line-height: 50px;
        margin-top: 0;
        margin-bottom: 0;
    }
/* Form */
.form-horizontal {
    position: relative;
    width: 100%;
}

    .form-horizontal .form-group {
        position: relative;
        margin-right: 0;
        margin-left: 0;
    }

    .form-horizontal fieldset {
        border: 0 none;
        text-align: center;
        box-sizing: border-box;
        width: 100%;
    }

    .form-horizontal label {
        margin: 0 auto;
    }

    .form-horizontal fieldset:not(:first-of-type) {
        display: none;
    }

    .form-horizontal .title, .form-horizontal .sub-title {
        position: relative;
        margin-bottom: 40px;
    }

    .form-horizontal .heading.title {
        margin-top: 180px;
        text-transform: uppercase;
        color: #222222;
    }

    .form-horizontal.results .heading.title {
        margin-top: 120px;
    }

    .form-horizontal .title {
        font-size: 30px;
        color: #222222;
    }

    .form-horizontal h1.title {
        font-size: 30px;
        text-transform: uppercase;
        color: #222222;
    }

    .form-horizontal h2.title {
        font-size: 24px;
    }

    .form-horizontal .sub-title {
        font-size: 24px;
        color: #222222;
    }

    .form-horizontal legend {
        border-bottom: none;
    }

    .form-horizontal .input-group-addon .fa {
        position: absolute;
        top: 14px;
        left: 0;
        width: 45px;
        text-align: center;
        color: #222222;
    }

    .form-horizontal .control-label {
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: normal;
    }

    .form-horizontal .form-control {
        height: 45px;
        padding: 10px;
        box-shadow: none;
    }

        .form-horizontal .form-control:focus {
            outline: 0;
            box-shadow: none;
        }

        .form-horizontal .form-control textarea {
            height: 150px;
        }

        .form-horizontal .input-group-addon:hover, .form-horizontal .input-group-addon:hover, .form-horizontal .form-control:hover, .form-horizontal .form-control:focus {
            border-color: #222222;
        }

    .form-horizontal .input-group-addon, .form-horizontal .form-control, .btn-secondary {
        -webkit-border-radius: 0px 0 0 0px;
        -moz-border-radius: 0px 0 0 0px;
        -o-border-radius: 0px 0 0 0px;
        border-radius: 0px 0 0 0px;
    }

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
    -webkit-border-top-right-radius: 0px;
    -moz-border-top-right-radius: 0px;
    -o-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-bottom-right-radius: 0px;
    -o-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.input-group-addon {
    position: relative;
    width: 45px;
}

.input-group select option {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #FFF;
    color: #333;
}

.form-horizontal .input-group:hover .input-group-addon {
    background-color: #222222;
    border-color: #222222;
    color: #FFF;
}

    .form-horizontal .input-group:hover .input-group-addon .fa {
        color: #FFF;
    }

.form-horizontal .input-group[class*="col-"] {
    float: left;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px;
}

.form-horizontal .input-group-info p {
    margin-top: 10px;
}

.form-horizontal .input-group[class="col-*"]:last-child {
    margin-right: 0;
}

.form-horizontal .input-group .fa-info {
    font-size: 1.5em;
}

.form-horizontal .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: transparent;
}

.form-horizontal .obrigatorio {
    position: relative;
    font-size: 0.7em;
    line-height: 0em;
}

    .form-horizontal .obrigatorio .fa {
        position: relative;
        top: -4px;
        color: #222222;
    }
/* Custom upload */
.file-upload {
    width: 100%;
}

.file-upload-content {
    display: none;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    margin-top: 0;
    margin-bottom: 30px;
    border: 2px dashed #CCC;
    position: relative;
}

    .image-dropping, .image-upload-wrap:hover {
        background-color: #FFF;
        border: 2px dashed #222222;
    }

.image-title-wrap {
    padding: 0;
}

.drag-text {
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 16px;
    text-align: left;
}

    .drag-text p {
        color: #000;
        margin-bottom: 0;
        padding: 3rem;
    }

.file-upload-image {
    margin: 0;
    padding: 0;
    border: none;
}

.remove-image {
    width: 100%;
    margin: 0;
    color: #000;
    background: #f0f0f0;
    border: none;
    padding: 10px;
    transition: all .2s ease;
    outline: none;
}

    .remove-image span {
        text-transform: uppercase;
        color: #ED1B2F;
    }

    .remove-image:hover, .remove-image:hover span {
        background: #000;
        color: #FFF;
        transition: all .2s ease;
        cursor: pointer;
    }

    .remove-image:active {
        border: 0;
        transition: all .2s ease;
    }

.btn#btnSubmit {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
}

.btn-primary#btnDiploma {
    position: relative;
    margin-top: 20px;
}
/* Custom radios and checkboxes: https://codepen.io/dapacreative/pen/bdzYEe */
form input[type="checkbox"], form input[type="radio"] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}

    form input[type="radio"] + label {
        display: block;
        position: relative;
        text-indent: -9999px;
        background-color: #767676;
        width: 20px;
        height: 20px;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%;
        margin-top: 10px;
        cursor: pointer;
        -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        overflow: hidden;
    }

        form input[type="radio"] + label:before {
            position: absolute;
            top: 50%;
            left: 50%;
            display: block;
            content: "";
            height: 10px;
            width: 10px;
            background-color: #FFF;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -o-border-radius: 100%;
            border-radius: 100%;
            -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
            transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
            -webkit-transform: translateZ(0) translate(-50%, -50%) scale(0.8);
            transform: translateZ(0) translate(-50%, -50%) scale(0.8);
        }

    form input[type="radio"]:checked + label {
        background-color: #222222;
    }

        form input[type="radio"]:checked + label:before {
            -webkit-transform: translateZ(0) translate(-50%, -50%) scale(1);
            transform: translateZ(0) translate(-50%, -50%) scale(1);
        }

    form input[type="checkbox"] + label {
        position: relative;
        display: inline-block;
        float: right;
        text-indent: -9999px;
        background-color: #959595;
        width: 100%;
        max-width: 35px;
        height: 20px;
        margin-top: 3px;
        -webkit-border-radius: 100pc;
        -moz-border-radius: 100px;
        -o-border-radius: 100px;
        border-radius: 100px;
        cursor: pointer;
        -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
        overflow: hidden;
    }

        form input[type="checkbox"] + label:before {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            display: block;
            content: "";
            background-color: #333;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -o-border-radius: 100%;
            border-radius: 100%;
            -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
            transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9) 0.1s;
            -webkit-transform: translateZ(0) scale(0);
            transform: translateZ(0) scale(0);
        }

        form input[type="checkbox"] + label:after {
            position: absolute;
            top: 2px;
            left: 2px;
            display: block;
            content: "";
            height: 16px;
            width: 16px;
            background-color: #FFF;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -o-border-radius: 100%;
            border-radius: 100%;
            -webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
            -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0);
        }

    form input[type="checkbox"]:checked + label {
        background-color: #222222;
    }

        form input[type="checkbox"]:checked + label:after {
            left: calc(100% - 19px);
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

form input:disabled[type="checkbox"] + label {
    background-color: #CCC;
    cursor: not-allowed;
}
/* Custom select */
.select {
    position: relative;
}

    .select select {
        cursor: pointer;
        outline: 0;
        color: #7b7b7b;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .select select::-ms-expand {
            display: none;
        }

        .select select:hover, .select select:focus {
            color: #000;
            background: #FFF;
        }

        .select select:disabled {
            opacity: 0.5;
            pointer-events: none;
        }

    .select:after {
        position: absolute;
        top: 11px;
        right: 28px;
        content: "\f107";
        font-family: "FontAwesome";
        font-size: 1.25em;
        width: 0;
        height: 0;
        pointer-events: none;
        z-index: 2;
    }

    .select select:hover ~ .select__arrow, .select select:focus ~ .select__arrow {
        border-top-color: #000;
    }

    .select select:disabled ~ .select__arrow {
        border-top-color: #CCC;
    }
/* Conditional elements */
.control:checked ~ .conditional, #immigrant:checked ~ .conditional, #required-2:checked ~ .conditional #option-2:checked ~ .conditional {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.control:not(:checked) ~ .conditional, #immigrant:not(:checked) ~ .conditional, #required-2:not(:checked) ~ .conditional, #option-2:not(:checked) ~ .conditional {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
/* Common content */
.content-text {
    padding-left: 5%;
}

.email-deliver {
    font-size: 1.2em;
    font-weight: 700;
    text-align: left;
    padding-top: 10px;
    background-color: transparent;
    border: none;
    color: #222222;
    width: 100%;
}

.add-group {
    display: table;
    border-bottom: 1px dashed #DDD;
    padding-top: 35px;
    width: 100%;
}

    .add-group .sub-title {
        margin-top: 0;
    }

    .add-group:first-child {
        padding-top: 15px;
    }

    .add-group:last-child {
        border-bottom: none;
    }

.form-horizontal input.AdRowNum {
    position: absolute;
    top: 30px;
    right: 0;
    font-size: 2em;
    text-align: right;
    border: none;
    margin: 0;
    background-color: transparent;
}
/* Payments */
.payment > div {
    text-align: center;
}

.payment input:focus, .payment label:focus {
    outline: none;
}

.payment input {
    margin-top: 10px;
}

.payment span {
    display: inline-block;
}

.payment img {
    display: inline-block;
    max-width: 100px;
    height: auto;
    margin: 0 5px 10px;
}
/* Buttons */
.btn, .btn:focus {
    position: relative;
    font-family: 'Gotham Book', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    line-height: 1;
    padding: 1.5rem 3rem 1.5rem 3rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
    background-color: #222222;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #FFF;
}

    .btn:after {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 50px;
    }

.btn-primary.next:after {
    content: "\f054";
    font-family: "FontAwesome";
}

.btn-primary.previous:after {
    content: "\f053";
    font-family: "FontAwesome";
}

.btn:hover, .btn.active, .btn:active, .btn:hover, .open > .dropdown-toggle.btn {
    background-color: #222222;
    color: #80A51A;
}

.btn-primary, .btn-primary:focus, .btn-primary:active, .btn-default, .btn-default:focus, .btn-default:active {
    text-decoration: none;
}

.accordion-toggle.btn.btn-primary {
    padding: 0 20px;
}

.btn-secondary, .btn-secondary:focus, .btn-secondary:active {
    line-height: 45px;
    padding: 0 20px;
}

    .btn-secondary:hover, .btn-secondary:focus {
        font-weight: 700;
        line-height: 45px;
        border-right: none;
    }

.btn.accordion-toggle:before {
    position: absolute;
    left: 50%;
    bottom: -11px;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #FFF;
    border-left: 2px solid #222222;
    border-bottom: 2px solid #222222;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%) rotate(-45deg);
    opacity: 1;
}

.btn.collapsed.accordion-toggle:before {
    opacity: 0;
}

.btn:hover.accordion-toggle:before {
    background-color: #222222;
    border-left: 2px solid #222222;
    border-bottom: 2px solid #222222;
}

.btn .fa {
    margin: 0 5px 0 15px;
}

.btn-custom {
    display: inline-block !important;
    float: left;
    margin-bottom: 5px;
    border-color: #222222;
    color: #222222;
}
/* Sidebar */
.form-sidebar {
    border: 1px solid #DDD;
    border-left: 4px solid #222222;
    background-color: transparent;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;
}

    .form-sidebar .sub-title {
        color: #222222;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

        .form-sidebar .sub-title + p {
            margin-top: 20px;
        }

        .form-sidebar .sub-title .fa {
            text-align: center;
            width: 20px;
        }

        .form-sidebar .sub-title:before {
            position: absolute;
            content: "";
            left: 0;
            right: 0;
            bottom: 0;
            width: 105%;
            height: 1px;
            background-color: #222222;
        }

        .form-sidebar .sub-title:after {
            position: absolute;
            top: 18px;
            right: -43px;
            content: "\f129";
            font-family: "FontAwesome";
            font-size: 0.9em;
            text-align: center;
            width: 35px;
            height: 35px;
            line-height: 28px;
            background-color: #FFF;
            color: #222222;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            -o-border-radius: 100%;
            border-radius: 100%;
            border: 3px solid #222222;
        }

    .form-sidebar p {
        line-height: 1.2em;
    }

    .form-sidebar .form-control {
        font-size: 13px;
        padding: 7px 0;
        border: none;
        background-color: #FFF;
        height: auto;
    }

    .form-sidebar p .form-control.aspNetDisabled {
        border-bottom: 1px dashed #DDD;
    }

    .form-sidebar p:last-child .form-control.aspNetDisabled {
        border-bottom: none;
    }
/* ==================================================
   Modals
================================================== */
.modal-title {
    line-height: 1em;
}

.modal.fade .modal-dialog {
    position: absolute;
    left: 50%;
    top: 5%;
    margin: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9999;
}

.modal-header .close {
    position: absolute;
    top: 21px;
    right: 15px;
    opacity: 0.5;
}

    .modal-header .close:hover {
        opacity: 1;
    }

.modal-backdrop.in {
    opacity: .9;
}
/* ==================================================
   Responsive Tables: https://codepen.io/jordyvanraaij/pen/jlAqp
================================================== */
.responstable {
    margin: 0 0 1em;
    width: 100%;
    overflow: hidden;
}

    .responstable tr {
        border: 1px solid #CCC;
    }

        .responstable tr:nth-child(odd) {
            background-color: rgba(0, 0, 0, 0.025);
        }

            .responstable tr:hover, .responstable tr:nth-child(odd):hover {
                background-color: rgba(0, 0, 0, 0.05);
            }

        .responstable th, .responstable tr:first-child {
            border: 1px solid #222222;
            background-color: #222222;
            font-family: 'Roboto Condensed', sans-serif;
            font-weight: normal;
            text-transform: uppercase;
            color: #FFF;
            padding: 1em;
        }

    .responstable th {
        display: none;
    }

        .responstable th:first-child:before, .responstable th:before {
            position: absolute;
            top: 0;
            right: -1px;
            content: "";
            width: 100%;
            height: 101%;
        }

        .responstable th:before {
            border-right: 1px solid rgba(255, 255, 255, 0.5);
            border-bottom: 4px solid #222222;
        }

        .responstable th:first-child {
            display: table-cell;
            text-align: center;
        }

        .responstable th:last-child:before {
            border-right: none;
        }

        .responstable th:nth-child(2) {
            display: table-cell;
        }

            .responstable th:nth-child(2) span {
                display: none;
            }

    .responstable td {
        text-align: center;
    }

@media (min-width: 769px) {
    .responstable td:after {
        content: "";
    }
}

@media (min-width: 480px) {
    .responstable th:nth-child(2) span {
        display: block;
    }
}

.responstable td {
    display: block;
    word-wrap: break-word;
    border: 1px solid #CCC;
}

    .responstable td:first-child {
        display: table-cell;
        font-weight: 700;
        border-right: 1px solid #CCC;
    }

@media (min-width: 480px) {
}

.responstable th, .responstable td {
    position: relative;
    margin: .5em 1em;
}

.responstable th {
    text-align: center;
}

@media (min-width: 480px) {
    .responstable th, .responstable td {
        display: table-cell;
        padding: 1em;
    }
}

@media (min-width:0em) and (max-width:29em) {
    .responstable tr {
        border-bottom: 4px solid #CCC;
        padding-top: 10px;
        padding-bottom: 10px;
    }

        .responstable tr:first-child {
            border-bottom: none;
        }

    .responstable th:nth-child(2):after {
        content: attr(data-th);
    }

    .responstable td:after {
        position: absolute;
        left: 0;
        top: -1px;
        content: attr(data-td);
        font-family: 'Roboto Condensed', sans-serif;
        text-align: right;
        color: #666;
        padding-right: 5px;
        width: 45%;
    }

    .responstable td {
        text-align: left;
        border: none;
    }

        .responstable td span {
            position: relative;
            left: 45%;
            display: block;
            width: 65%;
        }

        .responstable td:first-child span {
            left: 0;
            width: 100%;
            text-align: center;
        }

    .responstable th:nth-child(2):before {
        content: "";
        border-right: none;
    }
}
/* Pagination */
.responstable tr.pgr, .responstable .pgr td {
    border: none;
    background-color: transparent !important;
    margin: 0;
}

    .responstable .pgr td:first-child {
        border-right: none;
    }

        .responstable .pgr td:first-child span {
            width: auto;
        }

.responstable .pgr table {
    display: inline-block;
    margin: 0 auto;
    width: 100%;
}

    .responstable .pgr table tbody, .responstable .pgr table tbody tr {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .responstable .pgr table tr {
        border: none;
        background-color: transparent;
        color: #222222;
    }

    .responstable .pgr table td {
        display: inline;
        padding: 0;
        border: none;
    }

        .responstable .pgr table td:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .responstable .pgr table td span, .responstable .pgr table td a {
            display: inline-block;
            font-size: 1.2em;
            font-weight: 700;
            padding: 0.5em;
        }

            .responstable .pgr table td a:hover {
                text-decoration: none;
                background-color: #222222;
                color: #FFF;
            }
/* ==================================================
   Videos
================================================== */
.video {
    position: relative !important;
    height: auto !important;
    width: 100%;
    max-width: 960px;
    text-align: center;
    margin-left: 50%;
    margin-top: 20px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
/* ==================================================
   Responsive Media Queries
================================================== */
@media only screen and (min-width:320px) and (max-width:479px) {
    .form-horizontal .input-group-addon, #progressbar li span {
        display: none;
    }

    .form-horizontal .heading.title {
        margin-top: 180px;
    }

    .form-sidebar .sub-title:after {
        right: -20px;
    }

    #progressbar .heading.title {
        font-size: 1.4em;
    }

    #progressbar ul {
        padding: 15px 0;
    }

    #progressbar li:before {
        margin-bottom: 0;
    }

    .payment > div {
        padding: 20px;
    }

        .payment > div:first-child {
            border-bottom: 1px dashed #DDD;
            margin-bottom: 20px;
        }

    .payment img {
        max-width: 85px;
    }

    .panel-group .panel {
        border-bottom: 1px dashed #DDD;
    }

        .panel-group .panel:first-child {
            padding-bottom: 20px;
        }

        .panel-group .panel:last-child {
            padding-top: 20px;
            border: none;
        }

    .form-horizontal h1.title {
        font-size: 24px;
    }

    .form-horizontal h2.title {
        font-size: 20px;
    }
}

@media only screen and (min-width:480px) and (max-width:767px) {
    .form-sidebar .sub-title:after {
        right: 0;
    }

    .form-sidebar .sub-title:before {
        width: 97%;
    }

    .payment > div {
        padding: 20px;
    }

        .payment > div:first-child {
            border-bottom: 1px dashed #DDD;
        }
}

@media only screen and (min-width:768px) and (max-width:991px) {
}

@media only screen and (min-width:992px)and (max-width:1024px) {
}
