/*

custom colors
=============

	browns
	-----
	dark: rgb(142, 117, 87) | #8e7557
	light: rgb(203, 155, 101)

	reds
	----
	dark: rgb(115, 20, 36)
	light: rgb(167, 29, 53)

	grays
	-----
	dark: rgb(82, 82, 82)
	light: rgba(0, 0, 0, 0.07) | #00000012 | rgb(237, 237, 237) | #ededed

	black
	-----
	rgb(0, 0, 0)

	white
	-----
	rgb(255, 255, 255) | #ffffff

*/

input:not([type=radio]), select {
	border-radius: 0 !important;
}

html, body {
    overflow-x: hidden;
    font-family: Roboto, Helvetica, Arial, sans-serif;
	color: rgb(82, 82, 82);
}

h1 {
	color: rgb(142, 117, 87);
	font-weight: 600;
}

a:link {
	color: rgb(167, 29, 53);
}

a:visited {
	color: rgb(167, 29, 53);
}

a:hover {
	color: rgb(115, 20, 36);
}

/*
a.alert-danger-link:link {
	color: rgb(170, 0, 85);
}

a.alert-danger-link:visited {
	color: rgb(170, 0, 85);
}

a.alert-danger-link:hover {
	color: rgb(200, 4, 82);
}

.alert-danger {
	background-color: rgba(200, 4, 82, 0.25);
	border-color: rgba(200, 4, 82, 0.25);
	color: rgb(200, 4, 82);
}
*/

.alert {
	border-radius: 0;
}

.btn {
	border-radius: 2px !important;
	padding: 14px 24px !important;
	line-height: 18px !important;
	font-weight: 600 !important;
}

.btn-link {
	color: rgb(167, 29, 53);
}

.btn-link:focus {
	box-shadow: 0 0 0 0;
}

.btn-link:hover {
	color: rgb(115, 20, 36);
}

.btn-primary {
	background-color: rgb(167, 29, 53);
	border-color: rgb(167, 29, 53);
}

.btn-primary:disabled {
	background-color: rgb(167, 29, 53);
	border-color: rgb(167, 29, 53);
}

.btn-primary:focus {
	background-color: rgb(167, 29, 53);
	border-color: rgb(167, 29, 53);
	box-shadow: 0 0 0 4px rgba(115, 20, 36, 0.25) !important;
}

.btn-primary:hover {
	background-color: rgb(115, 20, 36);
	border-color: rgb(115, 20, 36);
}

.card {
	border-radius: 0 !important;
}

.card-header {
	background-color: rgb(142, 117, 87);
	border-radius: 0 !important;
	color: rgb(255, 255, 255);
	font-weight: 600;
}

.footer {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	font-size: 14px;
}

.header-footer-link {
	/* color: rgb(203, 155, 101) !important; */
	color: rgb(255, 255, 255) !important;
	font-size: 16px;
	text-decoration: none;
}

.header-footer-link:hover {
	/* color: rgb(142, 117, 87) !important; */
	color: rgb(203, 155, 101) !important;
}

.form-control:focus {
	border-color: rgb(203, 155, 101);
	box-shadow: 0 0 0 0.3rem rgba(203, 155, 101, 0.25);
}

.form-select:focus {
	border-color: rgb(203, 155, 101);
	box-shadow: 0 0 0 0.3rem rgba(203, 155, 101, 0.25);
}

.form-check-input:focus {
	border-color: rgb(203, 155, 101);
	box-shadow: 0 0 0 0.3rem rgba(203, 155, 101, 0.25);
}

.form-check-input:checked {
	background-color: rgb(203, 155, 101);
	border-color: rgb(203, 155, 101);
}

.header {
	background-color: rgb(0, 0, 0);
	border-bottom: .1px solid rgb(255, 255, 255);
	color: rgb(255, 255, 255);
}

.modal-open[style] {
	padding-right: 0px !important;
}

.row-alternate {
	background-color: rgba(0, 0, 0, 0.07);
}

.accordion-button:not(.collapsed) {
	background-color: rgb(142, 117, 87);
	color: rgb(255, 255, 255);
	font-weight: 500;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='white' stroke-width='.75' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
	border-color: rgb(142, 117, 87);
	box-shadow: 0 0 0 0;
}