
.bts-close {
	color: white;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	right: 10px;
	top: -15px;
	background: #000;
	border-radius: 50px;
	padding: 0 7px;
	height: 30px;
	width: 30px;
}

.bts-close:hover, .bts-close:focus {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

.bts-modal-header {
	padding: 2px 16px;
	background-color: #fff;
	color: white;
}

.bts-modal-body {
	padding: 10px 24px 20px;
	width: 100%;
}

.bts-modal-footer {
	padding: 2px 16px;
	background-color: #fff;
	color: white;
}

/* Add Animation */
@-webkit-keyframes slideIn {
	from {
		bottom: -300px;
		opacity: 0;
	}
	
	to {
		bottom: 0;
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		bottom: -300px;
		opacity: 0;
	}
	
	to {
		bottom: 0;
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}
