@charset "utf-8";
/* ==================================================
   Typography
================================================== */
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed|Oswald');
/* Custom font */
@font-face {
 font-family: 'LP Horizont Caps';
 src: url('../fonts/LP-Horizont-Caps.woff2') format('woff2'), url('../fonts/LP-Horizont-Caps.woff') format('woff');
 font-weight: normal;
 font-style: normal;
 font-display: swap;
}
@font-face {
 font-family: 'DIN Medium Regular';
 src: url('../fonts/din_medium-webfont.woff2') format('woff2'), url('../fonts/din_medium-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
 font-display: swap;
}
@font-face {
 font-family: 'DIN Regular';
 src: url('../fonts/din-webfont.woff2') format('woff2'), url('../fonts/din-webfont.woff') format('woff');
 font-weight: normal;
 font-style: normal;
 font-display: swap;
}
/* ==================================================
   Base
================================================== */
body, html {
 font-family: "DIN Regular", 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: "LP Horizont Caps", sans-serif;
 text-transform: uppercase;
}
ul {
 list-style-type: none;
}
ol {
 list-style-type: decimal;
}
a, a:active, a:focus, a.active {
 color: #6EACDD;
 outline: none;
 cursor: pointer;
}
a:hover {
 color: #6EACDD;
}
textarea {
 resize: none;
 width: 100%;
 height: 120px !important;
}
hr {
 border-color: #DDD;
}
blockquote {
 font-size: 14px;
 border-left: 4px solid #85C778;
}
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: 130px;
 height: 50px;
}
/* ==================================================
   Forms
================================================== */
/* Form header */
.form-header {
 text-align: center;
 padding: 15px;
 background-color: #6EACDD;
 border-radius: 0;
 width: 100%;
}
.form-header h1 {
 color: #FFF;
 margin: 0;
 text-transform: uppercase;
 line-height: 1;
 font-size: clamp(1rem, 3vw, 2rem);
}
.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: 120px;
 height: auto;
 border: none;
 padding: 0;
 position: absolute;
 left: 15px;
 top: -1rem;
}
.event-name, .event-lang {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
}
/* Multistep settings */
#progressbar {
 position: relative;
 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: #85C778;
 color: #FFF;
 -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: #6EACDD;
 z-index: -1;
}
#progressbar li:first-child:after {
 content: none;
}
#progressbar li.active:before, #progressbar li.active:after {
 background-color: #6EACDD;
 color: #FFF;
}
#progressbar li.active span {
 color: #6EACDD;
}
#progressbar li span {
 font-family: 'Roboto Condensed', sans-serif;
}
#progressbar li a {
 text-decoration: none;
 color: #6EACDD;
}
#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: 5rem;
 color: #6EACDD;
}
.form-horizontal.results .heading.title {
 margin-top: 120px;
}
.form-horizontal .title {
 font-size: 30px;
 color: #6EACDD;
}
.form-horizontal h1.title {
 font-size: clamp(1.5rem, 2vw, 3rem);
}
.form-horizontal h2.title {
 font-size: clamp(1.2rem, 2vw, 1.8rem);
}
.form-horizontal .sub-title {
 font-size: clamp(1rem, 2vw, 1.5rem);
 color: #6EACDD;
}
.form-horizontal legend {
 border-bottom: none;
}
.form-horizontal .input-group-addon .fa {
 position: absolute;
 top: 14px;
 left: 0;
 width: 45px;
 text-align: center;
 color: #6EACDD;
}
.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: #6EACDD;
}
.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: #6EACDD;
 border-color: #6EACDD;
 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: #6EACDD;
}
/* 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: rgba(0, 0, 0, 0.25);
 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: #6EACDD;
}
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: #85C778;
}
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: #6EACDD;
 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 */
