@media only screen and (max-width: 440px) {
	.button-wrapper #clean {
		display: block;
		margin: 0px auto 20px auto;
	}
	.button-wrapper #submitContact {
		display: block;
		margin: 0px auto;
	}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
    -moz-appearance:textfield;
}

.msgAlertWrapper {
	width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 14px 0px;
    position: fixed;
    top: 120px;
    z-index: 999;
}
.msgAlertWrapper .alert-msg {
    max-width: 550px;
    margin: 0 auto !important;
}
.msgAlertWrapper .alert-msg i {
    margin-top: 0;
    line-height: 13px;
}