.custom-btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.custom-btn {
		transition: none;
	}
}

.custom-btn:hover {
	color: #212529;
	text-decoration: none;
}

.custom-btn:focus, .custom-btn.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-btn.disabled, .custom-btn:disabled {
	opacity: 0.65;
}

.custom-btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

a.custom-btn.disabled,
fieldset:disabled a.custom-btn {
	pointer-events: none;
}

.custom-btn-primary {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

.custom-btn-primary:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
}

.custom-btn-primary:focus, .custom-btn-primary.focus {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
	box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.custom-btn-primary.disabled, .custom-btn-primary:disabled {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}

.custom-btn-primary:not(:disabled):not(.disabled):active, .custom-btn-primary:not(:disabled):not(.disabled).active,
.show > .custom-btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #0062cc;
	border-color: #005cbf;
}

.custom-btn-primary:not(:disabled):not(.disabled):active:focus, .custom-btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .custom-btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.custom-btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.custom-btn-secondary:hover {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
}

.custom-btn-secondary:focus, .custom-btn-secondary.focus {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.custom-btn-secondary.disabled, .custom-btn-secondary:disabled {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.custom-btn-secondary:not(:disabled):not(.disabled):active, .custom-btn-secondary:not(:disabled):not(.disabled).active,
.show > .custom-btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #545b62;
	border-color: #4e555b;
}

.custom-btn-secondary:not(:disabled):not(.disabled):active:focus, .custom-btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .custom-btn-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.custom-btn-success {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}

.custom-btn-success:hover {
	color: #fff;
	background-color: #218838;
	border-color: #1e7e34;
}

.custom-btn-success:focus, .custom-btn-success.focus {
	color: #fff;
	background-color: #218838;
	border-color: #1e7e34;
	box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.custom-btn-success.disabled, .custom-btn-success:disabled {
	color: #fff;
	background-color: #28a745;
	border-color: #28a745;
}

.custom-btn-success:not(:disabled):not(.disabled):active, .custom-btn-success:not(:disabled):not(.disabled).active,
.show > .custom-btn-success.dropdown-toggle {
	color: #fff;
	background-color: #1e7e34;
	border-color: #1c7430;
}

.custom-btn-success:not(:disabled):not(.disabled):active:focus, .custom-btn-success:not(:disabled):not(.disabled).active:focus,
.show > .custom-btn-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}