body{
	padding: 0;
	margin: 0;
}
input[type="button"] {
  display: block;
  margin: 200px auto 0 auto;
  border-radius: 10px;
  padding: 10px;
  box-shadow: none;
  border:none;
  background-color: #00bfff;
  color: #f0ffff;
}
input[type="button"]:hover, input[type="button"]:active, input[type="button"]:focus {
	outline: 0;
}

#notify {
  border-style: solid;
  border-width: 1px;
  display: block;
  width: 100%;
  font-weight: normal;
  margin-bottom: 1.25rem;
  position: relative;
  top: 0;
  padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  font-size: 20px;
  background-color: #d64444 !important;
  border-color: #d64444  !important;
  color: white;
  /*box-shadow: 0px 1px 5px 0 #2f4f4f;*/
  box-sizing: border-box;
  z-index: 100;
  margin-bottom: 0;
  text-align: center;
  
}
#notify a {
	background: #fff;
}

#notify.success {
  background-color: #43ac6a;
  border-color: #3a945b;
  color: white;
  text-align: center;
  font-size: 20px;
  z-index: 1000;
  font-size: 17px;
}
#notify .close {
	float: right;
}
#notify .coupon-code {
	display: inline-block;
	margin-left: 30px;
	border: 1px dashed #ccc; 
	padding: 5px;
}
.close {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  cursor: pointer;
}
.close::before, .close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}
.close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.close.big {
  -webkit-transform: scale(3);
  -moz-transform: scale(3);
  -ms-transform: scale(3);
  -o-transform: scale(3);
  transform: scale(3);
}
.close.heavy::before, .close.heavy::after {
  height: 6px;
  margin-top: -3px;
}