
		.date-time-picker-box {
			width: 300px;
			display: grid;
			grid-template-rows: auto 1fr;
			grid-template-columns: 1fr auto;
			grid-template-areas: "label label" "date-picker time-picker";
			
			grid-gap: 0px;

			background: white;

			border-radius: 12px;
		}
		.date-time-picker-box .date-picker-box {grid-area: date-picker}
		.date-time-picker-box .time-picker-box {grid-area: time-picker}
		#section-box {
			display: flex;
			flex-direction: row;
		}
		.date-time-picker-label {
			grid-area: label;
			display: block;
		    font-size: 0.7rem;
		    font-weight: 600;
		    text-transform: uppercase;
		    cursor: pointer;
		    margin-left: 12px;
		    color: darkgray;
		   	border: none;
		   	font-display: var(--font-primary);
		   	padding: 12px 0 0 6px;
		   	
		}
		