@font-face {
    font-family: FontAwesome;
    src: url("font-awesome.css");
}

.jsform {
	margin: 0;
	outline: none;
	box-shadow: 0 0 20px rgba(0,0,0,.3);
	font: 15px/1.55 "Noto Sans", sans-serif;
	color: #666;
}
.jsform header {
	display: block;
	padding: 20px 30px;	
	border-bottom: 1px solid rgba(0,0,0,.1);
	background: #fff7f7;
	font-size: 25px;
	font-weight: 300;
	color: #232323;
}
.jsform fieldset {
	display: block;	
	padding: 25px 30px 5px;
	border: none;
	background: rgba(255,255,255,1);
}
.jsform fieldset + fieldset {
	border-top: 1px solid rgba(0,0,0,.1);
}
.jsform section {
	margin-bottom: 30px;
}
.jsform footer {
	display: block;
	padding: 15px 30px 25px;
	border-top: 1px solid rgba(0,0,0,.1);
	background: #fff7f7;
}
.jsform footer:after {
	content: '';
	display: table;
	clear: both;
}
.jsform a {
	color: #2da5da;
}
.jsform .label {
	display: block;
	margin-bottom: 6px;
	line-height: 19px;
	font-weight: 400;
}
.jsform .label.col {
	margin: 0;
	padding-top: 10px;
}
.jsform .note {
	margin-top: 6px;
	padding: 0 1px;
	font-size: 11px;
	line-height: 15px;
	color: #999;
}
.jsform .input,
.jsform .select,
.jsform .textarea,
.jsform .radio,
.jsform .checkbox,
.jsform .toggle,
.jsform .button {
	position: relative;
	display: block;
}
.jsform .input input,
.jsform .select select,
.jsform .textarea textarea {
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	height: 50px;
	padding: 10px 16px;
	outline: none;
	border-width: 2px;
	border-style: solid;
	border-radius: 8px;
	background: #fff;
	font: 15px/23px "Noto Sans", sans-serif;
	color: #404040;
	appearance: auto;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.jsform .progress {
	float: right;
	margin-top: 10px;
	line-height: 39px;
	color: #232323;
}
.jsform button::-moz-focus-inner {
	padding: 0;
	border: 0;
}


/**/
/* captcha inputs */
/**/
.jsform .input-captcha img {
	position: absolute;
	top: 2px;
	right: 2px;
	border-left: 1px solid #e5e5e5;
}


/**/
/* file inputs */
/**/
.jsform .input-file .button {
    position: absolute;
    top: 5px;
    right: 7px;
    float: none;
    height: 36px;
    margin: 0;
    padding: 0 20px;
    font-size: 13px;
    line-height: 36px;
    border-radius: 6px;
}
.jsform .input-file .button:hover {
	box-shadow: none;
}
.jsform .input-file .button input {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	font-size: 30px;
	cursor: pointer;
	opacity: 0;
}


/**/
/* selects */
/**/
.jsform .select i {
	position: absolute;
	top: 8px;
	right: 9px;
	width: 28px;
	height: 35px;
	background: #fff;
	pointer-events: none;
}
.jsform .select i:after,
.jsform .select i:before {
	content: '';
	position: absolute;
	right: 16px;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.jsform .select i:after {
	bottom: 12px;
	border-top: 4px solid #404040;
}
.jsform .select i:before {
	top: 12px;
	border-bottom: 4px solid #404040;
}
.jsform .select select {
	padding-right: 28px;
}
.jsform .select-multiple select {
	height: auto;
}


/**/
/* textareas */
/**/
.jsform .textarea textarea {
	height: auto;
	resize: none;
}
.jsform .textarea-resizable textarea {
	resize: vertical;	
}
.jsform .textarea-expandable textarea {
	height: 39px;
}
.jsform .textarea-expandable textarea:focus {
	height: auto;
}


/**/
/* radios and checkboxes */
/**/
.jsform .radio,
.jsform .checkbox {
	margin-bottom: 4px;
	padding-left: 27px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
}
.jsform .radio:last-child,
.jsform .checkbox:last-child {
	margin-bottom: 0;
}
.jsform .radio input,
.jsform .checkbox input {
	position: absolute;
	left: -9999px;
}
.jsform .radio i,
.jsform .checkbox i {
	position: absolute;
	top: 5px;
	left: 0;
	display: block;
	width: 13px;
	height: 13px;
	outline: none;
	border-width: 2px;
	border-style: solid;
	background: #fff;
}
.jsform .radio i {
	border-radius: 50%;
}
.jsform .radio input + i:after,
.jsform .checkbox input + i:after {
	position: absolute;
	opacity: 0;
	-ms-transition: opacity 0.1s;
	-moz-transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
}
.jsform .radio input + i:after {
	content: '';
	top: 4px;
	left: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}
.jsform .checkbox input + i:after {
	content: '\f00c';
	top: -1px;
	left: -1px;
	width: 15px;
	height: 15px;
	font: normal 12px/16px FontAwesome;
	text-align: center;
}
.jsform .radio input:checked + i:after,
.jsform .checkbox input:checked + i:after {
	opacity: 1;
}
.jsform .inline-group {
	margin: 0 -30px -4px 0;
}
.jsform .inline-group:after {
	content: '';
	display: table;
	clear: both;
}
.jsform .inline-group .radio,
.jsform .inline-group .checkbox {
	float: left;
	margin-right: 30px;
}
.jsform .inline-group .radio:last-child,
.jsform .inline-group .checkbox:last-child {
	margin-bottom: 4px;
}


/**/
/* toggles */
/**/
.jsform .toggle {
	margin-bottom: 4px;
	padding-right: 61px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
}
.jsform .toggle:last-child {
	margin-bottom: 0;
}
.jsform .toggle input {
	position: absolute;
	left: -9999px;
}
.jsform .toggle i {
	content: '';
	position: absolute;
	top: 4px;
	right: 0;
	display: block;
	width: 49px;
	height: 17px;
	border-width: 2px;
	border-style: solid;
	border-radius: 12px;
	background: #fff;
}
.jsform .toggle i:after {
	content: 'NÃO';
	position: absolute;
	top: 2px;
	right: 8px;
	left: 8px;
	font-style: normal;
	font-size: 9px;
	line-height: 13px;
	font-weight: 700;
	text-align: left;
	color: #5f5f5f;
}
.jsform .toggle i:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 4px;
	right: 4px;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	opacity: 1;
	-ms-transition: right 0.2s;
	-moz-transition: right 0.2s;
	-webkit-transition: right 0.2s;
}
.jsform .toggle input:checked + i:after {
	content: 'SIM';
	text-align: right;
}
.jsform .toggle input:checked + i:before {
	right: 36px;
}


/**/
/* ratings */
/**/
.jsform .rating {
	margin-bottom: 4px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
}
.jsform .rating:last-child {
	margin-bottom: 0;
}
.jsform .rating input {
	position: absolute;
	left: -9999px;
}
.jsform .rating label {
	display: block;
	float: right;
	height: 17px;
	margin-top: 5px;
	padding: 0 2px;
	font-size: 17px;
	line-height: 17px;
	cursor: pointer;
}


/**/
/* buttons */
/**/
.jsform .button {
	float: right;
	height: 39px;
	overflow: hidden;
	margin: 10px 0 0 20px;
	padding: 0 25px;
	outline: none;
	border: 2px solid;
    border-radius: 8px;
	font: 400 15px/39px "Noto Sans", sans-serif;
	text-decoration: none;
	cursor: pointer;
    background-color: #fff;
}
.jsform .button-uploading {
	position: relative;
	color: transparent;
	cursor: default;
}
.jsform .button-uploading:after {
	content: 'Uploading...';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	-o-animation: blink 1s linear infinite;
	-ms-animation: blink 1s linear infinite;
	-moz-animation: blink 1s linear infinite; 
	-webkit-animation: blink 1s linear infinite;
}
@-o-keyframes blink
{
  0% {opacity: 1}
  50% {opacity: 0.3}
  100% {opacity: 1}
}
@-ms-keyframes blink
{
  0% {opacity: 1}
  50% {opacity: 0.3}
  100% {opacity: 1}
}
@-moz-keyframes blink
{
  0% {opacity: 1}
  50% {opacity: 0.3}
  100% {opacity: 1}
}
@-webkit-keyframes blink
{
  0% {opacity: 1}
  50% {opacity: 0.3}
  100% {opacity: 1}
}


/**/
/* icons */
/**/
.jsform .icon-append,
.jsform .icon-prepend {
	position: absolute;
	top: 9px;
	width: 29px;
	height: 29px;
	font-size: 15px;
	line-height: 29px;
	text-align: center;
}
.jsform .icon-append {
	right: 5px;
	padding-left: 3px;
	border-left-width: 1px;
	border-left-style: solid;
}
.jsform .icon-prepend {
	left: 5px;
	padding-right: 3px;
	border-right-width: 1px;
	border-right-style: solid;
}
.jsform .input .icon-prepend + input,
.jsform .textarea .icon-prepend + textarea {
	padding-left: 46px;
}
.jsform .input .icon-append + input,
.jsform .textarea .icon-append + textarea {
	padding-right: 46px;
}
.jsform .input .icon-prepend + .icon-append + input,
.jsform .textarea .icon-prepend + .icon-append + textarea {
	padding-left: 46px;
}


/**/
/* grid */
/**/
.jsform .row {
	margin: 0 -15px;
}
.jsform .row:after {
	content: '';
	display: table;
	clear: both;
}
.jsform .col {
	float: left;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.jsform .col-1 {
	width: 8.33%;
}
.jsform .col-2 {
	width: 16.66%;
}
.jsform .col-3 {
	width: 25%;
}
.jsform .col-4 {
	width: 33.33%;
}
.jsform .col-5 {
	width: 41.66%;
}
.jsform .col-6 {
	width: 50%;
}
.jsform .col-7 {
	width: 58.33%;
}
.jsform .col-8 {
	width: 66.67%;
}
.jsform .col-9 {
	width: 75%;
}
.jsform .col-10 {
	width: 83.33%;
}
.jsform .col-11 {
	width: 91.66%;
}
@media screen and (max-width: 600px) {
	.jsform .col {
		float: none;
		width: 100%;
	}
}


/**/
/* tooltips */
/**/
.jsform .tooltip {
	position: absolute;
	z-index: 1;
	left: -9999px;
	padding: 2px 8px 3px;
	font-size: 11px;
	line-height: 16px;
	font-weight: 400;
	background: rgba(0,0,0,0.9);
	color: #fff;
	opacity: 0;
	-ms-transition: margin 0.3s, opacity 0.3s;
	-moz-transition: margin 0.3s, opacity 0.3s;
	-webkit-transition: margin 0.3s, opacity 0.3s;
}
.jsform .tooltip:after {
	content: '';
	position: absolute;
}
.jsform .input input:focus + .tooltip,
.jsform .textarea textarea:focus + .tooltip {
	opacity: 1;	
}

.jsform .tooltip-top-right {
	bottom: 100%;
	margin-bottom: 15px;
}
.jsform .tooltip-top-right:after {
	top: 100%;
	right: 16px;	
	border-top: 4px solid rgba(0,0,0,0.9);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.jsform .input input:focus + .tooltip-top-right,
.jsform .textarea textarea:focus + .tooltip-top-right {
	right: 0;
	left: auto;
	margin-bottom: 5px;
}

.jsform .tooltip-top-left {
	bottom: 100%;
	margin-bottom: 15px;
}
.jsform .tooltip-top-left:after {
	top: 100%;
	left: 16px;
	border-top: 4px solid rgba(0,0,0,0.9);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.jsform .input input:focus + .tooltip-top-left,
.jsform .textarea textarea:focus + .tooltip-top-left {
	right: auto;
	left: 0;
	margin-bottom: 5px;
}

.jsform .tooltip-right {
	top: 9px;
	white-space: nowrap;
	margin-left: 15px;
}
.jsform .tooltip-right:after {
	top: 6px;
	right: 100%;
	border-top: 4px solid transparent;
	border-right: 4px solid rgba(0,0,0,0.9);
	border-bottom: 4px solid transparent;
}
.jsform .input input:focus + .tooltip-right,
.jsform .textarea textarea:focus + .tooltip-right {
	left: 100%;
	margin-left: 5px;
}

.jsform .tooltip-left {
	top: 9px;
	white-space: nowrap;
	margin-right: 15px;
}
.jsform .tooltip-left:after {
	top: 6px;
	left: 100%;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid rgba(0,0,0,0.9);
}
.jsform .input input:focus + .tooltip-left,
.jsform .textarea textarea:focus + .tooltip-left {
	right: 100%;
	left: auto;
	margin-right: 5px;
}

.jsform .tooltip-bottom-right {
	top: 100%;
	margin-top: 15px;
}
.jsform .tooltip-bottom-right:after {
	bottom: 100%;
	right: 16px;	
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(0,0,0,0.9);
	border-left: 4px solid transparent;
}
.jsform .input input:focus + .tooltip-bottom-right,
.jsform .textarea textarea:focus + .tooltip-bottom-right {
	right: 0;
	left: auto;
	margin-top: 5px;
}

.jsform .tooltip-bottom-left {
	top: 100%;
	margin-top: 15px;
}
.jsform .tooltip-bottom-left:after {
	bottom: 100%;
	left: 16px;
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(0,0,0,0.9);
	border-left: 4px solid transparent;
}
.jsform .input input:focus + .tooltip-bottom-left,
.jsform .textarea textarea:focus + .tooltip-bottom-left {
	right: auto;
	left: 0;
	margin-top: 5px;
}


/**/
/* normal state */
/**/
.jsform .input input,
.jsform .select select,
.jsform .textarea textarea,
.jsform .radio i,
.jsform .checkbox i,
.jsform .toggle i,
.jsform .icon-append,
.jsform .icon-prepend {
	border-color: #e5e5e5;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}
.jsform .toggle i:before {
	background-color: #2da5da;	
}
.jsform .rating label {
	color: #ccc;
	-ms-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-webkit-transition: color 0.3s;
}
.jsform .button {
	background-color: #fff;
	/*opacity: 0.8;*/
	-ms-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	-webkit-transition: background-color 0.2s;
}
.jsform .button.button-secondary {
	background-color: #fff;
}
.jsform .icon-append,
.jsform .icon-prepend {
	color: #ccc;
}


/**/
/* hover state */
/**/
.jsform .input:hover input,
.jsform .select:hover select,
.jsform .textarea:hover textarea,
.jsform .radio:hover i,
.jsform .checkbox:hover i,
.jsform .toggle:hover i,
.jsform .ui-slider-handle:hover {
	border-color: #8dc9e5;
}
.jsform .rating input + label:hover,
.jsform .rating input + label:hover ~ label {
	color: #2da5da;
}
.jsform .button:hover {
	color: #000;
}


/**/
/* focus state */
/**/
.jsform .input input:focus,
.jsform .select select:focus,
.jsform .textarea textarea:focus,
.jsform .radio input:focus + i,
.jsform .checkbox input:focus + i,
.jsform .toggle input:focus + i {
	border-color: #2da5da;
}


/**/
/* checked state */
/**/
.jsform .radio input + i:after {
	background-color: #2da5da;	
}
.jsform .checkbox input + i:after {
	color: #2da5da;
}
.jsform .radio input:checked + i,
.jsform .checkbox input:checked + i,
.jsform .toggle input:checked + i {
	border-color: #2da5da;	
}
.jsform .rating input:checked ~ label {
	color: #2da5da;	
}


/**/
/* error state */
/**/
.jsform .state-error input,
.jsform .state-error select,
.jsform .state-error select + i,
.jsform .state-error textarea,
.jsform .radio.state-error i,
.jsform .checkbox.state-error i,
.jsform .toggle.state-error i,
.jsform .toggle.state-error input:checked + i {
	background: #fff0f0;
}
.jsform .state-error + em {
	display: block;
	margin-top: 6px;
	padding: 0 1px;
	font-style: normal;
	font-size: 11px;
	line-height: 15px;
	color: #ee9393;
}
.jsform .rating.state-error + em {
	margin-top: -4px;
	margin-bottom: 4px;
}


/**/
/* success state */
/**/
.jsform .state-success input,
.jsform .state-success select,
.jsform .state-success select + i,
.jsform .state-success textarea,
.jsform .radio.state-success i,
.jsform .checkbox.state-success i,
.jsform .toggle.state-success i,
.jsform .toggle.state-success input:checked + i {
	background: #f0fff0;
}
.jsform .state-success + em {
	display: block;
	margin-top: 6px;
	padding: 0 1px;
	font-style: normal;
	font-size: 11px;
	line-height: 15px;
	color: #ee9393;
}
.jsform .note-success {
	color: #6fb679;
}


/**/
/* disabled state */
/**/
.jsform .input.state-disabled input,
.jsform .select.state-disabled,
.jsform .textarea.state-disabled,
.jsform .radio.state-disabled,
.jsform .checkbox.state-disabled,
.jsform .toggle.state-disabled,
.jsform .button.state-disabled {
	cursor: default;
	opacity: 0.5;
}
.jsform .input.state-disabled:hover input,
.jsform .select.state-disabled:hover select,
.jsform .textarea.state-disabled:hover textarea,
.jsform .radio.state-disabled:hover i,
.jsform .checkbox.state-disabled:hover i,
.jsform .toggle.state-disabled:hover i {
	border-color: #e5e5e5;
}


/**/
/* submited state */
/**/
.jsform .message {
	display: none;
	color: #6fb679;
}
.jsform .message i {
	display: block;
	margin: 0 auto 20px;
	width: 81px;
	height: 81px;
	border: 1px solid #6fb679;
	border-radius: 50%;
	font-size: 30px;
	line-height: 81px;
}
.jsform.submited fieldset,
.jsform.submited footer {
	display: none;
}
.jsform.submited .message {
	display: block;
	padding: 25px 30px;
	background: rgba(255,255,255,.9);
	font: 300 18px/27px "Noto Sans", sans-serif;
	text-align: center;
}


/**/
/* datepicker */
/**/
.ui-datepicker {
	display: none;
	padding: 10px 12px;
	background: rgba(255,255,255,1);
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	font: 13px/1.55 "Noto Sans", sans-serif;
	text-align: center;
	color: #666;
}
.ui-datepicker a {
	color: #404040;
}
.ui-datepicker-header {
	position: relative;
	margin: -10px -12px 10px;
	padding: 10px;
	border-bottom: 1px solid rgba(0,0,0,.1);
	font-size: 15px;
	line-height: 27px;
}
.ui-datepicker-prev, 
.ui-datepicker-next {
	position: absolute;
	top: 0;
	display: block;
	width: 47px;
	height: 47px;
	font-size: 15px;
	line-height: 47px;
	text-decoration: none;
	cursor: pointer;
}
.ui-datepicker-prev {
	left: 0;
}
.ui-datepicker-next {
	right: 0;
}
.ui-datepicker-calendar {
	border-collapse: collapse;
	font-size: 13px;
	line-height: 27px;
}
.ui-datepicker-calendar th {
	color: #999;
}
.ui-datepicker-calendar a,
.ui-datepicker-calendar span {
	display: block;
	width: 31px;
	margin: auto;
	text-decoration: none;
	color: #404040;
}
.ui-datepicker-calendar a:hover {
	background: rgba(0,0,0,.05);	
}
.ui-datepicker-calendar span {
	color: #bfbfbf;
}
.ui-datepicker-today a {
	font-weight: 700;
}
.ui-datepicker-calendar .ui-state-active {
	background: rgba(0,0,0,.05);
	cursor: default;	
}
.ui-datepicker-inline {
	border: 2px solid #e5e5e5;
	background: #fff;
	box-shadow: none;
}
.ui-datepicker-inline .ui-datepicker-header {
	line-height: 47px;
}
.ui-datepicker-inline .ui-datepicker-calendar {
	width: 100%;
}


/**/
/* slider */
/**/
.jsform .ui-slider {
	position: relative;
	height: 3px;
	border: 2px solid #e5e5e5;
	background: #fff;
	margin: 12px 6px 26px;
}
.jsform .ui-slider-handle {
	position: absolute;
	width: 15px;
	height: 15px;
	margin: -8px 0 0 -8px;
	border: 2px solid #e5e5e5;
	outline: none;
	background: #fff;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}


/**/
/* modal */
/**/
.jsform-modal {
	position: fixed;
	z-index: 10;
	display: none;
	min-width: 320px;
    border-radius: 12px;
    border: none;
    overflow: hidden;
}
.jsform-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
    z-index: 1;
}


/**/
/* bootstrap compatibility */
/**/
.jsform *,
.jsform *:after,
.jsform *:before {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
}
.jsform .label {
	border-radius: 0;
	font-size: 100%;
	text-align: left;
	white-space: normal;
	color: inherit;
}
.jsform .radio,
.jsform .checkbox {
	font-weight: 400;
}
.jsform .radio + .radio,
.jsform .checkbox + .checkbox {
  margin-top: 0;
}