/* font-family: 'Libre Baskerville', serif;
font-family: 'Nunito Sans', sans-serif; */

:root {
	--red: #dc3545;
	--orange: #e4573d;
	--yellow: #ffc107;
	--green: #38cb89;
	--cyan: #0dcaf0;
	--gold: #c5a374;
	--dark: #333333;
	--highlite-color-1: #e4573d;
	/* --dark-color-1: #282828;
	--dark-color-2: #202020;
	--dark-color-3: #333333; */
	--text-color: #696969;
	--title-color: #333333;
	--light-color: #ababab;
	--text-weight: 400;
	--bg-color-1: #ffffff;
	--bg-color-2: #f4f3ec;
	--line-color: #ededed;
	--border-color: #cccccc;
	--fieldbg: #f8f8f8;
	--border-radius: 0;
	--font-normal: 'Nunito Sans', sans-serif;
	--font-title: 'Libre Baskerville', serif;
	/* --font-quote: 'PT Serif', serif; */
	--font-awesome: 'Font Awesome 5 Pro';
	--layout-width: 1320px;
}

*{outline: none;}

*::selection {
	background-color: var(--highlite-color-1);
	color: #fff;
}

body {
	letter-spacing: 0.03em;
	background: var(--bg-color-1);
	color: var(--text-color);
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	/* -moz-osx-font-smoothing: grayscale; */
	font-size: 16px;
	/* font-size: 1rem; */
	line-height: 1.73;
	font-weight: var(--text-weight);
	font-family: var(--font-normal);
	margin-top: 0;
}


input,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: var(--border-radius);
	/* box-shadow: 0 0 0 1px var(--light-gray); */
	border: 1px solid var(--formitem-border);
	background-color: #ffffff;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill{
	background: var(--bg-color-2);
	border: none;
}

 button, [type='button'],
.button, [type='reset'], [type='submit'] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	text-decoration: none;
	transition: all 0.2s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	display: inline-block;
	margin-bottom: 0;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	white-space: nowrap;
	padding: 12px 20px;
	font-size: 0.85em;
	line-height: 1.4em;

	letter-spacing: 1px;
	background: var(--highlite-color-1);
	border-radius: 3px;
	border: none;
	transition: all 0.2s;
	color: #ffffff;
	box-shadow: none;
	text-transform: uppercase;
}

.button.white{
	background: #ffffff;
	color: var(--dark-color-1);
}

.button.white:hover{
	background: var(--highlite-color-1);
	color: #ffffff;
}

.button:active, .button:hover, button:hover, button:focus, [type='button']:hover, [type='button']:focus, [type='reset']:hover, [type='reset']:focus, [type='submit']:hover, [type='submit']:focus {
	background-color: var(--dark-color-1);
	color: #ffffff;
	text-decoration: none;
}

.button:disabled, button:disabled, [type='button']:disabled, [type='reset']:disabled, [type='submit']:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

button:disabled:hover, [type='button']:disabled:hover, [type='reset']:disabled:hover, [type='submit']:disabled:hover {
	/* background-color: var(--light-gray); */
}


.form-actions .button:nth-child(n+2){
	margin-left: 20px;
}

fieldset {
	background-color: transparent;
	border: 0;
	margin: 0;
	padding: 0;
}

legend {
	font-weight: 700;
	font-family: var(--font-title);
	color: var(--title-color);
	margin-bottom: 0.375em;
	padding: 0;
}

.fieldset-legend{
	/* font-weight: var(--bold); */
	font-size: 1.2em;
}

label {
	display: block;
	font-weight: 700;
	font-family: var(--font-title);
	margin-bottom: 10px;
}

.form-item, fieldset.form-wrapper{
	margin: 0 0 20px;
}

.form-item>label:not(.option),
.form-wrapper .fieldset-description{
	margin: 0 0 10px;
	font-weight: 600;
	letter-spacing: 2px;
	font-family: var(--font-title);
	/* text-transform: uppercase; */
	font-size: 0.85em;
}

label a{ font-weight: 700; }

