:root {
	--primary-color: #e0bb6a;
	--secondary-color: #17312d;
	--tertiary-color: #152b27;
}

*,
html {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.single .content {
	width: 100%;
	/* max-width: 1250px; */
	margin: 0 auto;
	/* padding: 25px 25px 50px 25px; */
}

main {
	/* padding-top: 108px; */
}

@media screen and (max-width: 1024px) {
	main {
		padding-top: 0px;
	}
}

body {
	background: #f7f7f7;
	font-size: 12px;
	color: #555555;
}

main p {
	padding-bottom: 20px;
}

.container {
	width: 100%;
	max-width: 1300px;
	padding: 50px 25px 0;
	margin: 0 auto;

	color: #222;
	font-size: 14px;
	font-weight: 400;
}

@media screen and (max-width: 768px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.woocommerce-checkout .container {
	max-width: unset;
	padding: 0;
}

/* sticky footer */

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.header {
	flex-shrink: 0;
}

.content {
	flex-grow: 1;
}

.footer {
	flex-shrink: 0;
}

/* GENERAL WRAPPER */

.page-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

h1.page-title {
	text-align: center;
	padding-bottom: 40px;
}

.content-inner {
	width: 100%;
}

/* GENERAL CONTENT */
.page-content {
	padding: 50px;
}

.white-bg .page-content {
	background: #fff;
}

.no-bg .page-content {
	background: none;
}

/* ACCORDION */

dt {
	font-weight: 700;
	padding: 20px 0px;
	margin: 0px;
	background-color: #fff;
	border-radius: 10px;
}

dd {
	background-color: #fff;
	margin-bottom: 22px;
	border-radius: 10px;
}

/* labels */

.label-wrapper a {
	text-decoration: none;
}

.label {
	width: fit-content;
	min-height: 20px;
	line-height: 20px;
	font-size: 9px;
	font-weight: 600;
	text-align: center;
	border-radius: 100px;
	padding: 0 10px;
}

.label.label-default {
	color: #fff;
	background-color: var(--primary-color);
}

.label-success {
	background-color: #f7f7f7;
	color: #aaa;
}

.label-warning {
	background-color: #fbf7dd;
	color: #7c7129;
}

.label-danger {
	color: #db5b5b;
	border-color: #ffdddd;
	background: #ffdddd;
}

.label-info {
	color: #fff;
	background-color: #3d97bf;
}

.label-ready {
	color: #fff;
	background-color: #e6ca19;
}

/* Select */
.select {
	display: flex;
	flex-direction: column;
	width: min(100%, 300px);
	background-color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	z-index: 99;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.select.open:before {
	content: "";
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 98;
	cursor: initial;
}

.select.open .options {
	display: block;
}

.select .placeholder {
	padding: 10px;
	background-image: url("data:image/svg+xml;utf8,<svg fill='%23aaa' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position: center right 5px;
}

.select .options {
	background-color: #fff;
	position: absolute;
	z-index: 100;
	display: none;
	top: 100%;
	left: -1px;
	width: calc(100% + 2px);
	padding: 10px;
	border: none;
	border-radius: 5px;
	margin-top: 5px;
	cursor: default;
}

.select .option {
	border-radius: 3px;
	padding: 0 10px;
	line-height: 30px;
	cursor: pointer;
}

.select .option.active {
	color: var(--primary-color);
}

.select .option.disabled {
	color: #ccc;
	cursor: initial;
}

.select .option:hover {
	background-color: #f7f7f7;
}
