/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

/* -- The root styles must go in the element of the structure with the name "Container left". --*/ 

/* The styles are being applied to the left container by applying a clip path with a polygon measurement to create a mask and give that diagonal effect, this effect is removed in the mobile version. */

.cta6__container-left{
  clip-path: polygon(0% 0%, 100% 0%, 96.1% 100%, 0% 100%);

  /* Mobile styles */
  @media (max-width: 767px){
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

  /* -- The root styles must go in the element of the structure with the name "Card". --*/
.card-featured39__wrapper {
  counter-increment: item;
  
  &:nth-child(even){
    transform: translateY(var(--space-l));

    /* - Styles for mobile landscape version - */
    @media(max-width: 478px){
      transform: translateY(0);
    }
  }
  
  /* Styles focus link */
  .card-featured39:focus-within{
  	border-color: var(--neutral);
  }
  
   .card-featured39__head-container:after {
      content: counter(item, decimal-leading-zero);
      font-size: var(--text-xxl);
      font-weight: 700;
      line-height:100%;
      color: var(--neutral-trans-20);
    }
}

.wpgb-facet>fieldset:last-child {
    margin-bottom: 0px !important;
}
.wpgb-facet fieldset:last-child {
    margin-bottom: 0px !important;
}