/*
 Theme Name:   Straight Solutions Child Theme
 Theme URI:    https://www.ckcreativedesign.co.uk
 Description:  Use this child theme to extend Bricks.
 Author:       CK Creative
 Author URI:   https://www.ckcreativedesign.co.uk
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

.brx-animate-fadeInUp {
  animation-name: fadeInUpMod !important;
}
@keyframes fadeInUpMod {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.brx-animate-fadeInRight {
  animation-name: fadeInRightMod !important;
}
@keyframes fadeInRightMod {
  0% {
    opacity: 0;
    transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.brx-animate-fadeInLeft {
  animation-name: fadeInLeftMod !important;
}
@keyframes fadeInLeftMod {
  0% {
    opacity: 0;
    transform: translateX(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}