/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

@font-face {
    font-family: 'roboto condensed';
    src: url('fonts/robotocondensed-bold-webfont.woff2') format('woff2'),
         url('fonts/robotocondensed-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;

}

@font-face {
    font-family: 'roboto condensed';
    src: url('fonts/robotocondensed-bolditalic-webfont.woff2') format('woff2'),
         url('fonts/robotocondensed-bolditalic-webfont.woff') format('woff');
    font-weight: 700;
    font-style: italic;

}

@font-face {
    font-family: 'roboto condensed';
    src: url('fonts/robotocondensed-italic-webfont.woff2') format('woff2'),
         url('fonts/robotocondensed-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;

}

@font-face {
    font-family: 'roboto condensed';
    src: url('fonts/robotocondensed-regular-webfont.woff2') format('woff2'),
         url('fonts/robotocondensed-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* MENU LINK COLOR */
.archive .fl-menu .sub-menu > li.current_page_item > a, .page .menu-item-type-taxonomy > a,
#menu-item-1000961 .sub-menu a {
    color: #fff !important;
}
/* STYLE FORE INVOICE BUTTON IN MY ACCOUNT PAGE */
.woocommerce-account .woocommerce table.my_account_orders .button.pdf {
    margin-left: 5px
}

/*.FAQ SEARCH FORM STYLES */

form#faq-search-form {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  input#faq-search {
    border-style: solid;
    background-clip: border-box;
    border-color: #3e4145;
    border-width: 1px;
    border-radius: 2px;
    padding: 17px;
    font-size: 15px;
    width: 73%;
  }
  input#faq-search::placeholder {
    color: #707070;
  }
  button#faq-search-button {
    color: #fff;
    background: linear-gradient(251.75deg, #AD0EE5 -24.38%, rgba(132, 45, 190, 0) 111.77%), #0E75E5;
    font-family: inter,sans-serif;
    line-height: 1.1;
    border-style: none;
    border-width: 0;
    border-color: initial;
    border-radius: 0;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    width: 25%;
    padding: 20px 50px;
    white-space: normal;
  }
  button#faq-search-button:hover {
    background: #0E75E5;
  }
  button#faq-search-button:active, button#faq-search-button:focus {
    top: 0;
  }
  #faq-search-results {
    display: none;
    animation: showBlock 0.5s ease-in-out forwards;
  }
  #faq-search-results ul {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 10px !important;
  }
  #faq-search-results li {
    list-style: none;
  }
  #faq-search-results li a {
    box-sizing: border-box;
    background-color: #f3f3f3;
    padding: 15px 10px;
    font-family: "Inter", sans-serif !important;
    font-size: 18px;
    border: 2px solid #fff;
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: left;
    line-height: 1.3;
    margin-bottom: 8px !important;
    height: 75px;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #606c73;
    text-decoration: none;
    font-weight: 700;
  }
  #faq-search-results li a:hover {
    border-color: #0E75E5;
  }
  .show-contact-form {
    display: none;
    text-align: center;
    text-decoration: underline;
    font-weight: 500;
    padding: 20px 0;
  }
  .show-contact-form span {
    cursor: pointer;
  }
  .fl-node-2btuvxaqkz7s {
    display: none;
  }
  .fl-node-49xwdnpe18bu {
    display: none;
    animation: showBlock 0.5s ease-in-out forwards;
  }

  @keyframes showBlock {
    0% {
      opacity: 0;
      display: block;
    }
    100% {
      opacity: 1;
      display: block;
    }
  }
  .nothing-in-faq-form {
    width: 70%;
    margin: 0 auto;
    font-size: 13px;
    color: #c02b0a;
    margin-top: -40px;
    display: none;
  }
  .faq-nothing-found {
    text-align: center;
    color: #c02b0a;
  }
