
/* -------------------------------- 

Main components 

-------------------------------- */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*@media only screen and (min-width: 768px) {
  header {
    height: 200px;
    line-height: 225px;
  }
  header h1 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}*/

.cd-tabs {
  position: absolute;
  width:88%;
  /*max-width: 960px;
  margin: 2em auto;*/
  bottom:0px;
  z-index:2;
}
.cd-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs::after {
  /* subtle gradient layer on top right - to indicate it's possible to scroll */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 50px;
  z-index: 1;
  pointer-events: none;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.no-cssgradients .cd-tabs::after {
  display: none;
}
.cd-tabs.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}
@media only screen and (min-width: 768px) {
  .cd-tabs::after {
    display: none;
  }
  .cd-tabs nav {
    position: absolute;
    top: -21px;
    left: 0;
    height: 100%;
    box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
    z-index: 1;
  }
}
@media only screen and (min-width: 960px) {
  .cd-tabs nav {
    position: relative;
    float: none;
    background: transparent;
    box-shadow: none;
  }
}

.cd-tabs-navigation {
  width: 360px;
}
.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs-navigation li {
  float: left;
}
.cd-tabs-navigation a {
  position: relative;
  display: block;
  height: 40px;
  width:115px;
  text-align: center;
  font-size:20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  color: #c3c2b9;
  padding-top: 34px;
}
.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(233, 230, 202, 0.3);
    text-decoration:none;
}
.cd-tabs-navigation a.selected {
  background-color: #ff7322 !important;
  color: #FFF;
  text-decoration:none;
}
.cd-tabs-navigation a::before {
  /* icons */
  position: absolute;
  top: 12px;
  left: 50%;
  margin-left: -10px;
  display: inline-block;
  height: 20px;
  width: 20px;

}
@media only screen and (min-width: 768px) {
  .cd-tabs-navigation {
    /* move the nav to the left on medium sized devices */
    width: 80px;
    float: left;
  }
  .cd-tabs-navigation a {
    height: 80px;
    width: 80px;
    padding-top: 46px;
  }
  .cd-tabs-navigation a.selected {
    background:#ff7322;
  }
  .cd-tabs-navigation a::before {
    top: 22px;
  }
}
@media only screen and (min-width: 960px) {
  .cd-tabs-navigation {
    /* tabbed on top on big devices */
    width: auto;
    box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
  }
  .cd-tabs-navigation a {
    height:40px;
    line-height:40px;
    width: auto;
    text-align: left;
    font-size:18px;
    padding: 0px 22px 8px 22px;
	font-family: 'Titillium Web', sans-serif;
	font-weight:600;
  }
  .cd-tabs-navigation a.selected {
    background:#ff7322;
  }
  .cd-tabs-navigation a::before {
    top: 50%;
    margin-top: -10px;
    margin-left: 0;
    left: 38px;
  }
}

.cd-tabs-content {
  background:#FFF !important;
  height:90px;
  -webkit-box-shadow: 1px 9px 12px 0px rgba(106,101,101,1);
-moz-box-shadow: 1px 9px 12px 0px rgba(106,101,101,1);
box-shadow: 1px 9px 12px 0px rgba(106,101,101,1);
}
.cd-tabs-content li {
  display: none;
  /*padding: 1.4em;*/
}
.cd-tabs-content li.selected {
  display: block;
  -webkit-animation: cd-fade-in 0.5s;
  -moz-animation: cd-fade-in 0.5s;
  animation: cd-fade-in 0.5s;
}
.cd-tabs-content li p {
  font-size: 14px;
  padding:15px;
  color: #333;
  margin-bottom: 0;
}

.cd-tabs-content dd{
	display:inline-block;
	border-right:1px solid #e5e5e5;
	padding:15px;
}

.cd-tabs-content dd label{
	font-size:14px;
	font-weight:400;
	text-transform:uppercase;
	width:100%;
}
.cd-tabs-content .form-group{
	margin-bottom:0;
}
.cd-tabs-content dd input{
	border:none;
	box-shadow:none;
	padding:0;
	font-size:25px;
	font-weight:300;
	border-radius:0px;
	width:200px;
	color:#000;
}

.cd-tabs-content dd input::placeholder {
  color: #000;
}

.cd-tabs-content .form-control:focus{
    border-color: #cccccc;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.cd-tabs-content dd .datepicker{
	width:118px;
}

.cd-tabs-content dd:last-child{
	float:right;
	height:90px;
	border:none;
	background-color:#ff7322;
	width:146px;
	
}
.cd-tabs-content dd.brdR0{
	border-right:none;	
	padding-right:0;
}

.cd-tabs-content dd.brdR0 input{
	width:250px;
}

.cd-tabs-content dd button{
	background:#ff7322;
	color:#FFF;
	padding:0;
	border:none;
	display:block;
	text-align:center;
	width:100%;
	margin-top:6px;
	font-size:32px;
	font-weight:400;
}

.hotels .area{
	width:350px !important;
}

.hotels  .datepicker{
	width:150px !important;
}

@media only screen and (min-width: 768px) {
  .cd-tabs-content {
    min-height: 480px;
  }
  .cd-tabs-content li {
    /*adding: 2em 2em 2em 7em;*/
  }
}
@media only screen and (min-width: 960px) {
  .cd-tabs-content {
    min-height: 0;
  }
  /*.cd-tabs-content li {
    padding: 1em;
  }*/
  .cd-tabs-content li p {
    font-size: 16px;
  }
}

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
