

button:focus
{
   outline: 0;
}


.buttonD {
  position: relative;
  font-size: 16px;
  padding: 0 20px;
  display: inline-block;
  border: none;
  outline: none;
  background: #FFF;
  border-radius: 3px;
/*  border: 1px solid #1F1F1F; */
  box-shadow: 0 1px 3px 0px rgba(15, 15, 15, 0.5), inset 0 1px rgba(255, 255, 255, 0.2);
}


.buttonRound {
  height: 4em;
  width: 4em;
  border-radius: 100%;
}

.buttonDark {
  background: linear-gradient(#737373, #333333);
  background-size: auto 150%;
  background-position: 0 100%;
}
.buttonDark:hover {
  background-position: 0 50%;

}

button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
/*  background: #FAA0A0; */
  background: #3C3A41;

  color: #666666;
     /*Below are two new line which enable opacity*/
    opacity: 0.2;
  
}


.buttonDark:active { 
 color: #000; 
 
  background-position: 0 50%;
  background: #333333;
 box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.5), 0 1px 1px rgba(255, 255, 255, 0.1); 
}
.buttonDark:active .icon:before {
 
 color: #111;
  text-shadow: 0 1px rgba(255, 255, 255, 0.1);
}

.icon:before {
  font-style: normal;
  font-size: 40px;
  display: block;
  margin-top: -5px;
  color: #DDD;
  text-shadow: 0 1px 1px black;
  content: attr(data-char);
}









.bdn {
	line-height: 20px;
	height: 23px;
	text-align: center;
	width: 250px;
	cursor: pointer;

}

/* 
========================
      BUTTON ONE
========================
*/
.bdn-one {
	color: #FFF;
	transition: all 0.3s;
	position: relative;
}
.bdn-one span {
	transition: all 0.3s;
}
.bdn-one::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s;
	border: 1px solid rgba(255,255,255,0.2);
	background-color: rgba(255,255,255,0.1);
}
.bdn-one:hover span {
	letter-spacing: 2px;
}
.bdn-one:hover::before {
	opacity: 1;	
	transform: scale(1, 1);	
}
.bdn-one::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.5s;
	border: 1px solid rgba(255,255,255,0.2);
	background-color: rgba(255,255,255,0.1);
}
.bdn-one:hover::after {
	opacity: 0;	
	transform: scale(0.1, 1);
}

.bdn-one:hover::before {

  background-color: rgba(255,255,255,0);
}
.bdn-one:hover::after {

  background-color: rgba(255,255,255,0);
}
