.func-button{
    background-color: #e9e9ed;
    border: solid 1px #8f8f9d;

    padding: 0px 8px;
    border-radius: 0.2em;
    font-size: 0.8em;

    text-decoration: none;
    color: #111;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.func-button:hover {
	border: solid 1px #111;
}

.func-button-disabled {
	background-color: #e9e9ed;
	border: solid 1px #8f8f9d;
	
	padding: 0px 8px;
	border-radius: 0.2em;
	
	font-size: 0.8em;
	
	text-decoration: none;
	
	color: #838383;
	
	display: inline-flex;
	justify-content: center;
	align-items: center;

    cursor: default;
}


.html-button{
    width: 1.8em;
    text-align: center;
}

.hidden {
    display: none;
}

.incrementer-button{
	display: flex;
	width: 1.5em;
	height: 1.5em;

	justify-content: center;
	align-items: center;
}

.decrementer-button{
	display: flex;
	width: 1.5em;
	height: 1.5em;

	justify-content: center;
	align-items: center;
}

.response-button{
	display: flex;
	width: 1.5em;
	height: 1.5em;

	justify-content: center;
	align-items: center;
}

.button{
    background-color: #e9e9ed;
    border: solid 1px #8f8f9d;
    border-radius: 0.3em;

    text-decoration: none;
    color: #111;

	display: flex;
	min-width: 1.5em;
	min-height: 1.5em;

	justify-content: center;
	align-items: center;
	align-self: center;
}

.circle-button-t{
    border: solid 1px #00000000;
    text-decoration: none;
    color: #111;
	font-size: 1.8em;
	
	display: flex;
	min-width: 1.5em;
	min-height: 1.5em;

	justify-content: center;
	align-items: center;
	align-self: center;
	transition: 0.2s ease-in-out;
}

.circle-button-t:hover{
    background-color: #e9e9ed;
    border: solid 1px #e9e9ed;
    border-radius: 50%;
}

.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(65, 65, 65,.3);
	border-radius: 50%;
	border-top-color: rgba(170, 170, 170, 0.2);
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
}

.inplace-edit{
    text-decoration: none;
    border-bottom: solid 1px var(--inplace-edit);
}

@keyframes spin {
	to { -webkit-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
	to { -webkit-transform: rotate(360deg); }
}

