.yc-modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: scale(1.1);
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.yc-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*background-image: linear-gradient(to bottom,#ff99cc,#ffccff,#ccccff);*/
	background-color : #eeeeef;
	padding: 1rem 0rem;
	width: 40rem;
	border-radius: 0.5rem;	
}
.yc-modal-content .yc-modal-title{
	border-bottom: 1px solid #000000; 
	margin-bottom: 5%; 
	padding: 1px 0px 0px 15px;
}

.yc-close-button {
 	float: right;
 	width: 2.5rem;
	line-height: 1.5rem;
 	text-align: center;
 	cursor: pointer;
 	border-radius: 0.25rem;
 	background-color: #eeeeef;
 	margin-top: -05%;
 	font-size: 3rem;
}


.yc-show-modal {
 	opacity: 1;
 	visibility: visible;
 	transform: scale(1.0);
 	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.yc-button{
	margin-top: 150px; 
	margin-left: 400px;
}

.yc-button button{
	/*border-radius: 20px;*/
	border-width: 0px;
	background: transparent;
	border: 1px solid #6c757d;	
	height: 50px;
	border-radius: 5px;
	width: 100px;
}
.yc-button button:hover{
	background: #6c757d;
	border: 0px solid ;	
	border-radius: 5px;
}

.yc-form{
	margin-bottom: 5%; 
}

.yc-form input{	
	display: block;
	width: 20%;	
	height: 50px;
	border : 1px solid #6c757d;
	border-radius: 5px;
	background: transparent;
	font-size: 18px;
	line-height: 1.2;
	padding: 0 26px;
	position: absolute;	
	float: left;
	width: 50%;
	position: relative; 	
  	padding-right: 15px;
  	padding-left: 25px;
  	margin-right: 10px;
  	margin-left: 10px;
}

.yc-form label{	
	padding : 10px;
	color: black;
	position: absolute;	
	font-size: 19px;
	float: left;
	width: 100%;
	position: relative;  	
  	padding-right: 15px;
  	padding-left: 15px;
} 

.yc-form input:focus {
	background: transparent;	
	height: 48px;	
	border: 1px black solid ;   
}

.yc-form input:focus + .yc-form label {
	padding-top: 0px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 4px;
	position: absolute;	
	font-size: 12px;
}

.yc-button-success{
	border-width: 0px !important;
	background: #2d301e !important;
	border: 0px solid green !important;	
	height: 50px !important;
	border-radius: 5px !important;
	width: 100px !important;
	color : white !important;

}

.yc-button-success::before{
	/*content: '&#10003';*/
	content: '\2713\a0';
	
}