/*

	GENERAL

----------- */
body{
	font-family: "Poppins", sans-serif;
	background-color:rgb(25,25,25);
}
.bg-center{
	background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.bg-left{
	background-position: left center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.bg-top{
	background-position: top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.bg-bottom{
	background-position: bottom center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.bg-contain{
    background-position: center center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    background-size: contain;
    -o-background-size: contain;
    background-repeat:no-repeat;
}
a, button{
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}
a:hover{
	color: #000;
}
.animo{
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

::-webkit-input-placeholder {
	color:#a4bfda;
}
:-ms-input-placeholder {
	color:#a4bfda;
}
::placeholder {
	color:#a4bfda;
}

.container-fluid{
	max-width:1400px;
}

.btn-default{
	background-color:#a49b51;
	border:solid 1px #a49b51;
	display:inline-block;
	padding:15px 20px;
	border-radius:30px;
	font-size:14px;
	line-height: 1;
	color:#fff;
	text-decoration: none;
	-webkit-box-shadow: -1px 8px 17px -14px rgba(0,0,0,0.6);
	-moz-box-shadow: -1px 8px 17px -14px rgba(0,0,0,0.6);
	box-shadow: -1px 8px 17px -14px rgba(0,0,0,0.6);
}
.btn-default.invert{
	background-color:transparent;
	border:solid 1px #000;
	color:#000;
}
.btn-default:hover{
	background-color:rgb(25,25,25);
	color:#fff;
	border-color:rgb(25,25,25);
}

.wrapper{
	overflow-x: hidden;
}

/*

	BTN TO TOP

--------------- */
.btn-to-top{
	position: fixed;
	bottom:15px;
	right:15px;
	background-color:#a49b51;
	color:#fff;
	border-radius: 50%;
	width:50px;
	height:50px;
	font-size:18px;
	line-height: 50px;
	text-align:center;
	display: none;
	z-index: 99;
}
.btn-to-top:hover{
	opacity: 1;
	color:#fff;
}

/*

	COOKIES

----------- */
.cookies-container{
	position:fixed;
	z-index:998;
	bottom:0;
	left:0;
	right:0;
	text-align:center;
	padding:30px;
	background-color:#fff;
	font-size:14px;
	-webkit-box-shadow: 0px -11px 18px -18px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px -11px 18px -18px rgba(0,0,0,0.25);
	box-shadow: 0px -11px 18px -18px rgba(0,0,0,0.25);
	display:none;
}
@media(min-width:768px){
	.cookies-container{
		padding:30px 15px;
	}
}

/*

	MESSAGE

----------- */
.message-container{
	position:fixed;
	background-color:rgba(0,0,0,0.3);
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:998;
	backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.message{
	position:absolute;
	top:45px;
	width:280px;
	left:50%;
	margin-left:-140px;
	padding:30px;
	text-align:center;
	color:#000;
	background-color:#fff;
	border-radius:5px;
	font-size:16px;
	line-height: 1.4;
}
.btn-close-message{
	color:#111;
	background-color:#c7d625;
	border-radius:50%;
	position:absolute;
	font-size:22px;
	top:-20px;
	right:-20px;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
}
.btn-close-message:hover{
	color:#fff;
	background-color:#333;
}
@media(min-width:768px){
	.message{
		width:500px;
		margin-left:-250px;
		top:60px;
	}
}

/*

	ALERT

--------- */
.alert{
	position: fixed;
	width:300px;
	left:50%;
	margin-left:-150px;
	top:45px;
	border-radius: 10px;
	background-color:#fddddd;
	color:#111;
	padding:30px;
	text-align:center;
	z-index: 99;
}
.alert .btn-alert-ok{
	display: inline-block;
	border:solid 1px #111;
	color:#111;
	border-radius: 25px;
	padding:10px 30px;
	text-decoration: none;
	margin-top:15px;
}
@media(min-width:768px){
	.alert{
		width:500px;
		margin-left:-250px;
		top:60px;
	}
}

/* 

	HEADER

---------- */
.header{
	height:300px;
	position: relative;
}
.header::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(15,15,15);
	background: -moz-linear-gradient(180deg, rgba(15,15,15,0) 0%, rgba(15,15,15,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(15,15,15,0) 0%, rgba(15,15,15,1) 100%);
	background: linear-gradient(180deg, rgba(15,15,15,0) 0%, rgba(15,15,15,1) 100%);
	height: 60%;
	z-index: 1;
}
@media(min-width:1200px){
	.header{
		height:400px;
	}
}

/*

	INTRO

--------- */
.intro{
	padding:0 15px 60px 15px;
	background-color:rgba(15,15,15,1);
}
h1{
	color:#fff;
	text-align:center;
	font-family: "Wellfleet", monospace;
	font-size:48px;
	line-height: 1;
	margin-top:-90px;
	position: relative;
	z-index: 1;
}
h1 span{
	margin-top:10px;
	display:block;
	font-size:28px;
}
h2{
	color:#fff;
	text-align:left;
	font-family: "Wellfleet", monospace;
	font-size:32px;
	line-height: 1;
	position: relative;
	z-index: 1;
	margin:30px 0 15px 0;
}
h3{
	color:#000;
	text-align:center;
	font-family: "Wellfleet", monospace;
	font-size:48px;
	line-height: 1;
	position: relative;
	z-index: 1;
	margin:30px 0 15px 0;
}
.date{
	color:#fff;
	font-size:48px;
	line-height: 1;
	font-family: "Wellfleet", monospace;
	padding:15px 0;
	position: relative;
	transform: rotate(5deg);
	z-index: 1;
	margin:0 auto 30px auto;
	width:200px;
}
.date .underline{
	display:block;
	position: absolute;
	bottom:-20px;
	left:50%;
	margin-left:-90px;
	width:180px;
}
.date .underline img{
	width:100%;
}
.date .save-the-date{
	position: absolute;
	right:-80px;
	top:-15px;
	width:100px;
	transform: rotate(-20deg);
}
.date .save-the-date img{
	width:100%;
}
.text{
	color:#fff;
	font-size:14px;
	line-height: 1.6;
}
.text em{
	color:#a49b51;
}
.polaroids img{
	width:100%;
}
@media(min-width:768px){
	h1{
		font-size:54px;
	}
	h1 span{
		font-size:42px;
	}
	.date{
		margin:15px 0 30px 0;
	}
	.polaroids{
		margin-top:90px;
	}
}
@media(min-width:992px){
	.intro{
		padding:0 15px 90px 15px;
	}
}
@media(min-width:1200px){
	h1{
		font-size:68px;
	}
	h1 span{
		font-size:54px;
	}
	.text{
		font-size:16px;
	}
	.polaroids{
		max-width: 500px;
		margin-top:60px;
	}
	.polaroids img{
		max-width: 100%;
	}
	.date .save-the-date{
		width:140px;
		right:-150px;
		top:-10px;
		transform: rotate(0deg);
	}
}

/*

	REGISTER

------------- */
.register{
	background-color:#f5f5f5;
	padding:30px 15px 90px 15px;
}
.register h2{
	color:#000;
	text-align: center;
}
.register .text{
	color:#000;
}
@media(min-width:768px){
	.register{
		padding:60px 15px 120px 15px;
	}
}
@media(min-width:1200px){
	.register{
		padding:60px 15px 150px 15px;
	}
}

/*

	FOOTER

---------- */
.footer{
	padding:45px 0;
	background-color:#fff;
	position: relative;
}
.up{
	width:90px;
	height:90px;
	background-color:#fff;
	border-radius:50%;
	position: absolute;
	top:-45px;
	left:50%;
	margin-left:-45px;
	text-align: center;
	color:#000;
	font-size:18px;
	line-height: 1;
	padding-top:30px;
	-webkit-box-shadow: 0px -19px 20px -19px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px -19px 20px -19px rgba(0,0,0,0.3);
	box-shadow: 0px -19px 20px -19px rgba(0,0,0,0.3);
}
.footer .logo{
	display:inline-block;
	height:50px;
	margin:0 15px;
}
@media(min-width:768px){
	.footer{
		padding:60px 0;
	}
	.footer .logo{
		margin:0 30px;
		height:80px;
	}
}
@media(min-width:992px){
	.footer .logo{
		height:120px;
	}
}

/*

	FORM

--------- */
.row-form{
	margin-top:45px;
}
.row-form .btn-default{
	padding:20px 30px;
	font-size:16px;
	margin:15px 2px 0 2px;
}
.form-title{
	font-size:18px;
	font-weight:bold;
	line-height: 1;
	margin:0 0 15px 0;
}
.times{
	padding:0 0 0 0;
}
.times .slot{
	display: inline-block;
	position: relative;
}
.times .slot span{
	display:block;
	font-size:12px;
	line-height: 1.4;
	color:#aaa;
}
.times .slot span b{
	font-size:14px;
	color:#888;
}
.times a{
	display: inline-block;
	color:#555;
	background-color:#fff;
	padding:15px;
	border-radius: 10px;
	text-decoration: none;
	width:100px;
	font-size:18px;
	font-weight: bold;
	margin:5px;
	border:solid 1px #eee;
}
.times a:hover{
	background-color:#fafafa;
	color:#000;
}
.times .slot.full a{
	color:#ccc;
	background-color:#fafafa;
}
.times .slot.full .disabled{
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000;
	opacity: 0;
}
.times a.chosen{
	background-color:rgb(25,25,25);
	color:#fff;
	border-color:rgb(25,25,25);
}
.notification{
	color:red;
	font-weight:bold;
	font-size:16px;
	line-height: 1.2;
	display: none;
}
#form-2,
#form-3{
	display:none;
}
.input-container{
	background-color:#fff;
	border:solid 1px #eee;
	padding:15px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 35px -18px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 35px -18px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 35px -18px rgba(0,0,0,0.2);
}
.row-input{
	margin:0 0 15px 0;
	text-align: left;
}
.row-input label{
	font-size:14px;
	line-height: 1.2;
	margin:0 0 5px 0;
	font-weight:bold;
	display: block;
	width: 100%;
	text-align: left;
}
.row-input label span{
	display:inline-block;
	font-size:12px;
	font-weight: normal;
}
.row-input input{
	border:solid 1px #eee;
	padding:10px;
	border-radius: 5px;
	background-color:#fff;
	width:100%;
	outline-color:#a49b51;
}
.row-input select{
	border:solid 1px #eee;
	padding:10px;
	border-radius: 5px;
	background-color:#fff;
	width:100%;
	outline-color:#a49b51;
}
.row-input select.half{
	width:50%;
}
.row-input .notification{
	color:red;
	font-size:14px;
	line-height: 1.2;
	display: none;
	margin-top:5px;
}
.row-input input.error,
.row-input select.error{
	border-color:red;
}
.row-line{
	border-bottom:solid 1px #eee;
	padding:10px 0;
}
.row-line:last-child{
	border:none;
}
@media(min-width:1200px){
	.input-container{
		padding:30px;
	}
	.row-line{
		padding:15px 0;
	}
	.row-form .btn-default{
		margin-top:30px;
	}
}



