/*== Header Whtite Link ==*/
.navbar-transparent a.no-link {
	color: #fff;
}

.navbar-border-bottom {
	border-bottom: 1px solid #ddd !important;
}

.normalize-ul li {
	float: none !important;
}

/*== Send message info ==*/
.sendStatus {
	background-color: #AFDD2E;
    color: #000;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
}

/*== Scroll Down Arrow ==*/
.scroll-down-arrow {
	position: absolute;
	z-index: 3;
	bottom: 15px;
	left: 50%;
	margin-left: -16px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 20px;
	text-align: center;
	color: #fff;
  }

  .scroll-down-arrow .animated {
	position: relative;
	animation: fadeInDown 1.5s infinite;
	-webkit-animation: fadeInDown 1.5s infinite;
	-moz-animation: fadeInDown 1.5s infinite;
	-o-animation: fadeInDown 1.5s infinite;
  }

  @keyframes fadeInDown {
	0% {
	  top: -25px;
	  opacity: 0;
	}
	100% {
	  top: 10px;
	  opacity: 1;
	}
  }