/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.2
*/

/* load fonts */
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/roboto-v49-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/roboto-v49-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-condensed-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/roboto-condensed-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* hide "see all results" button in search modal */

.mfn-live-search-box > a.button {
    display: none !important;
}



/* Hide category ul and show dropdown on mobile */
@media (max-width: 959px) {
  .filters_wrapper ul.categories {
    display: none !important;
  }
  .filters_wrapper select.categories-dropdown {
    display: block !important;
    width: 100%;
    margin-bottom: 15px;
  }
}

/* Show ul and hide dropdown on desktop */
@media (min-width: 960px) {
  .filters_wrapper ul.categories {
    display: block !important;
  }
  .filters_wrapper select.categories-dropdown {
    display: none !important;
  }
}

.wpforms-container ul {
  list-style: none;
}

.mfn-live-search-list .mfn-live-search-list-categories {
  display: none !important;
}