.d2{
	/*background-color: red;*/
	width: 1/-1;
}
#old{
	background-color: #fff;
	text-align: left;
	margin: 30px auto;
	width: 500px;
	border-radius: 5px;
	box-shadow: 0 1px 8px 0 rgba(0,0,0,0.2);
}
#old:hover{
	transition: 0.6s;
	box-shadow: 1px 8px 12px 2px rgba(0,0,0,0.4);
}
#old h2{
	background: #444;
	margin-top: 0;
	margin-bottom: 10px;
	padding: 6px 0;
	text-align: center;
	color: #fff;
	font-size: 35px;
	font-weight: bold;
	border-radius: 5px 5px 0 0;
}
#old label,#new label{
	display: inline-block;
	margin: 10px 1% 3px 1%;
	padding: 0 15px;
	color: #444;
	font-size: 22px;
}
#old input{
	width: 88%;
	height: 35px;
	padding: 0 10px;
	font-size: 18px;
	color: #444;
	border:0.9px solid #bbb;
}
.text-danger{
	color: red;
}
a{
	text-decoration: none;
}
#new{		
	background-color: #fff;
	margin: 30px auto;
	width: 500px;
	height: 480px;
	border-radius: 5px;
	box-shadow: 0 1px 8px 0 rgba(0,0,0,0.2);
	text-align: left;
}
#new:hover{
	transition: 0.6s;
	box-shadow: 1px 8px 12px 2px rgba(0,0,0,0.4);
}
#new h2{
	background: #444;
	margin-top: 0;
	margin-bottom: 10px;
	padding: 6px 0;
	text-align: center;
	color: #fff;
	font-size: 35px;
	font-weight: bold;
	border-radius: 5px 5px 0 0;
}
#new input{
	width: 88%;
	height: 35px;
	padding: 0 10px;
	font-size: 18px;
	color: #444;
	background-color: #fff;
	border:0.9px solid #bbb;
}
.blue-btn, .green-btn, .deep-green-btn, .light-green-btn, .red-btn{	
	height: 40px;
	color:#fff;
	font-size: 1.5rem;
	border:0;
	padding: 2px;
}
.blue-btn{
	background: #3366ff;
}
.green-btn{
	background: green;
}
.deep-green-btn{
	background-color: #006100;
}
.light-green-btn{
	background-color: #9db904;
}
.red-btn{
	background-color: #ec0000;
}
.blue-btn:hover, 
.green-btn:hover, 
.red-btn:hover, 
.deep-green-btn:hover, 
.light-green-btn:hover{
	background: #000;
	cursor: pointer;
}

@media only screen and (max-width : 550px) {
	#old,#new{
		width: 360px;
		border-radius: unset;
		box-shadow: unset;
	}
	#old:hover,#new:hover{
		box-shadow: unset;
	}
	#old h2,#new h2{
		display: none;
	}
}