﻿    button::-moz-focus-inner,
    input[type="reset"]::-moz-focus-inner,
    input[type="button"]::-moz-focus-inner,
    input[type="submit"]::-moz-focus-inner,
    input[type="file"] > input[type="button"]::-moz-focus-inner { border: none; }
    
    /* default button */
	.button {
		background     : #dedede;
		display        : block;
		text-align     : center;
		padding        : 6px 40px;
		color          : #FFF;
		text-decoration: none;
		font-size      : 12px;
		font-family    : Arial, "Helvetica Neue", "Helvetica", Tahoma, Verdana, sans-serif;
		cursor         : pointer;
		border         : none;
		outline        : none;
		margin         : 0;
	}    
	
                                     
    /* Colors -------- */
    .yellow.button            { background-color: #fed66e; }
    .blue.button              { background-color: #7C3A88; font-size: 16px!important; }
    .green.button             { background-color: #84d02b; width: 100%; padding: 2px; }
    .red.button               { background-color: #f55543; }
    .light-gray.button        { background-color: #dedede; }
    .dark-gray.button         { background-color: #3f4040; }
    .transparent-black.button { background: rgba(0, 0, 0, 0.5); }
    .transparent-white.button { background: rgba(255, 255, 255, 0.5); }

    /* Hovers -------- */
    .yellow.button:hover      { background-color: #fee196; }
    .blue.button:hover      { background-color: #121FA8; }
    .green.button:hover      { background-color: #a2dd59; }
    .red.button:hover      { background-color: #f8796b; }
    .light-gray.button:hover      { background-color: #ebebeb; }
    .dark-gray.button:hover      { background-color: #656767; }
 

/* mobile devices */   
@media only screen and (max-width: 767px) {
	
.button, .green, .style-1 {
		width: 95%!important;
		text-align: center!important;
		font-size: 1.3em!important;
		line-height: 1.6em!important;
	}    

}        