html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background: #e6e6e6;
	font-size: 16px;
	line-height: 1.5;
	font-family: "Roboto Condensed", Arial, sans-serif;
	color: #555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-smoothing: antialiased;
	color: #222;
	font-weight: 700;
}
.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.h3, h3 {
    font-size: 24px;
}

.h4, h4 {
    font-size: 18px;
}
.h5, h5 {
    font-size: 14px;
}

p {
	margin-bottom: 25px;
}

p.lead {
	font-weight: 400;
	font-size: 24px;
	color: #333;
	margin-bottom: 35px;
}

p.lead.styled {
	text-align: center;
	font-size: 18px;
	padding: 0 10%;
	margin-bottom: 45px;
}

hr {
	margin: 15px 0 30px 0;
	border-color: #ededed;
}

h2.main_title {
	text-align: center;
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 42px;
	color: #F60;
	text-transform: uppercase;
}

h2.main_title span {
	display: block;
	color: #999;
	font-size: 24px;
	text-transform: none;
}

h2.main_title em {
	display: block;
	width: 40px;
	height: 4px;
	background-color: #ededed;
	margin: auto;
	-webkit-border-radius: 5 px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 20px;
}

/*General links color*/
a {
	color: #409fff;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	outline: none;
}

a:hover,
a:focus {
	color: #333;
	text-decoration: none;
	outline: none;
}

a.animated_link {
	position: relative;
	text-decoration: none;
}

a.animated_link:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -5px;
	opacity: 1;
	left: 0;
	background-color: #333;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

a.animated_link:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

a.animated_link_2 {
	position: relative;
	text-decoration: none;
	color: #555;
}

a.animated_link_2:hover {
	color: #111;
}

a.animated_link_2:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: -5px;
	opacity: 1;
	left: 0;
	background-color: #111;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

a.animated_link_2:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

/*-------- 1.2 Buttons --------*/
a.btn_start,
.btn_1 {
	border: none;
	font-family: inherit;
	font-size: inherit;
	color: #fff;
	background: #3f9fff;
	cursor: pointer;
	padding: 7px 15px;
	display: inline-block;
	outline: none;
	font-size: 15px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-weight: 400;
}

a.btn_start:hover,
.btn_1:hover {
	background: #333;
}

a.close_in {
	font-size: 36px;
	position: absolute;
	top: 10px;
	left: 20px;
	color: #ccc;
}

a.close_in:hover {
	color: #111;
}

#container {
	background-color: #fff;
	width: 100%;
	min-height: 460px;
	margin: 60px auto 60px;
}

#left_form {
	background-color: #F60;
	min-height: 460px;
	color: #fff;
	text-align: center;
	padding: 70px 50px 30px 50px;
	box-sizing: border-box;
	position: relative;
}

#left_form h2 {
	font-weight: 300;
	color: #fff;
	margin: 15px 0 0 0;
	padding: 0;
	font-size: 36px;
	margin-bottom: 15px;
}

#left_form p {
	font-size: 16px;
}

a#more_info {
	width: 26px;
	height: 26px;
	color: #fff;
	position: absolute;
	line-height: 1;
	left: 15px;
	bottom: 15px;
	z-index: 2;
	font-size: 26px;
}

/*-------- 2.3 Wizard quote--------*/
input#website {
	display: none;
}

#container {
	position: relative;
	min-height: 450px;
}

h3.main_question {
	margin: 0 0 20px 0;
	padding: 0;
	font-weight: 400;
	font-size: 26px;
}

h3.main_question strong {
	display: block;
	color: #999;
	font-size: 18px;
	margin-bottom: 5px;
	font-weight: 400;
}

/* Wizard Buttons*/
button.btn_prev,
button.btn_next,
button.submit {
	border: none;
	color: #fff;
	padding: 7px 20px;
	text-decoration: none;
	transition: background .5s ease;
	-moz-transition: background .5s ease;
	-webkit-transition: background .5s ease;
	-o-transition: background .5s ease;
	display: inline-block;
	cursor: pointer;
	font-weight: 400;
	outline: none;
	text-align: center;
	background: #409fff;
	position: relative;
	font-size: 15px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	line-height: 1;
	padding: 10px 30px 10px 30px;
}

