@charset "utf-8";
/* ==================================================
   Typography
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald&family=Roboto+Condensed:wght@300&display=swap');
@font-face {
 font-family: Latina-Heavy;
 src: url(../fonts/3A0DE1_B_0.eot);
 src: url(../fonts/3A0DE1_B_0.eot?#iefix) format("embedded-opentype"), url(../fonts/3A0DE1_B_0.woff2) format("woff2"), url(../fonts/3A0DE1_B_0.woff) format("woff"), url(../fonts/3A0DE1_B_0.ttf) format("truetype")
}
/* ==================================================
   Base
================================================== */
body, html {
 font-family: 'Roboto Condensed', sans-serif;
 min-height: 100% !important;
 height: 100%;
}
body {
 position: relative;
 font-size: 1.8rem;
 text-rendering: optimizeLegibility;
 overflow-x: hidden;
}
body > .container {
 position: relative;
 z-index: 9;
}
h1, h2, h3, h4, h5, h6 {
 font-family: "Oswald", sans-serif;
}
h1, h2, h3 {
 text-transform: uppercase;
 color: #5AA6DC;
}
ul {
 list-style-type: none;
}
ol {
 list-style-type: decimal;
}
a, a:active, a:focus, a.active {
 color: #5AA6DC;
 outline: none;
 cursor: pointer;
}
a:hover {
 color: #5AA6DC;
}
textarea {
 resize: none;
 width: 100%;
 height: 120px !important;
}
hr {
 border-color: #DDD;
}
blockquote {
 font-size: 14px;
 border-left: 4px solid #5AA6DC;
}
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;
 max-width: 200px;
 height: 50px;
}
/* ==================================================
   Forms
================================================== */
.form-header {
 padding-top: 1rem;
 padding-bottom: 1rem;
 text-align: center;
}
.form-header h1 {
 font-size: clamp(24px, 2vw, 36px);
}
/* Multistep settings */
#progressbar {
 position: relative;
 top: 0;
 left: 0;
 width: 100%;
 padding: 10px 0;
 background-color: #FFF;
 border-bottom: 1px solid rgba(0, 0, 0, 0.25);
 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%;
 color: #5AA6DC;
}
#progressbar li:before {
 display: block;
 content: counter(step);
 counter-increment: step;
 font-weight: 700;
 line-height: 35px;
 background-color: #EEE;
 -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: #EEE;
 z-index: -1;
}
#progressbar li:first-child:after {
 content: none;
}
#progressbar li.active:before, #progressbar li.active:after {
 background-color: #5AA6DC;
 color: #FFF;
}
#progressbar li span, #progressbar li.active span {
 color: #5AA6DC;
}
#progressbar li span {
 font-family: 'Roboto Condensed', sans-serif;
 font-size: 1.2rem;
 font-weight: 700;
 text-transform: uppercase;
}
#progressbar li a {
 text-decoration: none;
 color: inherit;
}
#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 {
 font-variant: small-caps;
 margin-top: 180px;
}
.form-horizontal.results .heading.title {
 margin-top: 120px;
}
.form-horizontal .title {
 font-size: 30px;
}
.form-horizontal h1.title {
 font-size: 30px;
}
.form-horizontal h2.title {
 font-size: 24px;
}
.form-horizontal .sub-title {
 font-size: 24px;
 color: #000;
}
.form-horizontal legend {
 border-bottom: none;
}
.form-horizontal .input-group-addon .fa {
 position: absolute;
 top: 14px;
 left: 0;
 width: 45px;
 text-align: center;
 color: #5AA6DC;
}
.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: #5AA6DC;
}
.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: #5AA6DC;
}
.form-horizontal .input-group:hover .input-group-addon {
 background-color: #5AA6DC;
 border-color: #5AA6DC;
 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 {
 font-size: 0.95em;
 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: #5AA6DC;
}
/* 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: #5AA6DC;
}
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: #AAA;
 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: #5AA6DC;
}
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: #5AA6DC;
 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 {
 display: inline-table;
 font-family: "Prompt", sans-serif;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin: 0 2rem;
 padding: 1rem 1.5rem;
 background-color: #FFF;
 color: #67C0FF;
 border: 1.5px solid #67C0FF;
 border-radius: 2.5rem;
 box-shadow: none;
 -webkit-appearance: none;
}
.btn:hover, .btn.active, .btn:active, .btn:hover, .open > .dropdown-toggle.btn {
 color: #fff;
 background-color: #000;
 border-color: #000;
}
.btn-primary, .btn-primary:focus, .btn-primary:active, .btn-default, .btn-default:focus, .btn-default:active {
 text-decoration: none;
}
.btn-secondary, .btn-secondary:focus, .btn-secondary:active {
 font-weight: 700;
}
.btn.accordion-toggle:before {
 position: absolute;
 left: 50%;
 bottom: -11px;
 content: "";
 width: 20px;
 height: 20px;
 background-color: #FFF;
 border-left: 1px solid #5AA6DC;
 border-bottom: 1px solid #5AA6DC;
 -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: #5AA6DC;
 border-left: 1px solid #5AA6DC;
 border-bottom: 1px solid #5AA6DC;
}
.btn .fa {
 margin: 0 0 0 15px;
}
.btn-custom {
 display: inline-block !important;
 float: left;
 margin-bottom: 5px;
 border-color: #5AA6DC;
 color: #5AA6DC;
}
/* Sidebar */
.form-sidebar {
 border: 1px solid #DDD;
 border-left: 4px solid #5AA6DC;
 background-color: transparent;
 padding-left: 25px;
 padding-right: 25px;
 padding-bottom: 10px;
}
.form-sidebar .sub-title {
 color: #5AA6DC;
 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: #5AA6DC;
}
.form-sidebar .sub-title:after {
 position: absolute;
 top: 18px;
 right: -43px;
 content: "\f129";
 font-family: "FontAwesome";
 font-size: 0.9em;
 text-align: center;
 color: #5AA6DC;
 width: 35px;
 height: 35px;
 line-height: 27px;
 background-color: #FFF;
 -webkit-border-radius: 100%;
 -moz-border-radius: 100%;
 -o-border-radius: 100%;
 border-radius: 100%;
 border: 4px solid #5AA6DC;
}
.form-sidebar p, .form-sidebar span {
 line-height: 1.2em;
 font-size: 1.5rem;
}
.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 #5AA6DC;
 background-color: #5AA6DC;
 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 #5AA6DC;
}
.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;
}
.responstable .pgr td:first-child {
 border-right: none;
}
.responstable .pgr table {
 display: inline-block;
 margin: 0 auto;
}
.responstable .pgr table tr {
 border: none;
 background-color: transparent;
 color: #5AA6DC;
}
.responstable .pgr table tr:hover {
 background-color: transparent !important;
}
.responstable .pgr table td {
 padding: 0;
 border: none;
}
.responstable .pgr table td:hover, .responstable .pgr table td span {
 background-color: #f2f2f2;
}
.responstable .pgr table td span, .responstable .pgr table td a {
 display: inline-block;
 font-size: 1.2em;
 font-weight: 700;
 padding: 0.5em 1em;
}
.responstable .pgr table td a:hover {
 text-decoration: none;
 background-color: #5AA6DC;
 color: #FFF;
}
/* ==================================================
   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: 100px;
 }
 .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) {}