/* globals */

body {
	background: #333 url('../images/bg-interview.png') top left no-repeat;
	font-family: helvetica,sans-serif;
}

a, a:visited {
	color: #F50064;
	text-decoration: none;
}

a:hover, a:visited:hover {
	color: #666666;
}

input[type="text"], 
input[type="password"],
select {
	color: #333;
	padding: 7px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border: 1px solid #333;
}

textarea {
	color: #333;
	padding: 7px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border: 1px solid #333;
	width: 95%;
	height: 75px;
	font-family: arial;
	font-size: 13px;
}

textarea:focus {
	border: 1px solid #ea0068;
}

table.interview,
div.interview-wrapper {
	width: 55%;
	background: #f2f2f2;
	border: 2px solid #000;
	padding: 40px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

div.userinfo {
	width: 60%;
	text-align: right;
	font-size: 12px;
	padding-bottom: 14px;
	color: #a7a7a7;
}

div.interview-wrapper {
	min-height: 600px;
	vertical-align: top;
}

td.header {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

.title {
	font-size: 16px;
	font-weight: bold;
}

td.label {
	text-align: right;
}

label {
	font-weight: bold;
}

td.description {
	color: #333;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding: 10px;
	color: #fff;
	background: #666;
	border-radius: 8px;
}

/* interview process */

#pick {
	font-size: 24px;
}

#pick td {
	width: 50%;
	text-align: center;
	padding: 25px;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

#pick td:hover {
	background: #ea0068;
	cursor: pointer;
	color: #ffffff;
}

#pick td.spacer {
	width: 1px;
	padding: 0px;
	background: #333;
}

#accesscode {
	font-size: 21px;
	text-align: center;
}

#accesscode input[type="text"] {
	font-size: 16px;
}

#accesscode td {
	padding: 10px;
}

#login {
	font-size: 19px;
}

#login td {
	padding: 10px;
}

#login td.label {
	text-align: right;
}

#create-account {
	font-size: 14px;
}

#create-account td {
	padding: 8px;
}

#create-account input[type="text"] {
	font-size: 14px;
}

#create-account td.label {
	width: 250px;
}

table.questions {
	width: 100%;
	padding: 40px;
	font-size: 14px;
	font-weight: bold;
}

table.questions td {
	padding: 9px;
}

table.questions input[type="text"] {
	font-size: !4px;
}

table.questions td.label {
	width: 250px;
}

table.accounts input[type="text"] {
	width: 140px;
}

table.accounts {
	font-size: 13px;
	font-weight: normal;
}

.description-text {
	font-size: 12px;
	font-style: italic;
	color: #666;
	text-align: center;
}

span.description {
	font-size: 11px;
	font-style: italic;
	color: #666;
}

#main {
	background: #f2f2f2;
	border: 2px solid #000000;
	padding: 25px;
}

#footer {
	font-size: 12px;
	color: #7f7f7f;
	width: 100%;
	text-align: center;
	padding-top: 10px;
}

#error,
.error,
#error-login {
	font-size: 13px;
	color: #ff0000;
	text-align: center;
}

.error-box {
	background: #D9005D url('../images/alert.png') 15px center no-repeat;
	width: 250px;
	border-radius: 8px;
	padding: 25px 25px 25px 50px;
	font-size: 15px;
	color: #fff;
	font-weight bold;
	position: fixed;
	bottom: 10px;
	left: 10px;
	box-shadow: 2px 2px 8px #666;
	text-align: left;
}

.list {
	line-height: 35px;
}

/* buttons */
input[type="button"],
input[type="submit"] {
	-moz-box-shadow:inset 0px -3px 7px 0px #d8005d;
	-webkit-box-shadow:inset 0px -3px 7px 0px #d8005d;
	box-shadow:inset 0px -3px 7px 0px #d8005d;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #d8005d), color-stop(1, #ea0068));
	background:-moz-linear-gradient(top, #d8005d 5%, #ea0068 100%);
	background:-webkit-linear-gradient(top, #d8005d 5%, #ea0068 100%);
	background:-o-linear-gradient(top, #d8005d 5%, #ea0068 100%);
	background:-ms-linear-gradient(top, #d8005d 5%, #ea0068 100%);
	background:linear-gradient(to bottom, #d8005d 5%, #ea0068 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d8005d', endColorstr='#ea0068',GradientType=0);
	background-color:#d8005d;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:9px;
	border: 0px;
	display:inline-block;
	color:#ffffff;
	font-family:arial;
	font-size:20px;
	padding:9px 23px;
	text-decoration:none;
}

input[type="button"]:hover,
input[type="submit"]:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ea0068), color-stop(1, #d8005d));
	background:-moz-linear-gradient(top, #ea0068 5%, #d8005d 100%);
	background:-webkit-linear-gradient(top, #ea0068 5%, #d8005d 100%);
	background:-o-linear-gradient(top, #ea0068 5%, #d8005d 100%);
	background:-ms-linear-gradient(top, #ea0068 5%, #d8005d 100%);
	background:linear-gradient(to bottom, #ea0068 5%, #d8005d 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ea0068', endColorstr='#d8005d',GradientType=0);
	background-color:#ea0068;
	cursor:pointer;
}

input[type="button"]:active,
input[type="submit"]:active {
	position:relative;
	top:1px;
}


.pink {
	color: #EA0068;
}


#progress {
	width: 100%;
}

#progress ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#progress ul li {
	display: inline-block;
	width: 110px;
	height: 35px;
	line-height: 35px;
	color: #fff;
	background: #a5a5a5;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	padding: 0px;
	margin: 10px;
	text-align: center;
	font-size: 12px;
	font-weight: normal;
}

#progress ul li.active {
	background: #ea0068;
	font-weight: bold;
	box-shadow: 0px 0px 5px #666;
	-webkit-box-shadow: 0px 0px 5px #666;
	-moz-box-shadow: 0px 0px 5px #666;
	transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}


/* new for sales tax */

.main-logo {
	max-width: 699px;
	margin: auto;
}

.login {
	text-align: center;
	border-radius: 0.5rem;
	max-width: 410px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: #fff;
	padding: 20px;
}

.register {
	border-radius: 8px;
	margin: auto;
	background-color: #fff;
	padding: 20px;
}

.terms {
	border-radius: 8px;
	margin: 25px auto;
	background-color: #d1d1d1;
	padding: 20px;
	font-size: 13px;
	display: none;
}

select#state option:first {
	color: #bbbbbb;
}

.paypal-logo {
	margin: 15px 0px;
}

.paypal-text {
	margin: 30px 0px;
}

.form-error {
	padding: 10px;
	text-align: left;
	color: #ff0000;
	font-weight: 600;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	border: 1px solid #ff0000;
	display: none;
}
