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

html, body {
  background: #fff !important;
}

* {
  transition: all 300ms ease-in-out;
}

/* Zeigt alle elemente im OffCanvas an auch wenn sie nicht im Veieport liegen. */
.brx-offcanvas-inner {
    overflow-y: scroll;
    flex-wrap: nowrap;
  }

.ecken {
  position: relative;
}

.ecken::before,
.ecken::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border-style: solid;
  border-color: #d13165;
  border-width: 1px;
  transition: width 1s, height 1s;
}

/* obere linke Ecke */
.ecken::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

/* untere rechte Ecke */
.ecken::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.ecken:hover::before,
.ecken:hover::after {
  width: 100%;
  height: 100%;
}

.brxe-text a {
  border-bottom: 1px dashed #222;
}