@charset "utf-8";
/*	flex
------------------------------------ */
.flx {
  display: -webkit-box;
  display: flex;
}

.flx-wrap {
  flex-wrap: wrap;
}

.flx-nowrap {
  flex-wrap: nowrap;
}

.flx-column {
  flex-direction: column;
}

.flx-start {
  justify-content: flex-start;
}

.flx-end {
  justify-content: flex-end;
}

.flx-between {
  justify-content: space-between;
}

.flx-around {
  justify-content: space-around;
}

.flx-left {
  justify-content: left;
}

.flx-center {
  justify-content: center;
}

.flx-right {
  justify-content: right;
}

.flx-align-baseline {
  align-items: baseline;
}

.flx-align-start {
  align-items: flex-start;
}

.flx-align-center {
  align-items: center;
}

.flx-align-end {
  align-items: flex-end;
}

.flx-reverse {
  flex-flow: row-reverse;
}
/*	parts
------------------------------------ */
.bold {font-weight: bold !important;}
.t-center {text-align: center !important;}
.t-right {text-align: right !important;}
.t-left {text-align: left !important;}
.w100 {width: 100% !important;}
.f12 {font-size: 12px !important;}
.f13 {font-size: 13px !important;}
.f14 {font-size: 14px !important;}
.f15 {font-size: 15px !important;}
.mt00 {margin-top: 0 !important;}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt80 {margin-top: 80px !important;}
.mb00 {margin-bottom: 0 !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}
