._row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  ._row._horizontal {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row; }
  ._row._vertical {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column; }
  ._row._row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  ._row._column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  ._row._nowrap {
    -webkit-box-lines: single;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
  ._row._wrap {
    -webkit-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  ._row._justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  ._row._space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  ._row._align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }

._text-center {
  text-align: center; }

._text-left {
  text-align: left; }

._text-right {
  text-align: right; }

._full-width {
  width: 95%; /*margin-left: 20px;*/ /* 20 px추가*/}

._bold {
  font-weight: bold; }

._normal {
  font-weight: normal; }

._btn {
  border: 0;
  background: transparent; }

/*# sourceMappingURL=flex.css.map */