.btn {
	text-decoration: none;
	display: inline-block;
	position: relative;
	font-weight: 400;
	color: #212529;
	text-align: center;
	border: 1px solid transparent;
	padding: 6px 16px;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	cursor: pointer;
	background-color: rgba(202, 202, 202, 0.8);
}

.btn:focus {
	transition: 0.5s;
	box-shadow: 0 0 0 3px rgba(133, 133, 133, 0.8);
}

.btn.main {
	background-color: #003d54;
	color: #fff;
}

.btn.main:focus {
	transition: 0.5s;
	box-shadow: 0 0 0 3px rgba(0, 61, 84, 0.8);
}

[data-theme='dark'] .btn.main {
	background-color: #e1e2e5;
	color: var(--color-app-primary);
}

[data-theme='dark'] .btn.main:focus {
	box-shadow: 0 0 0 3px white;
}

.btn.main:disabled {
	color: black;
	background: var(--color-disabled-button);
	cursor: default;
}

.btn.error {
	background-color: #e01b1b;
	color: #fff;
}

.btn.error:focus {
	transition: 0.5s;
	box-shadow: 0 0 0 3px rgba(224, 27, 27, 0.8);
}

.btn.warning {
	background-color: #f57c00;
	color: #fff;
}

.btn.warning:focus {
	transition: 0.5s;
	box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.8);
}

.btn.success {
	background-color: #388e3c;
	color: #fff;
}

.btn.success:focus {
	transition: 0.5s;
	box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.8);
}

.btn.purple {
	background-color: #ab47bc;
	color: #fff;
}

.btn.purple:focus {
	transition: 0.5s;
	box-shadow: 0 0 0 3px rgba(171, 71, 188, 0.8);
}

.btn.info {
	background-color: #0288d1;
	color: #fff;
}

.btn.info:focus {
	transition: 0.5s;
	box-shadow: 0 0 0 3px rgba(2, 136, 209, 0.8);
}
