/*UI*/
.square_btn {
	-webkit-appearance: none;
	display: inline-block;
	padding: 0.3em 1em;
	text-decoration: none;
	color: #67c5ff;
	border: solid 2px #67c5ff;
	border-radius: 3px;
	transition: .4s;
	min-width: 80px;
	text-align: center;
}

.square_btn:hover {
	background: #67c5ff;
	color: white;
}

.square_btn_selected {
	-webkit-appearance: none;
	display: inline-block;
	padding: 0.3em 1em;
	text-decoration: none;
	border: solid 2px #67c5ff;
	border-radius: 3px;
	transition: .4s;
	min-width: 80px;
	text-align: center;
	background: #67c5ff;
	color: white;
}

.round_text {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 0;
	padding: 5px;
	font-size: 1.3em;
	color: #000000;
	border: solid 1px #ccc;
	margin: 0;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	-moz-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
	box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
}

.round_text:focus {
	border: solid 1px #67c5ff;
}

.round_button {
	-webkit-appearance: none;
	/* margin: 0; */
	padding: 1em 2em;
	border: none;
	display: inline-block;
	/* background-color: #5A7AB3; */
	background-color: #006FCF;
	box-shadow: 0 6px #4063A4;
	font-size: 110%;
	line-height: 1;
	color: #fff;
	position: relative;
	cursor: pointer;

	border-radius: 4px;
	top: 0;
	transition: .2s all;
}

.round_button:hover {
	border-radius: 4px;
	box-shadow: 0 6px #4063A4;
	top: 0;
	transition: .2s all;
	opacity: .8;
}

.round_button:active {
	box-shadow: 0 1px #4063A4;
	top: 5px;
}

.round_button_s {
	-webkit-appearance: none;
	/* margin: 0; */
	padding: 0.5em 1em;
	border: none;
	display: inline-block;
	/* background-color: #5A7AB3; */
	background-color: #006FCF;
	box-shadow: 0 6px #4063A4;
	font-size: 100%;
	line-height: 1;
	color: #fff;
	position: relative;
	cursor: pointer;

	border-radius: 4px;
	top: 0;
	transition: .2s all;
}

.round_button_s:hover {
	border-radius: 4px;
	box-shadow: 0 6px #4063A4;
	top: 0;
	transition: .2s all;
	opacity: .8;
}

.round_button_s:active {
	box-shadow: 0 1px #4063A4;
	top: 5px;
}

.z-label input[type=checkbox] {
	position: relative;
	top: -2px;
	-ms-transform: scale(1.8, 1.8);
	-webkit-transform: scale(1.8, 1.8);
	transform: scale(1.8, 1.8);
	margin: 0px 10px 0px 5px;
}

.z-label input[type=radio] {
	position: relative;
	top: -2px;
	-ms-transform: scale(1.8, 1.8);
	-webkit-transform: scale(1.8, 1.8);
	transform: scale(1.8, 1.8);
	margin: 0px 10px 0px 5px;
}

/*
input[type=checkbox] {
	-ms-transform: scale(1.8, 1.8);
	-webkit-transform: scale(1.8, 1.8);
	transform: scale(1.8, 1.8);
	margin-right: 5px;
}

input[type=radio] {
	-ms-transform: scale(1.8, 1.8);
	-webkit-transform: scale(1.8, 1.8);
	transform: scale(1.8, 1.8);
	margin-right: 8px;
} */

.select-datetime {
	position: relative;
	width: 100%;
	margin-top: 30px;
}

.input--datetime-box {
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	background-color: #fff;
	vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	height: 80px;
	padding-left: 75px;
	padding-right: 60px;
	font-size: 28px;
	font-weight: 600;
	border: 3px solid #5eb0d9;
	border-radius: 70px;
	outline: 0;
	-webkit-border-radius: 44px;
}

input[type="datetime-local"i]::-webkit-calendar-picker-indicator {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	padding: 0;
	background: transparent;
	color: transparent;
	cursor: pointer;
	width: 100%;
}

.span--time-icon {
	position: absolute;
	left: 12px;
	top: 9px;
	width: 60px;
	height: 60px;
	background: url(../img/time_tag.png) no-repeat 0 0;
	background-size: cover;
}

.span--select-icon {
	position: absolute;
	box-sizing: border-box;
	height: 67px;
	width: 49px;
	right: 0px;
	top: 23px;
	background: url(../img/select_icon.png) no-repeat 0 0;
	background-size: 30px 30px;
}


@media (min-width : 960px) {

	.select-datetime {
		position: relative;
		width: fit-content;
		margin-top: 30px;
	}

	.input--datetime-box {
		width: auto;
		height: 44px;
		padding-left: 45px;
		padding-right: 45px;
		font-size: 16px;
		border-radius: 44px;
	}

	.span--time-icon {
		left: 9px;
		top: 7px;
		width: 30px;
		height: 30px;
	}

	.span--select-icon {
		height: 42px;
		width: 38px;
		right: -6px;
		top: 14px;
		background-size: 15px 15px;
	}

}