@import 'public.css';

/* Form styles */

.sc-form-group {
	margin-bottom: 15px;
}

.sc-form-group label {
	display: inline-block;
	margin-bottom: 5px;
	font-weight: bold;
}

.sc-form-group .sc-form-control {
	display: block;
	width: 15em;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.4;
	color: #555555;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid #cccccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.sc-form-group .sc-form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.sc-form-group .sc-form-control::-moz-placeholder {
	color: #999999;
	opacity: 1;
}

.sc-form-group .sc-form-control:-ms-input-placeholder {
	color: #999999;
}

.sc-form-group .sc-form-control::-webkit-input-placeholder {
	color: #999999;
}

.sc-form-group .sc-form-control[disabled],
.sc-form-group .sc-form-control[readonly],
.sc-form-group fieldset[disabled] .sc-form-control {
	cursor: not-allowed;
	background-color: #eeeeee;
	opacity: 1;
}

.sc-form-group textarea.sc-form-control {
    height: auto;
    width: 100%;
}

.sc-form-group input[type="checkbox"],
.sc-form-group input[type="radio"] {
    margin: 0 5px 0 0;
}

/* User-entered amount */

.sc-form-group .sc-uea-container {
    display: block;
}

/* UEA field is inline-block so USD dollar sign can be placed on the left of it. */
.sc-form-group .sc-uea-container .sc-uea-custom-amount {
    display: inline-block;
}

/* Coupon codes */

.sc-form-group .sc-coup-coupon-container {
    display: block;
}

/* Coupon code field is inline-block so "Apply" button can be placed on the right of it. */
.sc-form-group .sc-coup-coupon-container .sc-coup-coupon {
    display: inline-block;
}

.sc-form-group .sc-coup-coupon-container .sc-coup-apply-btn {
    margin-left: 10px;
}

.sc-form-group .sc-coup-validation-message {
    color: #a94442;
}

.sc-form-group .sc-coup-loading {
    display: none;
}

.sc-form-group .sc-coup-loading img {
    border: 0 !important;
    box-shadow: none !important;
}

.sc-form-group .sc-coup-remove-coupon {
    display: none;
}

.sc-radio-group {
	margin-bottom: 5px;
}

.sc-radio-group label {
	font-weight: normal;
	display: block;
	margin: 0;
	cursor: pointer;
}

.sc-radio-group input[type="radio"] {
	float: left;
	margin-top: 7px;
	margin-right: 7px;
}

/* Parsley JS Validation styles */

.sc-form-group ul.parsley-errors-list,
.sc-form-group ul.parsley-errors-list li {
    color: #a94442;
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