.form-item .description{
	font-size: 0.8em;
	margin: 10px 0 0;
	line-height: 1.2em;
	font-style: italic;
	opacity: 0.7;
	/* color: var(--light-gray); */
}

.field--label-inline .field--label,
.field--label-inline .field--item{ display: inline-block; }

.filter-guidelines{ display: none; }

.ui-dialog-off-canvas{
	min-width: 40%;
	left: auto;
	right: 0;
}


[type='color'], [type='date'], [type='datetime'], [type='datetime-local'], [type='email'], [type='month'], [type='number'], [type='password'], [type='search'], [type='tel'], [type='text'], [type='time'], [type='url'], [type='week'], input:not([type]), textarea, select {
	font-size: 1rem;
	line-height: 1.4em;
	resize: none;
	border-radius: var(--border-radius);
	-webkit-appearance: none;
	-moz-appearance: none;
	/* border: none ; */
	/* box-shadow: 0 0 0 1px #ccc; */
	box-sizing: border-box !important;
	color: inherit;
	padding: 10px 15px;
	margin: 0;
	max-width: 100%;
	text-overflow: ellipsis;
	transition: all 0.2s;
	background: #fff;
}

[type='color']:hover, [type='date']:hover, [type='datetime']:hover, [type='datetime-local']:hover, [type='email']:hover, [type='month']:hover, [type='number']:hover, [type='password']:hover, [type='search']:hover, [type='tel']:hover, [type='text']:hover, [type='time']:hover, [type='url']:hover, [type='week']:hover, input:not([type]):hover, textarea:hover, select:hover {
	border-color: #999;
}

[type='color']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='email']:focus, [type='month']:focus, [type='number']:focus, [type='password']:focus, [type='search']:focus, [type='tel']:focus, [type='text']:focus, [type='time']:focus, [type='url']:focus, [type='week']:focus, input:not([type]):focus, textarea:focus, select:focus {
	outline: none;
	/* border-color: #faba00; */
	color: inherit;
}

[type='color']:disabled, [type='date']:disabled, [type='datetime']:disabled, [type='datetime-local']:disabled, [type='email']:disabled, [type='month']:disabled, [type='number']:disabled, [type='password']:disabled, [type='search']:disabled, [type='tel']:disabled, [type='text']:disabled, [type='time']:disabled, [type='url']:disabled, [type='week']:disabled, input:not([type]):disabled, textarea:disabled, select:disabled {
	background-color: #f2f2f2;
	cursor: not-allowed;
}

[type='color']:disabled:hover, [type='date']:disabled:hover, [type='datetime']:disabled:hover, [type='datetime-local']:disabled:hover, [type='email']:disabled:hover, [type='month']:disabled:hover, [type='number']:disabled:hover, [type='password']:disabled:hover, [type='search']:disabled:hover, [type='tel']:disabled:hover, [type='text']:disabled:hover, [type='time']:disabled:hover, [type='url']:disabled:hover, [type='week']:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover, select:disabled:hover {
	border: 1px solid #ddd;
}

[type='color']::-webkit-input-placeholder, [type='date']::-webkit-input-placeholder, [type='datetime']::-webkit-input-placeholder, [type='datetime-local']::-webkit-input-placeholder, [type='email']::-webkit-input-placeholder, [type='month']::-webkit-input-placeholder, [type='number']::-webkit-input-placeholder, [type='password']::-webkit-input-placeholder, [type='search']::-webkit-input-placeholder, [type='tel']::-webkit-input-placeholder, [type='text']::-webkit-input-placeholder, [type='time']::-webkit-input-placeholder, [type='url']::-webkit-input-placeholder, [type='week']::-webkit-input-placeholder, input:not([type])::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	/* color: var(--light-gray); */
}