button.btn_prev {
	color: #333;
	background: #e8e8e8;
	padding: 10px 20px 10px 30px;
}

button.btn_next,
button.submit {
	padding: 10px 30px 10px 20px;
}

button[disabled] {
	display: none;
}

button.btn_prev:before {
	content: "\34";
	font-family: 'ElegantIcons';
	position: absolute;
	top: 8px;
	left: 12px;
	font-size: 18px;
}

button.btn_next:before {
	content: "\35";
	font-family: 'ElegantIcons';
	position: absolute;
	top: 8px;
	right: 10px;
	font-size: 18px;
}

button.submit:before {
	content: "\4e";
	font-family: 'ElegantIcons';
	position: absolute;
	top: 8px;
	right: 10px;
	font-size: 18px;
}

.btn_prev:hover,
.btn_next:hover {
	background: #0073e5;
	color: #fff;
}

#top-wizard {
	margin-left: -30px;
}

#middle-wizard {
	padding: 45px 45px 30px 15px;
}

#bottom-wizard {
	text-align: right;
	position: absolute;
	width: 100%;
	bottom: 25px;
	right: 45px;
}

.ui-widget {}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {}

.ui-widget-content {}

.ui-widget-content a {
	color: #222222;
}

.ui-widget-header {
	background: #6C3;
}

.ui-widget-header a {
	color: #222222;
}

.ui-progressbar {
	height: 5px;
	width: 100%;
}

.ui-progressbar .ui-progressbar-value {
	height: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

span.error {
	font-size: 12px;
	position: absolute;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	top: -20px;
	right: -15px;
	z-index: 2;
	height: 25px;
	line-height: 1;
	background-color: #e34f4f;
	color: #fff;
	font-weight: normal;
	display: inline-block;
	padding: 6px 8px;
}

span.error:after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 0 6px 6px 0;
	border-color: transparent #e34f4f;
	display: block;
	width: 0;
	z-index: 1;
	bottom: -6px;
	left: 20%;
}

.radio_input span.error {
	top: -30px;
}

.styled-select span.error {
	top: -20px;
}

.terms span.error {
	top: -30px;
}

.questionGroup {
	position: relative;
}

.questionGroup i {
	font-size: 20px;
	position: absolute;
	right: 0;
	top: 10px;
	color: #ccc;
}

.questionGroup label {
	font-weight: 400;
	color: #222;
}

.questionGroup.radio_questions label {
	border: 2px solid #e8ebed;
	display: block;
	font-weight: 400;
	padding: 15px 45px 15px 15px;
	box-sizing: content-box;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	color: #555;
	background-color: #fff;
}

.questionGroup.checkbox_questions label {
	font-weight: 400;
	cursor: pointer;
	color: #555;
}

.questionGroup.radio_questions .iradio_square-yellow {
	position: absolute;
	top: 17px;
	right: 15px;
}

.questionGroup.checkbox_questions .icheckbox_square-yellow {
	margin-right: 10px;
}

.questionGroup.radio_questions label:hover {
	border: 2px solid #ffcc33;
}

.questionGroup.select {
	margin-bottom: 30px;
}

.styled-select select {
	background: transparent;
	width: 107%;
	padding: 5px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	height: 41px;
	color: #999;
	margin: 0;
	line-height: 1;
	font-weight: 400;
	-moz-appearance: window;
	-webkit-appearance: none;
	cursor: pointer;
	outline: none;
}

.styled-select select:focus {
	color: #555;
}

.styled-select {
	width: 100%;
	overflow: hidden;
	height: 44px;
	box-sizing: border-box;
	line-height: 1px!important;
	background: #fff url(../img/arrow_down.svg) no-repeat right center;
	border: 0;
	border-bottom: 2px solid #e8ebed;
	border-radius: 0;
}

