/*
	Flexbox Grid (https://flexboxcssgrid.com) Copyright 2016 - 2017 Flexbox CSS Grid. All Rights Reserved.
*/
.alignment-demo {
  min-height: 160px;
  background-color: #eee;
  border: 1px solid #ffffff;
  margin-bottom: 15px;
}

.padding {
  padding: 15px !important;
}

.no-padding {
  padding: 0px !important;
}

.padding-lr {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.sortable {
  cursor: move;
}

#playground .flex-container.row {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

#playground .flex-container.row-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

#playground .flex-container.column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

#playground .flex-container.column-reverse {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column-reverse;
}

#playground .flex-container.nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

#playground .flex-container.wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#playground .flex-container.wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

#playground .flex-container.align-items-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#playground .flex-container.align-items-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#playground .flex-container.align-items-center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

#playground .flex-container.align-items-baseline {
  webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

#playground .flex-container.align-items-stretch {
  webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#playground .flex-container.justify-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#playground .flex-container.justify-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#playground .flex-container.justify-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#playground .flex-container.justify-space-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#playground .flex-container.justify-space-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
}

#playground .flex-container.align-content-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

#playground .flex-container.align-content-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

#playground .flex-container.align-content-center {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

#playground .flex-container.align-content-space-between {
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

#playground .flex-container.align-content-space-around {
  -webkit-align-content: space-around;
  -ms-flex-line-pack: justify;
  align-content: space-around;
}

#playground .flex-container.align-content-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

#playground .item.align-self-auto {
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

#playground .item.align-self-start {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

#playground .item.align-self-end {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

#playground .item.align-self-center {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

#playground .item.align-self-baseline {
  -webkit-align-self: baseline;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}

#playground .item.align-self-stretch {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

#playground .item.flex-grow1 {
  flex-grow: 1;
}

#playground .item.flex-grow2 {
  flex-grow: 2;
}

#playground .item.flex-grow3 {
  flex-grow: 3;
}

#playground .item.flex-grow4 {
  flex-grow: 4;
}

#playground .radio {
  margin-bottom: 20px;
}

#playground input[type=radio] {
  color: #ffffff;
}

#playground input[type=radio]:checked + label {
  color: #82b541;
}

#playground input[type=number] {
  width: 40px;
  margin-right: .5em;
}

#playground table {
  width: 100%;
  margin-bottom: 1em;
}

#playground table td {
  width: 50%;
  padding: 3px;
}

#playground .flex-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#playground .item {
  background: #82b541 !important;
  border: 1px solid #ffffff;
  margin: 0;
  display: inherit;
  padding: 15px;
  width: 100px;
  vertical-align: middle;
  vertical-align: -webkit-baseline-middle;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

#playground .item p {
  color: #ffffff;
  width: 100%;
  text-align: center;
  margin: 0;
  line-height: inherit;
  vertical-align: middle;
  vertical-align: -webkit-baseline-middle;
}

#playground #direction .item {
  flex-wrap: wrap;
}

#playground #wrap {
  width: 400px;
}

#playground #align .item {
  height: auto;
  flex-wrap: wrap;
}

#playground #align {
  height: 300px;
}

#playground #justify {
  margin: 20px 0;
  padding: 20px 0;
}

#playground #alignContent {
  flex-wrap: wrap;
  height: 600px;
}

#playground #alignContent .item {
  height: auto;
}

#playground #FCI1 {
  height: 300px;
}

#playground #FCI1 .item {
  height: auto;
}

#playground #FCI3 .item {
  width: 25%;
}

#playground #FCI4 .item {
  width: 50%;
}

#playground #FCI5 .item {
  width: 20%;
}

#playground .nbsp {
  white-space: nowrap;
}

@media only screen and (max-width: 580px) {
  #playground .item {
    width: 50px;
    height: 50px;
  }
  #playground .flex-container {
    width: 100%;
    min-width: initial;
  }
  #playground #wrap {
    width: 200px;
  }
}

.col-demo {
  padding: 15px !important;
  border: 1px solid #ffffff;
  background: #f1f1f1;
}

.col-demo-ng {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  border: 1px solid #ffffff;
  background: #eee;
  padding: 0 !important;
}

.col-text-demo {
  padding: 7.5px !important;
  margin: 10px !important;
}

.masonry-column[color="light"],
.col-text-demo[color="light"] {
  color: #262626;
  background-color: whitesmoke;
}

.masonry-column[color="gray"],
.col-text-demo[color="gray"] {
  color: #262626;
  background-color: #d9d9d9;
}

.masonry-column[color="dark"],
.col-text-demo[color="dark"] {
  color: #ffffff;
  background-color: #262626;
}

.masonry-column[color="primary"],
.col-text-demo[color="primary"] {
  color: #ffffff;
  background-color: #82b541;
}

.row-demo-flex-cols .row {
  min-height: 16rem;
  background-color: #f6f6f6;
  margin-bottom: 1rem;
}

.row-demo {
  padding: 15px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.row-demo::after {
  display: block;
  content: "";
  clear: both;
}

.img-gallery {
  padding-bottom: 30px !important;
}

.img-gallery-ng {
  padding-bottom: 0 !important;
}

.brick-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-bricks: center;
  height: 220px;
  box-sizing: border-box;
  background-color: #82b541;
  border: 1px solid #75a23a;
}

.brick-content:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  font-weight: bold;
  content: counter(brick-counter);
  color: #ffffff !important;
  background-color: #2e353e !important;
}

.brick-content:after {
  color: #1c0004;
}

.brick-content-small {
  height: 100px;
  background-color: #82b541;
}

.brick-content-medium {
  height: 175px;
  background-color: #82b541;
}

.brick-content-large {
  height: 280px;
  background-color: #82b541;
}
