button, select, input[type="text"] {
	height: 40px;	
}

@media screen and (max-width: 600px) {
	button, select, input[type="text"] {
		height: 30px;	
	}
}

button, select, input:not([type="radio"]), textarea {
	background-color: #FAFBFC;
	border: 1px solid var(--default-border-color);
	border-radius: 6px;
	box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
	box-sizing: border-box;
	color: #24292E;
	cursor: pointer;
	display: inline-block;
	font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
	font-weight: 600;
	list-style: none;
	padding: 6px 10px;
	position: relative;
	transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
	touch-action: manipulation;
	white-space: nowrap;
	word-wrap: break-word;
	vertical-align: middle;
}

button:hover, input:not([type="radio"]):hover, select:hover, textarea:hover {
	background-color: #F3F4F6;
	text-decoration: none;
	transition-duration: 0.1s;
}

button:disabled, input:not([type="radio"]):disabled, select:disabled, textarea:disabled {
	opacity: 0.8;
	border-color: var(--default-border-color);
	color: #959DA5;
	cursor: default;
}

button:active, input:not([type="radio"]):active, textarea:active {
	background-color: #F3F4F6;
	/*box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;*/
	transition: none 0s;
}

button:focus, input:not([type="radio"]):focus, select:focus, textarea:focus {
	outline: 3px solid darkgrey;
	transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

button:before, input:not([type="radio"]):before, select:before, textarea:before {
	display: none;
}

input, textarea, select, button, td, th {
	font-size: 1.05em;
}

input[type="radio"]:focus, input[type="checkbox"]:focus, .lowerButton:focus {
	outline: 1px transparent;
}

input[type=checkbox], input[type=radio] {
	margin-left: 0;
	padding-right: 0;
}

.swal2-styled.swal2-confirm, .swal2-styled.swal2-cancel {
	line-height: 0px;
}