table {
	display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;

	width: 100%;
    border: 1px solid #C9CDCF;
    border-spacing: 0;
}

table tbody {
	display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

table tr {
	display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}

table tr td {
	padding: 10px;
	border-right: 1px solid #C9CDCF;
    border-bottom: 1px solid #C9CDCF;
    background-color: #FFFFFF;
}

.maincontent ul,
.maincontent ol {
	padding-left: 20px;
}

body.search .maincontent form,
body.search .maincontent article {
	margin-top: 50px;
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.maincontent blockquote {
    border-left: 5px solid var(--primary);
    padding-left: 15px;
}

.vc_row {
	background-size: cover;
}

.ar p,
.ar li {
    font-size: 16px;
    line-height: 15px;
}

.ar blockquote {
	font-family: "Catamaran", sans-serif;

	padding: 0;
	border: 0;
}

/* Stepped indentation effects */
/* indent-right: last element flush right, first element most indented */
.indent-right {
    float: right;
}

.indent-right .wpb_wrapper > * {
    text-align: left !important;
}

.indent-right .wpb_wrapper > *:nth-last-child(1) {
	margin-left: 180px;
}

.indent-right .wpb_wrapper > *:nth-last-child(2) {
	margin-left: 160px;
}

.indent-right .wpb_wrapper > *:nth-last-child(3) {
	margin-left: 140px;
}

.indent-right .wpb_wrapper > *:nth-last-child(4) {
	margin-left: 120px;
}

.indent-right .wpb_wrapper > *:nth-last-child(5) {
	margin-left: 100px;
}

.indent-right .wpb_wrapper > *:nth-last-child(6) {
	margin-left: 80px;
}

.indent-right .wpb_wrapper > *:nth-last-child(7) {
	margin-left: 60px;
}

.indent-right .wpb_wrapper > *:nth-last-child(8) {
	margin-left: 40px;
}

.indent-right .wpb_wrapper > *:nth-last-child(9) {
	margin-left: 20px;
}

.indent-right .wpb_wrapper > *:nth-last-child(10) {
	margin-left: 0;
}

/* indent-left: first element flush left, last element most indented */
.indent-left {
    float: left;
}

.indent-left .wpb_wrapper > * {
    text-align: right !important;
}

.indent-left .wpb_wrapper > *:nth-last-child(1) {
	margin-right: 180px;
}

.indent-left .wpb_wrapper > *:nth-last-child(2) {
	margin-right: 160px;
}

.indent-left .wpb_wrapper > *:nth-last-child(3) {
	margin-right: 140px;
}

.indent-left .wpb_wrapper > *:nth-last-child(4) {
	margin-right: 120px;
}

.indent-left .wpb_wrapper > *:nth-last-child(5) {
	margin-right: 100px;
}

.indent-left .wpb_wrapper > *:nth-last-child(6) {
	margin-right: 80px;
}

.indent-left .wpb_wrapper > *:nth-last-child(7) {
	margin-right: 60px;
}

.indent-left .wpb_wrapper > *:nth-last-child(8) {
	margin-right: 40px;
}

.indent-left .wpb_wrapper > *:nth-last-child(9) {
	margin-right: 20px;
}

.indent-left .wpb_wrapper > *:nth-last-child(10) {
	margin-right: 0;
}

/* Search styling in sidebar and menu */
.sidebar .search_form,
#menu .search_form {
	margin-top: 30px;
	display: flex;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar .search_input,
#menu .search_input {
	flex: 1;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-right: none;
	font-size: 14px;
	outline: none;
	transition: border-color 0.3s ease;
}

.sidebar .search_input:focus,
#menu .search_input:focus {
	border-color: var(--primary, #0066cc);
}

.sidebar .suche_text,
#menu .suche_text {
	padding: 12px 20px;
	background-color: var(--primary, #0066cc);
	color: white;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sidebar .suche_text:hover,
#menu .suche_text:hover {
	background-color: var(--primary-dark, #0052a3);
}

.sidebar .suche_text i,
#menu .suche_text i {
	font-size: 16px;
}