body {
  background: #e9e9e9;
  color: #666666;
  font-family: 'RobotoDraft', 'Roboto', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Pen Title */
.pen-title {
	margin-top:50px;
  padding: 20px 0;
  text-align: center;
  letter-spacing: 2px;
}
.pen-title h1 {
  margin: 0 0 20px;
  font-size: 48px;
  font-weight: 300;
}
.pen-title span {
  font-size: 12px;
}
.pen-title span .fa {
  color: #33b5e5;
}
.pen-title span a {
  color: #33b5e5;
  font-weight: 600;
  text-decoration: none;
}

/* Form Module */
.form-module {
  position: relative;
  background: #ffffff;
  max-width:400px;
  width: 100%;
  /*border-top: 5px solid #33b5e5;*/
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.form-module .toggle { display:none;
  cursor: pointer;
  position: absolute;
  top: -0;
  right: -0;
  background: #33b5e5;
  width: 30px;
  height: 30px;
  margin: -5px 0 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
}
.form-module .toggle .tooltip {
  position: absolute;
  top: 5px;
  right: -65px;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  width: auto;
  padding: 5px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.form-module .toggle .tooltip:before {
  content: '';
  position: absolute;
  top: 5px;
  left: -5px;
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid rgba(0, 0, 0, 0.6);
}
.form-module .form {
  display: none;
  padding: 40px;
}
.form-module .form:nth-child(2) {
  display: block;
}
.form-module h2 {
  margin: 0 0 20px;
  color: #33b5e5;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.form-module input {
  outline: none;
  border: 1px solid #d9d9d9;
  margin: 0 0 10px;
  padding: 05px 10px;
  box-sizing: border-box;
  font-wieght: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form-module input:focus {
  border: 1px solid #33b5e5;
  color: #333333;
}
.form-module button {
  cursor: pointer;
  background: #33b5e5;
  width: 100%;
  border: 0;
  padding: 10px 15px;
  color: #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form-module button:hover {
  background: #178ab4;
}
.form-module .cta {
  background: #f2f2f2;
  width: 100%;
  padding: 15px 40px;
  box-sizing: border-box;
  color: #666666;
  font-size: 12px;
  text-align: center;
}
.form-module .cta a {
  color: #333333;
  text-decoration: none;
}


.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  height: 45px;
  border: none; 
  padding: 5px 7px 5px 15px;
  background: #fff;
  color: #666;
  border: 2px solid #ddd;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.form-control:focus, .form-control:focus + .fa {
  border-color: #10CE88;
  color: #10CE88;
}

.form-group .fa {
  position: absolute;
  right: 15px;
  top: 17px;
  color: #999;
}

.tabcol {
    float: left;
    display: table-cell;
}

.cssbutton
{
 
  
  border:1px solid #33b5e5; 
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px;
	border-radius: 3px; 
	padding: 5px 15px; /*text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold;*/
	font-size:13px;  
	text-align: center; 
	color: #ffffff; 
	background-color:#33b5e5; 
	cursor:pointer;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#33b5e5), to(#33b5e5));
	background-image: -webkit-linear-gradient(top, #33b5e5, #33b5e5);
	background-image: -moz-linear-gradient(top, #33b5e5, #33b5e5);
	background-image: -ms-linear-gradient(top, #33b5e5, #33b5e5);
	background-image: -o-linear-gradient(top, #33b5e5, #33b5e5);
	background-image: linear-gradient(to bottom, #33b5e5, #33b5e5);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#33b5e5, endColorstr=#8C1519);
  
  
}

.cssbutton:hover {
  background: #178ab4;
}

.red { color:#D32152; }
.smaller { font-size:smaller; }
.smallest { font-size:9px; }

#logo img {
    width: 50%;
    max-width:250px;
}

.hashbutton
{
	border:1px solid #BBBBBB; 
	-webkit-border-radius: 3px; 
	-moz-border-radius: 3px;
	border-radius: 3px; 
	padding:5px 10px; /*text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold;*/ 
	font-size:13px; text-align: center; color:#666666; background-color:#F7F7F7; 
	cursor:pointer;
 	background-image: -webkit-gradient(linear, left top, left bottom, from(#F7F7F7), to(#BBBBBB));
 	background-image: -webkit-linear-gradient(top, #F7F7F7, #BBBBBB);
 	background-image: -moz-linear-gradient(top, #F7F7F7, #BBBBBB);
 	background-image: -ms-linear-gradient(top, #F7F7F7, #BBBBBB);
 	background-image: -o-linear-gradient(top, #F7F7F7, #BBBBBB);
 	background-image: linear-gradient(to bottom, #F7F7F7, #BBBBBB);
	filter:	progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#F7F7F7, endColorstr=#BBBBBB);
}

.cssbutton.spin
{
	background:url(../styleimage/redload.gif) no-repeat;
	background-position: center center;
	background-size:22px 22px;
	border:1px solid  #D1D1D1;
	color:#D84937;	
}
.spin::before{ content:'...loading...'; }