#forma_pagamento_div .control-label {
 text-align: left;
 margin-bottom: 20px;
}
.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-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.05rem;
 line-height: 1;
 padding: 1.75rem 3.5rem 1.75rem 3.5rem;
 margin-left: 0.5rem;
 margin-right: 0.5rem;
 margin-bottom: 2rem;
 background-color: #6EACDD;
 border: none;
 border-radius: 0.5rem;
 box-shadow: none;
 color: #FFF;
}
.btn:after {
 position: absolute;
 top: 50%;
 right: 0;
 content: "";
 width: 20px;
 height: 3px;
 background-color: #85C778;
 -webkit-transition: all 0.5s ease-in-out;
 -moz-transition: all 0.5s ease-in-out;
 transition: all 0.5s ease-in-out;
}
.btn.btn-primary:hover::after {
 right: -20px;
 background-color: #ee3338;
}
.btn:hover, .btn.active, .btn:active, .btn:hover, .open > .dropdown-toggle.btn {
 background-color: #85C778;
 color: #FFF;
}
.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 #6EACDD;
 border-bottom: 2px solid #6EACDD;
 -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: #6EACDD;
 border-left: 2px solid #6EACDD;
 border-bottom: 2px solid #6EACDD;
}
.btn .fa {
 margin: 0 5px 0 15px;
}
.btn-custom {
 display: inline-block !important;
 float: left;
 margin-bottom: 5px;
 border-color: #6EACDD;
 color: #6EACDD;
}
/* Sidebar */
.form-sidebar {
 border: 1px solid #DDD;
 border-left: 4px solid #6EACDD;
 background-color: transparent;
 padding-left: 25px;
 padding-right: 25px;
 padding-bottom: 10px;
}
.form-sidebar .sub-title {
 font-size: clamp(1.2rem, 2vw, 1.8rem);
 color: #6EACDD;
 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: #6EACDD;
}
.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: #6EACDD;
 -webkit-border-radius: 100%;
 -moz-border-radius: 100%;
 -o-border-radius: 100%;
 border-radius: 100%;
 border: 3px solid #6EACDD;
}
.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;
}
/* ==================================================
   Product Panel
================================================== */
.panel {
 position: relative;
 margin-bottom: 5rem;
 border: 1px solid #DDD;
 border-top: none;
 border-bottom: none;
 border-radius: 0;
 outline: none;
 box-shadow: none;
 -webkit-transition: all 0.25s ease;
 -moz-transition: all 0.25s ease;
 -o-transition: all 0.25s ease;
 transition: all 0.25s ease;
}
.panel .head-line {
 height: 6px;
 background-color: #85C778;
}
.panel:hover .head-line {
 background-color: #6EACDD;
}
.panel .head-slider {
 height: 200px;
}
.panel .head-images {
 position: relative;
 width: 100%;
 height: 100%;
 text-align: center;
 overflow: hidden;
}
.panel .head-images img {
 position: absolute;
 top: 50%;
 left: 0;
 transform: translateY(-50%);
 border: none;
 width: 100%;
 height: auto;
}
.panel .product-select {
 position: relative;
 display: flex;
 border-bottom: 2px solid #fff;
 background-color: #f2f2f2;
}
.panel .product-select:before {
 position: absolute;
 left: 35px;
 top: 15px;
 font-family: 'FontAwesome';
 content: "\f061";
}
.panel .product-select select {
 font-size: 18px;
 width: 100%;
 height: 50px;
 padding: 10px 30px 10px 70px;
 background-color: #fff;
 border: none;
 appearance: none;
 cursor: pointer;
}
.panel .product-guide {
 position: relative;
 font-size: 18px;
 width: 100%;
 height: 50px;
 padding: 10px 30px 10px 75px;
 background-color: #f2f2f2;
 border: none;
}
.panel .product-guide:before {
 position: absolute;
 left: 30px;
 top: 12px;
 font-family: 'FontAwesome';
 content: "\f278";
}
.panel .product-guide a {
 color: inherit;
 text-decoration: none;
 line-height: 1;
}
.panel .product-info {
 padding: 2.5rem;
 text-align: center;
}
.panel .product-info h1 {
 font-size: 20px;
 text-transform: uppercase;
 margin-bottom: 0;
 color: #6EACDD;
}
.panel .product-info h2 {
 font-size: 18px;
 margin-top: 5px;
 margin-bottom: 20px;
}
.panel .product-action {
 position: relative;
 display: flex;
 background-color: #f2f2f2;
 border-bottom: 2px solid #fff;
}
.panel .product-action a {
 display: block;
 width: 100%;
 padding: 15px 0;
 text-align: center;
 text-decoration: none;
 text-transform: uppercase;
 font-size: 16px;
 color: white;
}
.panel .product-action a:hover {
 text-decoration: none;
 opacity: .9;
}
.panel .product-action a:first-child {
 background-color: #337ab7;
}
.panel .product-action a:last-child {
 background-color: #6EACDD;
}
.panel .control {
 display: block;
 position: relative;
 padding: 15px 15px 15px 0px;
 cursor: pointer;
 font-size: 18px;
}
.panel .control input {
 position: absolute;
 z-index: -1;
 opacity: 0;
}
.panel .control__indicator {
 position: absolute;
 top: 17px;
 left: -42px;
 height: 20px;
 width: 20px;
 background: #fff;
}
.panel .control--radio .control__indicator {
 border-radius: 50%;
 border: 1.5px solid #333;
}
.panel .control:hover input ~ .control__indicator, .panel .control input:focus ~ .control__indicator {
 background: #85C778;
}
.panel .control input:checked ~ .control__indicator {
 background: #6EACDD;
 border: 1.5px solid #6EACDD;
}
.panel .control:hover input:not([disabled]):checked ~ .control__indicator, .panel .control input:checked:focus ~ .control__indicator {
 background: #6EACDD;
}
.panel .control input:disabled ~ .control__indicator {
 background: #e6e6e6;
 opacity: 0.6;
 pointer-events: none;
}
.panel .control__indicator:after {
 content: '';
 position: absolute;
 display: none;
}
.panel .control input:checked ~ .control__indicator:after {
 display: block;
}
.panel .control--checkbox .control__indicator:after {
 left: 8px;
 top: 4px;
 width: 3px;
 height: 8px;
 border: solid #fff;
 border-width: 0 2px 2px 0;
 transform: rotate(45deg);
}
.panel .control--checkbox input:disabled ~ .control__indicator:after {
 border-color: #7b7b7b;
}
.panel .control--radio .control__indicator:after {
 left: 6px;
 top: 6px;
 height: 5.5px;
 width: 5.5px;
 border-radius: 50%;
 background: #fff;
}
.panel .control--radio input:disabled ~ .control__indicator:after {
 background: #7b7b7b;
}
.panel .product-link {
 display: inline-block;
 background-color: #FFF;
 color: #6EACDD;
 padding: 10px 15px;
 line-height: 1;
 border: 1px solid #6EACDD;
 text-decoration: none;
 text-transform: uppercase;
}
.panel .product-link:hover {
 background-color: #6EACDD;
 border-color: #6EACDD;
 color: #fff;
}
.panels .modal.fade .modal-dialog {
 left: 50%;
 top: 50%;
 -webkit-transform: translateX(-50%) translateY(-50%);
 -moz-transform: translateX(-50%) translateY(-50%);
 -ms-transform: translateX(-50%) translateY(-50%);
 -o-transform: translateX(-50%) translateY(-50%);
 transform: translateX(-50%) translateY(-50%);
}
.panels .modal-header {
 padding: 0;
 height: 0;
 min-height: 0;
 border-bottom: none;
}
.panels .modal-header .close {
 top: 10px;
 right: 10px;
 width: 36px;
 height: 36px;
 line-height: 36px;
 border-radius: 50%;
 background-color: #85C778;
 font-size: 2.5rem;
 color: #6EACDD;
 opacity: 1;
 z-index: 999;
}
.panels .modal-header .close:hover {
 background-color: #6EACDD;
 color: #fff;
}
.panels .modal-body img {
 border: 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 #6EACDD;
 background-color: #6EACDD;
 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 #6EACDD;
}
.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: #6EACDD;
}
.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: #6EACDD;
 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: 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;
 }
 .panel .modal.fade .modal-dialog {
  height: 100%;
  width: 100%;
 }
}
@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;
 }
 .panel .modal.fade .modal-dialog {
  height: 100%;
  width: 100%;
 }
}
@media only screen and (min-width:768px) and (max-width:991px) {}
@media only screen and (min-width:992px)and (max-width:1024px) {}