/* 
Theme Name:		 Drahthaar CAWD
Theme URI:		 https://www.compuart.com
Description:	 Drahthaar CAWD is a child theme of OceanWP, created by Georg Schiess
Author:			 Georg Schiess
Author URI:		 https://www.compuart.com
Template:		 oceanwp
Version:		 1.0.0
Text Domain:	 oceanwp-child
*/

/* @import url("../oceanwp/style.css");  */

.oceanwp-mobile-menu-icon.mobile-right {
	margin-right: 20px;
}

.cawd-login-form input#wp-submit,
.cawd-register-form input[type="submit"] {
	background-color: #A7B973;
}

.cawd-login-form input#wp-submit:hover,
.cawd-register-form input[type="submit"]:hover {
	background-color: #314223;
}

.cawd-register-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* 2 Spalten */
	gap: 20px;
	/* Abstand zwischen den Spalten */
}

.cawd-register-form p {
	margin: 0;
}

.cawd-register-form p:nth-child(odd) {
	grid-column: 1;
	/* linke Spalte */
}

.cawd-register-form p:nth-child(even) {
	grid-column: 2;
	/* rechte Spalte */
}

/* Der Button soll über die ganze Breite gehen */
.cawd-register-form p:last-child {
	grid-column: 1 / span 2;
}

.dropdown-menu .sub-menu {
	min-width: 174px !important;
}

#mobile-dropdown {
	max-height: unset !important;
}


.dd-icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 23px;
}

.dd-icon-list-item {
  margin: 0.5em 0;
}

.dd-icon-list-item a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333;
}

.dd-icon-list-icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

svg.e-font-icon-svg.e-fas-chevron-right {
	width: 16px;
	height: 16px;
	fill: #333;
}

#searchform-dropdown input {
	color: #333;
}

@media (max-width: 1024px) {

		._df_book {
			display: none !important;
		}

	}


/* Auf mobilen Geräten: alles untereinander */
@media (max-width: 768px) {


	.cawd-register-form {
		grid-template-columns: 1fr;
		/* nur 1 Spalte */

	}

	.cawd-register-form p {
		grid-column: 1 / -1 !important;
	}
}