
.cd__main{
   position: relative;
   min-height: 20px;
}
#containerDatePicker {
	display: none;
	z-index:1150;
	vertical-align: middle;

}

.glass {
	position: absolute;
	box-sizing: border-box;
	width: 90%;
	height: 65%;
	background: linear-gradient(
		107.18deg,
		rgba(255, 255, 255, 0.6) 0%,
		rgba(255, 255, 255, 0.3) 100%
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}

.picker {
	display: grid;
	height: 100%;
	grid-template-columns: 100%;
	grid-template-rows: 17% 15% 65%;
	//top:50%;
}



#picker_container {
	grid-row-start: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;

	font-family: var(--fontfam);
	/*background: #69a;*/
}



/*Desktop Stuff*/
@media only screen and (min-width: 900px) {
	.glass {
		width: 70%;
		height: 60%;
	}
	
	.picker {
		grid-template-rows: 30% 20% 40%;
	}
	
}

/*Datepicker Stuff*/
#picker_container {
	width: 100%;
	/*background: #56f;*/
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	padding-top: 150px;
}

#month_container,
#date_container,
#year_container {
	grid-row-start: 2;
	height: 50px;
	display: grid;
	grid-template-columns: 110px 30px;
	grid-template-rows: 50% 50%;
	margin: 2px;
	background: linear-gradient(
		107.18deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.05) 100%
	);
	backdrop-filter: blur(13px);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

#date_container {
	grid-template-columns: 50px 30px;
}

#year_container {
	grid-template-columns: 60px 30px;
}

#monthpicker,
#datepicker,
#yearpicker {
	width: 110px;
	height: 50px;
	/*background: var(--pickercolor);*/
	border-radius: 10px 0 0 10px;
	text-align: center;
	line-height: 50px;
	color: rgba(0, 0, 0, 1);
	cursor: ns-resize;
}

#datepicker {
	width: 50px;
}

#yearpicker {
	width: 60px;
}

.buttone {
	background: none;
	grid-column-start: 2;
	grid-column-stop: 2;
	grid-row-start: 1;
	/*background: var(--pickercolor);*/
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0 10px 0 0;
	cursor: pointer;
	border-left: 1px solid var(--bordercolor);
	touch-action: manipulation;
}

.bdown {
	grid-row-start: 2;
	grid-row-stop: 2;
	border-radius: 0 0 10px 0;
	border-top: 1px solid var(--bordercolor);
}

/*style reset*/
.bdatePicker {
	display: inline-block;
	border: none;
	padding: none;
	margin: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.bdatePicker:hover,
.bdatePicker:focus {
	background: rgba(255, 255, 255, 0.2);
}

.bdatePicker:focus {
	outline: none;
}

.bdatePicker:active {
	transform: scale(1);
}

