
		html,body{
			height: 100%;
		}
		body{
			display: -webkit-flex;
			display: -moz-flex;
			display: -ms-flex;
			display: -o-flex;
			display: flex;
			-ms-align-items: center;
			align-items: center;
			justify-content: center;
			width: 70%;
			margin: auto;
		}
		.btn{
			/*display: block;*/
			margin: auto;
			color: #fff;
		    background-color: #ff3402;
		    border-color: #ff3402;
		    padding: 12px 40px;
		    font-size: 21px;
		    display: -webkit-flex;
		    display: -moz-flex;
		    display: -ms-flex;
		    display: -o-flex;
		    display: flex;
		    -ms-align-items: center;
		    align-items: center;
		    justify-content: center;
		}
		.btn:hover, .btn:active, .btn:active:hover, .btn-primary.active, .btn-primary:active, .open>.dropdown-toggle.btn-primary, .btn-primary.focus, .btn-primary:focus{
			 background-color: #ff3402 !important;
		    border-color: #ff3402 !important;
		}
		 .btn:active{
		 	position: relative;
		 	top: 3px;
		 }
		.btn img{
		    width: 28px;
			margin-right: 8px;
		}
		@media only screen and (max-width: 479px){
			body{
				-webkit-flex-direction: column;
				-moz-flex-direction: column;
				-ms-flex-direction: column;
				-o-flex-direction: column;
				flex-direction: column;
			}
			a.btn.btn-primary {
			    margin: 0px;
			    margin-bottom: 20px !important;width: 100%;
			}
		}
	