section.companies-list .filter-container .filter-title {
  font-family: var(--header-font-family);
}
section.companies-list .filter-container .filter-menu ul li {
  list-style-type: none;
  display: inline-block;
  width: auto !important;
}
section.companies-list .filter-container .filter-menu .button-list li.button {
  cursor: pointer;
  margin-bottom: 20px;
  margin-right: 15px;
  padding: 12px 20px;
  font-size: 1.25rem;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
section.companies-list .filter-container .filter-menu .button-list li.button.active, section.companies-list .filter-container .filter-menu .button-list li.button:hover {
  background-color: var(--orange);
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
section.companies-list .image-container {
  position: relative;
}
section.companies-list .logo-wrapper {
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 20px;
  bottom: -20px;
  background-color: var(--white);
  border: 1px solid var(--dark);
  z-index: 9;
  text-align: center;
}
section.companies-list .logo-wrapper img {
  max-width: 100%;
  height: auto;
}
section.companies-list a.company-box {
  position: relative;
  text-decoration: none !important;
  color: var(--body-font-color) !important;
}
section.companies-list a.company-box::after {
  content: "";
  background-color: var(--orange);
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-mask-image: url("/wp-content/themes/bygavekort-live/assets/icons/button-arrow.svg");
  mask-image: url("/wp-content/themes/bygavekort-live/assets/icons/button-arrow.svg");
  width: 1.5625rem;
  height: 1.5625rem;
  bottom: 30px;
  right: 35px;
}
section.companies-list a.company-box:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
section.companies-list a.company-box:hover::after {
  right: 25px;
}
section.companies-list .box-content {
  padding: 60px 60px 40px 30px;
}
section.companies-list .box-content .phone, section.companies-list .box-content .address, section.companies-list .box-content .opening-hours {
  padding-left: 25px;
  display: block;
  position: relative;
}
section.companies-list .box-content .phone::before, section.companies-list .box-content .address::before, section.companies-list .box-content .opening-hours::before {
  content: "";
  background-color: var(--body-font-color);
  position: absolute;
  width: 0.9375rem;
  height: 0.9375rem;
  top: 3px;
  left: 0;
}
section.companies-list .box-content .phone::before {
  -webkit-mask-image: url("/wp-content/themes/bygavekort-live/assets/icons/phone-icon.svg");
  mask-image: url("/wp-content/themes/bygavekort-live/assets/icons/phone-icon.svg");
}
section.companies-list .box-content .address::before {
  -webkit-mask-image: url("/wp-content/themes/bygavekort-live/assets/icons/location-icon.svg");
  mask-image: url("/wp-content/themes/bygavekort-live/assets/icons/location-icon.svg");
}
section.companies-list .box-content .opening-hours::before {
  -webkit-mask-image: url("/wp-content/themes/bygavekort-live/assets/icons/clock-icon.svg");
  mask-image: url("/wp-content/themes/bygavekort-live/assets/icons/clock-icon.svg");
}