.section-result {
  background-color: #dbdbdb;
  padding-top: 1em;
  padding-bottom: 1em;
}

.section-result .result-line {
  border-top: 1px solid var(--lighter-black);
  width: 50px;
  margin: 0 12px;
}

.section-result .result-wrapper {
  display: flex;
  align-items: center;
}

.section-result .filter-list {
  margin: 0;
  width: 78%;
}

.section-result .filter-list li {
  margin-bottom: 0;
}

.filter-options a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--lighter-black);
}

.section-filters {
  background-color: var(--grey);
  padding-top: 2em;
  padding-bottom: 2em;
  margin-bottom: 1em;
}

.section-filters .filter-title {
  font-weight: 700;
  margin-bottom: 1.2em;
  text-align: right;
}

.filter-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
  padding-left: 1.5em;
  -webkit-transition: all ease .5s;
  -moz-transition: all ease .5s;
  -ms-transition: all ease .5s;
  -o-transition: all ease .5s;
  transition: all ease .5s;
}

.filter-list li {
  margin-bottom: 1em;
  width: 150px;
  text-align: center;
  opacity: .8;
}

.filter-list .filter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 13px;
  height: 48px;
  /*opacity: 0.7;*/
  position: relative;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgba(58, 58, 58, 0.07);
  border: solid 1px #dbdbdb;
  background-color: #ffffff;
  color: var(--lighter-grey);
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/*.filter-list .filter-item:hover {
  color: var(--lighter-black);
  font-weight: bold;
  background-color: rgba(200, 212, 25, 0.19);
}*/

.filter-list .filter-item:hover,
.filter-list .filter-item.selected {
  border: 1px solid var(--main-color);
  background-color: var(--fade-primary-color);
  border-radius: 3px;
  color: var(--lighter-black);  
  font-weight: bold;
}

.filter-list .filter-item span {
  line-height: 16px;
}

.filter-list .filter-item .close-filter {
  display: none;
}

.filter-list .filter-item.selected .icon-close {
  display: block;
  font-size: 28px;
  color: var(--main-color);
  background-color: #ffffff;
  position: absolute;
  right: 3px;
  top: 9px;
  -webkit-transform: scale(.7);
  -moz-transform: scale(.7);
  -ms-transform: scale(.7);
  -o-transform: scale(.7);
  transform: scale(.7);
}

.filter-list .filter-item .urb-icon {
  font-size: 15px;
}

.sort-dropdown {
  padding: 0px;
  text-align: center;
  text-align-last: center;
  color: var(--lighter-grey);
}

.filter-dropdown {
  width: 100%;
  text-align: center;
  z-index: 10;
}

.filter-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  font-size: 13px;
  height: 48px;
  /* opacity: 0.7; */
  position: relative;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgba(58, 58, 58, 0.07);
  border: solid 1px #dbdbdb;
  background-color: #ffffff;
  color: var(--lighter-grey);
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#research-form {
  padding-left: 1.5em;
}

#research-form .form-container {
  display: flex;
  justify-content: space-between;
}

#research-form .research-input {
  width: 90%;
}

#research-form .research-btn {
  width: 10%;
  left: -3px;
  position: relative;
}

#research-form .research-btn i {
  margin: 0;
  /*position: relative;*/
  font-size: 20px;
  left: -8px;
  top: -6px;
  color: var(--main-color);
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--lighter-grey);
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--lighter-grey);
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--lighter-grey);
}

.no-display {
  display: none;
}


#no-result {
  display: none;
}

.no-result-text {
  display: inline-block;
  margin: 0 auto;
}

#loading .loading-icon {
  color: var(--main-color);
}

#loading .loading-text {
  display: inline-block;
  margin: 0 auto;
  color: var(--lighter-grey);
}

.loading-animation {
  animation: pulse 1s infinite;
}

#no-more {
  display: none;
}

@keyframes pulse {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.8;
  }
}

@media only screen and (max-width: 768px) {
  .section-result .result-wrapper {
    flex-direction: column;
  }

  .section-result .filter-list {
    width: 100%;
    padding: 0;
  }

  .filter-options {
    padding: 10px 0;
  }

  .filter-options a {
    font-size: 16px;
  }

  .filter-list {
    flex-wrap: nowrap;
    flex-direction: column;
    padding-left: 0;
  }

  .filter-list li {
    width: 100%;
  }

  .section-result .filter-list li {
    margin-bottom: 5px;
  }

  .filter-list .filter-item {
    color: var(--lighter-black);
  }

  .section-filters .filter-title {
    text-align: left;
  }

  #research-form {
    padding-left: 0;
  }

  #research-form .research-input {
    width: 84%;
  }

  #research-form .research-btn {
    width: 15%;
  }
}