/*
 * Custom theme overrides.
 * Add your custom CSS rules here.
 */

 .rstore-domain-search .form-container .search-form .search-field{
      flex-grow: 4;
      -webkit-border-radius: var(--global-border-radius, 0px);
      border-radius: var(--global-border-radius, 0px);
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      border-right: 1px solid var(--color-border);
  }
  
  .rstore-add-to-cart.btn.btn-primary {
      margin: 20px 0px;
  }
  
  .rstore-exact-domain-list{
      margin-top: 40px;
  }
  
  .rstore-domain-buy-button select.btn.btn-secondary {
      position: relative;
      display: var(--display, inline-flex);
      align-items: center;
      justify-content: center;
      min-height: var(--component-height);
      padding: 0 var(--button-padding);
      appearance: none;
      cursor: pointer;
      user-select: none;
      text-align: center;
      border-radius: var(--button-border-radius);
      color: var(--color-white);
      border: none;
      background-color: var(--e-global-color-primary);
      transition: var(--global-transition);
  }
  
  .rstore-domain-buy-button select.btn.btn-secondary:hover{
      background-color: var(--e-global-color-secondary);
      color: var(--color-white);
  
  }
  
  .rstore-product-summary {
      height: auto !important;
  }
  
  .rstore-product-permalink{
      display: none;
  }
  
  .rstore-product-summary p {
      font-size: 12px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 12px;
        
  }
  
  .rstore-product-summary p small {
      font-size: 12px;
  
  }

  /* Match heading size to paragraph text on single blog post content. */
  .single-post .article-single .entry-content h1,
  .single-post .article-single .entry-content h2,
  .single-post .article-single .entry-content h3,
  .single-post .article-single .entry-content h4,
  .single-post .article-single .entry-content h5,
  .single-post .article-single .entry-content h6 {
      font-size: 1em;
      font-weight: 700;
      line-height: inherit;
  }