
.alert-area 
{
	max-height: 100%;
	position: fixed;
	bottom: 5px;
	left: 20px;
	right: 20px;
}

.alert-box 
{
	font-size: 16px;
	color: white;
	background: rgba(0, 0, 0, 0.9);
	line-height: 1.3em;
	padding: 10px 15px;
	margin: 5px 10px;
	position: relative;
	border-radius: 5px;
	transition: opacity 0.5s ease-in;
}

.alert-box.hide 
{
  opacity: 0;
}

.alert-close 
{
	background: transparent;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 15px;
	right: 15px;
}

.alert-close:before, .alert-close:after 
{
	content: '';
	width: 15px;
	border-top: solid 2px white;
	position: absolute;
	top: 5px;
	right: -1px;
	display: block;
}

.alert-close:before 
{
	transform: rotate(45deg);
}

.alert-close:after 
{
	transform: rotate(135deg);
}

.alert-close:hover:before, .alert-close:hover:after 
{
	border-top: solid 2px #d8d8d8;
}

@media (max-width: 767px) and (min-width: 481px)
{
  .alert-area 
	{
    left: 100px;
    right: 100px;
  }
}

@media (min-width: 768px) 
{
  .alert-area {
    width: 350px;
    right: auto;
    left: 0;
  }
}

/* ALERT RELATED CLASS (END) */

.alert-message-container 
{
  text-align: center;
  line-height: 2.5em;
  margin-top: 50px;
}

.alert-message-box 
{
  font-size: 20px;
  max-width: 300px;
  border: solid 1px #444;
  padding: 10px 15px;
  outline: none;
  transition: box-shadow 0.1s;
}

.alert-message-box:focus 
{
  box-shadow: 0 0 15px 2px #888;
}

.alert-message-button 
{
  font-size: 18px;
  color: white;
  background: #14b9ff;
  width: 250px;
  border: solid 1px #14b9ff;
  padding: 10px 20px;
  margin-top: 5px;
  cursor: pointer;
  outline: none;
  transition: background 0.1s;
}

.alert-message-button:hover, .alert-message-button:focus, .alert-message-button:active 
{
	background: #7dd8ff;
}
