.bz-container,
.bz-container-center {
  position: relative;
  box-sizing: border-box;
  max-width: 970px;
  width: 100%;
  padding: 0 15px;
}
.bz-box {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bz-100 {
  width: 100%;
  max-width: 100%;
}

/*
@media (min-width: 1220px) {
	.bz-container {
		max-width: 1220px;
		padding: 0 25px;
	}
}
*/

.bz-container::before,
.bz-container::after,
.bz-container-center::before,
.bz-container-center::after {
  content: "";
  display: table;
}
.bz-container::after,
.bz-container-center::after {
  clear: both;
}
.bz-container-center {
  margin-left: auto;
  margin-right: auto;
}
.clearfix:before,
.bz-clearfix::before {
  content: "";
  display: table-cell;
}
.clearfix:after,
.bz-clearfix::after {
  clear: both;
  content: "";
  display: table;
}
.bz-float-left {
  float: left;
}
.bz-float-right {
  float: right !important;
}
.bz-overflow-hidden {
  overflow: hidden;
}
[class*="bz-float-"] {
  max-width: 100%;
}
[class*="bz-align-"] {
  display: block;
  margin-bottom: 15px;
}
.bz-align-left {
  float: left;
  margin-right: 15px;
}
.bz-align-right {
  float: right;
  margin-left: 15px;
}
.bz-align-center {
  margin-bottom: 0;
}
.bz-push,
.bz-push-top {
  padding-top: 15px;
}
.bz-push,
.bz-push-bottom {
  padding-bottom: 15px;
}
.bz-push-big,
.bz-push-top-big {
  padding-top: 25px;
}
.bz-push-big,
.bz-push-bottom-big {
  padding-bottom: 25px;
}
.bz-push-small,
.bz-push-top-small {
  padding-top: 15px;
}
.bz-push-small,
.bz-push-bottom-small {
  padding-bottom: 15px;
}
.bz-push-aside,
.bz-push-left {
  padding-left: 75px;
}
.bz-push-left-small {
  padding-left: 15px;
}
.bz-push-aside,
.bz-push-right {
  padding-right: 75px;
}
.bz-push-right-small {
  padding-right: 15px;
}
.bz-grid-margin-bottom {
  margin-bottom: 15px;
}
.bz-grid-margin-large {
  margin-bottom: 35px;
}
.bz-margin {
  margin-top: 25px;
  margin-bottom: 25px;
}
.bz-text-right {
  text-align: right;
}
.bz-text-center {
  text-align: center;
}

@media (min-width: 768px) {
  .bz-align-medium-left {
    float: left;
    margin-bottom: 15px;
    margin-right: 15px;
  }
  .bz-align-medium-right {
    float: right;
    margin-bottom: 15px;
    margin-left: 15px;
  }
}
.bz-align-center {
  margin-left: auto;
  margin-right: auto;
}
.bz-relative {
  position: relative;
}
.bz-absolute {
  position: absolute;
}

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Needed for the gutter
 * 2. Makes grid more robust so that it can be used with other block elements like lists
 */
.bz-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-flow: flex-end;
}

.bz-grid-reverse .bz-grid-right {
  align-self: flex-end;
}

.bz-grid-inverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* Grid gutter
 ========================================================================== */
.bz-grid + .bz-grid {
  margin-top: 15px;
}
.bz-grid > .bz-grid-margin {
  margin-top: 15px;
}
.bz-grid > * > .bz-panel + .bz-panel {
  margin-top: 15px;
}

/*
 * Larger gutter for large screens
 */
@media (min-width: 1220px) {
  /* Horizontal gutter */
  .bz-grid:not(.bz-grid-preserve) {
    margin-left: -25px;
  }
  .bz-grid:not(.bz-grid-preserve) > * {
    padding-left: 25px;
  }
  /* Vertical gutter */
  .bz-grid:not(.bz-grid-preserve) + .bz-grid {
    margin-top: 25px;
  }
  .bz-grid:not(.bz-grid-preserve) > .bz-grid-margin {
    margin-top: 25px;
  }
  /* Vertical gutter for panels */
  .bz-grid:not(.bz-grid-preserve) > * > .bz-panel + .bz-panel {
    margin-top: 25px;
  }
}
/*
 * Small gutter
 * Higher specificity to override large gutter
 */
.bz-grid.bz-grid-small {
  margin-left: -10px;
}
.bz-grid.bz-grid-small > * {
  padding-left: 10px;
}
.bz-grid.bz-grid-small + .bz-grid-small {
  margin-top: 10px;
}
.bz-grid.bz-grid-small > .bz-grid-margin {
  margin-top: 10px;
}
.bz-grid.bz-grid-small > * > .bz-panel + .bz-panel {
  margin-top: 10px;
}
/*
 * large gutter
 * Higher specificity to override large gutter
 */
.bz-grid.bz-grid-large {
  margin-left: -45px;
}
.bz-grid.bz-grid-large > * {
  padding-left: 45px;
}
.bz-grid.bz-grid-large + .bz-grid-small {
  margin-top: 45px;
}
.bz-grid.bz-grid-large > .bz-grid-margin {
  margin-top: 45px;
}
.bz-grid.bz-grid-large > * > .bz-panel + .bz-panel {
  margin-top: 45px;
}
/* Modifier: `bz-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Does not work with `bz-push-*`, `bz-pull-*` and not if the columns float into the next row
 */
