/*
 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
*/

*:focus {
	outline: unset !important;
}

@keyframes invalid-blink {
  0% {border-color: #ECECEC;}
	50% {border-color: red;}
  100% {border-color: #ECECEC;}
}

input.invalid-zip{
  border-color: #ECECEC;
  animation-name: invalid-blink;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 5;
}

.bricks-button,
.bricks-button:hover{
	transition: 0.3s ease !important;
}