.styled-select select::-ms-expand {
	display: none;
}

.styled-select select:focus {
	outline: none;
	box-shadow: none;
}

.form-control::-moz-placeholder {
	color: #999;
	opacity: 1;
}

.form-control::-webkit-input-placeholder {
	color: #999;
}

input.form-control,
select.form-control,
textarea.form-control {
	background: none;
	background-color: #fff;
	border: none;
	border-bottom: 2px solid #e8ebed;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	color: #000;
	height: 44px;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 25px;
	padding: 6px 12px 6px 0;
}

input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
	border-color: #777;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #555;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

input.form-control#check_in,
input.form-control#check_out {
	background: #fff url(../img/calendar.svg) no-repeat right center;
}

.radio_input {
	margin-top: 10px;
}

.radio_input label {
	padding-left: 0;
	margin-right: 15px;
	color: #999;
}

#sub_content_in {
	display: table-cell;
	padding: 45px 15% 0 15%;
	vertical-align: middle;
	text-align: center;
	background: rgba(0, 0, 0, 0.4);
}

#sub_content_in h1 {
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 42px;
	margin-bottom: 0;
}

#sub_content_in p {
	color: #fff;
	font-size: 24px;
	font-weight: 300;
}

.container_styled_1 {
	background: #f9f9f9;
}

.team-item-img {
	position: relative;
}

.team-item-img .team-item-detail {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.80);
	text-align: center;
	color: #fff;
	display: -webkit-flex;
	display: flex;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
}

.team-item:hover .team-item-detail {
	opacity: 1;
	visibility: visible;
}

.team-item-img .team-item-detail .team-item-detail-inner {
	margin: auto;
	padding: 25px;
}

.team-item-detail-inner h4 {
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
}

.team-item-detail-inner .social {
	margin: 0 0px 25px 0px;
	padding: 0px;
}

.team-item-detail-inner .social li {
	list-style: none;
	display: inline-block;
	margin: 0px 5px;
}

.team-item-detail-inner .social li a {
	color: #fff;
}

.team-item-detail-inner .social li a:hover {
	color: #ed5434;
}

.team-item-info {
	padding-top: 15px;
	text-align: center;
}

.team-item-info h4 {
	margin-bottom: 0px;
	text-transform: uppercase;
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
	background-color: #fff;
	z-index: 999999;
}

[data-loader="circle-side"] {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	-webkit-animation: circle infinite .95s linear;
	-moz-animation: circle infinite .95s linear;
	-o-animation: circle infinite .95s linear;
	animation: circle infinite .95s linear;
	border: 2px solid #333;
	border-top-color: rgba(0, 0, 0, .2);
	border-right-color: rgba(0, 0, 0, .2);
	border-bottom-color: rgba(0, 0, 0, .2);
	border-radius: 100%;
}

#loader_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 999999;
  display: none;
}

[data-loader="circle-side-2"] {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	-webkit-animation: circle infinite .95s linear;
	-moz-animation: circle infinite .95s linear;
	-o-animation: circle infinite .95s linear;
	animation: circle infinite .95s linear;
	border: 2px solid #333;
	border-top-color: rgba(0, 0, 0, .2);
	border-right-color: rgba(0, 0, 0, .2);
	border-bottom-color: rgba(0, 0, 0, .2);
	border-radius: 100%;
}

@-webkit-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.panel {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #ededed;
}

.panel-title a {
	display: block;
	color: #444;
}

.panel-default>.panel-heading {
	background-color: #fff;
	padding: 20px;
	border-bottom: 1px solid #ddd;
}

