{# Topic Styling #}

.custom-filter-section{
  padding-top:52px;
}

.custom-filter .custom-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.custom-filter-title-wrapper {
  width: 10%;
}

.custom-filter-title h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin:0;
  color: #1B3629;
}

#options {
  display: flex;
}

.cst-category-grp {
  border: 1px solid #1B3629;
  border-radius: 100px;
  padding: 12px 15px;
  min-width: 276px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.cst-category-grp span.cat,
.cst-category-grp .filter-count{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1B3629;
}

.option-set.option-set1 {
  margin-right: 44px;
}

.cst-cat-op-grp {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  top: 100%;
  z-index: 1;

}

.option-set {
  position: relative;
}

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

.cst-cat-op-grp ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #F2EFEB;
  border-radius: 22px;
  background-color: #fff;
  padding: 15px;
  position: relative;
  display: none;
}


.cst-cat-op-grp ul li input {
  order: 2;
  position: absolute;
  opacity: 0;
  right: 0;
  top: 0;
}

.cst-cat-op-grp ul li label{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1B3629;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.cst-cat-op-grp ul li:not(:last-child) {
  margin-bottom: 14px;
}

.cst-cat-op-grp ul li label:after {
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 0;
  position: relative;
  width: 16px;
  border-radius: 50px;
  border: 1px solid #1B3629;
}

.cst-cat-op-grp ul li input:checked+label:after {
  background-color: #46CA67;
  background-size: 14px 14px;
  border: 1px solid #46CA67;
}

span.icon {
  background-image: url('https://24038353.fs1.hubspotusercontent-na1.net/hubfs/24038353/Ulton_Feb2023/Image/dropdown.png');
  display: block;
  width: 10px;
  height: 6px;
  background-size: cover;
  position: absolute;
  right: 15px;
}

.option-set.active span.icon {
  transform: rotate(180deg);
}

.filter-clear {
  display: flex;
  margin-top: 20px;
  align-items: center;
}

.filter-clear .clear-all {
  margin: 0;
  width: 10%;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(27, 54, 41, 0.6);
}

.filter-clear #filter-display {
  margin: 0;
}

{# End Topic Styling #}

@media(max-width:767px){
  .option-set.option-set1 {
    margin: 0;
    margin-bottom: 30px;
  }

  #options {
    width: 100%;
    display: block;
  }

  .cst-category-grp {
    min-width: 100%;
    width: 100%;
  }

  .custom-filter-title-wrapper {
    width: 100%;
    margin-bottom: 15px;
  }

  .cst-cat-op-grp {
    position: relative;
  }

  .filter-clear .clear-all {
    width: 100%;
  }
}