/**
 * Credit.js
 * Version: 1.0.0
 * Author: Ron Masas
 */
 
.credit {
	display: none;
}

.credit-cell{
	flex: none;
	width: 25%;
	font-size: 18px;
	line-height: 100%;
	color: gray;
	background-color: white;
	border: none;
	outline: none;
	text-align: center;
	letter-spacing: 2px;
}

.credit-input {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 12px 12px;
	font-size: 18px;
	line-height: 100%;
	color: gray;
	background-color: white;
	border: 1px solid gray;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(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;
}

.c-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,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}