.bz-grid-divider:not(:empty) {
  margin-left: -15px;
  margin-right: -15px;
}
.bz-grid-divider > * {
  padding-left: 15px;
  padding-right: 15px;
}
.bz-grid-divider > [class*="bz-width-1-"]:not(.bz-width-1-1):nth-child(n + 2),
.bz-grid-divider > [class*="bz-width-2-"]:nth-child(n + 2),
.bz-grid-divider > [class*="bz-width-3-"]:nth-child(n + 2),
.bz-grid-divider > [class*="bz-width-4-"]:nth-child(n + 2),
.bz-grid-divider > [class*="bz-width-5-"]:nth-child(n + 2),
.bz-grid-divider > [class*="bz-width-6-"]:nth-child(n + 2),
.bz-grid-divider > [class*="bz-width-7-"]:nth-child(n + 2),
.bz-grid-divider > [class*="bz-width-8-"]:nth-child(n + 2),
.bz-grid-divider > [class*="bz-width-9-"]:nth-child(n + 2) {
  border-left: 1px solid #ebeae8;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .bz-grid-divider > [class*="bz-width-medium-"]:not(.bz-width-medium-1-1):nth-child(n + 2) {
    border-left: 1px solid #ebeae8;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .bz-grid-divider > [class*="bz-width-large-"]:not(.bz-width-large-1-1):nth-child(n + 2) {
    border-left: 1px solid #ebeae8;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /*
     * Large gutter
     */
  .bz-grid-divider:not(.bz-grid-preserve):not(:empty) {
    margin-left: -25px;
    margin-right: -25px;
  }
  .bz-grid-divider:not(.bz-grid-preserve) > * {
    padding-left: 25px;
    padding-right: 25px;
  }
  .bz-grid-divider:not(.bz-grid-preserve):empty {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
/*
 * Vertical divider
 */
.bz-grid-divider:empty {
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 1px solid #ebeae8;
}
/* Match panels in grids
 ========================================================================== */
.bz-grid-match > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/*
 * 1. Behave like a block element
 */
.bz-grid-match > * > * {
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 1 */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/* Even grid cell widths
 ========================================================================== */
[class*="bz-grid-width"] > * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.bz-grid-width-1-2 > * {
  width: 50%;
}
.bz-grid-width-1-3 > * {
  width: 33.333%;
}
.bz-grid-width-1-4 > * {
  width: 25%;
}
.bz-grid-width-1-5 > * {
  width: 20%;
}
.bz-grid-width-1-6 > * {
  width: 16.666%;
}
.bz-grid-width-1-7 > * {
  width: 14.285%;
}
.bz-grid-width-1-10 > * {
  width: 10%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .bz-grid-width-small-1-2 > * {
    width: 50%;
  }
  .bz-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .bz-grid-width-small-1-4 > * {
    width: 25%;
  }
  .bz-grid-width-small-1-5 > * {
    width: 20%;
  }
  .bz-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .bz-grid-width-small-1-7 > * {
    width: 14.285%;
  }
  .bz-grid-width-small-1-10 > * {
    width: 10%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .bz-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .bz-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .bz-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .bz-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .bz-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .bz-grid-width-medium-1-7 > * {
    width: 14.285%;
  }
  .bz-grid-width-medium-1-10 > * {
    width: 10%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .bz-grid-width-large-1-2 > * {
    width: 50%;
  }
  .bz-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .bz-grid-width-large-1-4 > * {
    width: 25%;
  }
  .bz-grid-width-large-1-5 > * {
    width: 20%;
  }
  .bz-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .bz-grid-width-large-1-7 > * {
    width: 14.285%;
  }
  .bz-grid-width-large-1-10 > * {
    width: 10%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .bz-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .bz-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .bz-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .bz-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .bz-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .bz-grid-width-xlarge-1-7 > * {
    width: 14.285%;
  }
  .bz-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
}
/* Sub-objects: `bz-width-*`
 ========================================================================== */
[class*="bz-width"] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
[class*="bz-width"].bz-padding-remove {
  padding: 0;
}
/*
 * Widths
 */
/* Whole */
.bz-width-1-1,
.bz-width-2-2,
.bz-width-3-3,
.bz-width-4-4,
.bz-width-5-5,
.bz-width-6-6,
.bz-width-7-7,
.bz-width-10-10 {
  width: 100%;
}
/* Halves */
.bz-width-1-2,
.bz-width-2-4,
.bz-width-3-6,
.bz-width-5-10 {
  width: 50%;
}
/* Thirds */
.bz-width-1-3,
.bz-width-2-6 {
  width: 33.333%;
}
.bz-width-2-3,
.bz-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.bz-width-1-4 {
  width: 25%;
}
.bz-width-3-4 {
  width: 75%;
}
/* Fifths */
.bz-width-1-5,
.bz-width-2-10 {
  width: 20%;
}
.bz-width-2-5,
.bz-width-4-10 {
  width: 40%;
}
.bz-width-3-5,
.bz-width-6-10 {
  width: 60%;
}
.bz-width-4-5,
.bz-width-8-10 {
  width: 80%;
}
/* Sixths */
.bz-width-1-6 {
  width: 16.666%;
}
.bz-width-5-6 {
  width: 83.333%;
}
/* Sevenths */
.bz-width-1-7 {
  width: 14.285%;
}
.bz-width-2-7 {
  width: 28.571%;
}
.bz-width-3-7 {
  width: 42.857%;
}
.bz-width-4-7 {
  width: 57.142%;
}
.bz-width-5-7 {
  width: 71.428%;
}
.bz-width-6-7 {
  width: 85.714%;
}
.bz-width-1-7 {
  width: 14.285%;
}
/* Tenths */
.bz-width-1-10 {
  width: 10%;
}
.bz-width-3-10 {
  width: 30%;
}
.bz-width-7-10 {
  width: 70%;
}
.bz-width-9-10 {
  width: 90%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  /* Whole */
  .bz-width-small-1-1 {
    width: 100%;
  }
  /* Halves */
  .bz-width-small-1-2,
  .bz-width-small-2-4,
  .bz-width-small-3-6,
  .bz-width-small-5-10 {
    width: 50%;
  }
  /* Thirds */
  .bz-width-small-1-3,
  .bz-width-small-2-6 {
    width: 33.333%;
  }
  .bz-width-small-2-3,
  .bz-width-small-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .bz-width-small-1-4 {
    width: 25%;
  }
  .bz-width-small-3-4 {
    width: 75%;
  }
  /* Fifths */
  .bz-width-small-1-5,
  .bz-width-small-2-10 {
    width: 20%;
  }
  .bz-width-small-2-5,
  .bz-width-small-4-10 {
    width: 40%;
  }
  .bz-width-small-3-5,
  .bz-width-small-6-10 {
    width: 60%;
  }
  .bz-width-small-4-5,
  .bz-width-small-8-10 {
    width: 80%;
  }
  /* Sixths */
  .bz-width-small-1-6 {
    width: 16.666%;
  }
  .bz-width-small-5-6 {
    width: 83.333%;
  }
  /* Sevenths */
  .bz-width-small-1-7 {
    width: 14.285%;
  }
  .bz-width-small-2-7 {
    width: 28.571%;
  }
  .bz-width-small-3-7 {
    width: 42.857%;
  }
  .bz-width-small-4-7 {
    width: 57.142%;
  }
  .bz-width-small-5-7 {
    width: 71.428%;
  }
  .bz-width-small-6-7 {
    width: 85.714%;
  }
  .bz-width-small-1-7 {
    width: 14.285%;
  }
  /* Tenths */
  .bz-width-small-1-10 {
    width: 10%;
  }
  .bz-width-small-3-10 {
    width: 30%;
  }
  .bz-width-small-7-10 {
    width: 70%;
  }
  .bz-width-small-9-10 {
    width: 90%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /* Whole */
  .bz-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .bz-width-medium-1-2,
  .bz-width-medium-2-4,
  .bz-width-medium-3-6,
  .bz-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .bz-width-medium-1-3,
  .bz-width-medium-2-6 {
    width: 33.333%;
  }
  .bz-width-medium-2-3,
  .bz-width-medium-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .bz-width-medium-1-4 {
    width: 25%;
  }
  .bz-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .bz-width-medium-1-5,
  .bz-width-medium-2-10 {
    width: 20%;
  }
  .bz-width-medium-2-5,
  .bz-width-medium-4-10 {
    width: 40%;
  }
  .bz-width-medium-3-5,
  .bz-width-medium-6-10 {
    width: 60%;
  }
  .bz-width-medium-4-5,
  .bz-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .bz-width-medium-1-6 {
    width: 16.666%;
  }
  .bz-width-medium-5-6 {
    width: 83.333%;
  }
  /* Sevenths */
  .bz-width-medium-1-7 {
    width: 14.285%;
  }
  .bz-width-medium-2-7 {
    width: 28.571%;
  }
  .bz-width-medium-3-7 {
    width: 42.857%;
  }
  .bz-width-medium-4-7 {
    width: 57.142%;
  }
  .bz-width-medium-5-7 {
    width: 71.428%;
  }
  .bz-width-medium-6-7 {
    width: 85.714%;
  }
  .bz-width-medium-1-7 {
    width: 14.285%;
  }
  /* Tenths */
  .bz-width-medium-1-10 {
    width: 10%;
  }
  .bz-width-medium-3-10 {
    width: 30%;
  }
  .bz-width-medium-7-10 {
    width: 70%;
  }
  .bz-width-medium-9-10 {
    width: 90%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  /* Whole */
  .bz-width-large-1-1 {
    width: 100%;
  }
  /* Halves */
  .bz-width-large-1-2,
  .bz-width-large-2-4,
  .bz-width-large-3-6,
  .bz-width-large-5-10 {
    width: 50%;
  }
  /* Thirds */
  .bz-width-large-1-3,
  .bz-width-large-2-6 {
    width: 33.333%;
  }
  .bz-width-large-2-3,
  .bz-width-large-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .bz-width-large-1-4 {
    width: 25%;
  }
  .bz-width-large-3-4 {
    width: 75%;
  }
  /* Fifths */
  .bz-width-large-1-5,
  .bz-width-large-2-10 {
    width: 20%;
  }
  .bz-width-large-2-5,
  .bz-width-large-4-10 {
    width: 40%;
  }
  .bz-width-large-3-5,
  .bz-width-large-6-10 {
    width: 60%;
  }
  .bz-width-large-4-5,
  .bz-width-large-8-10 {
    width: 80%;
  }
  /* Sixths */
  .bz-width-large-1-6 {
    width: 16.666%;
  }
  .bz-width-large-5-6 {
    width: 83.333%;
  }
  /* Sevenths */
  .bz-width-large-1-7 {
    width: 14.285%;
  }
  .bz-width-large-2-7 {
    width: 28.571%;
  }
  .bz-width-large-3-7 {
    width: 42.857%;
  }
  .bz-width-large-4-7 {
    width: 57.142%;
  }
  .bz-width-large-5-7 {
    width: 71.428%;
  }
  .bz-width-large-6-7 {
    width: 85.714%;
  }
  .bz-width-large-1-7 {
    width: 14.285%;
  }
  /* Tenths */
  .bz-width-large-1-10 {
    width: 10%;
  }
  .bz-width-large-3-10 {
    width: 30%;
  }
  .bz-width-large-7-10 {
    width: 70%;
  }
  .bz-width-large-9-10 {
    width: 90%;
  }
}
/* Component: Hide / show
------------------------------------------------------------------- */
[class*="bz-show-"] {
  display: none;
}
@media (max-width: 480px) {
  .bz-show-xsmall {
    display: block;
  }
  .bz-hide-xsmall {
    display: none;
  }
}
@media (min-width: 480px) {
  .bz-show-small-above {
    display: block;
  }
  .bz-hide-small-above {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .bz-show-small {
    display: block;
  }
  .bz-hide-small {
    display: none;
  }
}
@media (max-width: 768px) {
  .bz-show-small-below {
    display: block;
  }
  .bz-hide-small-below {
    display: none;
  }
}
@media (min-width: 768px) {
  .bz-show-medium-above {
    display: block;
  }
  .bz-hide-medium-above {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  .bz-show-medium {
    display: block;
  }
  .bz-hide-medium {
    display: none;
  }
}
@media (max-width: 960px) {
  .bz-show-medium-below {
    display: block;
  }
  .bz-hide-medium-below {
    display: none;
  }
}
@media (min-width: 960px) {
  .bz-show-large-above {
    display: block;
  }
  .bz-hide-large-above {
    display: none;
  }
}
@media (min-width: 960px) and (max-width: 1200px) {
  .bz-show-large {
    display: block;
  }
  .bz-hide-large {
    display: none;
  }
}
@media (max-width: 1200px) {
  .bz-show-large-below {
    display: block;
  }
  .bz-hide-large-below {
    display: none;
  }
}
@media (min-width: 1200px) {
  .bz-show-xlarge {
    display: block;
  }
  .bz-hide-xlarge {
    display: none;
  }
}
.bz-show-always {
  display: block !important;
}
/* Component: Toggler
------------------------------------------------------------------- */
.bz-toggler.open .text-open,
.bz-toggler .text-closed,
.bz-toggler.bz-toggler-inverse .text-closed {
  display: inline-block;
}
.bz-toggler.open .text-closed,
.bz-toggler .text-open,
.bz-toggler.bz-toggler-inverse .text-open {
  display: none;
}
.bz-toggler {
  cursor: pointer;
}
/* Component: Panel
------------------------------------------------------------------- */
.bz-panel {
  display: block;
  position: relative;
}
.bz-panel,
.bz-panel:hover {
  text-decoration: none;
}
.bz-panel:before,
.bz-panel:after {
  content: "";
  display: table;
}
.bz-panel:after {
  clear: both;
}
.bz-panel > :not(.bz-panel-title):last-child {
  margin-bottom: 0;
}

.bz-panel-title {
  margin-top: 0;
  margin-bottom: 20px;
}
.bz-panel-teaser {
  margin-bottom: 20px;
}

.bz-panel-box,
.bz-panel-box-primary,
.bz-panel-box-secondary,
.bz-panel-header {
  padding: 15px;
  border: 1px solid #eaeaea;
}
.bz-panel-box-small {
  padding: 5px;
}

.bz-panel-box .bz-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}
.bz-panel-box > .bz-nav-side {
  margin: 0 -15px;
}
.bz-panel-box-small .bz-panel-teaser {
  margin-top: -5px;
  margin-left: -5px;
  margin-right: -5px;
}
.bz-panel-box-small > .bz-nav-side {
  margin: 0 -5px;
}

.bz-panel-box-primary {
  background-color: #fcfcfc;
  border: 1px solid #eaeef0;
}
.bz-panel-box-primary:before {
  content: none;
}

.bz-panel-box-secondary {
  background-color: #fafafa;
  color: #525252;
}
.bz-panel-box-secondary:before {
  content: none;
}
.bz-panel-box-secondary-hover:hover {
  color: #525252;
}
.bz-panel-box-secondary .bz-panel-title {
  color: #525252;
}
/* Modifier: `bz-panel-hover`
 ========================================================================== */
.bz-panel-hover {
  padding: 30px;
  color: #444444;
  border: 1px solid transparent;
}
.bz-panel-hover:hover {
  background: #ffffff;
  color: #444444;
  border-color: #eaeaea;
}
.bz-panel-hover .bz-panel-badge {
  top: 0;
  right: 10px;
}
.bz-panel-hover .bz-panel-teaser {
  margin-top: -30px;
  margin-left: -30px;
  margin-right: -30px;
}
/* Modifier: `bz-panel-header`
 ========================================================================== */
.bz-panel-header .bz-panel-title {
  padding: 10px 15px;
  margin-bottom: 15px;
  background-color: #3eade5;
  color: #ffffff;
  background-image: -webkit-linear-gradient(top, #2f99ce, transparent);
  background-image: linear-gradient(to bottom, #2f99ce, transparent);
  border-bottom: 1px solid #eaeaea;
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}
/* Modifier: `bz-panel-space`
 ========================================================================== */
.bz-panel-space {
  padding: 30px;
}
.bz-panel-space .bz-panel-badge {
  top: 30px;
  right: 30px;
}
/* Modifier: `bz-panel-divider`
 ========================================================================== */
.bz-panel + .bz-panel-divider {
  margin-top: 60px !important;
}
.bz-panel + .bz-panel-divider:before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  border-top: 1px solid #eaeaea;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .bz-panel + .bz-panel-divider {
    margin-top: 70px !important;
  }
  .bz-panel + .bz-panel-divider:before {
    top: -35px;
  }
}
/* Sub-object: `bz-push-*` and `bz-pull-*`
 ========================================================================== */
/*
 * Source ordering
 * Works only with `bz-width-medium-*`
 */
/* Tablet and bigger */
@media (min-width: 768px) {
  [class*="bz-push-"],
  [class*="bz-pull-"] {
    position: relative;
  }
  /*
     * Push
     */
  /* Halves */
  .bz-push-1-2,
  .bz-push-2-4,
  .bz-push-3-6,
  .bz-push-5-10 {
    left: 50%;
  }
  /* Thirds */
  .bz-push-1-3,
  .bz-push-2-6 {
    left: 33.333%;
  }
  .bz-push-2-3,
  .bz-push-4-6 {
    left: 66.666%;
  }
  /* Quarters */
  .bz-push-1-4 {
    left: 25%;
  }
  .bz-push-3-4 {
    left: 75%;
  }
  /* Fifths */
  .bz-push-1-5,
  .bz-push-2-10 {
    left: 20%;
  }
  .bz-push-2-5,
  .bz-push-4-10 {
    left: 40%;
  }
  .bz-push-3-5,
  .bz-push-6-10 {
    left: 60%;
  }
  .bz-push-4-5,
  .bz-push-8-10 {
    left: 80%;
  }
  /* Sixths */
  .bz-push-1-6 {
    left: 16.666%;
  }
  .bz-push-5-6 {
    left: 83.333%;
  }
  /* Tenths */
  .bz-push-1-10 {
    left: 10%;
  }
  .bz-push-3-10 {
    left: 30%;
  }
  .bz-push-7-10 {
    left: 70%;
  }
  .bz-push-9-10 {
    left: 90%;
  }
  /*
     * Pull
     */
  /* Halves */
  .bz-pull-1-2,
  .bz-pull-2-4,
  .bz-pull-3-6,
  .bz-pull-5-10 {
    left: -50%;
  }
  /* Thirds */
  .bz-pull-1-3,
  .bz-pull-2-6 {
    left: -33.333%;
  }
  .bz-pull-2-3,
  .bz-pull-4-6 {
    left: -66.666%;
  }
  /* Quarters */
  .bz-pull-1-4 {
    left: -25%;
  }
  .bz-pull-3-4 {
    left: -75%;
  }
  /* Fifths */
  .bz-pull-1-5,
  .bz-pull-2-10 {
    left: -20%;
  }
  .bz-pull-2-5,
  .bz-pull-4-10 {
    left: -40%;
  }
  .bz-pull-3-5,
  .bz-pull-6-10 {
    left: -60%;
  }
  .bz-pull-4-5,
  .bz-pull-8-10 {
    left: -80%;
  }
  /* Sixths */
  .bz-pull-1-6 {
    left: -16.666%;
  }
  .bz-pull-5-6 {
    left: -83.333%;
  }
  /* Tenths */
  .bz-pull-1-10 {
    left: -10%;
  }
  .bz-pull-3-10 {
    left: -30%;
  }
  .bz-pull-7-10 {
    left: -70%;
  }
  .bz-pull-9-10 {
    left: -90%;
  }
}

.bz-pull-down {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Stretch images
---------------------------------------------*/
.bz-stretch img,
img .bz-stretch {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Icons 
---------------------------------------------*/
.bz-icon {
  display: inline-block;
  outline: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 3px 0 0;
  font-size: 18px;
  text-align: center;
  background: #eee;
  cursor: pointer;
}

.bz-icon-round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.bz-icon-wrap-small .bz-icon,
.bz-icon-small {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
}

.bz-icon-wrap {
  display: inline-block;
  line-height: 30px;
}

.bz-icon-wrap-small {
  line-height: 25px;
}

/* Pagination 
---------------------------------------------*/
.bz-pagination,
ul.bz-pagination {
  display: block;
  list-style: none;
  margin: 20px 0 !important;
  padding: 0 !important;
  text-align: center;
}

.bz-pagination::before,
.bz-pagination::after {
  content: "";
  display: table;
}
.bz-pagination::after {
  clear: both;
}

.bz-pagination > li {
  display: inline-block;
}

.bz-pagination > li:not(:first-child) {
  margin-left: 3px;
}

.bz-pagination-buttons .pagenav,
.bz-pagination-rounded .pagenav {
  display: inline-block;
  height: 30px;
  min-width: 30px;
  line-height: 30px;
  padding: 0 5px;
  text-align: center;
  text-decoration: none;
  background: #3bafe8;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bz-pagination-rounded .pagenav {
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.bz-pagination-buttons .pagenav.current,
.bz-pagination-rounded .pagenav.current {
  background: #008bd0;
}

/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.bz-margin {
  margin-bottom: 15px;
}
* + .bz-margin {
  margin-top: 15px;
}
.bz-margin-top {
  margin-top: 15px !important;
}
.bz-margin-bottom {
  margin-bottom: 15px !important;
}
.bz-margin-left {
  margin-left: 15px !important;
}
.bz-margin-right {
  margin-right: 15px !important;
}
/*
 * Larger margins
 */
.bz-margin-large {
  margin-bottom: 50px;
}
* + .bz-margin-large {
  margin-top: 50px;
}
.bz-margin-large-top {
  margin-top: 50px !important;
}
.bz-margin-large-bottom {
  margin-bottom: 50px !important;
}
.bz-margin-large-left {
  margin-left: 50px !important;
}
.bz-margin-large-right {
  margin-right: 50px !important;
}
/*
 * Larger margins
 */
.bz-margin-medium {
  margin-bottom: 35px;
}
* + .bz-margin-medium {
  margin-top: 35px;
}
.bz-margin-medium-top {
  margin-top: 35px !important;
}
.bz-margin-medium-bottom {
  margin-bottom: 35px !important;
}
.bz-margin-medium-left {
  margin-left: 35px !important;
}
.bz-margin-medium-right {
  margin-right: 35px !important;
}

/*
 * Smaller margins
 */
.bz-margin-small {
  margin-bottom: 5px;
}
* + .bz-margin-small {
  margin-top: 5px;
}
.bz-margin-small-top {
  margin-top: 5px !important;
}
.bz-margin-small-bottom {
  margin-bottom: 5px !important;
}
.bz-margin-small-left {
  margin-left: 5px !important;
}
.bz-margin-small-right {
  margin-right: 5px !important;
}
/*
 * Remove margins
 */
.bz-margin-remove {
  margin: 0 !important;
}
.bz-margin-top-remove {
  margin-top: 0 !important;
}
.bz-margin-bottom-remove {
  margin-bottom: 0 !important;
}

/* ========================================================================
   Component: Flex
 ========================================================================== */
.bz-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.bz-flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
}
/*
 * Fixes initial flex-shrink value in IE10
 */
.bz-flex > *,
.bz-flex-inline > * {
  -ms-flex-negative: 1;
}
/* Alignment
 ========================================================================== */
/*
 * Vertical alignment
 * Default value is `stretch`
 */
.bz-flex-top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.bz-flex-middle {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.bz-flex-bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
/*
 * Horizontal alignment
 * Default value is `flex-start`
 */
.bz-flex-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.bz-flex-right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.bz-flex-space-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.bz-flex-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/* Direction
 ========================================================================== */
.bz-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.bz-flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.bz-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.bz-flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.bz-flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.bz-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
/*
 * Horizontal alignment
 * Default value is `stretch`
 */
.bz-flex-wrap-top {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.bz-flex-wrap-middle {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
.bz-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.bz-flex-wrap-space-between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between;
}
.bz-flex-wrap-space-around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.bz-flex-order-first {
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}
.bz-flex-order-last {
  -ms-flex-order: 99;
  -webkit-order: 99;
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .bz-flex-order-first-small {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .bz-flex-order-last-small {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .bz-flex-order-first-medium {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .bz-flex-order-last-medium {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .bz-flex-order-first-large {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .bz-flex-order-last-large {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .bz-flex-order-first-xlarge {
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }
  .bz-flex-order-last-xlarge {
    -ms-flex-order: 99;
    -webkit-order: 99;
    order: 99;
  }
}

/* Border
 ========================================================================== */
.bz-border-circle {
  border-radius: 50%;
}
.bz-border-rounded {
  border-radius: 5px;
}

/* Link
 ========================================================================== */
/*
 * Let links appear in default text color
 */
.bz-link-muted,
.bz-link-muted a {
  color: #3c3b3c;
}
.bz-link-muted:hover,
.bz-link-muted a:hover {
  color: #3c3b3c;
}
/*
 * Reset link style
 */
.bz-link-reset,
.bz-link-reset a,
.bz-link-reset:hover,
.bz-link-reset a:hover {
  color: inherit;
  text-decoration: none;
}
/* Component: List
------------------------------------------------------------- */
.bz-list {
  padding: 0;
  list-style: none;
}
.bz-list > li:before,
.bz-list > li:after {
  content: "";
  display: table;
}
.bz-list > li:after {
  clear: both;
}
.bz-list > li > :last-child {
  margin-bottom: 0;
}
.bz-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
.bz-list-line > li:nth-child(n + 2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #dddddd;
}
.bz-list-striped > li {
  padding: 5px 5px;
  border-bottom: 1px solid #dddddd;
}
.bz-list-striped > li:nth-of-type(odd) {
  background: #fafafa;
}
.bz-list-space > li:nth-child(n + 2) {
  margin-top: 10px;
}
.bz-list-striped > li:first-child {
  border-top: 1px solid #dddddd;
}
@media (min-width: 768px) {
  .th-description-list-horizontal {
    overflow: hidden;
  }
  .th-description-list-horizontal > dt {
    width: 160px;
    float: left;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .th-description-list-horizontal > dd {
    margin-left: 180px;
  }
}
.th-description-list-line > dt {
  font-weight: normal;
}
.th-description-list-line > dt:nth-child(n + 2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #dddddd;
}
.th-description-list-line > dd {
  color: #999999;
}
/* Component: Table
------------------------------------------------------------- */
.bz-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 15px;
}
* + .bz-table {
  margin-top: 15px;
}
.bz-table th,
.bz-table td {
  padding: 8px 8px;
  border-bottom: 1px solid #dddddd;
}
.bz-table th {
  text-align: left;
}
.bz-table td {
  vertical-align: top;
}
.bz-table thead th {
  vertical-align: bottom;
}
.bz-table caption,
.bz-table tfoot {
  font-size: 12px;
  font-style: italic;
}
.bz-table caption {
  text-align: left;
  color: #999999;
}
.bz-table-middle,
.bz-table-middle td {
  vertical-align: middle !important;
}
.bz-table-striped tbody tr:nth-of-type(odd) {
  background: #fafafa;
}
.bz-table-condensed td {
  padding: 4px 8px;
}
.bz-table-hover tbody tr:hover {
  background: #f0f0f0;
}

/* Scrollable
 ========================================================================== */
/*
 * Enable scrolling for preformatted text
 */
.bz-scrollable-text {
  height: 300px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/*
 * Box with scrolling enabled
 */
.bz-scrollable-box {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 170px;
  padding: 10px;
  border: 1px solid #ebeae8;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
.bz-scrollable-box > :last-child {
  margin-bottom: 0;
}
/* Overflow
 ========================================================================== */
/*
 * Enable scrollbars if content is clipped
 */
.bz-overflow-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.bz-overflow-container > :last-child {
  margin-bottom: 0;
}
/* Position
 ========================================================================== */
.bz-position-top,
.bz-position-bottom {
  position: absolute !important;
  width: 100%;
}
.bz-position-top {
  top: 0;
}
.bz-position-bottom {
  bottom: 0;
}
.bz-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.bz-position-relative {
  position: relative !important;
}
.bz-position-fixed-top,
.bz-position-fixed-bottom {
  position: fixed !important;
  width: 100%;
  left: 0;
}
.bz-fixed-top {
  top: 0;
}
.bz-fixed-bottom {
  bottom: 0;
}
.bz-cover-background {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Display
 ========================================================================== */
/*
 * Display
 */
.bz-display-block {
  display: block !important;
}
.bz-display-inline {
  display: inline !important;
}
.bz-display-inline-block {
  display: inline-block !important;
}
/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
/* Desktop and bigger */
@media (min-width: 960px) {
  .bz-visible-small {
    display: none !important;
  }
  .bz-visible-medium {
    display: none !important;
  }
  .bz-hidden-large {
    display: none !important;
  }
}

/* Tablets portrait */
@media (min-width: 768px) and (max-width: 959px) {
  .bz-visible-small {
    display: none !important;
  }
  .bz-visible-large {
    display: none !important ;
  }
  .bz-hidden-medium {
    display: none !important;
  }
}

/* Phone landscape and smaller*/
@media (max-width: 767px) {
  .bz-visible-medium {
    display: none !important;
  }
  .bz-visible-large {
    display: none !important;
  }
  .bz-hidden-small {
    display: none !important;
  }
}

/* Remove from the flow and screen readers on any device */
.bz-hidden {
  display: none !important;
  visibility: hidden !important;
}
/* It's hidden, but still affects layout */
.bz-invisible {
  visibility: hidden !important;
}
/* Show on hover */
.bz-visible-hover:hover .bz-hidden,
.bz-visible-hover:hover .bz-invisible {
  display: block !important;
  visibility: visible !important;
}
.bz-visible-hover-inline:hover .bz-hidden,
.bz-visible-hover-inline:hover .bz-invisible {
  display: inline-block !important;
  visibility: visible !important;
}
/* Hide on touch */
.bz-touch .bz-hidden-touch,
.bz-notouch .bz-hidden-notouch {
  display: none;
}

/* Form component
------------------------------------------*/
.bz-form input,
.bz-form select,
.bz-form textarea,
.bz-input {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border-radius: 0;
  font: inherit;
  color: inherit;
}

.bz-form select select.bz-input {
  text-transform: none;
}

.bz-form optgroup {
  font: inherit;
  font-weight: bold;
}

.bz-form input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.bz-form input[type="checkbox"],
.bz-form input[type="radio"] {
  padding: 0;
}

.bz-form input[type="checkbox"]:not(:disabled),
.bz-form input[type="radio"]:not(:disabled) {
  cursor: pointer;
}

.bz-form textarea,
.bz-form input:not([type]),
.bz-form input[type="text"],
.bz-form input[type="password"],
.bz-form input[type="email"],
.bz-form input[type="url"],
.bz-form input[type="search"],
.bz-form input[type="tel"],
.bz-form input[type="number"],
.bz-form input[type="datetime"] {
  -webkit-appearance: none;
}

.bz-form input[type="search"]::-webkit-search-cancel-button,
.bz-form input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.bz-form input[type="number"]::-webkit-inner-spin-button,
.bz-form input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

.bz-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.bz-form textarea {
  overflow: auto;
  vertical-align: top;
}

.bz-form ::-moz-placeholder {
  opacity: 1;
}

.bz-form :invalid {
  box-shadow: none;
}

.bz-form input:not([type="radio"]):not([type="checkbox"]),
.bz-form select {
  vertical-align: middle;
}
/* Style
 ========================================================================== */

.bz-form > :last-child {
  margin-bottom: 0;
}

.bz-form select,
.bz-form textarea,
.bz-form input:not([type]),
.bz-form input[type="text"],
.bz-form input[type="password"],
.bz-form input[type="datetime"],
.bz-form input[type="datetime-local"],
.bz-form input[type="date"],
.bz-form input[type="month"],
.bz-form input[type="time"],
.bz-form input[type="week"],
.bz-form input[type="number"],
.bz-form input[type="email"],
.bz-form input[type="url"],
.bz-form input[type="search"],
.bz-form input[type="tel"],
.bz-form input[type="color"],
.bz-input {
  height: 37px;
  max-width: 100%;
  padding: 4px 6px;
  border: 1px solid #eaeaea;
  background: #ffffff;
  color: #525252;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  font-weight: 300;
}
.bz-form select:focus,
.bz-form textarea:focus,
.bz-form input:not([type]):focus,
.bz-form input[type="text"]:focus,
.bz-form input[type="password"]:focus,
.bz-form input[type="datetime"]:focus,
.bz-form input[type="datetime-local"]:focus,
.bz-form input[type="date"]:focus,
.bz-form input[type="month"]:focus,
.bz-form input[type="time"]:focus,
.bz-form input[type="week"]:focus,
.bz-form input[type="number"]:focus,
.bz-form input[type="email"]:focus,
.bz-form input[type="url"]:focus,
.bz-form input[type="search"]:focus,
.bz-form input[type="tel"]:focus,
.bz-form input[type="color"]:focus,
.bz-input:focus {
  border-color: #d1d1d1;
  outline: 0;
  background: #ffffff;
  color: #525252;
}
.bz-form select:disabled,
.bz-form textarea:disabled,
.bz-form input:not([type]):disabled,
.bz-form input[type="text"]:disabled,
.bz-form input[type="password"]:disabled,
.bz-form input[type="datetime"]:disabled,
.bz-form input[type="datetime-local"]:disabled,
.bz-form input[type="date"]:disabled,
.bz-form input[type="month"]:disabled,
.bz-form input[type="time"]:disabled,
.bz-form input[type="week"]:disabled,
.bz-form input[type="number"]:disabled,
.bz-form input[type="email"]:disabled,
.bz-form input[type="url"]:disabled,
.bz-form input[type="search"]:disabled,
.bz-form input[type="tel"]:disabled,
.bz-form input[type="color"]:disabled {
  border-color: #eaeaea;
  background-color: #f5f5f5;
  color: #aaaaaa;
}

.bz-form input.bz-readonly,
.bz-form select.bz-readonly {
  border: none !important;
  background: transparent !important;
}

.bz-form select.bz-readonly {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #525252;
}

.bz-form :-ms-input-placeholder {
  color: #aaaaaa !important;
}
.bz-form ::-moz-placeholder {
  color: #aaaaaa;
}
.bz-form ::-webkit-input-placeholder {
  color: #aaaaaa;
}
.bz-form :disabled:-ms-input-placeholder {
  color: #aaaaaa !important;
}
.bz-form :disabled::-moz-placeholder {
  color: #aaaaaa;
}
.bz-form :disabled::-webkit-input-placeholder {
  color: #aaaaaa;
}

.bz-form legend {
  width: 100%;
  border: 0;
  padding: 0;
  padding-bottom: 20px;
  font-size: 20px;
  line-height: 33px;
}

.bz-form legend:after {
  content: "";
  display: block;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
}
/* Size modifiers
 * Higher specificity needed to override defaults
 ========================================================================== */
.bz-form-small select,
.bz-form-small textarea,
.bz-form-small input[type],
.bz-form-small input:not([type]),
select.bz-size-small,
textarea.bz-size-small,
input[type].bz-size-small,
input:not([type]).bz-size-small {
  height: 26px;
  padding: 3px 3px;
  font-size: 14px;
}
.bz-form-large select,
.bz-form-large textarea,
.bz-form-large input[type],
.bz-form-large input:not([type]),
select.bz-size-large,
textarea.bz-size-large,
input[type].bz-size-large,
input:not([type]).bz-size-large {
  height: 41px;
  padding: 8px 6px;
  font-size: 18px;
}
.bz-form-full select,
.bz-form-full textarea,
.bz-form-full input[type],
.bz-form-full input:not([type]),
.bz-form-full .bz-button {
  width: 100%;
}
/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.bz-form textarea,
.bz-form select[multiple],
.bz-form select[size] {
  height: auto;
}
/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.bz-form-danger {
  border-color: #dc8d99 !important;
  color: #d85030 !important;
}
/*
 * Success state
 */
.bz-form-success {
  border-color: #e0e7d5 !important;
  color: #afc4b0 !important;
}
/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.bz-form-width-mini {
  width: 40px;
}
select.bz-form-width-mini {
  width: 65px;
}
.bz-form-width-small {
  width: 130px;
}
.bz-form-width-medium {
  width: 200px;
}
.bz-form-width-large {
  width: 500px;
}
/* Sub-objects: `bz-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `bz-form-horizontal` modifier
 */
.bz-form-row:before,
.bz-form-row:after {
  content: "";
  display: table;
}
.bz-form-row:after {
  clear: both;
}
/*
 * Vertical gutter
 */
.bz-form-row + .bz-form-row {
  margin-top: 10px;
}
/* Help text
 * Sub-object: `bz-form-help-inline`, `bz-form-help-block`
 ========================================================================== */
.bz-form-help-inline {
  display: inline-block;
  margin: 0 0 0 10px;
}
.bz-form-help-block {
  margin: 5px 0 0 0;
}
/* Controls content
 * Sub-object: `bz-form-controls`, `bz-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.bz-form-controls > :first-child {
  margin-top: 0;
}
.bz-form-controls > :last-child {
  margin-bottom: 0;
}
/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.bz-form-controls-condensed {
  margin: 5px 0;
}
/* Modifier: `bz-form-stacked`
 * Requires sub-object: `bz-form-label`
 ========================================================================== */
.bz-form-stacked .bz-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
/* Modifier: `bz-form-horizontal`
 * Requires sub-objects: `bz-form-label`, `bz-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `bz-form-stacked` */
  .bz-form-horizontal .bz-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .bz-form-horizontal .bz-form-label {
    width: 200px;
    margin-top: 5px;
    float: left;
  }
  .bz-form-horizontal .bz-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .bz-form-horizontal .bz-form-controls-text {
    padding-top: 5px;
  }
}
/* Sub-object: `bz-form-icon`
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.bz-form-icon {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}
/*
 * 1. Make form element clickable through icon
 */
.bz-form-icon > [class*="fa-"] {
  position: absolute;
  top: 50%;
  width: 36px;
  margin-top: -8px;
  font-size: 16px;
  color: #aaaaaa;
  text-align: center;
  /* 1 */
  pointer-events: none;
}

.bz-form-icon:not(.bz-form-icon-flip) > input {
  padding-left: 36px !important;
}
/*
 * Sub-modifier: `bz-form-icon-flip`
 */
.bz-form-icon-flip > [class*="fa-"] {
  right: 0;
}
.bz-form-icon-flip > input {
  padding-right: 36px !important;
}
.bz-form legend {
  color: #525252;
  text-transform: uppercase;
  font-weight: 700;
}

.bz-form-icon > .fa-bz-danger {
  color: #d85030 !important;
}

.bz-form-message {
  line-height: 36px;
  color: #d85030;
}
/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.bz-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Style
 * 8. `line-height` is used to create a height
 * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
 * 10. Reset button group whitespace hack
 * 11. Required for `a`.
 */
.bz-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #333333;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 12px;
  background: #efefef;
  vertical-align: middle;
  /* 8 */
  line-height: 36px;
  /* 9 */
  min-height: 36px;
  /* 10 */
  /* 11 */
  text-decoration: none;
  text-align: center;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: #dbdbdb;
  background-image: -webkit-linear-gradient(top, #e4e4e4, transparent);
  background-image: linear-gradient(to bottom, #e4e4e4, transparent);
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.09);
  text-transform: uppercase;
  font-size: 14px;
}
.bz-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.bz-button:hover,
.bz-button:focus,
.bz-button:active,
.bz-button.bz-active {
  background-color: #e4e4e4;
  outline: none;
  text-decoration: none;
  border-color: rgba(0, 0, 0, 0.08);
  background-image: none;
  box-shadow: inset 1px 3px 2px rgba(0, 0, 0, 0.025), inset 0 -1px 1px rgba(0, 0, 0, 0.07);
  text-shadow: 1px 1px rgba(255, 255, 255, 0.9);
}

.bz-button.bz-submitting:before {
  font-family: "FontAwesome";
  content: "\f110";
  display: inline-block;
  -webkit-animation: bz-submitting 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes bz-submitting {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes bz-submitting {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* Color modifiers
 ========================================================================== */
.bz-button-primary {
  background-color: #3eade5;
  color: #ffffff;
  background-image: -webkit-linear-gradient(top, #2f99ce, transparent);
  background-image: linear-gradient(to bottom, #2f99ce, transparent);
  border-color: transparent;
}
.bz-button-primary:hover,
.bz-button-primary:focus,
.bz-button-primary:active,
.bz-button-primary.bz-active {
  background-color: #2f99ce;
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  background-image: none;
  box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.025);
  text-shadow: none;
}
.bz-button-secondary {
  background-color: #b1bd61;
  color: #ffffff;
  background-image: -webkit-linear-gradient(top, #bbc46a, #abb95b);
  background-image: linear-gradient(to bottom, #bbc46a, #abb95b);
  border-color: transparent;
}
.bz-button-secondary:hover,
.bz-button-secondary:focus,
.bz-button-secondary:active,
.bz-button-secondary.bz-active {
  background-color: #b1bd61;
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  background-image: none;
  box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.025);
  text-shadow: none;
}
/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.bz-button:disabled {
  background-color: #fafafa;
  color: #aaaaaa;
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.09);
  background-image: none;
  border-color: #eaeaea;
}
.bz-button:disabled:hover {
}
/* Modifier: `bz-button-link`
 ========================================================================== */
/* Reset */
.bz-button-link,
.bz-button-link:hover,
.bz-button-link:focus,
.bz-button-link:active,
.bz-button-link.bz-active,
.bz-button-link:disabled {
  border-color: transparent;
  background: none;
  box-shadow: none;
}
/* Color */
.bz-button-link {
  color: #333;
}
.bz-button-link:hover,
.bz-button-link:focus,
.bz-button-link:active,
.bz-button-link.bz-active {
  color: #2f99ce;
  text-decoration: none;
}
.bz-button-link:disabled {
  color: #aaaaaa;
}
/* Focus */
.bz-button-link:focus {
  outline: 1px dotted;
}
/* Size modifiers
 ========================================================================== */
.bz-button-mini {
  min-height: 20px;
  padding: 0 6px;
  line-height: 20px;
  font-size: 12px;
}
.bz-button-small,
.bz-form-small .bz-button {
  min-height: 25px;
  padding: 0 10px;
  line-height: 25px;
  font-size: 14px;
}
.bz-button-large,
.bz-form-large .bz-button {
  min-height: 40px;
  padding: 0 15px;
  line-height: 40px;
  font-size: 18px;
}
/* Sub-object `bz-button-group`
 ========================================================================== */
.bz-button-group {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 0.001px;
  white-space: nowrap;
}
.bz-button-group > * {
  display: inline-block;
}
.bz-button-group .bz-button {
  vertical-align: top;
}
/* Sub-object: `bz-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.bz-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}
.bz-button,
a.bz-button,
button.bz-button {
  font-weight: 300;
}
/* Sub-object `bz-button-group`
     ========================================================================== */
/*
     * Collapse border
     */
.bz-button-group > .bz-button:nth-child(n + 2),
.bz-button-group > div:nth-child(n + 2) .bz-button {
  margin-left: -1px;
}
/*
     * Create position context to superimpose the successor elements border
     * Known issue: If you use an `a` element as button and an icon inside,
     * the active state will not work if you click the icon inside the button
     * Workaround: Just use a `button` or `input` element as button
     */
.bz-button-group .bz-button:active {
  position: relative;
}

/* Dropdown element
------------------------------------------*/
.bz-dropdown {
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  color: #666;
  display: none;
  font-size: 1rem;
  left: 0;
  margin-top: 5px;
  padding: 15px;
  position: absolute;
  top: 100%;
  vertical-align: top;
  width: 200px;
  z-index: 1020;
}

.bz-dropdown-block {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1020;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
  margin-top: 5px;
  padding: 15px;
  background: #ffffff;
  color: #444444;
  font-size: 1rem;
  vertical-align: top;
  border: 1px solid #cbcbcb;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.bz-open > .bz-dropdown,
.bz-open > .bz-dropdown-block {
  display: block;
  -webkit-animation: bz-fade 0.2s ease-in-out;
  animation: bz-fade 0.2s ease-in-out;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.bz-dropdown .bz-dropdown-flip {
  left: auto;
  right: 0;
}
.bz-dropdown .bz-dropdown-up {
  top: auto;
  bottom: 100%;
  margin-top: auto;
  margin-bottom: 5px;
}
.bz-dropdown-block > ul {
  margin: 0 -15px;
  padding: 0;
}
.bz-dropdown-block > ul > li > a {
  color: #666;
  padding: 3px 15px;
  font-size: 12px;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.bz-dropdown-block > ul > li > a:focus,
.bz-dropdown-block > ul > li > a:hover,
.bz-dropdown-block > ul > li > a.bz-active {
  background: none repeat scroll 0 0 #009dd8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) inset;
  color: #fff;
  outline: 0 none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.bz-dropdown-button {
  -webkit-appearance: none;
  margin: 0;
  border: none;
  overflow: visible;
  font: inherit;
  color: #444444;
  text-transform: none;
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 12px;
  background: #f7f7f7;
  vertical-align: middle;
  line-height: 28px;
  min-height: 30px;
  font-size: 12px;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.3);
  background-origin: border-box;
  background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
  cursor: pointer;
}
.bz-dropdown-button:hover {
  background-color: #fafafa;
  color: #444444;
  outline: none;
  text-decoration: none;
  background-image: none;
}

/* Switcher Element
============================================================*/
.bz-switcher {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
}
.bz-switcher > *:not(.bz-active) {
  display: none;
}

/* ========================================================================
   Component: Tab
 ========================================================================== */
.bz-tab {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border-bottom: 1px solid #dddddd;
}
.bz-tab:before,
.bz-tab:after {
  content: "";
  display: table;
}
.bz-tab:after {
  clear: both;
}
.bz-tab > li {
  margin-bottom: -1px;
  float: left;
  position: relative;
}
.bz-tab > li > a {
  display: block;
  padding: 8px 12px 8px 12px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  color: #0077dd;
  text-decoration: none;
  border-radius: 4px 4px 0 0;
  text-shadow: 0 1px 0 #ffffff;
  cursor: pointer;
}
.bz-tab > li:nth-child(n + 2) > a {
  margin-left: 5px;
}
.bz-tab > li > a:hover,
.bz-tab > li > a:focus,
.bz-tab > li.bz-open > a {
  border-color: #dddddd;
  background: #fafafa;
  color: #005599;
  outline: none;
}
.bz-tab > li:not(.bz-active) > a:hover,
.bz-tab > li:not(.bz-active) > a:focus,
.bz-tab > li.bz-open:not(.bz-active) > a {
  margin-bottom: 1px;
  padding-bottom: 7px;
}
.bz-tab > li.bz-active > a {
  border-color: #dddddd;
  border-bottom-color: transparent;
  background: #ffffff;
  color: #444444;
}
/* Disabled */
.bz-tab > li.bz-disabled > a {
  color: #999999;
  cursor: text;
}
.bz-tab > li.bz-disabled > a:hover,
.bz-tab > li.bz-disabled > a:focus,
.bz-tab > li.bz-disabled.bz-active > a {
  background: none;
  border-color: transparent;
}
/* Modifier: 'tab-flip' */
.bz-tab-flip > li {
  float: right;
}
.bz-tab-flip > li:nth-child(n + 2) > a {
  margin-left: 0;
  margin-right: 5px;
}
/* Modifier: 'tab-responsive' */
.bz-tab > li.bz-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}
/* Icon */
.bz-tab-responsive > a:before {
  content: "\f0c9\00a0";
  font-family: FontAwesome;
}
/* Modifier: 'tab-center' */
.bz-tab-center {
  border-bottom: 1px solid #dddddd;
}
.bz-tab-center-bottom {
  border-bottom: none;
  border-top: 1px solid #dddddd;
}
.bz-tab-center:before,
.bz-tab-center:after {
  content: "";
  display: table;
}
.bz-tab-center:after {
  clear: both;
}
/* 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs */
.bz-tab-center .bz-tab {
  position: relative;
  right: 50%;
  border: none;
  float: right;
}
.bz-tab-center .bz-tab > li {
  position: relative;
  right: -50%;
}
.bz-tab-center .bz-tab > li > a {
  text-align: center;
}
/* Collapsed 
-----------------*/
.bz-tabs:not(.languagetabs) .bz-tab-collapsed {
  border: 1px solid #ddd;
}

.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li {
  float: none;
  margin-bottom: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li:nth-child(n + 2) {
  border-top: 1px solid #ddd;
}

.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li > a,
.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li:nth-child(n + 2) > a {
  border: none;
  margin: 0;
}

.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li.bz-active > a,
.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li > a:hover,
.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li > a:focus,
.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li.bz-open > a,
.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li:not(.bz-active) > a:hover,
.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li:not(.bz-active) > a:focus,
.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li.bz-open:not(.bz-active) > a {
  border: none;
  padding-bottom: 8px;
  margin: 0;
}

.bz-tabs:not(.languagetabs) .bz-tab-collapsed > li.bz-active > a {
  background: #3eade5;
  color: #fff;
}

/* Modifier: 'tab-left', 'tab-right'
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .bz-tab-left,
  .bz-tab-right {
    border-bottom: none;
  }
  .bz-tab-left > li,
  .bz-tab-right > li {
    margin-bottom: 0;
    float: none;
  }
  .bz-tab-left > li > a,
  .bz-tab-right > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .bz-tab-left > li:nth-child(n + 2) > a,
  .bz-tab-right > li:nth-child(n + 2) > a {
    margin-left: 0;
    margin-top: 5px;
  }
  .bz-tab-left > li.bz-active > a,
  .bz-tab-right > li.bz-active > a {
    border-color: #dddddd;
  }
  .bz-tab-left {
    border-right: 1px solid #dddddd;
  }
  .bz-tab-left > li {
    margin-right: -1px;
  }
  .bz-tab-left > li > a {
    border-bottom-width: 1px;
    border-right-width: 0;
  }
  .bz-tab-left > li:not(.bz-active) > a:hover,
  .bz-tab-left > li:not(.bz-active) > a:focus {
    margin-bottom: 0;
    margin-right: 1px;
    padding-bottom: 8px;
    padding-right: 11px;
  }
  .bz-tab-left > li.bz-active > a {
    border-right-color: transparent;
  }
  .bz-tab-right {
    border-left: 1px solid #dddddd;
  }
  .bz-tab-right > li {
    margin-left: -1px;
  }
  .bz-tab-right > li > a {
    border-bottom-width: 1px;
    border-left-width: 0;
  }
  .bz-tab-right > li:not(.bz-active) > a:hover,
  .bz-tab-right > li:not(.bz-active) > a:focus {
    margin-bottom: 0;
    margin-left: 1px;
    padding-bottom: 8px;
    padding-left: 11px;
  }
  .bz-tab-right > li.bz-active > a {
    border-left-color: transparent;
  }
}
@media (min-width: 768px) {
  .bz-tab-left > li > a {
    border-radius: 4px 0 0 4px;
  }
  .bz-tab-right > li > a {
    border-radius: 0 4px 4px 0;
  }
}

/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*="bz-animation-"] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media screen {
  [data-bz-scrollspy*="bz-animation-"]:not([data-bz-scrollspy*="target"]) {
    opacity: 0;
  }
}
.bz-animation-fade {
  -webkit-animation-name: bz-fade;
  animation-name: bz-fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
.bz-animation-scale-up {
  -webkit-animation-name: bz-fade-scale-02;
  animation-name: bz-fade-scale-02;
}
.bz-animation-scale-down {
  -webkit-animation-name: bz-fade-scale-18;
  animation-name: bz-fade-scale-18;
}
.bz-animation-slide-top {
  -webkit-animation-name: bz-fade-top;
  animation-name: bz-fade-top;
}
.bz-animation-slide-bottom {
  -webkit-animation-name: bz-fade-bottom;
  animation-name: bz-fade-bottom;
}
.bz-animation-slide-left {
  -webkit-animation-name: bz-fade-left;
  animation-name: bz-fade-left;
}
.bz-animation-slide-right {
  -webkit-animation-name: bz-fade-right;
  animation-name: bz-fade-right;
}
.bz-animation-scale {
  -webkit-animation-name: bz-scale-12;
  animation-name: bz-scale-12;
}
.bz-animation-shake {
  -webkit-animation-name: bz-shake;
  animation-name: bz-shake;
}
.bz-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.bz-animation-15 {
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}
.bz-animation-top-left {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.bz-animation-top-center {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.bz-animation-top-right {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.bz-animation-middle-left {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
.bz-animation-middle-right {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.bz-animation-bottom-left {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.bz-animation-bottom-center {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.bz-animation-bottom-right {
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.bz-animation-hover:not(:hover),
.bz-animation-hover:not(:hover) [class*="bz-animation-"],
.bz-touch .bz-animation-hover:not(.bz-hover),
.bz-touch .bz-animation-hover:not(.bz-hover) [class*="bz-animation-"] {
  -webkit-animation-name: none;
  animation-name: none;
}
/* Keyframes: Fade
 * Used by dropdown, datepicker and slideshow component
 ========================================================================== */
@-webkit-keyframes bz-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bz-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Keyframes: Fade with slide
 ========================================================================== */
/*
 * Top
 */
@-webkit-keyframes bz-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bz-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Bottom
 */
@-webkit-keyframes bz-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bz-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Left
 */
@-webkit-keyframes bz-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes bz-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes bz-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes bz-fade-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Keyframes: Fade with scale
 ========================================================================== */
/*
 * Scale by 0.2
 */
@-webkit-keyframes bz-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes bz-fade-scale-02 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale by 1.5
 * Used by slideshow component
 */
@-webkit-keyframes bz-fade-scale-15 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes bz-fade-scale-15 {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/*
 * Scale by 1.8
 */
@-webkit-keyframes bz-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes bz-fade-scale-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Keyframes: Slide
 * Used by slideshow component
 ========================================================================== */
/*
 * Left
 */
@-webkit-keyframes bz-slide-left {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bz-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes bz-slide-right {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bz-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Left third
 */
@-webkit-keyframes bz-slide-left-33 {
  0% {
    -webkit-transform: translateX(33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bz-slide-left-33 {
  0% {
    transform: translateX(33%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Right third
 */
@-webkit-keyframes bz-slide-right-33 {
  0% {
    -webkit-transform: translateX(-33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bz-slide-right-33 {
  0% {
    transform: translateX(-33%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Keyframes: Scale
 ========================================================================== */
@-webkit-keyframes bz-scale-12 {
  0% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes bz-scale-12 {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* Keyframes: Rotate
 * Used by icon component
 ========================================================================== */
@-webkit-keyframes bz-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes bz-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Keyframes: Shake
 ========================================================================== */
@-webkit-keyframes bz-shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
  }
}
@keyframes bz-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/* Keyframes: Fade with slide fixed
 * Used by dropdown and search component
 ========================================================================== */
/*
 * Top fixed
 */
@-webkit-keyframes bz-slide-top-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bz-slide-top-fixed {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
 * Bottom fixed
 */
@-webkit-keyframes bz-slide-bottom-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bz-slide-bottom-fixed {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Component: Slideshow
------------------------------------------------ */
.bz-slideshow {
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow: hidden;
  touch-action: pan-y;
}

.bz-slideshow.bz-slideshow-animate > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.bz-slideshow.bz-slideshow-animate > .bz-active {
  z-index: 10;
  opacity: 1;
}
.bz-slideshow.bz-slideshow-simple > li {
  display: none !important;
}
.bz-slideshow.bz-slideshow-simple > .bz-active {
  display: block !important;
}
.bz-slideshow > li > img {
  visibility: hidden;
}
.bz-slideshow > li > a {
  display: block;
}
.bz-slideshow > li > a > img {
  max-width: 100%;
  height: auto !important;
}
[data-bz-slideshow-slide] {
  cursor: pointer;
}

.bz-slideshow-fullscreen,
.bz-slideshow-fullscreen > li {
  height: 100vh;
}

.bz-slideshow-fade-out {
  -webkit-animation: bz-fade 0.5s linear reverse;
  animation: bz-fade 0.5s linear reverse;
}
.bz-slideshow-scroll-forward-in {
  -webkit-animation: bz-slide-right 0.5s ease-in-out;
  animation: bz-slide-right 0.5s ease-in-out;
}
.bz-slideshow-scroll-forward-out {
  -webkit-animation: bz-slide-left 0.5s ease-in-out reverse;
  animation: bz-slide-left 0.5s ease-in-out reverse;
}
.bz-slideshow-scroll-backward-in {
  -webkit-animation: bz-slide-left 0.5s ease-in-out;
  animation: bz-slide-left 0.5s ease-in-out;
}
.bz-slideshow-scroll-backward-out {
  -webkit-animation: bz-slide-right 0.5s ease-in-out reverse;
  animation: bz-slide-right 0.5s ease-in-out reverse;
}
.bz-slideshow-scale-out {
  -webkit-animation: bz-fade-scale-15 0.5s ease-in-out reverse;
  animation: bz-fade-scale-15 0.5s ease-in-out reverse;
}
.bz-slideshow-swipe-forward-in {
  -webkit-animation: bz-slide-left-33 0.5s ease-in-out;
  animation: bz-slide-left-33 0.5s ease-in-out;
}
.bz-slideshow-swipe-forward-out {
  -webkit-animation: bz-slide-left 0.5s ease-in-out reverse;
  animation: bz-slide-left 0.5s ease-in-out reverse;
}
.bz-slideshow-swipe-backward-in {
  -webkit-animation: bz-slide-right-33 0.5s ease-in-out;
  animation: bz-slide-right-33 0.5s ease-in-out;
}
.bz-slideshow-swipe-backward-out {
  -webkit-animation: bz-slide-right 0.5s ease-in-out reverse;
  animation: bz-slide-right 0.5s ease-in-out reverse;
}
.bz-slideshow-swipe-forward-in:before,
.bz-slideshow-swipe-backward-in:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: bz-fade 0.5s ease-in-out reverse;
  animation: bz-fade 0.5s ease-in-out reverse;
}
.bz-slidenav {
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: rgba(50, 50, 50, 0.4);
  font-size: 60px;
  text-align: center;
  text-decoration: none;
}
.bz-slidenav-position-small .bz-slidenav {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 30px;
}
a.bz-slidenav.bz-slidenav-dark {
  color: rgba(51, 51, 51, 0.8);
}
a.bz-slidenav.bz-slidenav-light {
  color: rgba(255, 255, 255, 0.8);
}
.bz-slidenav:hover,
.bz-slidenav:focus {
  outline: none;
  text-decoration: none;
  color: rgba(50, 50, 50, 0.7);
  cursor: pointer;
}
a.bz-slidenav.bz-slidenav-dark:hover,
a.bz-slidenav.bz-slidenav-dark:focus {
  color: #333;
}
a.bz-slidenav.bz-slidenav-light:hover,
a.bz-slidenav.bz-slidenav-light:focus {
  color: #fff;
}
.bz-slidenav:active {
  color: rgba(50, 50, 50, 0.9);
}
.bz-slidenav-previous:before {
  content: "\f0d9";
  font-family: FontAwesome;
}
.bz-slidenav-arrows.bz-slidenav-previous:before {
  content: "\f104";
}
.bz-slidenav-next:after {
  content: "\f0da";
  font-family: FontAwesome;
}
.bz-slidenav-arrows.bz-slidenav-next:after {
  content: "\f105";
}

.bz-slidenav-position {
  position: relative;
}
.bz-slidenav-position .bz-slidenav {
  position: absolute;
  top: 50%;
  z-index: 1;
  margin-top: -30px;
}
.bz-slidenav-position-small .bz-slidenav {
  margin-top: -15px;
}
.bz-slidenav-position:not(.bz-slidenav-position-show) .bz-slidenav {
  display: none;
}
.bz-slidenav-position:hover .bz-slidenav-previous,
.bz-slidenav-position:hover .bz-slidenav-next {
  display: block;
}
.bz-slidenav-position .bz-slidenav-previous {
  left: 20px;
}
.bz-slidenav-position.bz-slidenav-position-small .bz-slidenav-previous {
  left: 0;
}
.bz-slidenav-position-outside .bz-slidenav-previous {
  left: -60px;
}
.bz-slidenav-position-outside.bz-slidenav-position-small .bz-slidenav-previous {
  left: -30px;
}
.bz-slidenav-position .bz-slidenav-next {
  right: 20px;
}
.bz-slidenav-position.bz-slidenav-position-small .bz-slidenav-next {
  right: 0;
}
.bz-slidenav-position-outside .bz-slidenav-next {
  right: -60px;
}
.bz-slidenav-position-outside.bz-slidenav-position-small .bz-slidenav-next {
  right: -30px;
}

/* Overlay component (alleen voor nu
--------------------------------------------------------*/

.bz-hasoverlay {
  position: relative;
}

.bz-overlay {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-bos-sizing: border-box;
  box-sizing: border-box;
}

.bz-overlay * {
  color: #fff;
}

.bz-overlay-bottom {
  top: auto;
  bottom: 0;
}

/*! BZkit 2.22.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Deactivate browser history navigation in IE11
 */
.bz-slider {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  touch-action: pan-y;
}
/*
 * 1. Reset list style without interfering with grid
 */
.bz-slider:not(.bz-grid) {
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Sub-object item
 * 1. Position items above each other
 */
.bz-slider > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
}
/*
 * Clip child elements
 */
.bz-slider-container {
  overflow: hidden;
}
/*
 * Dragged
 */
.bz-slider:not(.bz-drag) {
  -webkit-transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
}
/*
 * 1. Makes text unselectable
 */
.bz-slider.bz-drag {
  cursor: col-resize;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.bz-slider a,
.bz-slider img {
  /* 1 */
  -webkit-user-drag: none;
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}
/*
 * 1. Prevents images and links from being dragged in Firefox
 */
.bz-slider img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}
/* Modifier: `bz-slider-fullscreen`
 ========================================================================== */
.bz-slider-fullscreen,
.bz-slider-fullscreen > li {
  height: 100vh;
}

/*! BZkit 2.22.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.bz-dotnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -15px;
  margin-top: -15px;
  /* 2 */
  padding: 0;
  list-style: none;
}
/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `bz-width-*` classes can be applied
 */
.bz-dotnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 15px;
  margin-top: 15px;
}
/*
 * DEPRECATED IE9 Support
 */
.bz-dotnav:before,
.bz-dotnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.bz-dotnav:after {
  clear: both;
}
.bz-dotnav > * {
  float: left;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.bz-dotnav > * > * {
  display: block;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.bz-dotnav > * > :hover,
.bz-dotnav > * > :focus {
  background: rgba(50, 50, 50, 0.4);
  /* 2 */
  outline: none;
}
/* OnClick */
.bz-dotnav > * > :active {
  background: rgba(50, 50, 50, 0.6);
}
/* Active */
.bz-dotnav > .bz-active > * {
  background: rgba(50, 50, 50, 0.4);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/* Modifier: `bz-dotnav-contrast`
 ========================================================================== */
.bz-dotnav-contrast > * > * {
  background: rgba(255, 255, 255, 0.4);
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.bz-dotnav-contrast > * > :hover,
.bz-dotnav-contrast > * > :focus {
  background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.bz-dotnav-contrast > * > :active {
  background: rgba(255, 255, 255, 0.9);
}
/* Active */
.bz-dotnav-contrast > .bz-active > * {
  background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'bz-dotnav-vertical'
 ========================================================================== */
/*
 * DEPRECATED
 */
.bz-dotnav-vertical {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/*
 * DEPRECATED IE9 Support
 */
.bz-dotnav-vertical > * {
  float: none;
}

/*! BZkit 2.22.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Thumbnax
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.bz-thumbnav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -15px 0 0 -15px !important;
  padding: 15px 0 !important;
  list-style: none !important;
}
/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `bz-width-*` classes can be applied
 */
.bz-thumbnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  padding-left: 10px;
  margin-top: 10px;
}
/*
 * DEPRECATED IE9 Support
 */
.bz-thumbnav:before,
.bz-thumbnav:after {
  content: "";
  display: block;
  overflow: hidden;
}
.bz-thumbnav:after {
  clear: both;
}
.bz-thumbnav > * {
  float: left;
}

/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.bz-thumbnav > * > a {
  display: block;
  box-sizing: content-box;
  max-width: 50px;
  border-radius: 3px;
  padding: 2px;
  background: rgba(50, 50, 50, 0.1);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.bz-thumbnav > * > a:hover,
.bz-thumbnav > * > a:focus,
.bz-thumbnav > * > a:active {
  background: rgba(50, 50, 50, 0.3);
  outline: none;
}

/* Active */
.bz-thumbnav > .bz-active > a {
  background: rgba(50, 50, 50, 0.6);
  -webkit-transform: scale(1.1);
  transform: scale(1.3);
}

.bz-thumbnav img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* Modifier: `bz-dotnav-contrast`
 ========================================================================== */
.bz-thumbnav-contrast > * > a {
  background: rgba(255, 255, 255, 0.4);
}

.bz-thumbnav-contrast > * > a:hover,
.bz-thumbnav-contrast > * > a:focus,
.bz-thumbnav-contrast > * > a:active {
  background: rgba(255, 255, 255, 0.7);
}

.bz-thumbnav-contrast > .bz-active > a {
  background: rgba(255, 255, 255, 0.9);
}

/*! BZkit 2.22.0 | http://www.getbzkit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Form select
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.bz-form-select {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}
/*
 * 1. Required for Firefox
 * 1. Required for Webkit to make `height` work
 */
.bz-form-select select {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  -webkit-appearance: none;
}

/* ========================================================================
   Component: Alert
 ========================================================================== */
.bz-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.bz-close {
  -webkit-appearance: none;
  margin: 0;
  border: none;
  overflow: visible;
  font: inherit;
  color: inherit;
  text-transform: none;
  padding: 0;
  background: transparent;
  display: inline-block;
  box-sizing: content-box;
  width: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.3;
}
.bz-modal .bz-modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #333;
}
.bz-close:after {
  display: block;
  content: "\f00d";
  font-family: FontAwesome;
}
.bz-close:hover,
.bz-close:focus {
  opacity: 0.5;
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.bz-close-alt {
  padding: 2px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 6px rgba(0, 0, 0, 0.3);
}
.bz-close-alt:hover,
.bz-close-alt:focus {
  opacity: 1;
}
.bz-close-alt:after {
  opacity: 0.5;
}
.bz-close-alt:hover:after,
.bz-close-alt:focus:after {
  opacity: 0.8;
}
.bz-alert {
  margin-bottom: 15px;
  padding: 10px;
  background: #ebf7fd;
  color: #2d7091;
  border: 1px solid rgba(45, 112, 145, 0.3);
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
}

* + .bz-alert {
  margin-top: 15px;
}

.bz-alert > :last-child {
  margin-bottom: 0;
}

.bz-alert h1,
.bz-alert h2,
.bz-alert h3,
.bz-alert h4,
.bz-alert h5,
.bz-alert h6 {
  color: inherit;
}

.bz-alert > .bz-close:first-child {
  float: right;
}

.bz-alert > .bz-close:first-child + * {
  margin-top: 0;
}

.bz-alert-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}

.bz-alert-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}

.bz-alert-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}

.bz-alert-large {
  padding: 20px;
}
.bz-alert-large > .bz-close:first-child {
  margin: -10px -10px 0 0;
}

/* ========================================================================
   Component: Sticky
 ========================================================================== */
[data-bz-sticky].bz-active {
  z-index: 980;
  box-sizing: border-box;
}
.bz-sticky-placeholder > * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
[data-bz-sticky][class*="bz-animation-"] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
[data-bz-sticky].bz-animation-reverse {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

/* ========================================================================
   Component: Slideset
 ========================================================================== */
ul.bz-slideset {
  padding: 0 !important;
}
.bz-slideset li img {
  display: block;
  max-width: 100%;
  height: auto !important;
}

/* ========================================================================
   Component: Modal
 ========================================================================== */
.bz-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.bz-modal.bz-open {
  opacity: 1;
}
.bz-modal-page,
.bz-modal-page body {
  overflow: hidden;
}
.bz-modal-dialog {
  position: relative;
  box-sizing: border-box;
  margin: 50px auto;
  padding: 20px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  background: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .bz-modal-dialog {
    width: auto;
    margin: 10px auto;
  }
}
.bz-open .bz-modal-dialog {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.bz-modal-dialog > :not([class*="bz-modal-"]):last-child {
  margin-bottom: 0;
}
.bz-modal-dialog > .bz-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}
.bz-modal-dialog > .bz-close:first-child + :not([class*="bz-modal-"]) {
  margin-top: 0;
}
.bz-modal-dialog-lightbox {
  margin: 15px auto;
  padding: 0;
  max-width: 95%;
  max-width: calc(100% - 30px);
  border-radius: 0;
}
.bz-modal-dialog-lightbox > .bz-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}
@media (max-width: 767px) {
  .bz-modal-dialog-lightbox > .bz-close:first-child {
    top: -7px;
    right: -7px;
  }
}
@media (min-width: 768px) {
  .bz-modal-dialog-large {
    width: 930px;
  }
}
@media (min-width: 1220px) {
  .bz-modal-dialog-large {
    width: 1130px;
  }
}
.bz-modal-header {
  margin-bottom: 15px;
  margin: -20px -20px 15px -20px;
  padding: 20px;
  border-bottom: 1px solid #dddddd;
  border-radius: 4px 4px 0 0;
  background: #fafafa;
}
.bz-modal-footer {
  margin-top: 15px;
  margin: 15px -20px -20px -20px;
  padding: 20px;
  border-top: 1px solid #dddddd;
  border-radius: 0 0 4px 4px;
  background: #fafafa;
}
.bz-modal-header > :last-child,
.bz-modal-footer > :last-child {
  margin-bottom: 0;
}
.bz-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin-bottom: -10px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bz-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #ddd;
}
.bz-modal-spinner:after {
  content: "\f110";
  font-family: FontAwesome;
  -webkit-animation: bz-rotate 2s infinite linear;
  animation: bz-rotate 2s infinite linear;
}

/* Accordion
-----------------------------------------------------*/
.bz-accordion-title {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 5px 15px;
  background: #f5f5f5;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.bz-accordion-content {
  padding: 0 15px 15px 15px;
}
.bz-accordion-content:before,
.bz-accordion-content:after {
  content: "";
  display: table;
}
.bz-accordion-content:after {
  clear: both;
}
.bz-accordion-content > :last-child {
  margin-bottom: 0;
}

/* Readmore 
-----------------------------------------------------*/
.bz-readmore-parent {
  overflow: hidden;
  position: relative;
  height: 120px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.bz-readmore-parent.bz-open {
  height: auto !important;
  padding-bottom: 30px;
}

.bz-readmore-parent > .bz-readmore {
  color: #333;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.bz-readmore-parent.bz-open > .bz-readmore {
  height: 20px;
}

.bz-readmore-parent > .bz-readmore > a {
  display: block;
  font-size: 30px;
  line-height: 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  color: #666;
  text-decoration: none;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  cursor: pointer;
}

.bz-readmore-parent > .bz-readmore > a:after {
  content: "\f0d7";
  font-family: "FontAwesome";
}

.bz-readmore-parent.bz-open > .bz-readmore > a:after {
  content: "\f0d8";
}
