@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Inconsolata');
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500');

html, body {
	background-color: rgb(69, 149, 217);
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Roboto';
	background-image: url("../images/bg5.png");
	background-size: cover;
	background-position: bottom left;
	background-attachment: fixed;
}

.container {
	width: 650px;
}

img.dropdown_arrow {
	margin-right: 20px;
	transition: all 0.3s ease;
}

button.accordion {
    background-color: rgb(69, 149, 217);
    color: #FEFEFE;
    cursor: pointer;
    padding: 30px 40px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.2s;
    font-size: 20px;
    font-weight: 300 !important;
}

button.accordion.active img {
	transform: rotate(180deg);
}


button.accordion:hover {
    filter: brightness(110%);
}

div.panel {
    padding: 0 16%;
    background-color: rgba(20, 20, 20, 0.5);
    max-height: 0;
    overflow: auto;
    transition: all 0.5s ease;
}

.container input[type="text"], .container input[type="submit"], .container select {
	margin-bottom: 1px;
	background-color: rgba(0, 0, 0, 0.5);
	border: none !important;
	font-family: 'Roboto';
	font-size: 16px;
	font-weight: 400;
	color: #FFFFFF;
	transition: 0.3s;
	width: 400px;

}

.container input {
	padding: 15px 20px;
}

	.container input:focus {
		border-left: 5px solid white !important;
	}

.container select {
	width: 440px;
	padding: 0 20px;
}

.container input[type="submit"] {
	width: 100%;
}

.container select {
	border: none;
}

.container select option {
	padding: 15px;
	background-color: #444444;
}

.bigradio {
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	background: #FFFFFF;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 10px;
}

.bigcheckbox {
	-webkit-appearance:button;
	-moz-appearance:button;
	appearance:button;
	background:#FFFFFF;
	width:20px;
	height:20px;
	margin-right: 10px;
}

.bigradio:checked, .bigcheckbox:checked {
	background: #000000;
}

.title {
	font-size: 40px;
	color: #FEFEFE;
}

.form_label {
	color: #FEFEFE;
	font-size: 20px;
}

.form_warning {
	width: 410px;
	padding: 15px;
	font-size: 13px;
	background-color: #EB2D43;
	color: white;
}	
	
	.form_warning td {
		padding: 0 !important;
	}

	.form_warning td img {
		margin: 0 10px 0 0;
	}

#empty-box {
	display: block;
	height: 350px;
}

.container textarea {
	border: none;
	padding: 15px;
	font-size: 18px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #FEFEFE;
	font-family: 'Inconsolata';
}

#disclaimer {
	color: #FEFEFE;
	line-height: 1.5;
	font-size: 14px;
}

input[type="submit"]:hover {
	background-color: rgba(90, 90, 90, 1);
}


/* For mobile devices */
@media (max-width: 1024px) {
	.container {
		width: 100%;
		font-weight: 300;
		top: 0;
	}

	div.panel {
		padding: 0 !important;
		background-color: rgba(230, 230, 230, 1);
		box-sizing: border-box;
	}

	.container input[type="text"], .container input[type="submit"], .container select, .selector.flatpickr-input {
		width: 100%;
		font-size: 3.2em;
		box-sizing: border-box !important;
		padding: 6%;
		color: #888888;
		background-color: rgba(250, 250, 250, 1);
	}

	.form_label {
		margin: 3% 0 1% 6%;
		display: block;
		color: #666666;
		font-size: 4em;
	}

	.form_warning {
		width: 100%;
		font-size: 3em;
		box-sizing: border-box !important;
		padding: 5%;
	}

	.form_warning img {
		display: none;
	}

	button.accordion {
	    padding: 10% 7%;
	    font-size: 3em;
	    overflow-x: hidden;
	    background-color: rgb(69, 149, 217);
	}

	button.accordion img {
		height: 0.8em;
		margin-right: 0.7em;
	}

	#empty-box {
		height: 65em !important;
	}

	.flatpickr-calendar {
		transform: scale(3, 3) !important;
		margin-left: 33% !important;
	}

	.bigradio, .bigcheckbox {
		width: 5em;
		height: 5em;
		margin-right: 2.5em;
	}

	.container textarea {
		background-color: white;
		width: 100%;
		font-size: 3em;
		color: #666666;
		padding: 5%;
		box-sizing: border-box;
	}

	#disclaimer {
		color: #666666;
		font-size: 2em;
		padding: 7%;
	}
}