html, body {
	height: 100%;
}

body {
	padding-top: 45px;
}


/*.start-page */.wrapper {
	height: 100%;
	width: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	background: url("../images/backgrounds/bg_pattern.png") repeat scroll 0 0 rgba(0, 0, 0, 0.02);
}
.wrapper > .overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	z-index: -1;
	
	background-repeat: no-repeat;
	background-size: cover;
	background-origin: padding-box;
	background-position: center center;
}

.start-page .wrapper > .overlay {
	background-image: url('../images/backgrounds/start-page2.jpg');
}
.invitation-page .wrapper > .overlay {
	background-image: url('../images/backgrounds/start-page1.jpg');
}
.gallery-access-page .wrapper > .overlay {
	background-image: url('../images/backgrounds/start-page1.jpg');
}





/* Start helpers style */

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-bold {
	font-weight: bold;
}

.font-size-50 {
	font-size: 50px;
}

.handwriting {
	font-family: Handlee;
}

/* End helpers style */


/* Start navigation style */

.navbar {
	border-bottom: solid 3px #000;
	height: 48px;
}

.navbar-brand {
	color: #BDA271 !important;
	font-weight: bold;
	line-height: 23px;
}

.nav > li {
	font-size: 15px;
	border-bottom: solid 3px transparent;
}

.nav > li.active {
	border-color: #ffa500 !important;
}
.nav > li.active a,
.nav > li.active a:hover{
	color: #ffa500 !important;
	padding-top: 13px;
	padding-bottom: 11px !important;
}

.nav > li:hover {
	border-color: #777;
}
.nav > li:hover a,
.nav > li a:hover {
	color: #ddd !important;
}

/* End navigation style */


/* Start pages */

.pages-wrapper {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.page-container {
	display: none;
	height: 100%;
	width: 100%;
}

.page-container.active {
	display: inline-block;
}

/* End pages */




/* Start general rules */

.margin-0 {
	margin: 0;
}

.margin-top-10 {
	margin-top: 10px;
}

.margin-top-20 {
	margin-top: 20px;
}

.margin-top-35 {
	margin-top: 35px;
}

.map {
	height: 100%;
}

.info-window-title {
	background-color: #ddd;
	font-weight: bold;
	padding: 2px 3px;
	text-align: center;
}

.info-window-image {
	width: 200px;
	margin-bottom: 7px;
}

.btn-start-tour {
	position: absolute;
	z-index: 99;
	margin: auto;
	bottom: 20px;
	left: 50%;
	width: 150px;
	margin-left: -75px;
}

.time-left-countdown-wrapper {
	position: absolute;
	top: 50%;
	margin-top: -42px;
	width: 60%;
	
	text-align: center;
	color: #fff;
	text-shadow: 0px 0px 5px #000;
}

.time-left-countdown {
	font-size: 60px;
}

.time-left-countdown-description {
	font-size: 28px;
}

.invitation-start-page-button {
	margin-top: 15px;
	background-color: #BDA271;
	color: #fff;
	text-shadow: none;
	font-weight: bold;
	font-size: 20px;
	padding: 10px 25px;
}

.invitation-start-page-button:hover {
	background-color: #AD9261;
}

.panel {
	margin-top: 20px;
	background-color: rgba(255, 255, 255, 0.75);
}

textarea {
	resize: none;
}

.btn {
	min-width: 75px;
}

.another-code {
	margin-top: 3px;
	display: inline-block;
}

.special-album-button {
	margin-top: -9px;
}

/* End general rules */




/* Start input glyphicon addon */

.inner-addon { 
    position: relative; 
}

/* style icon */
.inner-addon .glyphicon {
  position: absolute;
  padding: 10px;
  pointer-events: none;
}

/* align icon */
.left-addon .glyphicon  { left:  0px;}
.right-addon .glyphicon { right: 0px;}

/* add padding  */
.left-addon input  { padding-left:  30px; }
.right-addon input { padding-right: 30px; }

.inner-addon .glyphicon {
	font-size: 28px;
	margin-top: -4px;
	margin-right: -4px;
}

/* End input glyphicon addon */





/* Start glyphicon rotate */

.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.gly-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.gly-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.gly-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.gly-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.gly-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* End glyphicon rotate */





/* Start media queries */

@media (min-width: 768px) {
	.navbar-nav {
		display: inline-block !important;
	}
}

@media (max-width: 768px) {
	.navbar {
		height: auto;
	}
	
	.navbar-nav {
		margin: 0 -15px;
	}
	
	.nav > li {
		font-size: 18px;
		border-bottom: 0;
		border-left: solid 3px transparent !important;
	}
	
	
	.time-left-countdown-wrapper {
		width: 100%;
		top: 50%;
		margin-top: -40px;
	}
	
	.time-left-countdown {
		font-size: 40px;
	}

	.time-left-countdown-description {
		font-size: 22px;
	}
	
	
	.btn-mobile-full {
		width: 100%;
	}
	
	.btn-mobile-half {
		width: calc(50% - 2px);
		width: -webkit-calc(50% - 2px);
		width: -moz-calc(50% - 2px);
	}
}

/* End media queries */