/* ====================================
   FULLSCREEN WRAPPER
==================================== */

.fullscreen-filter {
  color: #fff;
  height: 100%;
  overflow-y: auto;
}


/* ====================================
   SEARCH
==================================== */

.filter-search {
  margin-bottom: 40px;
}

/* ====================================
   FILTER GROUP
==================================== */

.filter-group-toggle {
    background: transparent !important;
	border-bottom: 1px solid #fff!important;
	color: #fff !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
	align-items: center;
	padding: 10px !important;
	
	font-family: "Alegre", Sans-serif !important;
    font-size: 56px !important;
    line-height: 44px;
    letter-spacing: 6px;
}

.filter-group.is-open .filter-group-toggle {
	border-bottom: none!important;
}

/* Chevron Animation */

.filter-group-toggle::after {
  content: "";
  width: 22px;
  height: 22px;
  transition: 0.2s ease;
	
  background-color: #fff;
  -webkit-mask: url('/wp-content/themes/hello-theme-child-master/icons/TH-Web-Icons-Plus.svg') no-repeat center;
  mask: url('/wp-content/themes/hello-theme-child-master/icons/TH-Web-Icons-Plus.svg') no-repeat center;

}

.filter-group-toggle[aria-expanded="true"]::after {
  -webkit-mask: url('/wp-content/themes/hello-theme-child-master/icons/TH-Web-Icons-Minus.svg') no-repeat center;
  mask: url('/wp-content/themes/hello-theme-child-master/icons/TH-Web-Icons-Minus.svg') no-repeat center;
}


/* ====================================
   OPTIONS
==================================== */

.filter-options {
  border-bottom: 1px solid #fff;
  margin: 10px 0 20px;
  padding: 0 0 5px 5px;
  display: none;
}

.filter-group.is-open .filter-options {
  display: block;
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  cursor: pointer;
  font-size: 16px;
}

.filter-option input {
  visibility: hidden;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  margin-right: 12px;
  transition: 0.2s ease;
}

.filter-option input:checked + .custom-checkbox {
  background: #fff;
}


/* ====================================
   APPLY BUTTON
==================================== */

.filter-apply {
  margin-top: 40px;
}

#apply-filters {
  width: 100%;
  padding: 18px;
  background: #FFD400;
  color: #000;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

#apply-filters:hover {
  opacity: 0.9;
}