.panel-heading {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.panel-group .panel {
	border-radius: 0;
}

.panel-body {
	padding: 30px;
	line-height: 1.6 !important;
}

.panel-title a .indicator {
	color: #409fff;
}

.panel-title a:hover .indicator {
	color: #333;
}

.add_bottom_15 {
	margin-bottom: 15px;
}

.add_bottom_30 {
	margin-bottom: 30px;
}

.add_bottom_45 {
	margin-bottom: 45px;
}

.add_bottom_60 {
	margin-bottom: 60px;
}

.add_bottom_75 {
	margin-bottom: 75px;
}

.add_top_20 {
	margin-top: 20px;
}

.add_top_30 {
	margin-top: 30px;
}

.add_top_60 {
	margin-top: 60px;
}

.more_padding_left {
	padding-left: 40px;
}

.nomargin_top {
	margin-top: 0;
}

.nopadding {
	margin: 0 !important;
	padding: 0 !important;
}

.nomargin {
	margin: 0 !important;
}

.margin_60 {
	padding-top: 60px;
	padding-bottom: 60px;
}

.margin_60_35 {
	padding-top: 60px;
	padding-bottom: 35px;
}

ul.list_ok {
	list-style: none;
	margin: 0 0 25px 0;
	padding: 0;
	line-height: 1.3;
}

ul.list_ok li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
}

ul.list_ok li:before {
	font-family: 'ElegantIcons';
	content: "\52";
	position: absolute;
	left: 0;
	top: -3px;
	font-size: 21px;
	color: #409fff;
}


/*Quantity incrementer inpu*/

.qty-buttons {
	position: relative;
	width: 100%;
	height: 38px;
	display: inline-block;
	margin-bottom: 20px;
}

input.qty {
	width: 100%;
}

input.qtyminus,
input.qtyplus {
	position: absolute;
	width: 32px;
	height: 22px;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	border-radius: 0
}

input.qtyplus {
	background: #fff url(../img/plus.png) no-repeat center center;
	right: 25px;
	top: 10px;
	text-indent: -9999px;
	box-shadow: none;
}

input.qtyminus {
	background: #fff url(../img/minus.png) no-repeat center center;
	right: -5px;
	top: 10px;
	text-indent: -9999px;
	box-shadow: none;
}


/*-------- 2.5 Success submit --------*/

#success {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 190px;
	margin-top: -85px;
	margin-left: -150px;
	text-align: center;
}

#success h4 {
	margin: 0;
}

#success h4 span {
	display: block;
	font-size: 24px;
}

@-webkit-keyframes checkmark {
	0% {
		stroke-dashoffset: 50px
	}
	100% {
		stroke-dashoffset: 0
	}
}

@-ms-keyframes checkmark {
	0% {
		stroke-dashoffset: 50px
	}
	100% {
		stroke-dashoffset: 0
	}
}

@keyframes checkmark {
	0% {
		stroke-dashoffset: 50px
	}
	100% {
		stroke-dashoffset: 0
	}
}

@-webkit-keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 240px
	}
	100% {
		stroke-dashoffset: 480px
	}
}

@-ms-keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 240px
	}
	100% {
		stroke-dashoffset: 480px
	}
}

@keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 240px
	}
	100% {
		stroke-dashoffset: 480px
	}
}

.inlinesvg .svg svg {
	display: inline
}

.icon--order-success svg path {
	-webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
	animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon--order-success svg circle {
	-webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
	animation: checkmark-circle 0.6s ease-in-out backwards
}

.table-striped>tbody>tr:nth-child(odd)>td, tr.found {
	background-color:#FFFFFF;
}

#welcomeHolder {
	padding: 80px;
	padding-bottom: 40px;
}

div#container.container {
	padding: 0px;
}

div.questionGroups {
	padding: 20px;
	padding-top: 0px;
	border: 0px;
	outline: none;
}

h1 {
	display: none;
}

.table tbody tr:hover td,
.table tbody tr:hover th {
	background-color: #FFFFFF;
}

.table-striped tbody r:nth-child(odd):hover td {
	background-color: #FFFFFF;
}

div#surveyBtns {
	padding: 20px;
}

.form-control:disabled, .form-control[readonly] {
	background-color: #FFF;
}

#ans_612 {
	margin-top: 100px;
	display: none;
}