[type='color']:-ms-input-placeholder, [type='date']:-ms-input-placeholder, [type='datetime']:-ms-input-placeholder, [type='datetime-local']:-ms-input-placeholder, [type='email']:-ms-input-placeholder, [type='month']:-ms-input-placeholder, [type='number']:-ms-input-placeholder, [type='password']:-ms-input-placeholder, [type='search']:-ms-input-placeholder, [type='tel']:-ms-input-placeholder, [type='text']:-ms-input-placeholder, [type='time']:-ms-input-placeholder, [type='url']:-ms-input-placeholder, [type='week']:-ms-input-placeholder, input:not([type]):-ms-input-placeholder, textarea:-ms-input-placeholder {
	/* color: var(--light-gray); */
}

[type='color']::-ms-input-placeholder, [type='date']::-ms-input-placeholder, [type='datetime']::-ms-input-placeholder, [type='datetime-local']::-ms-input-placeholder, [type='email']::-ms-input-placeholder, [type='month']::-ms-input-placeholder, [type='number']::-ms-input-placeholder, [type='password']::-ms-input-placeholder, [type='search']::-ms-input-placeholder, [type='tel']::-ms-input-placeholder, [type='text']::-ms-input-placeholder, [type='time']::-ms-input-placeholder, [type='url']::-ms-input-placeholder, [type='week']::-ms-input-placeholder, input:not([type])::-ms-input-placeholder, textarea::-ms-input-placeholder {
	/* color: var(--light-gray); */
}

[type='color']::placeholder, [type='date']::placeholder, [type='datetime']::placeholder, [type='datetime-local']::placeholder, [type='email']::placeholder, [type='month']::placeholder, [type='number']::placeholder, [type='password']::placeholder, [type='search']::placeholder, [type='tel']::placeholder, [type='text']::placeholder, [type='time']::placeholder, [type='url']::placeholder, [type='week']::placeholder, input:not([type])::placeholder, textarea::placeholder {
	/* color: var(--light-gray); */
}

[type='color'].error, [type='date'].error, [type='datetime'].error, [type='datetime-local'].error, [type='email'].error, [type='month'].error, [type='number'].error, [type='password'].error, [type='search'].error, [type='tel'].error, [type='text'].error, [type='time'].error, [type='url'].error, [type='week'].error, input:not([type]).error, textarea.error, select.error {
	border-color: var(--red);
}

input[type="image"]{
	border: none;
}

[type='date'] {
	min-width: 120px;
}

.form-item--error-message{
	color: var(--red);
	font-style: italic;
	font-size: 0.9em;
	line-height: 1.2em;
	margin: 10px 0;
}

.form-required:after{
	content: '*';
	color: var(--red);
	font-weight: 700;
	margin-left: 3px;
}

textarea {
	resize: none;
}
/* .js-form-type-textarea{ margin: 0;} */


[type="file"] {
	margin-bottom: 0.75em;
	/* width: 100%; */
	padding: 8px 15px;
}

select {
	max-width: 100%;
	width: auto;
	padding: 10px 30px 10px 15px;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	cursor: pointer;
}

[type="checkbox"],
[type="radio"] {
	display: inline;
	float: left;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 21px;
	height: 21px;
	line-height: 21px;
	box-shadow: none;
	border: 1px solid var(--formitem-border);
	cursor: pointer;
}

[type="checkbox"]:hover,
[type="radio"]:hover{
	border-color: var(--dark-color-1);
}

[type="radio"]{
	border-radius: 50%;
}

[type="checkbox"]+label,
[type="radio"]+label{
	display: block;
	/* cursor: pointer; */
	font-size: 0.85em;
	line-height: 1.4em;
	padding: 1px 0 0 28px;
}

[type="checkbox"].error,
[type="radio"].error{
	border-color: var(--red);
}

[type="checkbox"]:checked,
[type="radio"]:checked{
	/* box-shadow: inset 0 0 0 7px var(--red); */
	/* border-color: var(--red); */
	border: 7px solid var(--highlite-color-1);
}



/* [type="checkbox"]:focus,
[type="radio"]:focus,
[type="file"]:focus,
select:focus {
	outline: 3px solid var(--light-gray);
	outline-offset: 2px;
} */

input[type="search"] {
	-webkit-box-sizing: border-box;
					box-sizing: border-box;
}

/* .form-checkbox,
.form-radio{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
} */



