#welcomePopupModal{
	z-index: 10000;
}
#welcomePopupModal .modal-dialog{
	width: 620px;
	max-width: 94%;
	margin-left: auto;
	margin-right: auto;
}
#welcomePopupModal .modal-content{
	border: none;
	border-radius: 0;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
	background: #fff;
}
#welcomePopupModal .modal-body{
	padding: 40px;
	font-size: 20px;
	line-height: normal;
	color: #343333;
}
#welcomePopupModal .modal-body h4{
	margin: 0 0 24px;
}
#welcomePopupModal .modal-body h4 span{
	display: inline-block;
	padding: 8px 15px;
	background: #f7ad49;
	font-size: 31px;
	font-weight: bold;
	color: #fff;
}
#welcomePopupModal .modal-body p{
	margin-bottom: 40px;
}
#welcomePopupModal .modal-body p:last-child{
	margin-bottom: 0;
}
#welcomePopupModal .modal-body p a:only-child{
	display: inline-block;
	padding: 8px 23px;
	background: #f7ad49;
	border: 3px double #fff;
	border-radius: 0;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}
#welcomePopupModal .close{
	opacity: 1;
	position: absolute;
	z-index: 10;
	top: 40px;
	right: 40px;
	font-size: 0;
	line-height: 1;
	width: 15px;
	height: 15px;
}
#welcomePopupModal .close svg{
	width: 100%;
	height: auto;
}
#welcomePopupModal .btn[data-dismiss="modal"]{
	display: none;
}

.welcome-modal-button{
	position: fixed;
	z-index: 100;
	bottom: 10px;
	right: 10px;
	display: block;
	padding: 15px 30px;
	background: #F7AD49;
	border: none;
	color: #fff;
	cursor: pointer;
	-webkit-transition: -webkit-transform 300ms ease;
	transition: transform 300ms ease;
	-webkit-transform: translateY( 122% );
	transform: translateY( 122% );
	animation: fadeFromBottom 500ms ease;
	animation-delay: 2s;
	animation-fill-mode: forwards;
}

@keyframes fadeFromBottom {
	0% {
		-webkit-transform: translateY( 122% );
		transform: translateY( 122% );
	}
	100% {
		-webkit-transform: translateY( 0% );
		transform: translateY( 0% );
	}
}