.caf-h2 {
	font-weight:100;
	font-size: 28px;
	font-family: 'proxima-nova', sans-serif;
	margin-bottom:12px;
	margin-top: 0px;
}

.caf-h3 {
	font-size: 22px;
	font-family: 'proxima-nova', sans-serif;
}

.caf-proxima-nova-font {
	font-family: 'proxima-nova', sans-serif;
}

.caf-spacer {
	height: 20px;
}

.caf-tax-title {
	background-color:#eeeeee;
	padding: 8px 14px;
	width:100%;
	transition: background-color 0.2s ease;
    position: relative; /* Position relative for the pseudo-element */
    box-sizing: border-box; /* Ensure padding doesn't affect the width */
}
	.caf-tax-title:hover {
		background-color:#f7f7f7;
	}

	.caf-tax-title:after {
	    content: '\f347';
	    font-family: 'Dashicons';
	    position: absolute;
	    right: 14px;
	    top: 50%;
	    transform: translateY(-50%);
	    transition: transform 0.2s ease; /* Add transition for smooth rotation */
	}
	.caf-tax-title.active:after {
	    transform: translateY(-50%) rotate(180deg); /* Rotate arrow when active */
	}

.caf-filter-box {
	font-family: 'proxima-nova', sans-serif;
}

.caf-label {
	display: block;
  	padding: 8px 12px;
  	font-weight: normal;
  	transition: background-color 0.2s ease;
}
	.caf-label:hover {
		cursor:pointer;
		background-color: #f7f7f7;
	}

.caf-toggle {
	cursor:pointer;
}

.caf-toggle-content {
  width:100%;
  min-width:100%;
  height: 400px;
  max-height: 100vh;
  overflow-y: scroll;
  border: 2px solid #eeeeee;
}
	.caf-toggle-content.caf-toggle-content-hidden {
	  display:none;
	}

.caf-btn {
	padding: 6px 12px;
	border: 0;
	border-radius: 6px;
	line-height: normal;
	transition: all 0.2s ease;
}
	.caf-btn:hover {
		cursor: pointer;
	}

	.caf-btn.caf-btn-blue {
		color:white;
		background-color:#0c6291;
	}
	.caf-btn.caf-btn-blue:hover {
		background-color:#3577c2;
	}
	.caf-btn.caf-btn-charcoal {
		color:white;
		background-color:#262626;
	}
	.caf-btn.caf-btn-charcoal:hover {
		background-color:#323232;
	}

.filter-logic-toggle {
    margin-bottom: 8px;
}

.caf-toggle-buttons {
    display: inline-block;
    border: 0;
    border-radius: 6px;
    overflow: hidden;
}

.caf-toggle-buttons input[type="radio"] {
    display: none;
}

.caf-toggle-buttons label {
    display: inline-block;
    padding: 6px 12px;
    margin:0;
    cursor: pointer;
    background-color: #ffffff;
    color: #4D4D4D;
    font-weight: normal;
    transition: all 0.2s ease;
}
	.caf-toggle-buttons label:not(:checked):hover {
		color:#3d3d3d;
	    background-color: #dadada;
	}

.caf-toggle-buttons .toggle-or {
}

.caf-toggle-buttons input[type="radio"]:checked + label {
	color:white;
	background-color:#0c6291;
}


#caf-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

#caf-sticky-bar .caf-btn {
    margin: 0 5px;
}

.filter-control-panel {
    position: static; /* Default position */
/*    padding:30px;*/
    padding:10px 0px 30px 0px;
    border-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color:transparent;
/*    background-color:#eaeaea;*/
    bottom: auto;
    left: auto;
    transition: all 0.3s ease;
}

.filter-control-panel.sticky.caf-sticky-init {
    position: static; /* Ensures it stays in its original place during transition */
}

.filter-control-panel.sticky.caf-sticky {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color:#eaeaea;
    padding:30px 30px 30px 30px;
}