/*GENERAL*/
/* colors:
	red: #B90303
	grey: #555
*/


body {
	font-family: 'Cantarell', sans-serif;
	color: #555;
}

h1, h2, h3 {
	font-family: 'Tangerine', cursive;
}

h1 {
	font-size: 42px;
}

h2 {
	font-size: 34px;
}

h3 {
	font-size: 26px;
}

h2, h3 {
	color: #B90303;
}

h2, h3, p, ul {
	padding-bottom: 15px;
}

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

@media (min-width: 992px) {
	.text-center-md {
		text-align: center;
	}
}

.btn {
	background-color: #B90303;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 5px 15px;
	display: block;
}

a.btn:hover,
a.btn:focus,
a.btn:active {
	text-decoration: none;
}

.hint {
	color: #B90303;
	font-weight: normal;
}

/*HEADER*/
.header {
	height: 50px;
	line-height: 50px;
	margin-bottom: 20px;
	background-color: #B90303;
	color: white;
}

.img-height {
	height: 50px;
	width: auto;
}
	
@media (min-width: 992px) {
	.header {
		height: 75px;
		line-height: 75px;
	}
	
	.img-height {
		height: 75px;
	}
}

.validate-captcha {
	display: none;	
}

/*plus and minus guests*/
.change-guests {
	cursor: pointer;
}

.change-guests:hover {
	text-decoration: underline;
}

.change-guests:hover .guest-icon {
	text-decoration: none;
}

.plus {
	background-color: green;	
}

.minus {
	background-color: #B90303;
}

.guest-icon {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
	width: 23px;
	height: 23px;
	text-align: center;
	text-decoration: none;
	color: white;
	line-height: 22px;
	font-weight: bold;
}

/*FOOTER*/
.footer {
	border-top: 1px solid #B90303;
	height: 100px;
	margin-top: 20px;
}