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

/*
####### CUSTOMIZE #######
##### TO YOUR NEEDS #####
*/
p {
	margin: 0;
}
p + p,
.splittext_inner + .splittext_inner p {
	margin: 1rem 0 0 0; /* Customize to your needs */
}
h1 + p, h2 + p,
h1 + .brxe-text,
h2 + .brxe-text {
	margin: 2rem 0 0 0; /* Customize to your needs */
}
h3 + p, h4 + p,
h5 + p, h6 + p,
h3 + .brxe-text,
h4 + .brxe-text,
h5 + .brxe-text,
h6 + .brxe-text,
p + .brxe-button,
.brxe-text + .brxe-button {
	margin: 1rem 0 0 0; /* Customize to your needs */
}
.brxe-text + h1,
.brxe-text + h2,
.brxe-text + h3,
.brxe-text + h4,
.brxe-text + h5,
.brxe-text + h6,
p + h1, p + h2,
p + h3, p + h4,
p + h5, p + h6 {
	margin: 2.5rem 0 0 0; /* Customize to your needs */
}
[class*="col-"]:not([class*="bricks-col-"]),
.col {
  padding: .5rem; /* Customize to your needs. See also Media query > 786px */
  width: 100%;
}
@media screen and (min-width: 768px) {
  [class*="col-"]:not([class*="bricks-col-"]),
  .col {
    padding: 1rem; /* Customize to your needs */
  }
}
@media only screen and (max-width: 1400px) {
  .brxe-container {
    padding-left: .5rem; /* Customize to your needs */
    padding-right: .5rem; /* Customize to your needs */
  }
}
/*
####### BASE #######
#### DONT TOUCH ####
*/
.row {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
ul.row {
	list-style: none;
	padding-left: 0;
}
.row-reverse {
  flex-direction: row-reverse;
}
.gap {
	gap: 1rem;
}
.flex-column {
  flex-direction: column;
}
.column-reverse {
  flex-direction: column-reverse;
}
.flex-grow {
  flex: 1;
}
.flex-start {
  justify-content: flex-start;
}
.flex-center {
  justify-content: center;
}
.flex-end {
  justify-content: flex-end;
}
.flex-top {
  align-items: flex-start;
}
.flex-middle {
  align-items: center;
}
.flex-bottom {
  align-items: flex-end;
}
.flex-around {
  justify-content: space-around;
}
.flex-between {
  justify-content: space-between;
}
.flex-first {
  order: -1;
}
.flex-last {
  order: 1;
}
@media screen and (min-width: 576px) {
  .row-sm-reverse {
    flex-direction: row-reverse;
  }
  .column-sm-reverse {
    flex-direction: column-reverse;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .col-sm-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-sm-start {
    justify-content: flex-start;
  }
  .flex-sm-center {
    justify-content: center;
  }
  .flex-sm-end {
    justify-content: flex-end;
  }
  .flex-sm-top {
    align-items: flex-start;
  }
  .flex-sm-middle {
    align-items: center;
  }
  .flex-sm-bottom {
    align-items: flex-end;
  }
  .flex-sm-around {
    justify-content: space-around;
  }
  .flex-sm-between {
    justify-content: space-between;
  }
  .flex-sm-first {
    order: -1;
  }
  .flex-sm-last {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .row-md-reverse {
    flex-direction: row-reverse;
  }
  .column-md-reverse {
    flex-direction: column-reverse;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .col-md-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-md-start {
    justify-content: flex-start;
  }
  .flex-md-center {
    justify-content: center;
  }
  .flex-md-end {
    justify-content: flex-end;
  }
  .flex-md-top {
    align-items: flex-start;
  }
  .flex-md-middle {
    align-items: center;
  }
  .flex-md-bottom {
    align-items: flex-end;
  }
  .flex-md-around {
    justify-content: space-around;
  }
  .flex-md-between {
    justify-content: space-between;
  }
  .flex-md-first {
    order: -1;
  }
  .flex-md-last {
    order: 1;
  }
}
@media screen and (min-width: 992px) {
  .row-lg-reverse {
    flex-direction: row-reverse;
  }
  .column-lg-reverse {
    flex-direction: column-reverse;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .col-lg-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-lg-start {
    justify-content: flex-start;
  }
  .flex-lg-center {
    justify-content: center;
  }
  .flex-lg-end {
    justify-content: flex-end;
  }
  .flex-lg-top {
    align-items: flex-start;
  }
  .flex-lg-middle {
    align-items: center;
  }
  .flex-lg-bottom {
    align-items: flex-end;
  }
  .flex-lg-around {
    justify-content: space-around;
  }
  .flex-lg-between {
    justify-content: space-between;
  }
  .flex-lg-first {
    order: -1;
  }
  .flex-lg-last {
    order: 1;
  }
}
@media screen and (min-width: 1200px) {
  .row-xl-reverse {
    flex-direction: row-reverse;
  }
  .column-xl-reverse {
    flex-direction: column-reverse;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .col-xl-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-xl-offset-0 {
    margin-left: 0;
  }
  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }
  .flex-xl-start {
    justify-content: flex-start;
  }
  .flex-xl-center {
    justify-content: center;
  }
  .flex-xl-end {
    justify-content: flex-end;
  }
  .flex-xl-top {
    align-items: flex-start;
  }
  .flex-xl-middle {
    align-items: center;
  }
  .flex-xl-bottom {
    align-items: flex-end;
  }
  .flex-xl-around {
    justify-content: space-around;
  }
  .flex-xl-between {
    justify-content: space-between;
  }
  .flex-xl-first {
    order: -1;
  }
  .flex-xl-last {
    order: 1;
  }
}

