@charset "utf-8";
/* ==================================================
   Typography
================================================== */
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
/* Custom fonts */
@font-face {
	font-family: 'Dosis Medium';
	src: url('../fonts/dosis-medium-webfont.eot');
	src: url('../fonts/dosis-medium-webfont.eot?#iefix') format('embedded-opentype'),  url('../fonts/dosis-medium-webfont.woff2') format('woff2'),  url('../fonts/dosis-medium-webfont.woff') format('woff'),  url('../fonts/dosis-medium-webfont.ttf') format('truetype'),  url('../fonts/dosis-medium-webfont.svg#dosismedium') format('svg');
	font-weight: normal;
	font-style: normal;
}
/* ==================================================
   Base
================================================== */
body, html {
	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: "Dosis Medium", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}
ul {
	list-style-type: none;
}
ol {
	list-style-type: decimal;
}
a, a:active, a:focus, a.active {
	color: #000;
	outline: none;
	cursor: pointer;
	text-decoration: underline;
}
a:hover {
	color: #000;
}
textarea {
	resize: none;
	width: 100%;
	height: 120px!important;
}
hr {
	border-color: #DDD;
}
blockquote {
	font-size: 14px;
	border-left: 4px solid #000;
}
img {
	width: 100%;
	height: auto;
	padding: 5px;
	border: 1px solid #DDD;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.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;
}
/* Custom padding */
.padding-progressbar {
	padding-top: 160px;
}
/* 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: 120px;
}
/* ==================================================
   Forms
================================================== */
/* Form header */
.form-header {
	text-align: center;
	padding: 15px;
	background-color: #000;
	border-radius: 0;
	width: 100%;
}
.form-header h1 {
	color: #FFF;
	margin: 0;
	text-transform: uppercase;
	line-height: 1;
	font-size: clamp(1rem, 3vw, 30px);
}
.form-header h1 span {
	display: block;
	font-size: 90%;
	padding-top: 0.75rem;
}
.form-header h2 {
	line-height: 1;
	margin-top: 0;
	margin-bottom: 0;
}
.event-logo {
	position: relative;
}
.event-logo img {
	display: block;
	width: 100%;
	max-width: 150px;
	height: auto;
	border: none;
	padding: 0;
	position: absolute;
	left: 15px;
}
.event-name, .event-lang {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Multistep settings */
#progressbar {
	position: fixed;
	top: 0;
	left: 0;
	padding: 10px 0;
	width: 100%;
	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: #CCC;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	margin: 0 auto 10px;
	width: 35px;
	z-index: 1;
}
#progressbar li:after {
	position: absolute;
	top: 16px;
	left: -5%;
	content: "";
	width: 105%;
	height: 4px;
	background-color: #CCC;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -2;
}
#progressbar li:first-child:after {
	content: none;
}
#progressbar li.active:before, #progressbar li.active:after {
	background-color: #000;
	color: #FFF;
}
#progressbar li:first-child:after {
	content: "";
	background-color: #FFF;
	z-index: -1;
}
#progressbar li.active span {
	color: #000;
}
#progressbar li span {
	font-family: 'Roboto Condensed', sans-serif;
}
#progressbar li a {
	text-decoration: none;
	color: inherit;
}
#progressbar .heading.title {
	line-height: 50px;
	color: #333;
	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: 10vh;
	color: #000;
}
.form-horizontal.results .heading.title {
	margin-top: 100px;
}
.form-horizontal .title {
	font-size: 30px;
	color: #000;
}
.form-horizontal h1.title {
	font-size: 30px;
}
.form-horizontal h2.title {
	font-size: 24px;
}
.form-horizontal .sub-title {
	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;
}
.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: #000;
}
.form-horizontal .input-group-addon, .form-horizontal .form-control, .btn-secondary {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
}
.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: 0;
	-moz-border-top-right-radius: 0;
	-o-border-top-right-radius: 0;
	border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-bottom-right-radius: 0;
	-o-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
}
.input-group-addon {
	position: relative;
	width: 45px;
}
.form-horizontal .input-group:hover .input-group-addon {
	background-color: #000;
	border-color: #000;
	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: #000;
}
/* 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: #c1c1c1;
	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: #000;
}
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: #767676;
	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: #000;
}
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: #000;
	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;
	display: inline-block;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: normal;
	text-shadow: none;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-left: 5px;
	margin-right: 5px;
	padding: 0 20px;
	border: 2px solid #000;
	background-color: transparent;
	color: #000;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	outline: none;
}
.btn:hover, .btn.active, .btn:active, .btn:hover, .open > .dropdown-toggle.btn {
	border: 2px solid #000;
	background-color: #000;
	color: #FFF;
}
.btn-primary, .btn-primary:focus, .btn-primary:active, .btn-default, .btn-default:focus, .btn-default:active {
	line-height: 50px;
	text-decoration: none;
}
.btn-secondary, .btn-secondary:focus, .btn-secondary:active {
	font-weight: 700;
	line-height: 40px;
}
.btn.accordion-toggle:before {
	position: absolute;
	left: 50%;
	bottom: -11px;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #FFF;
	border-left: 2px solid #000;
	border-bottom: 2px solid #000;
	-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: #000;
}
.btn .fa {
	margin: 0 0 0 15px;
}
.btn-custom {
	display: inline-block!important;
	float: left;
	margin-bottom: 5px;
	border-color: #000;
	color: #000;
}
/* Sidebar */
.form-sidebar {
	border: 1px solid #DDD;
	border-left: 4px solid #000;
	background-color: transparent;
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 10px;
}
.form-sidebar .sub-title {
	font-size: 20px;
	color: #000;
	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: #000;
}
.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: 27px;
	background-color: #FFF;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	border: 4px solid #000;
}
.form-sidebar p {
	font-family: 'Roboto Condensed', sans-serif;
	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;
}
/* ==================================================
   Responsive Tables: https://codepen.io/jordyvanraaij/pen/jlAqp
================================================== */
.responstable {
	margin: 0 auto 1em;
	width: 100%;
	max-width: 1170px;
	overflow: hidden;
}
.responstable img {
	display: block;
	max-width: 25px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
}
.responstable td[data-td] img {
    max-width: 18px;
    padding: 0;
}
.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 #000;
	background-color: #000;
	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 #000;
}
.responstable th:first-child {
	display: table-cell;
	text-align: center;
	width: 75px;
	max-width: 75px;
}
.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;
}
.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 {
	font-size: 12px;
}
.responstable tr {
	border-bottom: 4px solid #CCC;
	padding-top: 10px;
	padding-bottom: 10px;
}
.responstable tr:first-child {
	border-bottom: none;
	height: 49px;
}
.responstable th:nth-child(2):after {
	content: attr(data-th);
}
.responstable td:after {
	position: absolute;
	left: 0;
	top: 0;
	content: attr(data-td);
	font-family: 'Roboto Condensed', sans-serif;
	text-align: right;
	color: #666;
	padding-right: 5px;
	width: 40%;
}
.responstable td {
	text-align: left;
	border: none;
}
.responstable td span {
	position: relative;
	left: 40%;
	display: block;
	width: 60%;
	font-family: 'Roboto Condensed', sans-serif;
}
.responstable td:first-child span {
	left: 0;
	width: auto;
	text-align: center;
}
.responstable th:nth-child(2):before {
	content: "";
	border-right: none;
}
}
.responstable .fa-plus-circle {
	font-size: 2em;
}
/* Pagination */
.responstable tr.pgr, .responstable .pgr td {
	border: none;
	background-color: transparent;
}
.responstable tr.pgr:hover {
	border: none;
	background-color: transparent;
}
.responstable .pgr td:first-child {
	border-right: none;
}
.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: #000;
}
.responstable .pgr table tr:hover {
	background-color: transparent!important;
}
.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: #000;
	color: #FFF;
}
/* ==================================================
   UI - Collapsable Panels
================================================== */
.panel-group {
	margin-bottom: 0;
}
.panel-heading a:hover, .panel-heading a:active, .panel-heading a:focus, .panel-heading a[aria-expanded="true"] {
}
.panel-heading a:hover i, .panel-heading a:active i, .panel-heading a:focus i, .panel-heading a[aria-expanded="true"] i {
}
.panel-group .panel, .panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
	border: none;
	border-radius: 0;
}
.panel-default > .panel-heading {
	position: relative;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
    background-color: #FFF;
	box-shadow: none;
}
.panel-default > .panel-heading i {
	position: absolute;
	top: 9px;
	right: 15px;
	width: 32px;
	height: 32px;
	border: 2px solid #FFF;
	text-align: center;
	line-height: 29px;
	color: #FFF;
	z-index: 999;
}
.panel-default > .panel-heading .responstable td {
	border: 1px solid #000;
	text-transform: uppercase;
}
.panel-heading {
	padding: 0;
}
.panel-heading a {
	display: block;
	padding: 0;
	text-decoration: none;
	color: #333;
}
.panel-body {
    padding: 0;
}
.panel-body .responstable tr:first-child, .panel-body .responstable tr:first-child th {
	border: 1px solid #000;
	background-color: #FFF;
	color: #000;
}
.panel-body .responstable tr:first-child th {
	border-right: 1px solid #000;
}

.panel-body .responstable tr:first-child th::before {
    border-right: 1px solid #CCC;
    border-bottom: 4px solid #000;
    border-top: 4px solid #000;
}

.clickable {
	cursor: pointer;
}
/* ==================================================
   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-sidebar .sub-title:after {
	right: -20px;
}
#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: 80px;
}
.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.sub-title {
	font-size: 20px;
	padding-left: 10%;
	padding-right: 10%;
}
.form-horizontal h3.sub-title {
	font-size: 20px;
}
.form-horizontal h1.title span, .form-horizontal h2.sub-title span, .form-horizontal h3.sub-title span {
	display: block;
}
.btn, .btn:focus {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 20px;
}
.btn:last-of-type {
	margin-bottom: 0;
}
.panel-default > .panel-heading .responstable td {
    border: none;
}
.panel-default > .panel-heading .responstable td:first-child {
    border-right: 1px solid #CCC;
}
}

@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;
}
.btn, .btn:focus {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}
}

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

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