.form-item .option{
	font-weight: normal;
	/* font-size: ; */
	margin: 0;
}

/* .form-checkbox+label,
.form-radio+label{
	position: relative;
	padding-left: 30px!important;
	display: block;
}

.form-checkbox+label:before,
.form-radio+label:before{
	cursor: pointer;
	content: '';
	display: inline-block;
	background: #151515;
	width: 21px;
	height: 21px;
	margin: 0 10px 0 0;
	float: left;
	font-family: 'Font Awesome 5 Pro';
	font-size: 9px;
	font-weight: var(--bold);
	line-height: 21px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 3px;
}

.form-radio+label:before{
	border-radius: 50%;
}

.form-checkbox:checked+label:before{
	content: '\f45c';
	color: #faba00;
}

.form-radio:checked+label:before{
	content: '\f111';
	color: #faba00;
}

.form-checkbox.error+label:before,
.form-radio.error+label:before,{
	box-shadow: 0 0 0 1px #ff0000 inset;
}

.form-checkbox.error+label:before,
.form-radio.error+label:before,{
	border: 1px solid #ff0000;
} */



/* ul,
ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
} */

dl {
	margin: 0;
}

dt {
	font-weight: 600;
	margin: 0;
}

dd {
	margin: 0;
}

figure {
	margin: 0;
}

img,
svg,
picture,
video {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

a>img{
	transition: all 0.2s;
}

/* a:hover>img{
	filter: brightness(85%) contrast(115%);
} */


table {
	border-collapse: collapse;
	margin: 1.5em 0;
	/* table-layout: fixed; */
	text-align: left;
	width: 100%;
}

thead {
	line-height: 1.3;
	vertical-align: bottom;
}

tbody {
	vertical-align: top;
}

tr {
	border-bottom: 1px solid var(--border-color);
}

thead tr{
	border-bottom: 1px solid var(--dark-color-1);
}

th {
	font-weight: 700;
	/* font-family: var(--font-title); */
	/* font-size: 0.9rem; */
	/* letter-spacing: 2px; */
	color: var(--title-color)
}

th,
td {
	/* padding: 0.75em; */
	padding: 10px;
	border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.41;
	/* letter-spacing: 0.1em; */
	font-weight: 400;
	margin-top: 0;
	font-family: var(--font-title);
	color: var(--title-color);
	font-style: normal;
}

h1 {
	font-size: 2.4em;
	margin: 0 0 30px;
}

h2 {
	font-size: 2.1em;
	margin: 0 0 30px;
}

h3 {
	font-size: 1.8em;
	margin: 0 0 30px;
}

h4 {
	font-size: 1.4em;
	margin: 0 0 20px;
	font-weight: 600;
}

h5 {
	font-size: 1.2em;
	margin: 0 0 20px;
	font-weight: 600;
}

h6 {
	font-size: 1rem;
	margin: 0 0 20px;
	font-weight: 600;
}

p {
	margin: 0 0 20px;
}

a {
	color: inherit;
	text-decoration: none;
	/* transition: all 0.2s; */
}

a.button{ color: #ffffff; }

/* a:active, a:focus, a:hover { */
a:hover {
	color: var(--highlite-color-1);
	outline: none;
	text-decoration: none;
}

p a{
	color: inherit;
}

/* p a:hover{
	text-decoration: underline;
} */

hr {
	border-bottom: 1px solid var(--border-color);
	border-left: 0;
	border-right: 0;
	border-top: 0;
	margin: 1.5em 0;
}

pre, code, tt {
	font: 1em "andale mono", "lucida console", monospace;
	line-height: 1.5;
}

pre {
	background-color: #efefef;
	display: block;
	padding: 5px;
	margin: 5px 0;
	border: 1px solid #aaaaaa;
}

abbr {
	border-bottom: 1px dotted #666666;
	cursor: help;
	white-space: nowrap;
}

.visually-hidden{
	width: 0;
	height: 0;
}

.contextual{
	z-index: 1000;
}

b, strong{
	font-weight: 700;
	/* color: var(--dark-color-3); */
}