  	
	#contactCardSection	ul[class] {
    margin: 0;
    padding: 0;
}

		#contactCardSection ul[class] li {
    list-style: none;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

#contactCardSection ul[class] li > * {
    margin: 1rem;
}

#contactCardSection :focus {
    box-shadow: 0 0 0 0.25rem rebeccapurple;
    outline: 0;
}

		/* [1] 'auto-fit' grid columns, so no media queries required. */
/* [2] 'dense' packing fills in holes earlier in the grid. */
#contactCardSection .grid {
    display: grid;
    gap: 1rem;
    grid-auto-flow: dense; /* [2] */
    grid-template-columns: repeat(auto-fit, 20rem); /* [1] */
    justify-content: center;
}

#contactCardSection .grid > * {
    align-items: flex-start;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* [3] Make fullwidth card span all grid columns. */
#contactCardSection .fullwidth {
    grid-column: 1 / -1;
}

#contactCardSection .is-hidden {
    display: none;
}

#contactCardSection .fullwidth,.is-selected {
    background: #f4f4f4;
}

	#contactCardSection	article .keyword-search {
		display:none;
		}
		
		
// Display a cross with CSS only.
//
// $size  : px or em
// $color : color
// $thickness : px
@mixin cross($size: 20px, $color: currentColor, $thickness: 1px) {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  width: $size;
  height: $size;

}

// Example 2.
.cross-stand-alone {
  @include cross(40px, #000, 4px);  
}
