input[type="radio"] {
	display: none;
}

.progress > span {
	background: #008BE8;
	display: inline-block;
	margin-top: 5px;
	height: 20px;
	transition: 0.3s;
	width: 0;
}

#two:checked ~ .progress span {
	width: calc(100% / 3 * 1);
}

#three:checked ~ .progress span {
	width: calc(100% / 3 * 2);
}

#four:checked ~ .progress span {
	width: calc(100% / 3 * 3);
}

.panels div {
	display: none;
}

#one:checked ~ .panels [data-panel="one"],
#two:checked ~ .panels [data-panel="two"],
#three:checked ~ .panels [data-panel="three"],
#four:checked ~ .panels [data-panel="four"] {
	display: block;
}
/* Custom code for the demo */

html,
button,
input,
select,
textarea {
	font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
}

body {
	background-color: #008BE8;
	margin: 0;
}

a {
	color: #008BE8;
}

h2,
h4 {
	margin-top: 0;
	margin-bottom: 0;
}

h1 {
	margin-top: 0;
	font-size: 20px;
}

h2 {
	font-size: 40px;
	text-align: center;
}

h4 {
	font-size: 30px;
}

li {
	font-size: 20px;
}

ul {
	padding-left: 5px;
	margin-top: 0;
	margin-bottom: 0;
	list-style-type: none;
}

@keyframes blink {
	0% {
		box-shadow: 0 0 20px #EC7A44;
	}
	50% {
		box-shadow: none;
	}
	100% {
		box-shadow: 0 0 20px #EC7A44;
	}
}
@-webkit-keyframes blink {
	0% {
		box-shadow: 0 0 20px #EC7A44;
	}
	50% {
		box-shadow: 0 0 0;
	}
	100% {
		box-shadow: 0 0 20px #EC7A44;
	}
}
.order_table ul{
	background-color: #faf8df;
	-webkit-animation: blink 1.0s linear infinite;
	-moz-animation: blink 1.0s linear infinite;
	-ms-animation: blink 1.0s linear infinite;
	-o-animation: blink 1.0s linear infinite;
	animation: blink 1.0s linear infinite;
}


.order_table, #dom, #int, #creditCard, #wireTransfer, #payPal {
	margin-top: 10px !important;
	border-top: 0 !important;
}

.description  {
	font-size: 17px;
}

select {
	font-size: 20px;
}

option {
	font-size: 20px;
}

form {
	background: #ffffff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .4);
	width: 80%;
	padding:5%;
	margin: 5%;
}

.panels div, #pay {
	border-top: solid 1px #c0c0c0;
	margin: 1em 0 0;
	padding: 0.3em 0 0;
}

.panels label {
	font-size: 20px;
	float: left;
}

.panels input {
	font-size: 20px;
	box-sizing: border-box;
	max-width: 100%;
	clear: left;
}

input {
	box-sizing: border-box;
	max-width: 100%;
}

button {
	background-color: #008BE8;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	font-weight: 700;
	font-size: 20px;
	margin: 0.4em 0 0 0;
	padding: 1em;
}

button:hover {
	opacity: 0.8;
}