/* CSS Document */

/* Buttons only */

/*   Green = #4CAF50 , Blue =#008CBA , Dark Orange =#ff8c00 , Red=#f44336, Black=#555555 */
/* ----------Pressed Effect = Rectangle Elipse start --------*/
.btnPressEffect {         /* <button class="btnPressEffect">Submit</button> */
  display: inline-block;
  padding: 4px 20px; /* Height, width of button*/
  font-size: 17px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #ff8c00;
  border: none;
  border-radius: 5px;
  box-shadow: 0 8px #999999;
}

.btnPressEffect:hover {background-color: #ffae4c}

.btnPressEffect:active {
  background-color: #4CAF50;
  box-shadow: 0 2px #b96500;
  transform: translateY(4px);
}
/* ----------Rectangle Elipse End --------*/

		/* ----------Shadow start --------*/
		.buttonShadow {
		  background-color: #ff8c00; /* Orange */
		  border: none;
		  color: white;
		  padding: 7px 21px; /*height and width of button*/
		  text-align: center;
		  text-decoration: none;
		  display: inline-block;
		  font-size: 16px;
		  margin: 4px 2px;
		  cursor: pointer;
		  -webkit-transition-duration: 0.4s; /* Safari */
		  transition-duration: 0.4s;  
		 box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
		}
         
		.buttonShadow:hover {
           box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.9);
		}
		 /* ----------Shadow End --------*/
 
  /* ----------Padding Start --------*/
 .buttonPadding {
  background-color: #008CBA; /* Blue */
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
 }
 
.b14X40 {padding: 14px 40px;}  /*<button class="buttonPadding b14X40">14px 40px</button>*/
.b32X16 {padding: 32px 16px;}    /*<button class="buttonPadding b32X16">32px 16px</button>*/
.b16 {padding: 16px;}  /*<button class="buttonPadding b16">16px</button> */

 /* ----------Padding End --------*/
 
 
				 /* button with span tag + arrow animate start */
				 /* e,g <button class="btnArrow" ><span>Start Exam </span></button> */
				 .btnArrow {
				  display: inline-block;
				  border-radius: 30%; /*this changes shape of button*/
				  background-color: #ff8c00;
				  border: none;
				  color: #FFFFFF;
				  text-align: center;
				  font-size: 20px;
				  padding: 15px;/* Height of button*/
				  width: 200px;
				  transition: all 0.5s;
				  cursor: pointer;
				  margin: 5px;
                  opacity: 0.7;
				   vertical-align:middle;
				}
				
				.btnArrow span {
				  cursor: pointer;
				  display: inline-block;
				  position: relative;
				  transition: 0.5s;
				}
				
				.btnArrow span:after {
				  content: '\00bb';
				  position: absolute;
				  opacity: 0;
				  top: 0;
				  right: -20px;
				  transition: 0.5s;
				}
				
				.btnArrow:hover span {
				  padding-right: 25px;
				}
				
				.btnArrow:hover span:after {
				  opacity: 1;
				  right: 0;
				}
				.btnArrow:hover{
                font-size:22px;
                opacity: 1;                
				 background-color: #4CAF50;
				}
				 
			 /* button with span tag + arrow animate end */
			 
 
 
 
 
 
 
 
 
 
 