

input 
{
	display: inline-block;
	padding: 5px;
	border: 1px solid #aaaaaa;
}

input[required] {
	border: 2px solid #EE8F40;
}
 

button
{
	display: inline-block;
	
	/*
		--button-bgcolor: #FFC900;
 		--button-color: #222;
		--button-border: 0px;
	*/	
	
	background-color: var(--button-bgcolor );
	color: var(--button-color );
	border: var(--button-border);
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	
}

select 
{
	display: inline-block;
	border: 1px solid #aaaaaa;
	padding: 5px;
}



.ResponsiveForm input,
.ResponsiveForm select
{
	display: block;
	width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
} 
 
.jsContentPopup .ResponsiveForm
{
	width: 400px;
}

.jsContentPopup .ResponsiveForm button[type="submit"]
{
	float: right;
}

	select {
		width: 100%;
		display: block; 
		font-size: 16px;
		padding-left: 10px;
		padding-right: 40px;
		
		background-color: #efefef;
 		border-radius: 5px;
		border: 2px solid #ddd;
		
		-moz-appearance: none;
		-webkit-appearance: none;
		
		position: relative;
		
		background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
		linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
		background-repeat: no-repeat, repeat;
		background-position: right .7em top 50%, 0 0;
		background-size: .65em auto, 100%;
	}
	
	
	
	
	
	
	
	
	

.jsPopupNotification
{   
	margin-left: auto;
	margin-right: auto;
	
	padding: 0px;
	
 	width: 10px;
	
 	min-height: 40px;
 	min-width: 30%;
	max-width: 50%; 
	
	background-color: #222222; 
	color: #F6F6F6;   
	position: fixed; 
	 
	right: 10px; 
	bottom: -150px;
	
	z-index: 2000;
	
    box-shadow: 0px 0px 3px gray;	
   	border-radius: 3px;
    
    transition: all 0.3s linear;
    
    opacity: 0;
	
	margin-top: 150px;
	
	font-size: 14px;
}


.jsPopupNotification[type="Error"]
{
	background-color: #D40000;
}

.jsPopupNotification.open
{
	opacity: 1 !important;  
	bottom: 10px;
}

.jsPopupNotification .jsPopupInputContainer
{
	display: none;
}


.jsPopupNotification .jsPopupMessage
{
	text-align: left;
	position: relative;
	margin: 4px;
	
	padding: 15px 25px;  
	 
	font-size: 15px;   
	 
}

#jsNotifyContainer 
{
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 500px;
	z-index: 5000;  
}

#jsNotifyContainer .jsPopupNotification
{
	position: static;
	display: block;
	margin: 10px !important;
 	min-width: auto;
	width: auto;
	
	text-align: left;
	background-color: #dff0d8;
	border:1px solid #d0e9c6;
	
	/* green */
	background-color: #C9E6C4;
    color: #3c763d;
    border: 1px solid #9ABE95;
	
	/* dark */
	background-color: #444444;
	color: white;
	border: 1px solid #666666;
	
	
	
	border-radius: 5px;
    
 	box-shadow: 0px 0px 2px gray;
 	box-shadow: none;
 	cursor: pointer;
 	
 	padding: 10px;
}

#jsNotifyContainer .jsPopupMessage
{
	text-align: left; 
	font-size: 14px;
}


#jsNotifyContainer .jsPopupMessage .title
{
	text-align: left;
	padding-bottom: 5px; 
	font-size: 16px;
	font-weight: bold;
}



button[disabled] {
	background-color: #efefef;
	color: #b3b3b3;
}