/* ==== Google font ==== */

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,300italic,400italic,600,600italic,700');
@import url(https://fonts.googleapis.com/css?family=Courgette); /* font-family: 'Courgette', cursive; */

/* ===================================
1. General
==================================== */

body {
  font-family:'Source Sans Pro', sans-serif;
  font-size:18px;
  font-weight:400;
  line-height:1.5;
  height: 100%;
	color:#333;
  background-color: #620CAC;
}

a:active {
	outline:0;
}
a:link {color:#fff;}      /* unvisited link */
a:visited {color:#fff;}  /* visited link */
a:hover {color:#efefef;}  /* mouse over link */
a:active {color:#efefef;}  /* selected link */

a.title:link {color:#fff;}      /* unvisited link */
a.title:visited {color:#fff;}  /* visited link */
a.title:hover {color:#efefef;}  /* mouse over link */
a.title:active {color:#efefef;}  /* selected link */

a.caption1:link {color:#000;}      /* unvisited link */
a.caption1:visited {color:#000;}  /* visited link */
a.caption1:hover {color:#979797;}  /* mouse over link */
a.caption1:active {color:#979797;}  /* selected link */

.clear {
	clear:both;
}

p {
  font-family:'Source Sans Pro', sans-serif;
  line-height: 1.6;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 1.3em;
}

p.yellow {
  color: #B7F200;
  font-family:'Source Sans Pro', sans-serif;
  line-height: 1.6;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 1.3em;
}

em {font-style="italic"}

strong {font-weight: 600;}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
  text-rendering: optimizelegibility;
}

h1 {font-size: 43px;}

.place1 {font-size: 50px; font-family: 'Courgette', cursive;}

h2 {font-size: 32px; color: #000;}

.partial {font-size: 22px; color: #FFCB00; margin-top: 0; margin-bottom: .7em; background-color: #3E0470; padding: 5px; text-align: center; border-radius: 5px;}

.inner {font-size: 30px; color: #FFCB00;}

h3 {font-size: 30px;}

h4 {font-size: 23px;}

h1 a:hover, a:hover h1, h2 a:hover, a:hover h2 {text-decoration: none;} 

textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .commentFeed, .input-append .add-on, .input-prepend .add-on, a, th, td, img, div, section, article, legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  height: 2.1em;
  line-height: 1.4;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #aaa;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #aaa;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #aaa;
}

textarea {resize: vertical;}

textarea.invisibles, input[type="text"].invisibles {
  border: none;
  outline: none;
 /* -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;*/
  -webkit-transition: none;
     -moz-transition: none;
       -o-transition: none;
          transition: none;
}

.checkbox.one-checkbox {margin: 1em 0;}

.corners {border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px;}

.corners-top {border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0;}

.corners-bottom {border-radius: 0 0 4px 4px; -moz-border-radius: 0 0 4px 4px; -webkit-border-radius: 0 0 4px 4px;}

.corners-right {border-radius: 0 4px 4px 0; -moz-border-radius: 0 4px 4px 0; -webkit-border-radius: 0 4px 4px 0;}

.corners-left {border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -webkit-border-radius: 4px 0 0 4px;}

.no-corners {border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0;}

.border-top {border-top: 1px solid #B7F200;}

.border-right {border-right: 1px solid #B7F200;}

.border-bottom {border-bottom: 1px solid #B7F200;}

.border-left {border-left: 1px solid #B7F200;}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
	content: none;
}

iframe, video {
	margin: 0;
	padding: 0;
	border: 0;
  width: 100%;
}

/* ===================================
Transparent colors
==================================== */

.bgWhite-transp {
  /* Fallback for web browsers that doesn't support RGBa */
	background: rgb(255, 255, 255);
	/* RGBa with 0.6 opacity */
	background: rgba(255, 255, 255, 0.7);
	/* For IE 5.5 - 7*/
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99FFFFFF, endColorstr=#99FFFFFF);
	/* For IE 8*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99FFFFFF, endColorstr=#99FFFFFF)";
}

.bgBlack-transp {
	/* Fallback for web browsers that doesn't support RGBa */
	background: rgb(0, 0, 0);
	/* RGBa with 0.6 opacity */
	background: rgba(0, 0, 0, 0.7);
	/* For IE 5.5 - 7*/
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
	/* For IE 8*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

/*Opacity*/

.opacity0 {-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -moz-opacity:0; -khtml-opacity: 0; opacity: 0;}

.opacity5 {-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter: alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;}

.opacity8 {-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter: alpha(opacity=80); -moz-opacity:0.8; -khtml-opacity: 0.8; opacity: 0.8;}

a.opacity0:hover, a.opacity3:hover, a.opacity5:hover, a.opacity8:hover, a .opacity0:hover, a .opacity3:hover, a .opacity5:hover, a .opacity8:hover {
	/*opacity*/
  	opacity: 1;
  	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  	filter: alpha(opacity=100);
  	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}


/* ===================================
colors
==================================== */

.ltpurple-bg {background-color: #620CAC;}

.ltpurple {color: #620CAC;}

.yellowgreen-bg {background-color: #B7F200;}

.yellowgreen {color: #B7F200;}

.dkyellowgreen-bg {background-color: #a4d900;}

.dkyellowgreen {color: #a4d900;}

.gold-bg {background-color: #FFCB00;}

.gold {color: #FFCB00;}

.dkpurple-bg {background-color: #3E0470;}

.dkpurple {color: #3E0470;}

.bg-white {background-color: #fff;}

.white {color: #fff;}

.btn-yellowgreen.active {
  color: rgba(255, 255, 255, 0.75);
}

.btn-yellowgreen {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #B7F200;
  *background-color: #a4d900;
  background-image: -moz-linear-gradient(top, #B7F200, #a4d900);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#B7F200), to(#a4d900));
  background-image: -webkit-linear-gradient(top, #B7F200, #a4d900);
  background-image: -o-linear-gradient(top, #B7F200, #a4d900);
  background-image: linear-gradient(to bottom, #B7F200, #a4d900);
  background-repeat: repeat-x;
  border-color: #a4d900 #a4d900 #602646;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffB7F200', endColorstr='#ffa4d900', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-yellowgreen:hover,
.btn-yellowgreen:active,
.btn-yellowgreen.active,
.btn-yellowgreen.disabled,
.btn-yellowgreen[disabled] {
  color: #ffffff;
  background-color: #a4d900;
  *background-color: #a4d900;
}

.btn-yellowgreen:active,
.btn-yellowgreen.active {
  background-color: #a4d900 \9;
}

.btn-yellowgreen .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

hr {margin: .7em 0; border-top-color: #FACBF4;}



/* ===================================
welcome
==================================== */

/* carousel */

.carousel {overflow: hidden; height: 350px; padding: 3px; border: 1px solid #9D4192; background-color: #fff;}

.carousel-inner {height: 100%;}

.carousel-inner > .item {height: 100%;}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {width: 100%;}

.carousel-caption {bottom: 2em; left: 5em; background: transparent; width: 70%; padding: 0;}

.carousel-caption p {line-height: 1.5; font-family: 'Courgette', cursive; font-size: 36px;}

.carousel-caption p small {font-family: 'Courgette', cursive; font-size: 70%;}

.carousel-control {top: 50%; line-height: 23px;}

/* side categories */

.categories { height: 350px; overflow: hidden;}

.category {
  display: table; 
  width: 100%; 
  height: 23%; 
  font-size: 20px; 
  margin-bottom: 9px;
  background-color: #fff;
  border: 1px solid #3E0470;
  padding: 3px;
}

.categories .category:last-child {margin: 0;}

.category a {
  display: table-cell; 
  background-color: #3E0470;
  padding: .5em;
  color: #FFCB00; 
  text-align: center; 
  width: 100%; 
  height: 100%;
  vertical-align: middle;
}

.category a:hover {text-decoration: none; background-color: #620CAC;}

/* widgets */

.widgets {margin-bottom: 2em;}

.widget h2, .widget a h2 {font-size: 22px; color: #FFCB00; margin-top: 0; margin-bottom: .7em; background-color: #3E0470; padding: 5px; text-align: center; border-radius: 5px;}

.widget a:hover {text-decoration: none;}

.widget img {width: 100%; margin-bottom: .7em;}

.widget p {font-size: 16px;}

.widget a.btn {width: 100%;}

/* subscription home newsletter */

.newsletter {
  background-color: #B7F200;
  background-image: url(https://media.gttwl.com/attachments/regalcruises.gttwl2.com/ltmq6z/1381169821_original.jpg);
  background-repeat:no-repeat;
  background-position: bottom left;
  margin-bottom: 1em;
  padding: 1em .8em;
}

.newsletter form {margin: 0;}

.newsletter input, .newsletter button {width: 100%; margin: 0;}

section.block.newsletter form input[type="text"] {margin-bottom: 1em;}

.newsletter label {text-align: right; font-size: 18px; line-height: 1.4; margin: 0;}

/* welcome message */

section.block.agency-block {margin-bottom: .5em;}

.agency-block p {margin-bottom: 1em; line-height: 1.4;}

.agency-block p:last-child {margin: 0;}

section.block.agency-block .content-section {padding-bottom: 0;}





section.block {margin-bottom: 1.5em;}

.block .listPost h3 {font-size: 20px;}

.block .contentPost {font-size: 17px; margin-bottom: .5em;}

.block .mediaPost, .block .metaPost {margin-bottom: 0;}


.listExperiences {margin-top: 1em;}

.listExperiences .well {display: inline-block; width: 100%;}

.contentExp {display: inline-block; width: 63%; vertical-align: top;}

.experiences-block .mediaPost {width: 30%; margin-right: .5em; margin-top: 0; display: inline-block; vertical-align: top;}

.experiences-block h3 {font-size: 20px; margin-top: 0;}


.block.testimonial-block {margin-top: 1em;}

.block.testimonial-block .well {font-style: italic; color: #000; background-color: #B7F200;}

.block.testimonial-block .well i {margin-right: 10px !important; font-size: 20px;}

.block.testimonial-block .well h3 {margin-top: 0;}

.block.testimonial-block .well h3 a, .block.testimonial-block .well i {color: #222;}


p.titlePost, p.contentPost {margin-bottom: .3em; line-height: 1.4;}

p.titlePost {margin-top: -.3em;}



/* ===================================
layout
==================================== */

.wrap-body {
  width:100%;
  min-height: 100%;
  position: relative;
  margin:0;	
	padding:0;
}

.notification {position: absolute; top: 0; margin: 0; z-index: 9999; width: 100%;}

.navbar, .navbar .nav {margin: 0;}

.wrap-body .main-header {
  position: relative;
}

.main-header {background-color: #3E0470; border-bottom: 8px solid #ltpurple; padding-top: 1em;}

.navbar .brand {
  margin: 0;
  padding: 0 0 10px 20px;
  float: none;
  text-shadow: none;
}

.agency-info {padding-right: 1em; text-align: right; margin-top: -.8em; margin-bottom: .8em;}

.agency-info a {color: #B7F200;}

.agency-info a:hover {text-decoration: none; color: #a4d900;}

.agency-info p {margin: 0;}

.agency-info p:first-child {font-size: 20px;}

.agency-info p:last-child {font-size: 24px;}

.agency-info p:last-child span {padding-right: .5em; border-right: 1px solid #ccc;}

.agency-info p:last-child a {margin-left: .4em;}

.ensemble-logo img {max-height: 50px;}

.wrap-content {margin: 1em 0;}

.wrap-content > section {background-color: #debdfa; padding: 1em 1.5em; border: 1px solid #B7F200;}



.breadcrumb {
  font-size: 14px; 
  background-color: transparent; 
  padding: 0 0 .3em; 
  border-bottom: 1px solid #c46ab9;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  margin-top: -.8em;
  margin-left: -1em;
  margin-right: -1em;
}

.breadcrumb a {color: #B7F200;}


.header-page {padding: 1em; background-color: #B7F200; color: #fff; margin-left:-27px; margin-right: -27px; margin-bottom: 2em;}

.header-page h1 {margin: 0; font-family: 'Courgette', cursive; font-size: 36px; letter-spacing: 3px;}

.header-page p {margin-bottom: 0.3em;}

.top-forms form {margin: 0;}


.navbar .nav.nav-main > li {border-right: 1px solid #e5e5e5; border-left: 1px solid #FFCB00;}

.navbar .nav.nav-main > li > a {color: #FFCB00; height: 70px; padding: 10px;}

.navbar .nav.nav-main > li > a:hover {border-bottom: 7px solid #B7F200;}

.navbar .nav.nav-main {border-left: 1px solid #e5e5e5; border-right: 1px solid #FFCB00; margin-bottom: -7px;}



/* ===============================
Landing pages  
================================ */

.top-banner {
  position: relative; 
  width: 100%; 
  margin-bottom: 2em; 
  height: 280px; 
  overflow: hidden;
  border: 1px solid #3E0470;
  background-clip: border-box;
  background-color: rgba(0, 0, 0, 0);
  background-origin: padding-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-banner > img {width: 100%;}

.head-banner {
  position: absolute;
  top: 2em;
  left: 0;
  z-index: 2;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9), 0 -1px 1px rgba(0, 0, 0, 0.9);
  color: #fff;
  width: 100%;
  padding: 0 4em;
}

.head-banner h2 {font-weight: 600; font-size: 40px; color: #fff;}

.head-banner p {margin-bottom: .6em; line-height: 1.2; font-size: 22px;}

.head-banner form {padding: 1em; margin: 0;}

.head-banner input {width: 100%;}

.head-banner input[type="text"] {
    font-size: 17.5px;
    height: 45px;
    margin: 0;
    padding: 11px 6px;
}

.head-banner .wrap-input .element-input {top: 8px;}

.title {background-color: #620CAC; color: #FFCB00; padding: .3em .8em; width: 100%; text-transform: uppercase; margin-bottom: .5em;}

.title h1 {font-size: 23px; margin: 0; letter-spacing: 3px;}

.videoWrapper {
  position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
  margin-bottom: 1em;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* ===============================
Photo gallery  
================================ */

.photos-gallery {margin: 1em 0; width: 100%; display: inline-block; min-height: 350px;}

.photos-gallery .links a {display: inline-block; width: 20%; margin-left: -3px; vertical-align: top;}

.photos-gallery .links img {width: 100%;}



/* ===============================
Article Post  
================================ */

.listPost h2 {font-size: 32px; font-weight: 600;}

article.post h2 {color: #031944;}

.metaPost {font-size: 15px; color: #999; display: inline-block; width: 100%; margin-bottom: 1em;}

.metaPost a {color: #999; text-decoration: underline;}

.contentPost, .mediaPost {display: inline-block; width: 100%; margin-bottom: 1em;}

.contentPost table {margin: 1em 0; width: 100%;}

.contentPost td {vertical-align: top;}

.contentPost ul, .contentPost ol {margin-left: 20px;}

.contentPost li {width: 100%; margin-top: 10px; line-height: 1.4;}

.contentPost blockquote {margin-top: 1em;}

.contentPost blockquote p {font-size: 19px; line-height: 1.6; margin-bottom: 1em; font-weight: 400; font-style: italic;}

.mediaPost {margin-top: 1em;}

.mediaPost img, .mediPost iframe {width: 100%;}

.more-post, .more-post small {display: block;}

a.more-post {color: #888; text-decoration: underline;}

.offerPost {
  display: inline-block; 
  width: 100%;
  margin: 1em 0;
  padding: 1em 1.5em; 
  color: #fff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.offerPost img {margin-right: 1.5em; width: 20%;}

.offerPost h2 {margin-top: 0; margin-bottom:.1em; font-size: 40px;}

.offerPost p {margin-bottom: 0.5em; font-size: 24px; font-weight: 300;}

.offerPost .btn {font-size: 20px;}



/* ===============================
Right Side Sections
================================ */

.right-side {color: #555;}

.right-side section {margin-bottom: 2em;}

.right-side section.well {padding: 0 19px;}

section.block header {padding: .7em 0 .5em; display: block;}

section.block .content-section {padding: .5em 0 1em; display: block;}

section.block header h2, section.block header h1 {font-size: 25px; margin: 0; color: #9D4192;}

section.block header p {margin-bottom: 0; color: #888; margin-top: .3em;}

section.block .content-section form {margin: 0;}

.simpleList li {margin: .3em 0; display: inline-block; width: 100%; line-height: 1.4;}

.simpleList li:first-child {margin-top: 0;}

.simpleList li:last-child {margin-bottom: 0;}

.simpleList li i {margin-right: .5em;}

.simpleList li img.img-polaroid {width: 100%;}

.right-side section.block .simpleList li a {color: #777; text-decoration: underline;}

.tags {display: inline-block; width: 100%; margin-bottom: .5em;}

.tags a {padding: 3px 8px; background-color: #B7F200; color: #fff; margin-right: .5em; margin-bottom: .5em; display: inline-block; width: auto;}

.tags a:hover {text-decoration: none; background-color: #a4d900;}


.simpleList .btn {width: 100%; margin-top: .7em;}


/* ===============================
Icons
================================ */

.list-icon {color: #555;}

.list-icon a {color: #555; text-decoration: underline;}

.list-icon a i {text-decoration: none;}

.list-icon i {margin-right: .6em !important; font-size: 20px;}

.icon-facebook-sign {font-size:25px;}

.icon-twitter-sign {font-size:25px;}



.priceExp {font-size: 28px;}

.affix .well {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}


/* ===============================
Left Side Sections
================================ */

.left-side section:first-child.block header {padding-top: 0; padding-bottom: 1em;}

.left-side .nav-tabs.nav-stacked > li:first-child > a {border-top-width: 0;}

.left-side .nav-tabs.nav-stacked > li:first-child > a h4 {margin: 0; background-color: #debdfa;}

.left-side .nav-tabs.nav-stacked > li:first-child > a, .left-side .nav-tabs.nav-stacked > li:last-child > a {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

.left-side .nav-tabs.nav-stacked > li > a {
  border-color: #3E0470; 
  border-width: 1px 0; 
  color: #3E0470; 
  font-size: 15px;
  line-height: 1.6;
  padding: 5px 0;
}




/* ===============================
Share Group
================================ */


.group-share {display: inline-block; width: 100%; margin-top: 5px;}

.share-btn {display: inline-block; width: auto; margin-left: 6px; vertical-align: top;}

.group-share .share-btn:first-child {margin:0;}

.share-btn .btn {padding: 0; height: 17px; line-height: 17px; font-family: 'Helvetica Neue',Arial,sans-serif; font-size: .7em; position: relative; vertical-align: top;}

#article_right_header .share-btn span {font-weight: 600;}

.share-btn .btn > span {padding: 0 7px 0 23px; white-space: nowrap; font-weight: 600;}

.share-btn i {position: absolute; top: 2%; height: 16px; width: 16px; left: 4px;}

.facebook-share-button i {background: url(https://media.gttwl.com/attachments/rainbowtravel.gttwl2.com/ltmq6z/1369767046_original.jpg) no-repeat; background-size: 100%;}


/* ===============================
Thumbnails
================================ */

.thumbnail {text-align: center; position: relative;}

.thumbnail h4 {margin: 0; font-size: 20px;}

.placesThumbs .thumbnail {margin: 0 1em; min-height: 225px;}

.featureThumbs .thumbnail {margin: 0 1em; min-height: 400px;}

.wrap-imgThumb {display: inline-block; width: 100%; height: 170px; overflow: hidden;}

.wrap-ftThumb {display: inline-block; width: 100%; height: 400px; overflow: hidden;}

.wrap-imgThumb img {width: 100%; min-height: 400x;}

.wrap-ftThumb img {width: 100%; min-height: 170px;}

.thumbnail .caption {padding: 3px 5px 9px;}

.row-fluid .thumbnails {margin-left: -2%;}

.row-fluid .thumbnails .span3 {width: 22.3%;}

.row-fluid .thumbnails .span3:first-child {margin-left: 2.5641%;}

.thumbnails .videoWrapper {margin-bottom: 0.2em;}

.thumbnails li.span3 {min-height: 240px;}




/* ===============================
User Profile
================================ */

.user-profile header {margin-bottom: 1em;}

.user-profile header h1 {font-family: 'Courgette', cursive; font-size: 37px; color: #FFCB00; margin: 0;}

.user-profile header .btn-large {font-size: 15px; padding: 11px 10px; width: 100%;}




/* ===============================
Favorite Places
=============================== */

.place-header > header {padding: .5em 3em 1em; background-color: #3E0470; border-bottom: 8px solid #B7F200;}

.place-header > header img {max-height: 100px;}

#hero-img {
    background-attachment: fixed;
    background-clip: border-box;
    background-color: transparent;
    background-origin: padding-box;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -999;
}

.breadcrumb.breadcrumbsBg {margin:0; padding: 0.3em 0.8em; border: none;}

.breadcrumb.breadcrumbsBg > li {text-shadow: 0 1px 0 #000; color: #fff;}

.breadcrumb.breadcrumbsBg > li > a {color: #fff;}

.transpInfo {padding: 2em 0;}

.transpInfo section.block {padding: 0 1em;}

.transpInfo .bgBlack-transp {color: #efefef;}

.transpInfo .block .btn {margin-bottom: 1em;}



/* ===============================
Blank-pages
================================ */

.general-forms {padding: 3.5em 0;}

.general-forms header {padding-bottom: 1em;}

.general-forms header h2 {margin: 0; font-size: 27px; color: #9D4192;}

.contentBlank legend {border: none; padding: 0 .5em; background-color: #3E0470; font-size: 15px;}

.facebook-login p {font-size: 14px; color: #666; line-height: 1.3;}

.general-forms form {margin-bottom: 0;}

.general-forms input[type="text"], .general-forms input[type="email"], .general-forms input[type="date"], .general-forms input[type="tel"], .general-forms input[type="email"], .general-forms input[type="password"], .general-forms input[type="submit"], .general-forms textarea {
  width: 100%;
}

.general-forms form p {font-size: 15px; margin-top: .7em; margin-bottom: 0;}

.well .nav-tabs > .active > a, .well .nav-tabs > .active > a:hover, .well .nav-tabs > .active > a:focus {
  background-color: transparent;
  border-bottom-color: #F5F5F5;
}


/* ===============================
Forms
================================ */

.wrap-input {display: inline-block; width: 100%; position: relative;}

.wrap-input input[type="text"], .wrap-input input[type="email"], .wrap-input input[type="tel"] {
  width: 100%;
}

.wrap-input.right-element input[type="text"] {padding-right: 2em;}

.wrap-input.left-element input[type="text"] {padding-left: 2em;}

.wrap-input .element-input {
  position: absolute; 
  z-index: 99; 
  top: 0; 
  width: auto; 
  line-height: 1.4;
  color: #555;
}

.right-element .element-input {right: 0;}

.left-element .element-input {left: 0;}

.element-input > i {padding: 0 10px; line-height: 1.6;}

.right-element .element-input .btn {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.left-element .element-input .btn {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.offer-form input {width: 100%;}

.offer-form input[type="submit"] {margin-top: .7em;}

.hero-form input[type="text"] {font-size: 17.5px; padding: 11px 6px; margin: 0; height: 45px; width: 100%;}

.hero-form .btn-large {width: 100%; padding: 8px 0; font-size: 22px; font-weight: 600; height: 45px;}

.hero-form .wrap-input .element-input {top: 8px;}


.top-forms select {width: 100%;}


.modal form {margin: 0;}

.modal-header {padding: 15px;}

.modal-header p {margin: 0; font-size: 16px;}

.modal form input[type="text"], .modal form input[type="email"], .modal form input[type="tel"], .modal form textarea {
  width: 100%;
}

form .form-inline {line-height: 25px; margin-bottom: 12px;}

form .form-inline label.radio {margin-right: 1em;}

.group-fields {
    display: inline-block;
    margin-bottom: 1em;
    width: 100%;
}

.hide-formFeed.in {border-top: 1px dashed #bfbfbf; padding: .4em;}

.hide-formFeed .upload {margin: 0;}

.hide-formFeed small {font-size: .6em;}

.upload {
    border-radius: 5px 5px 5px 5px;
    margin-bottom: 1em;
    position: relative;
    width: 100px;
}

.upload input[type="file"] {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.bottom-form-content {padding-top: 1em;}


/* ===============================
Footer
================================ */

footer{
  background: #debdfa;
	color:#000;
  font-size: 15px;
  padding: 1em;
  border-top: 8px solid #B7F200;
}

footer p {font-size: 15px;}

footer a {color: #B7F200; text-decoration: underline;}

/* Map */
#mappy { height: 450px; width: 100%;}