.cow {
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
}

.cop {
  padding-left: 10px;
  padding-right: 10px;
}

/* define */

/* generate */

/* container*/

.fl-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.fl-inl-row {
  display: inline-flex;
  flex-direction: row;
}

.fl-row-rev {
  display: flex;
  flex-direction: row-reverse;
}

.fl-inl-row-rev {
  display: inline-flex;
  flex-direction: row-reverse;
}

.fl-col {
  display: flex;
  flex-direction: column;
}

.fl-col-rev {
  display: flex;
  flex-direction: column-reverse;
}

.fl-inl-col {
  display: inline-flex;
  flex-direction: column;
}

.fl-inl-col-rev {
  display: inline-flex;
  flex-direction: column-reverse;
}

/* justify-content */

.fl-jc-start {
  justify-content: flex-start;
}

.fl-jc-end {
  justify-content: flex-end;
}

.fl-jc-center {
  justify-content: center;
}

.fl-jc-between {
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.fl-jc-around {
  justify-content: space-around;
}

.fl-jc-evenly {
  justify-content: space-evenly;
}

/* align-content */

.fl-ac-start {
  align-content: flex-start;
}

.fl-ac-end {
  align-content: flex-end;
}

.fl-ac-center {
  align-content: center;
}

.fl-ac-around {
  align-content: space-around;
}

.fl-ac-between {
  align-content: space-between;
}

.fl-ac-stretch {
  align-content: stretch;
}

/* align-items */

.fl-ai-start {
  -webkit-box-align: flex-start;
  align-items: flex-start;
}

.fl-ai-end {
  -webkit-box-align: flex-end;
  align-items: flex-end;
}

.fl-ai-center {
  -webkit-box-align: center;
  align-items: center;
}

.fl-ai-baseline {
  -webkit-box-align: baseline;
  align-items: baseline;
}

.fl-ai-stretch {
  -webkit-box-align: stretch;
  align-items: stretch;
}

/* align-self */

.fl-as-start {
  align-self: flex-start;
}

.fl-as-end {
  align-self: flex-end;
}

.fl-as-center {
  align-self: center;
}

.fl-as-baseline {
  align-self: baseline;
}

.fl-as-stretch {
  align-self: stretch;
}

/* misc */

.fl-nowrap {
  flex-wrap: nowrap;
}

.fl-wrap {
  flex-wrap: wrap;
}

.fl-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.fl-grow-0 {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}

.fl-grow-1 {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.fl-shrink-0 {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.fl-shrink-1 {
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

.fl-0 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.fl-1 {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

@media (min-width: 384px) {
  /* container*/
  .s_fl-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .s_fl-inl-row {
    display: inline-flex;
    flex-direction: row;
  }
  .s_fl-row-rev {
    display: flex;
    flex-direction: row-reverse;
  }
  .s_fl-inl-row-rev {
    display: inline-flex;
    flex-direction: row-reverse;
  }
  .s_fl-col {
    display: flex;
    flex-direction: column;
  }
  .s_fl-col-rev {
    display: flex;
    flex-direction: column-reverse;
  }
  .s_fl-inl-col {
    display: inline-flex;
    flex-direction: column;
  }
  .s_fl-inl-col-rev {
    display: inline-flex;
    flex-direction: column-reverse;
  }
  /* justify-content */
  .s_fl-jc-start {
    justify-content: flex-start;
  }
  .s_fl-jc-end {
    justify-content: flex-end;
  }
  .s_fl-jc-center {
    justify-content: center;
  }
  .s_fl-jc-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .s_fl-jc-around {
    justify-content: space-around;
  }
  .s_fl-jc-evenly {
    justify-content: space-evenly;
  }
  /* align-content */
  .s_fl-ac-start {
    align-content: flex-start;
  }
  .s_fl-ac-end {
    align-content: flex-end;
  }
  .s_fl-ac-center {
    align-content: center;
  }
  .s_fl-ac-around {
    align-content: space-around;
  }
  .s_fl-ac-between {
    align-content: space-between;
  }
  .s_fl-ac-stretch {
    align-content: stretch;
  }
  /* align-items */
  .s_fl-ai-start {
    -webkit-box-align: flex-start;
    align-items: flex-start;
  }
  .s_fl-ai-end {
    -webkit-box-align: flex-end;
    align-items: flex-end;
  }
  .s_fl-ai-center {
    -webkit-box-align: center;
    align-items: center;
  }
  .s_fl-ai-baseline {
    -webkit-box-align: baseline;
    align-items: baseline;
  }
  .s_fl-ai-stretch {
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  /* align-self */
  .s_fl-as-start {
    align-self: flex-start;
  }
  .s_fl-as-end {
    align-self: flex-end;
  }
  .s_fl-as-center {
    align-self: center;
  }
  .s_fl-as-baseline {
    align-self: baseline;
  }
  .s_fl-as-stretch {
    align-self: stretch;
  }
  /* misc */
  .s_fl-nowrap {
    flex-wrap: nowrap;
  }
  .s_fl-wrap {
    flex-wrap: wrap;
  }
  .s_fl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .s_fl-grow-0 {
    -webkit-flex-grow: 0;
    flex-grow: 0;
  }
  .s_fl-grow-1 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .s_fl-shrink-0 {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
  .s_fl-shrink-1 {
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
  }
  .s_fl-0 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .s_fl-1 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
  }
}

@media (min-width: 716.8px) {
  /* container*/
  .m_fl-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .m_fl-inl-row {
    display: inline-flex;
    flex-direction: row;
  }
  .m_fl-row-rev {
    display: flex;
    flex-direction: row-reverse;
  }
  .m_fl-inl-row-rev {
    display: inline-flex;
    flex-direction: row-reverse;
  }
  .m_fl-col {
    display: flex;
    flex-direction: column;
  }
  .m_fl-col-rev {
    display: flex;
    flex-direction: column-reverse;
  }
  .m_fl-inl-col {
    display: inline-flex;
    flex-direction: column;
  }
  .m_fl-inl-col-rev {
    display: inline-flex;
    flex-direction: column-reverse;
  }
  /* justify-content */
  .m_fl-jc-start {
    justify-content: flex-start;
  }
  .m_fl-jc-end {
    justify-content: flex-end;
  }
  .m_fl-jc-center {
    justify-content: center;
  }
  .m_fl-jc-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .m_fl-jc-around {
    justify-content: space-around;
  }
  .m_fl-jc-evenly {
    justify-content: space-evenly;
  }
  /* align-content */
  .m_fl-ac-start {
    align-content: flex-start;
  }
  .m_fl-ac-end {
    align-content: flex-end;
  }
  .m_fl-ac-center {
    align-content: center;
  }
  .m_fl-ac-around {
    align-content: space-around;
  }
  .m_fl-ac-between {
    align-content: space-between;
  }
  .m_fl-ac-stretch {
    align-content: stretch;
  }
  /* align-items */
  .m_fl-ai-start {
    -webkit-box-align: flex-start;
    align-items: flex-start;
  }
  .m_fl-ai-end {
    -webkit-box-align: flex-end;
    align-items: flex-end;
  }
  .m_fl-ai-center {
    -webkit-box-align: center;
    align-items: center;
  }
  .m_fl-ai-baseline {
    -webkit-box-align: baseline;
    align-items: baseline;
  }
  .m_fl-ai-stretch {
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  /* align-self */
  .m_fl-as-start {
    align-self: flex-start;
  }
  .m_fl-as-end {
    align-self: flex-end;
  }
  .m_fl-as-center {
    align-self: center;
  }
  .m_fl-as-baseline {
    align-self: baseline;
  }
  .m_fl-as-stretch {
    align-self: stretch;
  }
  /* misc */
  .m_fl-nowrap {
    flex-wrap: nowrap;
  }
  .m_fl-wrap {
    flex-wrap: wrap;
  }
  .m_fl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .m_fl-grow-0 {
    -webkit-flex-grow: 0;
    flex-grow: 0;
  }
  .m_fl-grow-1 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .m_fl-shrink-0 {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
  .m_fl-shrink-1 {
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
  }
  .m_fl-0 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .m_fl-1 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
  }
}

@media (min-width: 1022.976px) {
  /* container*/
  .l_fl-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .l_fl-inl-row {
    display: inline-flex;
    flex-direction: row;
  }
  .l_fl-row-rev {
    display: flex;
    flex-direction: row-reverse;
  }
  .l_fl-inl-row-rev {
    display: inline-flex;
    flex-direction: row-reverse;
  }
  .l_fl-col {
    display: flex;
    flex-direction: column;
  }
  .l_fl-col-rev {
    display: flex;
    flex-direction: column-reverse;
  }
  .l_fl-inl-col {
    display: inline-flex;
    flex-direction: column;
  }
  .l_fl-inl-col-rev {
    display: inline-flex;
    flex-direction: column-reverse;
  }
  /* justify-content */
  .l_fl-jc-start {
    justify-content: flex-start;
  }
  .l_fl-jc-end {
    justify-content: flex-end;
  }
  .l_fl-jc-center {
    justify-content: center;
  }
  .l_fl-jc-between {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .l_fl-jc-around {
    justify-content: space-around;
  }
  .l_fl-jc-evenly {
    justify-content: space-evenly;
  }
  /* align-content */
  .l_fl-ac-start {
    align-content: flex-start;
  }
  .l_fl-ac-end {
    align-content: flex-end;
  }
  .l_fl-ac-center {
    align-content: center;
  }
  .l_fl-ac-around {
    align-content: space-around;
  }
  .l_fl-ac-between {
    align-content: space-between;
  }
  .l_fl-ac-stretch {
    align-content: stretch;
  }
  /* align-items */
  .l_fl-ai-start {
    -webkit-box-align: flex-start;
    align-items: flex-start;
  }
  .l_fl-ai-end {
    -webkit-box-align: flex-end;
    align-items: flex-end;
  }
  .l_fl-ai-center {
    -webkit-box-align: center;
    align-items: center;
  }
  .l_fl-ai-baseline {
    -webkit-box-align: baseline;
    align-items: baseline;
  }
  .l_fl-ai-stretch {
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  /* align-self */
  .l_fl-as-start {
    align-self: flex-start;
  }
  .l_fl-as-end {
    align-self: flex-end;
  }
  .l_fl-as-center {
    align-self: center;
  }
  .l_fl-as-baseline {
    align-self: baseline;
  }
  .l_fl-as-stretch {
    align-self: stretch;
  }
  /* misc */
  .l_fl-nowrap {
    flex-wrap: nowrap;
  }
  .l_fl-wrap {
    flex-wrap: wrap;
  }
  .l_fl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .l_fl-grow-0 {
    -webkit-flex-grow: 0;
    flex-grow: 0;
  }
  .l_fl-grow-1 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .l_fl-shrink-0 {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
  .l_fl-shrink-1 {
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
  }
  .l_fl-0 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .l_fl-1 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
  }
}

/* define */

.w-0 {
  width: 0%;
}

.w-1 {
  width: 8.3333333333%;
}

.w-2 {
  width: 16.6666666667%;
}

.w-3 {
  width: 25%;
}

.w-4 {
  width: 33.3333333333%;
}

.w-5 {
  width: 41.6666666667%;
}

.w-6 {
  width: 50%;
}

.w-7 {
  width: 58.3333333333%;
}

.w-8 {
  width: 66.6666666667%;
}

.w-9 {
  width: 75%;
}

.w-10 {
  width: 83.3333333333%;
}

.w-11 {
  width: 91.6666666667%;
}

.w-12 {
  width: 100%;
}

.mnw-0 {
  min-width: 0%;
}

.mnw-1 {
  min-width: 8.3333333333%;
}

.mnw-2 {
  min-width: 16.6666666667%;
}

.mnw-3 {
  min-width: 25%;
}

.mnw-4 {
  min-width: 33.3333333333%;
}

.mnw-5 {
  min-width: 41.6666666667%;
}

.mnw-6 {
  min-width: 50%;
}

.mnw-7 {
  min-width: 58.3333333333%;
}

.mnw-8 {
  min-width: 66.6666666667%;
}

.mnw-9 {
  min-width: 75%;
}

.mnw-10 {
  min-width: 83.3333333333%;
}

.mnw-11 {
  min-width: 91.6666666667%;
}

.mnw-12 {
  min-width: 100%;
}

.mxw-0 {
  max-width: 0%;
}

.mxw-1 {
  max-width: 8.3333333333%;
}

.mxw-2 {
  max-width: 16.6666666667%;
}

.mxw-3 {
  max-width: 25%;
}

.mxw-4 {
  max-width: 33.3333333333%;
}

.mxw-5 {
  max-width: 41.6666666667%;
}

.mxw-6 {
  max-width: 50%;
}

.mxw-7 {
  max-width: 58.3333333333%;
}

.mxw-8 {
  max-width: 66.6666666667%;
}

.mxw-9 {
  max-width: 75%;
}

.mxw-10 {
  max-width: 83.3333333333%;
}

.mxw-11 {
  max-width: 91.6666666667%;
}

.mxw-12 {
  max-width: 100%;
}

.h-0 {
  height: 0%;
}

.h-1 {
  height: 8.3333333333%;
}

.h-2 {
  height: 16.6666666667%;
}

.h-3 {
  height: 25%;
}

.h-4 {
  height: 33.3333333333%;
}

.h-5 {
  height: 41.6666666667%;
}

.h-6 {
  height: 50%;
}

.h-7 {
  height: 58.3333333333%;
}

.h-8 {
  height: 66.6666666667%;
}

.h-9 {
  height: 75%;
}

.h-10 {
  height: 83.3333333333%;
}

.h-11 {
  height: 91.6666666667%;
}

.h-12 {
  height: 100%;
}

.mnh-0 {
  min-height: 0%;
}

.mnh-1 {
  min-height: 8.3333333333%;
}

.mnh-2 {
  min-height: 16.6666666667%;
}

.mnh-3 {
  min-height: 25%;
}

.mnh-4 {
  min-height: 33.3333333333%;
}

.mnh-5 {
  min-height: 41.6666666667%;
}

.mnh-6 {
  min-height: 50%;
}

.mnh-7 {
  min-height: 58.3333333333%;
}

.mnh-8 {
  min-height: 66.6666666667%;
}

.mnh-9 {
  min-height: 75%;
}

.mnh-10 {
  min-height: 83.3333333333%;
}

.mnh-11 {
  min-height: 91.6666666667%;
}

.mnh-12 {
  min-height: 100%;
}

.mxh-0 {
  max-height: 0%;
}

.mxh-1 {
  max-height: 8.3333333333%;
}

.mxh-2 {
  max-height: 16.6666666667%;
}

.mxh-3 {
  max-height: 25%;
}

.mxh-4 {
  max-height: 33.3333333333%;
}

.mxh-5 {
  max-height: 41.6666666667%;
}

.mxh-6 {
  max-height: 50%;
}

.mxh-7 {
  max-height: 58.3333333333%;
}

.mxh-8 {
  max-height: 66.6666666667%;
}

.mxh-9 {
  max-height: 75%;
}

.mxh-10 {
  max-height: 83.3333333333%;
}

.mxh-11 {
  max-height: 91.6666666667%;
}

.mxh-12 {
  max-height: 100%;
}

.wh-0 {
  width: 0%;
  height: 0%;
}

.wh-1 {
  width: 8.3333333333%;
  height: 8.3333333333%;
}

.wh-2 {
  width: 16.6666666667%;
  height: 16.6666666667%;
}

.wh-3 {
  width: 25%;
  height: 25%;
}

.wh-4 {
  width: 33.3333333333%;
  height: 33.3333333333%;
}

.wh-5 {
  width: 41.6666666667%;
  height: 41.6666666667%;
}

.wh-6 {
  width: 50%;
  height: 50%;
}

.wh-7 {
  width: 58.3333333333%;
  height: 58.3333333333%;
}

.wh-8 {
  width: 66.6666666667%;
  height: 66.6666666667%;
}

.wh-9 {
  width: 75%;
  height: 75%;
}

.wh-10 {
  width: 83.3333333333%;
  height: 83.3333333333%;
}

.wh-11 {
  width: 91.6666666667%;
  height: 91.6666666667%;
}

.wh-12 {
  width: 100%;
  height: 100%;
}

@media (min-width: 384px) {
  .s_w-0 {
    width: 0%;
  }
  .s_w-1 {
    width: 8.3333333333%;
  }
  .s_w-2 {
    width: 16.6666666667%;
  }
  .s_w-3 {
    width: 25%;
  }
  .s_w-4 {
    width: 33.3333333333%;
  }
  .s_w-5 {
    width: 41.6666666667%;
  }
  .s_w-6 {
    width: 50%;
  }
  .s_w-7 {
    width: 58.3333333333%;
  }
  .s_w-8 {
    width: 66.6666666667%;
  }
  .s_w-9 {
    width: 75%;
  }
  .s_w-10 {
    width: 83.3333333333%;
  }
  .s_w-11 {
    width: 91.6666666667%;
  }
  .s_w-12 {
    width: 100%;
  }
  .s_mnw-0 {
    min-width: 0%;
  }
  .s_mnw-1 {
    min-width: 8.3333333333%;
  }
  .s_mnw-2 {
    min-width: 16.6666666667%;
  }
  .s_mnw-3 {
    min-width: 25%;
  }
  .s_mnw-4 {
    min-width: 33.3333333333%;
  }
  .s_mnw-5 {
    min-width: 41.6666666667%;
  }
  .s_mnw-6 {
    min-width: 50%;
  }
  .s_mnw-7 {
    min-width: 58.3333333333%;
  }
  .s_mnw-8 {
    min-width: 66.6666666667%;
  }
  .s_mnw-9 {
    min-width: 75%;
  }
  .s_mnw-10 {
    min-width: 83.3333333333%;
  }
  .s_mnw-11 {
    min-width: 91.6666666667%;
  }
  .s_mnw-12 {
    min-width: 100%;
  }
  .s_mxw-0 {
    max-width: 0%;
  }
  .s_mxw-1 {
    max-width: 8.3333333333%;
  }
  .s_mxw-2 {
    max-width: 16.6666666667%;
  }
  .s_mxw-3 {
    max-width: 25%;
  }
  .s_mxw-4 {
    max-width: 33.3333333333%;
  }
  .s_mxw-5 {
    max-width: 41.6666666667%;
  }
  .s_mxw-6 {
    max-width: 50%;
  }
  .s_mxw-7 {
    max-width: 58.3333333333%;
  }
  .s_mxw-8 {
    max-width: 66.6666666667%;
  }
  .s_mxw-9 {
    max-width: 75%;
  }
  .s_mxw-10 {
    max-width: 83.3333333333%;
  }
  .s_mxw-11 {
    max-width: 91.6666666667%;
  }
  .s_mxw-12 {
    max-width: 100%;
  }
  .s_h-0 {
    height: 0%;
  }
  .s_h-1 {
    height: 8.3333333333%;
  }
  .s_h-2 {
    height: 16.6666666667%;
  }
  .s_h-3 {
    height: 25%;
  }
  .s_h-4 {
    height: 33.3333333333%;
  }
  .s_h-5 {
    height: 41.6666666667%;
  }
  .s_h-6 {
    height: 50%;
  }
  .s_h-7 {
    height: 58.3333333333%;
  }
  .s_h-8 {
    height: 66.6666666667%;
  }
  .s_h-9 {
    height: 75%;
  }
  .s_h-10 {
    height: 83.3333333333%;
  }
  .s_h-11 {
    height: 91.6666666667%;
  }
  .s_h-12 {
    height: 100%;
  }
  .s_mnh-0 {
    min-height: 0%;
  }
  .s_mnh-1 {
    min-height: 8.3333333333%;
  }
  .s_mnh-2 {
    min-height: 16.6666666667%;
  }
  .s_mnh-3 {
    min-height: 25%;
  }
  .s_mnh-4 {
    min-height: 33.3333333333%;
  }
  .s_mnh-5 {
    min-height: 41.6666666667%;
  }
  .s_mnh-6 {
    min-height: 50%;
  }
  .s_mnh-7 {
    min-height: 58.3333333333%;
  }
  .s_mnh-8 {
    min-height: 66.6666666667%;
  }
  .s_mnh-9 {
    min-height: 75%;
  }
  .s_mnh-10 {
    min-height: 83.3333333333%;
  }
  .s_mnh-11 {
    min-height: 91.6666666667%;
  }
  .s_mnh-12 {
    min-height: 100%;
  }
  .s_mxh-0 {
    max-height: 0%;
  }
  .s_mxh-1 {
    max-height: 8.3333333333%;
  }
  .s_mxh-2 {
    max-height: 16.6666666667%;
  }
  .s_mxh-3 {
    max-height: 25%;
  }
  .s_mxh-4 {
    max-height: 33.3333333333%;
  }
  .s_mxh-5 {
    max-height: 41.6666666667%;
  }
  .s_mxh-6 {
    max-height: 50%;
  }
  .s_mxh-7 {
    max-height: 58.3333333333%;
  }
  .s_mxh-8 {
    max-height: 66.6666666667%;
  }
  .s_mxh-9 {
    max-height: 75%;
  }
  .s_mxh-10 {
    max-height: 83.3333333333%;
  }
  .s_mxh-11 {
    max-height: 91.6666666667%;
  }
  .s_mxh-12 {
    max-height: 100%;
  }
  .s_wh-0 {
    width: 0%;
    height: 0%;
  }
  .s_wh-1 {
    width: 8.3333333333%;
    height: 8.3333333333%;
  }
  .s_wh-2 {
    width: 16.6666666667%;
    height: 16.6666666667%;
  }
  .s_wh-3 {
    width: 25%;
    height: 25%;
  }
  .s_wh-4 {
    width: 33.3333333333%;
    height: 33.3333333333%;
  }
  .s_wh-5 {
    width: 41.6666666667%;
    height: 41.6666666667%;
  }
  .s_wh-6 {
    width: 50%;
    height: 50%;
  }
  .s_wh-7 {
    width: 58.3333333333%;
    height: 58.3333333333%;
  }
  .s_wh-8 {
    width: 66.6666666667%;
    height: 66.6666666667%;
  }
  .s_wh-9 {
    width: 75%;
    height: 75%;
  }
  .s_wh-10 {
    width: 83.3333333333%;
    height: 83.3333333333%;
  }
  .s_wh-11 {
    width: 91.6666666667%;
    height: 91.6666666667%;
  }
  .s_wh-12 {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 716.8px) {
  .m_w-0 {
    width: 0%;
  }
  .m_w-1 {
    width: 8.3333333333%;
  }
  .m_w-2 {
    width: 16.6666666667%;
  }
  .m_w-3 {
    width: 25%;
  }
  .m_w-4 {
    width: 33.3333333333%;
  }
  .m_w-5 {
    width: 41.6666666667%;
  }
  .m_w-6 {
    width: 50%;
  }
  .m_w-7 {
    width: 58.3333333333%;
  }
  .m_w-8 {
    width: 66.6666666667%;
  }
  .m_w-9 {
    width: 75%;
  }
  .m_w-10 {
    width: 83.3333333333%;
  }
  .m_w-11 {
    width: 91.6666666667%;
  }
  .m_w-12 {
    width: 100%;
  }
  .m_mnw-0 {
    min-width: 0%;
  }
  .m_mnw-1 {
    min-width: 8.3333333333%;
  }
  .m_mnw-2 {
    min-width: 16.6666666667%;
  }
  .m_mnw-3 {
    min-width: 25%;
  }
  .m_mnw-4 {
    min-width: 33.3333333333%;
  }
  .m_mnw-5 {
    min-width: 41.6666666667%;
  }
  .m_mnw-6 {
    min-width: 50%;
  }
  .m_mnw-7 {
    min-width: 58.3333333333%;
  }
  .m_mnw-8 {
    min-width: 66.6666666667%;
  }
  .m_mnw-9 {
    min-width: 75%;
  }
  .m_mnw-10 {
    min-width: 83.3333333333%;
  }
  .m_mnw-11 {
    min-width: 91.6666666667%;
  }
  .m_mnw-12 {
    min-width: 100%;
  }
  .m_mxw-0 {
    max-width: 0%;
  }
  .m_mxw-1 {
    max-width: 8.3333333333%;
  }
  .m_mxw-2 {
    max-width: 16.6666666667%;
  }
  .m_mxw-3 {
    max-width: 25%;
  }
  .m_mxw-4 {
    max-width: 33.3333333333%;
  }
  .m_mxw-5 {
    max-width: 41.6666666667%;
  }
  .m_mxw-6 {
    max-width: 50%;
  }
  .m_mxw-7 {
    max-width: 58.3333333333%;
  }
  .m_mxw-8 {
    max-width: 66.6666666667%;
  }
  .m_mxw-9 {
    max-width: 75%;
  }
  .m_mxw-10 {
    max-width: 83.3333333333%;
  }
  .m_mxw-11 {
    max-width: 91.6666666667%;
  }
  .m_mxw-12 {
    max-width: 100%;
  }
  .m_h-0 {
    height: 0%;
  }
  .m_h-1 {
    height: 8.3333333333%;
  }
  .m_h-2 {
    height: 16.6666666667%;
  }
  .m_h-3 {
    height: 25%;
  }
  .m_h-4 {
    height: 33.3333333333%;
  }
  .m_h-5 {
    height: 41.6666666667%;
  }
  .m_h-6 {
    height: 50%;
  }
  .m_h-7 {
    height: 58.3333333333%;
  }
  .m_h-8 {
    height: 66.6666666667%;
  }
  .m_h-9 {
    height: 75%;
  }
  .m_h-10 {
    height: 83.3333333333%;
  }
  .m_h-11 {
    height: 91.6666666667%;
  }
  .m_h-12 {
    height: 100%;
  }
  .m_mnh-0 {
    min-height: 0%;
  }
  .m_mnh-1 {
    min-height: 8.3333333333%;
  }
  .m_mnh-2 {
    min-height: 16.6666666667%;
  }
  .m_mnh-3 {
    min-height: 25%;
  }
  .m_mnh-4 {
    min-height: 33.3333333333%;
  }
  .m_mnh-5 {
    min-height: 41.6666666667%;
  }
  .m_mnh-6 {
    min-height: 50%;
  }
  .m_mnh-7 {
    min-height: 58.3333333333%;
  }
  .m_mnh-8 {
    min-height: 66.6666666667%;
  }
  .m_mnh-9 {
    min-height: 75%;
  }
  .m_mnh-10 {
    min-height: 83.3333333333%;
  }
  .m_mnh-11 {
    min-height: 91.6666666667%;
  }
  .m_mnh-12 {
    min-height: 100%;
  }
  .m_mxh-0 {
    max-height: 0%;
  }
  .m_mxh-1 {
    max-height: 8.3333333333%;
  }
  .m_mxh-2 {
    max-height: 16.6666666667%;
  }
  .m_mxh-3 {
    max-height: 25%;
  }
  .m_mxh-4 {
    max-height: 33.3333333333%;
  }
  .m_mxh-5 {
    max-height: 41.6666666667%;
  }
  .m_mxh-6 {
    max-height: 50%;
  }
  .m_mxh-7 {
    max-height: 58.3333333333%;
  }
  .m_mxh-8 {
    max-height: 66.6666666667%;
  }
  .m_mxh-9 {
    max-height: 75%;
  }
  .m_mxh-10 {
    max-height: 83.3333333333%;
  }
  .m_mxh-11 {
    max-height: 91.6666666667%;
  }
  .m_mxh-12 {
    max-height: 100%;
  }
  .m_wh-0 {
    width: 0%;
    height: 0%;
  }
  .m_wh-1 {
    width: 8.3333333333%;
    height: 8.3333333333%;
  }
  .m_wh-2 {
    width: 16.6666666667%;
    height: 16.6666666667%;
  }
  .m_wh-3 {
    width: 25%;
    height: 25%;
  }
  .m_wh-4 {
    width: 33.3333333333%;
    height: 33.3333333333%;
  }
  .m_wh-5 {
    width: 41.6666666667%;
    height: 41.6666666667%;
  }
  .m_wh-6 {
    width: 50%;
    height: 50%;
  }
  .m_wh-7 {
    width: 58.3333333333%;
    height: 58.3333333333%;
  }
  .m_wh-8 {
    width: 66.6666666667%;
    height: 66.6666666667%;
  }
  .m_wh-9 {
    width: 75%;
    height: 75%;
  }
  .m_wh-10 {
    width: 83.3333333333%;
    height: 83.3333333333%;
  }
  .m_wh-11 {
    width: 91.6666666667%;
    height: 91.6666666667%;
  }
  .m_wh-12 {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1022.976px) {
  .l_w-0 {
    width: 0%;
  }
  .l_w-1 {
    width: 8.3333333333%;
  }
  .l_w-2 {
    width: 16.6666666667%;
  }
  .l_w-3 {
    width: 25%;
  }
  .l_w-4 {
    width: 33.3333333333%;
  }
  .l_w-5 {
    width: 41.6666666667%;
  }
  .l_w-6 {
    width: 50%;
  }
  .l_w-7 {
    width: 58.3333333333%;
  }
  .l_w-8 {
    width: 66.6666666667%;
  }
  .l_w-9 {
    width: 75%;
  }
  .l_w-10 {
    width: 83.3333333333%;
  }
  .l_w-11 {
    width: 91.6666666667%;
  }
  .l_w-12 {
    width: 100%;
  }
  .l_mnw-0 {
    min-width: 0%;
  }
  .l_mnw-1 {
    min-width: 8.3333333333%;
  }
  .l_mnw-2 {
    min-width: 16.6666666667%;
  }
  .l_mnw-3 {
    min-width: 25%;
  }
  .l_mnw-4 {
    min-width: 33.3333333333%;
  }
  .l_mnw-5 {
    min-width: 41.6666666667%;
  }
  .l_mnw-6 {
    min-width: 50%;
  }
  .l_mnw-7 {
    min-width: 58.3333333333%;
  }
  .l_mnw-8 {
    min-width: 66.6666666667%;
  }
  .l_mnw-9 {
    min-width: 75%;
  }
  .l_mnw-10 {
    min-width: 83.3333333333%;
  }
  .l_mnw-11 {
    min-width: 91.6666666667%;
  }
  .l_mnw-12 {
    min-width: 100%;
  }
  .l_mxw-0 {
    max-width: 0%;
  }
  .l_mxw-1 {
    max-width: 8.3333333333%;
  }
  .l_mxw-2 {
    max-width: 16.6666666667%;
  }
  .l_mxw-3 {
    max-width: 25%;
  }
  .l_mxw-4 {
    max-width: 33.3333333333%;
  }
  .l_mxw-5 {
    max-width: 41.6666666667%;
  }
  .l_mxw-6 {
    max-width: 50%;
  }
  .l_mxw-7 {
    max-width: 58.3333333333%;
  }
  .l_mxw-8 {
    max-width: 66.6666666667%;
  }
  .l_mxw-9 {
    max-width: 75%;
  }
  .l_mxw-10 {
    max-width: 83.3333333333%;
  }
  .l_mxw-11 {
    max-width: 91.6666666667%;
  }
  .l_mxw-12 {
    max-width: 100%;
  }
  .l_h-0 {
    height: 0%;
  }
  .l_h-1 {
    height: 8.3333333333%;
  }
  .l_h-2 {
    height: 16.6666666667%;
  }
  .l_h-3 {
    height: 25%;
  }
  .l_h-4 {
    height: 33.3333333333%;
  }
  .l_h-5 {
    height: 41.6666666667%;
  }
  .l_h-6 {
    height: 50%;
  }
  .l_h-7 {
    height: 58.3333333333%;
  }
  .l_h-8 {
    height: 66.6666666667%;
  }
  .l_h-9 {
    height: 75%;
  }
  .l_h-10 {
    height: 83.3333333333%;
  }
  .l_h-11 {
    height: 91.6666666667%;
  }
  .l_h-12 {
    height: 100%;
  }
  .l_mnh-0 {
    min-height: 0%;
  }
  .l_mnh-1 {
    min-height: 8.3333333333%;
  }
  .l_mnh-2 {
    min-height: 16.6666666667%;
  }
  .l_mnh-3 {
    min-height: 25%;
  }
  .l_mnh-4 {
    min-height: 33.3333333333%;
  }
  .l_mnh-5 {
    min-height: 41.6666666667%;
  }
  .l_mnh-6 {
    min-height: 50%;
  }
  .l_mnh-7 {
    min-height: 58.3333333333%;
  }
  .l_mnh-8 {
    min-height: 66.6666666667%;
  }
  .l_mnh-9 {
    min-height: 75%;
  }
  .l_mnh-10 {
    min-height: 83.3333333333%;
  }
  .l_mnh-11 {
    min-height: 91.6666666667%;
  }
  .l_mnh-12 {
    min-height: 100%;
  }
  .l_mxh-0 {
    max-height: 0%;
  }
  .l_mxh-1 {
    max-height: 8.3333333333%;
  }
  .l_mxh-2 {
    max-height: 16.6666666667%;
  }
  .l_mxh-3 {
    max-height: 25%;
  }
  .l_mxh-4 {
    max-height: 33.3333333333%;
  }
  .l_mxh-5 {
    max-height: 41.6666666667%;
  }
  .l_mxh-6 {
    max-height: 50%;
  }
  .l_mxh-7 {
    max-height: 58.3333333333%;
  }
  .l_mxh-8 {
    max-height: 66.6666666667%;
  }
  .l_mxh-9 {
    max-height: 75%;
  }
  .l_mxh-10 {
    max-height: 83.3333333333%;
  }
  .l_mxh-11 {
    max-height: 91.6666666667%;
  }
  .l_mxh-12 {
    max-height: 100%;
  }
  .l_wh-0 {
    width: 0%;
    height: 0%;
  }
  .l_wh-1 {
    width: 8.3333333333%;
    height: 8.3333333333%;
  }
  .l_wh-2 {
    width: 16.6666666667%;
    height: 16.6666666667%;
  }
  .l_wh-3 {
    width: 25%;
    height: 25%;
  }
  .l_wh-4 {
    width: 33.3333333333%;
    height: 33.3333333333%;
  }
  .l_wh-5 {
    width: 41.6666666667%;
    height: 41.6666666667%;
  }
  .l_wh-6 {
    width: 50%;
    height: 50%;
  }
  .l_wh-7 {
    width: 58.3333333333%;
    height: 58.3333333333%;
  }
  .l_wh-8 {
    width: 66.6666666667%;
    height: 66.6666666667%;
  }
  .l_wh-9 {
    width: 75%;
    height: 75%;
  }
  .l_wh-10 {
    width: 83.3333333333%;
    height: 83.3333333333%;
  }
  .l_wh-11 {
    width: 91.6666666667%;
    height: 91.6666666667%;
  }
  .l_wh-12 {
    width: 100%;
    height: 100%;
  }
}

/* define */

/* generate */

.m-0 {
  margin: 0px;
}

.mx-0 {
  margin-right: 0px;
  margin-left: 0px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.m-1 {
  margin: 5px;
}

.mx-1 {
  margin-right: 5px;
  margin-left: 5px;
}

.my-1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mt-1 {
  margin-top: 5px;
}

.mr-1 {
  margin-right: 5px;
}

.mb-1 {
  margin-bottom: 5px;
}

.ml-1 {
  margin-left: 5px;
}

.m-2 {
  margin: 10px;
}

.mx-2 {
  margin-right: 10px;
  margin-left: 10px;
}

.my-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mt-2 {
  margin-top: 10px;
}

.mr-2 {
  margin-right: 10px;
}

.mb-2 {
  margin-bottom: 10px;
}

.ml-2 {
  margin-left: 10px;
}

.m-3 {
  margin: 20px;
}

.mx-3 {
  margin-right: 20px;
  margin-left: 20px;
}

.my-3 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mt-3 {
  margin-top: 20px;
}

.mr-3 {
  margin-right: 20px;
}

.mb-3 {
  margin-bottom: 20px;
}

.ml-3 {
  margin-left: 20px;
}

.m-4 {
  margin: 35px;
}

.mx-4 {
  margin-right: 35px;
  margin-left: 35px;
}

.my-4 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.mt-4 {
  margin-top: 35px;
}

.mr-4 {
  margin-right: 35px;
}

.mb-4 {
  margin-bottom: 35px;
}

.ml-4 {
  margin-left: 35px;
}

.m-5 {
  margin: 70px;
}

.mx-5 {
  margin-right: 70px;
  margin-left: 70px;
}

.my-5 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.mt-5 {
  margin-top: 70px;
}

.mr-5 {
  margin-right: 70px;
}

.mb-5 {
  margin-bottom: 70px;
}

.ml-5 {
  margin-left: 70px;
}

.m-6 {
  margin: 105px;
}

.mx-6 {
  margin-right: 105px;
  margin-left: 105px;
}

.my-6 {
  margin-top: 105px;
  margin-bottom: 105px;
}

.mt-6 {
  margin-top: 105px;
}

.mr-6 {
  margin-right: 105px;
}

.mb-6 {
  margin-bottom: 105px;
}

.ml-6 {
  margin-left: 105px;
}

.m-7 {
  margin: 140px;
}

.mx-7 {
  margin-right: 140px;
  margin-left: 140px;
}

.my-7 {
  margin-top: 140px;
  margin-bottom: 140px;
}

.mt-7 {
  margin-top: 140px;
}

.mr-7 {
  margin-right: 140px;
}

.mb-7 {
  margin-bottom: 140px;
}

.ml-7 {
  margin-left: 140px;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-auto {
  margin-top: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.p-0 {
  padding: 0px;
}

.px-0 {
  padding-right: 0px;
  padding-left: 0px;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.p-1 {
  padding: 5px;
}

.px-1 {
  padding-right: 5px;
  padding-left: 5px;
}

.py-1 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.pt-1 {
  padding-top: 5px;
}

.pr-1 {
  padding-right: 5px;
}

.pb-1 {
  padding-bottom: 5px;
}

.pl-1 {
  padding-left: 5px;
}

.p-2 {
  padding: 10px;
}

.px-2 {
  padding-right: 10px;
  padding-left: 10px;
}

.py-2 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pt-2 {
  padding-top: 10px;
}

.pr-2 {
  padding-right: 10px;
}

.pb-2 {
  padding-bottom: 10px;
}

.pl-2 {
  padding-left: 10px;
}

.p-3 {
  padding: 20px;
}

.px-3 {
  padding-right: 20px;
  padding-left: 20px;
}

.py-3 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pt-3 {
  padding-top: 20px;
}

.pr-3 {
  padding-right: 20px;
}

.pb-3 {
  padding-bottom: 20px;
}

.pl-3 {
  padding-left: 20px;
}

.p-4 {
  padding: 35px;
}

.px-4 {
  padding-right: 35px;
  padding-left: 35px;
}

.py-4 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.pt-4 {
  padding-top: 35px;
}

.pr-4 {
  padding-right: 35px;
}

.pb-4 {
  padding-bottom: 35px;
}

.pl-4 {
  padding-left: 35px;
}

.p-5 {
  padding: 70px;
}

.px-5 {
  padding-right: 70px;
  padding-left: 70px;
}

.py-5 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-5 {
  padding-top: 70px;
}

.pr-5 {
  padding-right: 70px;
}

.pb-5 {
  padding-bottom: 70px;
}

.pl-5 {
  padding-left: 70px;
}

.p-6 {
  padding: 105px;
}

.px-6 {
  padding-right: 105px;
  padding-left: 105px;
}

.py-6 {
  padding-top: 105px;
  padding-bottom: 105px;
}

.pt-6 {
  padding-top: 105px;
}

.pr-6 {
  padding-right: 105px;
}

.pb-6 {
  padding-bottom: 105px;
}

.pl-6 {
  padding-left: 105px;
}

.p-7 {
  padding: 140px;
}

.px-7 {
  padding-right: 140px;
  padding-left: 140px;
}

.py-7 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.pt-7 {
  padding-top: 140px;
}

.pr-7 {
  padding-right: 140px;
}

.pb-7 {
  padding-bottom: 140px;
}

.pl-7 {
  padding-left: 140px;
}

@media (min-width: 384px) {
  .s_m-0 {
    margin: 0px;
  }
  .s_mx-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .s_my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .s_mt-0 {
    margin-top: 0px;
  }
  .s_mr-0 {
    margin-right: 0px;
  }
  .s_mb-0 {
    margin-bottom: 0px;
  }
  .s_ml-0 {
    margin-left: 0px;
  }
  .s_m-1 {
    margin: 5px;
  }
  .s_mx-1 {
    margin-right: 5px;
    margin-left: 5px;
  }
  .s_my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .s_mt-1 {
    margin-top: 5px;
  }
  .s_mr-1 {
    margin-right: 5px;
  }
  .s_mb-1 {
    margin-bottom: 5px;
  }
  .s_ml-1 {
    margin-left: 5px;
  }
  .s_m-2 {
    margin: 10px;
  }
  .s_mx-2 {
    margin-right: 10px;
    margin-left: 10px;
  }
  .s_my-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .s_mt-2 {
    margin-top: 10px;
  }
  .s_mr-2 {
    margin-right: 10px;
  }
  .s_mb-2 {
    margin-bottom: 10px;
  }
  .s_ml-2 {
    margin-left: 10px;
  }
  .s_m-3 {
    margin: 20px;
  }
  .s_mx-3 {
    margin-right: 20px;
    margin-left: 20px;
  }
  .s_my-3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .s_mt-3 {
    margin-top: 20px;
  }
  .s_mr-3 {
    margin-right: 20px;
  }
  .s_mb-3 {
    margin-bottom: 20px;
  }
  .s_ml-3 {
    margin-left: 20px;
  }
  .s_m-4 {
    margin: 35px;
  }
  .s_mx-4 {
    margin-right: 35px;
    margin-left: 35px;
  }
  .s_my-4 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .s_mt-4 {
    margin-top: 35px;
  }
  .s_mr-4 {
    margin-right: 35px;
  }
  .s_mb-4 {
    margin-bottom: 35px;
  }
  .s_ml-4 {
    margin-left: 35px;
  }
  .s_m-5 {
    margin: 70px;
  }
  .s_mx-5 {
    margin-right: 70px;
    margin-left: 70px;
  }
  .s_my-5 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .s_mt-5 {
    margin-top: 70px;
  }
  .s_mr-5 {
    margin-right: 70px;
  }
  .s_mb-5 {
    margin-bottom: 70px;
  }
  .s_ml-5 {
    margin-left: 70px;
  }
  .s_m-6 {
    margin: 105px;
  }
  .s_mx-6 {
    margin-right: 105px;
    margin-left: 105px;
  }
  .s_my-6 {
    margin-top: 105px;
    margin-bottom: 105px;
  }
  .s_mt-6 {
    margin-top: 105px;
  }
  .s_mr-6 {
    margin-right: 105px;
  }
  .s_mb-6 {
    margin-bottom: 105px;
  }
  .s_ml-6 {
    margin-left: 105px;
  }
  .s_m-7 {
    margin: 140px;
  }
  .s_mx-7 {
    margin-right: 140px;
    margin-left: 140px;
  }
  .s_my-7 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .s_mt-7 {
    margin-top: 140px;
  }
  .s_mr-7 {
    margin-right: 140px;
  }
  .s_mb-7 {
    margin-bottom: 140px;
  }
  .s_ml-7 {
    margin-left: 140px;
  }
  .s_m-auto {
    margin: auto;
  }
  .s_mx-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .s_my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .s_mt-auto {
    margin-top: auto;
  }
  .s_mr-auto {
    margin-right: auto;
  }
  .s_mb-auto {
    margin-bottom: auto;
  }
  .s_ml-auto {
    margin-left: auto;
  }
  .s_p-0 {
    padding: 0px;
  }
  .s_px-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .s_py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .s_pt-0 {
    padding-top: 0px;
  }
  .s_pr-0 {
    padding-right: 0px;
  }
  .s_pb-0 {
    padding-bottom: 0px;
  }
  .s_pl-0 {
    padding-left: 0px;
  }
  .s_p-1 {
    padding: 5px;
  }
  .s_px-1 {
    padding-right: 5px;
    padding-left: 5px;
  }
  .s_py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .s_pt-1 {
    padding-top: 5px;
  }
  .s_pr-1 {
    padding-right: 5px;
  }
  .s_pb-1 {
    padding-bottom: 5px;
  }
  .s_pl-1 {
    padding-left: 5px;
  }
  .s_p-2 {
    padding: 10px;
  }
  .s_px-2 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .s_py-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .s_pt-2 {
    padding-top: 10px;
  }
  .s_pr-2 {
    padding-right: 10px;
  }
  .s_pb-2 {
    padding-bottom: 10px;
  }
  .s_pl-2 {
    padding-left: 10px;
  }
  .s_p-3 {
    padding: 20px;
  }
  .s_px-3 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .s_py-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .s_pt-3 {
    padding-top: 20px;
  }
  .s_pr-3 {
    padding-right: 20px;
  }
  .s_pb-3 {
    padding-bottom: 20px;
  }
  .s_pl-3 {
    padding-left: 20px;
  }
  .s_p-4 {
    padding: 35px;
  }
  .s_px-4 {
    padding-right: 35px;
    padding-left: 35px;
  }
  .s_py-4 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .s_pt-4 {
    padding-top: 35px;
  }
  .s_pr-4 {
    padding-right: 35px;
  }
  .s_pb-4 {
    padding-bottom: 35px;
  }
  .s_pl-4 {
    padding-left: 35px;
  }
  .s_p-5 {
    padding: 70px;
  }
  .s_px-5 {
    padding-right: 70px;
    padding-left: 70px;
  }
  .s_py-5 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .s_pt-5 {
    padding-top: 70px;
  }
  .s_pr-5 {
    padding-right: 70px;
  }
  .s_pb-5 {
    padding-bottom: 70px;
  }
  .s_pl-5 {
    padding-left: 70px;
  }
  .s_p-6 {
    padding: 105px;
  }
  .s_px-6 {
    padding-right: 105px;
    padding-left: 105px;
  }
  .s_py-6 {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .s_pt-6 {
    padding-top: 105px;
  }
  .s_pr-6 {
    padding-right: 105px;
  }
  .s_pb-6 {
    padding-bottom: 105px;
  }
  .s_pl-6 {
    padding-left: 105px;
  }
  .s_p-7 {
    padding: 140px;
  }
  .s_px-7 {
    padding-right: 140px;
    padding-left: 140px;
  }
  .s_py-7 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .s_pt-7 {
    padding-top: 140px;
  }
  .s_pr-7 {
    padding-right: 140px;
  }
  .s_pb-7 {
    padding-bottom: 140px;
  }
  .s_pl-7 {
    padding-left: 140px;
  }
}

@media (min-width: 716.8px) {
  .m_m-0 {
    margin: 0px;
  }
  .m_mx-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .m_my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .m_mt-0 {
    margin-top: 0px;
  }
  .m_mr-0 {
    margin-right: 0px;
  }
  .m_mb-0 {
    margin-bottom: 0px;
  }
  .m_ml-0 {
    margin-left: 0px;
  }
  .m_m-1 {
    margin: 5px;
  }
  .m_mx-1 {
    margin-right: 5px;
    margin-left: 5px;
  }
  .m_my-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .m_mt-1 {
    margin-top: 5px;
  }
  .m_mr-1 {
    margin-right: 5px;
  }
  .m_mb-1 {
    margin-bottom: 5px;
  }
  .m_ml-1 {
    margin-left: 5px;
  }
  .m_m-2 {
    margin: 10px;
  }
  .m_mx-2 {
    margin-right: 10px;
    margin-left: 10px;
  }
  .m_my-2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .m_mt-2 {
    margin-top: 10px;
  }
  .m_mr-2 {
    margin-right: 10px;
  }
  .m_mb-2 {
    margin-bottom: 10px;
  }
  .m_ml-2 {
    margin-left: 10px;
  }
  .m_m-3 {
    margin: 20px;
  }
  .m_mx-3 {
    margin-right: 20px;
    margin-left: 20px;
  }
  .m_my-3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .m_mt-3 {
    margin-top: 20px;
  }
  .m_mr-3 {
    margin-right: 20px;
  }
  .m_mb-3 {
    margin-bottom: 20px;
  }
  .m_ml-3 {
    margin-left: 20px;
  }
  .m_m-4 {
    margin: 35px;
  }
  .m_mx-4 {
    margin-right: 35px;
    margin-left: 35px;
  }
  .m_my-4 {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .m_mt-4 {
    margin-top: 35px;
  }
  .m_mr-4 {
    margin-right: 35px;
  }
  .m_mb-4 {
    margin-bottom: 35px;
  }
  .m_ml-4 {
    margin-left: 35px;
  }
  .m_m-5 {
    margin: 70px;
  }
  .m_mx-5 {
    margin-right: 70px;
    margin-left: 70px;
  }
  .m_my-5 {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .m_mt-5 {
    margin-top: 70px;
  }
  .m_mr-5 {
    margin-right: 70px;
  }
  .m_mb-5 {
    margin-bottom: 70px;
  }
  .m_ml-5 {
    margin-left: 70px;
  }
  .m_m-6 {
    margin: 105px;
  }
  .m_mx-6 {
    margin-right: 105px;
    margin-left: 105px;
  }
  .m_my-6 {
    margin-top: 105px;
    margin-bottom: 105px;
  }
  .m_mt-6 {
    margin-top: 105px;
  }
  .m_mr-6 {
    margin-right: 105px;
  }
  .m_mb-6 {
    margin-bottom: 105px;
  }
  .m_ml-6 {
    margin-left: 105px;
  }
  .m_m-7 {
    margin: 140px;
  }
  .m_mx-7 {
    margin-right: 140px;
    margin-left: 140px;
  }
  .m_my-7 {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .m_mt-7 {
    margin-top: 140px;
  }
  .m_mr-7 {
    margin-right: 140px;
  }
  .m_mb-7 {
    margin-bottom: 140px;
  }
  .m_ml-7 {
    margin-left: 140px;
  }
  .m_m-auto {
    margin: auto;
  }
  .m_mx-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .m_my-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .m_mt-auto {
    margin-top: auto;
  }
  .m_mr-auto {
    margin-right: auto;
  }
  .m_mb-auto {
    margin-bottom: auto;
  }
  .m_ml-auto {
    margin-left: auto;
  }
  .m_p-0 {
    padding: 0px;
  }
  .m_px-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .m_py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .m_pt-0 {
    padding-top: 0px;
  }
  .m_pr-0 {
    padding-right: 0px;
  }
  .m_pb-0 {
    padding-bottom: 0px;
  }
  .m_pl-0 {
    padding-left: 0px;
  }
  .m_p-1 {
    padding: 5px;
  }
  .m_px-1 {
    padding-right: 5px;
    padding-left: 5px;
  }
  .m_py-1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .m_pt-1 {
    padding-top: 5px;
  }
  .m_pr-1 {
    padding-right: 5px;
  }
  .m_pb-1 {
    padding-bottom: 5px;
  }
  .m_pl-1 {
    padding-left: 5px;
  }
  .m_p-2 {
    padding: 10px;
  }
  .m_px-2 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .m_py-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .m_pt-2 {
    padding-top: 10px;
  }
  .m_pr-2 {
    padding-right: 10px;
  }
  .m_pb-2 {
    padding-bottom: 10px;
  }
  .m_pl-2 {
    padding-left: 10px;
  }
  .m_p-3 {
    padding: 20px;
  }
  .m_px-3 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .m_py-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .m_pt-3 {
    padding-top: 20px;
  }
  .m_pr-3 {
    padding-right: 20px;
  }
  .m_pb-3 {
    padding-bottom: 20px;
  }
  .m_pl-3 {
    padding-left: 20px;
  }
  .m_p-4 {
    padding: 35px;
  }
  .m_px-4 {
    padding-right: 35px;
    padding-left: 35px;
  }
  .m_py-4 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .m_pt-4 {
    padding-top: 35px;
  }
  .m_pr-4 {
    padding-right: 35px;
  }
  .m_pb-4 {
    padding-bottom: 35px;
  }
  .m_pl-4 {
    padding-left: 35px;
  }
  .m_p-5 {
    padding: 70px;
  }
  .m_px-5 {
    padding-right: 70px;
    padding-left: 70px;
  }
  .m_py-5 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .m_pt-5 {
    padding-top: 70px;
  }
  .m_pr-5 {
    padding-right: 70px;
  }
  .m_pb-5 {
    padding-bottom: 70px;
  }
  .m_pl-5 {
    padding-left: 70px;
  }
  .m_p-6 {
    padding: 105px;
  }
  .m_px-6 {
    padding-right: 105px;
    padding-left: 105px;
  }
  .m_py-6 {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .m_pt-6 {
    padding-top: 105px;
  }
  .m_pr-6 {
    padding-right: 105px;
  }
  .m_pb-6 {
    padding-bottom: 105px;
  }
  .m_pl-6 {
    padding-left: 105px;
  }
  .m_p-7 {
    padding: 140px;
  }
  .m_px-7 {
    padding-right: 140px;
    padding-left: 140px;
  }
  .m_py-7 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .m_pt-7 {
    padding-top: 140px;
  }
  .m_pr-7 {
    padding-right: 140px;
  }
  .m_pb-7 {
    padding-bottom: 140px;
  }
  .m_pl-7 {
    padding-left: 140px;
  }
}

::selection {
  background-color: #0097e0;
  color: #ffffff;
}

::-moz-selection {
  background-color: #0097e0;
  color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 28px;
}

h3,
.h3 {
  font-size: 20px;
}

.mono {
  font-family: monospace;
  font-size: 12px;
}

html {
  background-color: #ffffff;
  color: #30303f;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

button {
  padding: 2px 5px;
  cursor: pointer;
}

.cow {
  margin-left: auto;
  margin-right: auto;
  max-width: 1500px;
}

.cop {
  padding-left: 50px;
  padding-right: 50px;
}

.menu-spacer {
  height: 100px;
}

.layers {
  position: relative;
}

.layers .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}.breadcrumbs .steps .step .button {
  padding: 8.75px 17.5px;
  border-radius: 16px;
  white-space: nowrap;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #97979f;
  border: 1px solid #e5e5e5;
}
.breadcrumbs .steps .step:last-child .button {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  border-color: transparent;
  background-color: #fff;
  color: #000;
}
.breadcrumbs .steps .step:hover .button {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  border-color: transparent;
  background-color: #fff;
}.button-clear[data-v-faa63b47] {
  cursor: pointer;
  border-radius: 12px;
  padding: 4px;
  display: inline-block;
  vertical-align: middle;
}
.button-clear svg[data-v-faa63b47] {
  display: block;
}
.button-clear[data-v-faa63b47]:hover {
  background-color: #aaa;
}.asset-card .image {
  width: 256px;
  height: 256px;
  background-color: #f4f4f5;
  position: relative;
}
.asset-card .image .img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.asset-card .image .indicators {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: row;
}
.asset-card .image .indicators > div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: black;
  margin-left: 10px;
}
.asset-card .image .indicators .approval {
  background-color: #0097e0;
}
.asset-card .image .indicators .rejected {
  background-color: #e81616;
}
.asset-card .image .indicators .empty {
  background-color: transparent;
  border: 2px solid #0097e0;
}
.asset-card .name {
  margin-top: 10px;
}.dropdown {
  position: relative;
}
.dropdown .results {
  position: absolute;
  top: 65px;
  left: 0;
  width: 500px;
  margin-top: -20px;
  font-size: 15px;
  font-weight: normal;
  background: #FFF;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  box-shadow: 0 0 10px #e5e5e5;
  opacity: 0;
  display: none;
}
.dropdown .results.visible {
  opacity: 1;
  display: block;
}
.dropdown .results::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid white;
}
.dropdown .results::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 19px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #e5e5e5;
}
.dropdown .results.reverse {
  right: 0;
  left: auto;
  width: 200px;
}
.dropdown .results.reverse::after {
  right: 20px;
  left: auto;
}
.dropdown .results.reverse::before {
  right: 19px;
  left: auto;
}
.dropdown .results .info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.dropdown .results .info .image {
  width: 50px;
  height: 50px;
  border: 1px solid #f4f4f5;
  border-radius: 25px;
  background-color: #ffffff;
  margin-right: 25px;
  background-size: cover;
}
.dropdown .results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown .results ul li {
  display: block;
  position: relative;
  padding: 15px 20px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.dropdown .results ul li:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}
.dropdown .results ul li:hover {
  background: #f4f4f5;
}
.visible.results {
  animation-name: fade, slide;
  animation-duration: 100ms, 200ms;
  animation-fill-mode: forwards;
  animation-timing-function: linear, cubic-bezier(0.23, 1, 0.32, 1);
  animation-delay: 100ms, 0;
}
@keyframes fade {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
@keyframes slide {
0% {
    margin-top: -10px;
}
100% {
    margin-top: 0px;
}
}div[data-v-8ccacd49] {
  position: relative;
  width: 100%;
}
div span.clear[data-v-8ccacd49] {
  position: absolute;
  top: 7px;
  right: 8px;
}
input[data-v-8ccacd49] {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50px;
  border: 1px solid #e5e5e5;
  border-radius: 25px;
  padding: 0 20px;
  outline: none;
  font-size: 14px;
}
input.error[data-v-8ccacd49] {
  color: #e81616;
  border-color: #e81616;
}
input.error[data-v-8ccacd49]::-webkit-input-placeholder {
  color: #e81616;
}
input.error[data-v-8ccacd49]::-moz-placeholder {
  color: #e81616;
}
input.error[data-v-8ccacd49]:-ms-input-placeholder {
  color: #e81616;
}
input.error[data-v-8ccacd49]::-webkit-input-placeholder {
  color: #e81616;
}
input.error[data-v-8ccacd49]::placeholder {
  color: #e81616;
}.menu-bar {
  position: fixed;
  z-index: 1;
  width: 100%;
  top: 0;
  background-color: #ffffff;
  height: 100px;
  box-shadow: 0 0 10px #e5e5e5;
}
.menu-bar .cow {
  position: relative;
}
.menu-bar .items {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.menu-bar .items .item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.menu-bar .daikin-logo {
  display: block;
  height: 30px;
  margin-right: 15px;
}
.menu-bar .title {
  color: #0097e0;
}
.menu-bar .search {
  width: 500px;
}
.menu-bar .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1.5px;
  width: 50px;
  height: 50px;
  background-color: #f4f4f5;
  border-radius: 25px;
  margin-left: 25px;
  cursor: pointer;
}.asset-upload[data-v-297e504c] {
  display: block;
}
.asset-upload .area[data-v-297e504c] {
  width: 100%;
  margin: 20px 0;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 4px;
  margin-right: 25px;
}
.asset-upload .area[data-v-297e504c]:last-child {
  margin-right: 0;
}
.asset-upload label[data-v-297e504c] {
  display: block;
  margin-bottom: 5px;
  opacity: 0.5;
}
.asset-upload input[data-v-297e504c] {
  display: block;
  width: 100%;
}
.asset-upload input[disabled][data-v-297e504c] {
  color: black;
}
.asset-upload input[type=text][data-v-297e504c] {
  border: none;
  background-color: #eee;
  padding: 4px 5px 2px 5px;
  border-radius: 4px;
}
.asset-upload input[type=file][data-v-297e504c] {
  cursor: pointer;
}
.asset-upload input[type=submit][data-v-297e504c] {
  cursor: pointer;
  padding: 4px 5px 2px 5px;
}
.asset-upload .feedback[data-v-297e504c] {
  padding: 3px 5px 2px 5px;
}.asset-browser .section {
  margin-top: 25px;
  margin-bottom: 25px;
}
.asset-browser .section.search p,
.asset-browser .section.search span {
  display: inline;
}
.asset-browser .section.search span {
  margin-left: 10px;
}
.asset-browser .assets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 25px;
}
.asset-browser .assets .asset {
  padding-bottom: 25px;
}
.asset-browser .assets a {
  display: block;
}.iteration-duplicate[data-v-edd71469] {
  display: block;
}
.iteration-duplicate .area[data-v-edd71469] {
  width: 100%;
  margin: 20px 0;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 4px;
  margin-right: 25px;
}
.iteration-duplicate .area[data-v-edd71469]:last-child {
  margin-right: 0;
}
.iteration-duplicate label[data-v-edd71469] {
  display: block;
  margin-bottom: 5px;
  opacity: 0.5;
}
.iteration-duplicate input[data-v-edd71469] {
  display: block;
  width: 100%;
}
.iteration-duplicate input[disabled][data-v-edd71469] {
  color: black;
}
.iteration-duplicate input[type=text][data-v-edd71469] {
  border: none;
  background-color: #eee;
  padding: 4px 5px 2px 5px;
  border-radius: 4px;
}
.iteration-duplicate input[type=file][data-v-edd71469] {
  cursor: pointer;
}
.iteration-duplicate input[type=submit][data-v-edd71469] {
  cursor: pointer;
  padding: 4px 5px 2px 5px;
}
.iteration-duplicate .feedback[data-v-edd71469] {
  padding: 3px 5px 2px 5px;
}.viewer {
  position: relative;
  height: 100%;
  pointer-events: all;
}
.viewer .container {
  height: 100%;
}
.viewer .clips {
  position: absolute;
  bottom: 20px;
  left: 20px;
  top: auto;
}.iteration-item {
  position: relative;
  width: 100%;
}
.iteration-item:hover, .iteration-item.active {
  background-color: #e5e5e5;
}
.iteration-item .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.iteration-item .row.r-id-datetime {
  justify-content: space-between;
}
.iteration-item .info {
  padding: 25px;
  cursor: pointer;
}
.iteration-item .info .image {
  width: 50px;
  height: 50px;
  border: 1px solid #f4f4f5;
  border-radius: 25px;
  background-color: #ffffff;
  margin-right: 25px;
  background-size: cover;
}
.iteration-item .info .data {
  font-size: 12px;
  flex-grow: 1;
}
.iteration-item .info .data .date {
  opacity: 0.5;
}
.iteration-item .info .data .icon {
  fill: #ffffff;
  border-radius: 2px;
  margin-left: 10px;
}
.iteration-item .info .data .icon.live {
  background-color: #0097e0;
}
.iteration-item .info .data .icon.pending {
  background-color: #a1a1a1;
}
.iteration-item .info .data .icon.approved {
  background-color: #16c816;
}
.iteration-item .info .data .icon.rejected {
  background-color: #e81616;
}
.iteration-item .info .data .icon svg {
  display: block;
}
.iteration-item .actions {
  padding: 0 25px 25px 25px;
  display: none;
}
.iteration-item .actions .divider {
  padding-bottom: 25px;
}
.iteration-item .actions .divider .line {
  border-top: 1px solid #ffffff;
}
.iteration-item .actions .spacer {
  width: 50px;
  margin-right: 25px;
}
.iteration-item .actions .buttons {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.iteration-item .actions .buttons .approve {
  display: flex;
  flex-direction: row;
}
.iteration-item .actions .buttons .approve button {
  margin-right: 10px;
}
.iteration-item .actions .buttons button {
  display: block;
}
.iteration-item.active .actions {
  display: block;
}.iteration-list {
  background-color: #ffffff;
  border-radius: 4px;
}
.iteration-list .iteration-item {
  border-top: 1px solid #f4f4f5;
}.attribute-select {
  position: relative;
}
.attribute-select .placeholder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 50px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
}
.attribute-select .options {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background-color: #eee;
}
.attribute-select .options .option {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 50px;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
  display: none;
}
.attribute-select .options .option.active, .attribute-select .options .option:hover {
  background-color: #fff;
  display: flex;
}
.attribute-select .options .option.last-active {
  border-bottom: none;
}
.attribute-select .options .option:last-child {
  border-bottom: none;
}
.attribute-select.deployed .option {
  display: flex;
}
.attribute-select.deployed .option.last-active {
  border-bottom: 1px solid #e5e5e5;
}
.attribute-select.deployed .option:last-child {
  border-bottom: none;
}.footer {
  padding: 40px 0;
  margin: 60px 0;
  color: #97979f;
  border-top: 1px solid #e5e5e5;
}
.footer .text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer a {
  color: #0097e0;
}.asset-detail .breadcrumbs {
  margin: 25px 0 25px 0;
}
.asset-detail .dropdown-arrow {
  position: relative;
}
.asset-detail .dropdown-arrow button {
  padding-top: 4px;
  padding-bottom: 4px;
}
.asset-detail .dropdown-arrow svg {
  display: block;
}
.asset-detail .dropdown-menu {
  position: absolute;
  left: auto;
  right: 0;
  width: max-content;
  z-index: 1000;
}
.asset-detail .iteration-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.asset-detail .iteration-details .name {
  flex-grow: 1;
}
.asset-detail .iteration-details .indicators {
  display: flex;
  flex-direction: row;
}
.asset-detail .iteration-details .indicators > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 5px;
  background-color: #e5e5e5;
  margin-left: 10px;
  color: #3b3b40;
  padding: 5px 10px;
  text-transform: lowercase;
  font-size: 12px;
}
.asset-detail .iteration-details .indicators .marker {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-right: 5px;
}
.asset-detail .iteration-details .indicators .approval .marker {
  background-color: #0097e0;
}
.asset-detail .iteration-details .indicators .empty .marker {
  background-color: transparent;
  border: 2px solid #0097e0;
  color: #0097e0;
}
.asset-detail .iteration-details .indicators .rejected .marker {
  background-color: #e81616;
}
.asset-detail .iteration-inspector {
  height: 70vh;
  min-height: 500px;
  border: 1px solid #f4f4f5;
  background-color: #e5e5e5;
  margin-top: 25px;
}
.asset-detail .iteration-inspector .layer {
  display: flex;
  flex-direction: row;
  pointer-events: none;
}
.asset-detail .iteration-inspector .layer .left {
  flex-grow: 1;
  height: 100%;
  position: relative;
}
.asset-detail .iteration-inspector .layer .left .open-in-new {
  position: absolute;
  top: 32px;
  right: 32px;
  pointer-events: all;
  fill: #0097e0;
}
.asset-detail .iteration-inspector .layer .right {
  width: 30%;
  height: 100%;
  display: none;
}
@media (min-width: 768px) {
.asset-detail .iteration-inspector .layer .right {
    display: block;
}
}
.asset-detail .iteration-inspector .layer .right .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.asset-detail .iteration-inspector .layer .right .head button {
  margin-right: 20px;
}
.asset-detail .iteration-inspector .layer.select .right {
  background-color: #ffffff;
  overflow-y: auto;
  pointer-events: all;
}
.asset-detail .iteration-inspector .layer.select .title {
  padding: 10px;
}
.asset-detail .product-info {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
}
.asset-detail .product-info a {
  color: #0097e0;
}
.asset-detail .product-info .title {
  margin: 20px 0 10px 0;
}
.asset-detail .product-info .info {
  width: 70%;
}
.asset-detail .product-info .attributes {
  width: 30%;
}
.asset-detail .product-info .attributes .attributes-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.asset-detail .benefits img {
  width: 35px;
  height: 35px;
  vertical-align: middle;
  margin: 5px 0;
  margin-right: 5px;
}.asset-resources .breadcrumbs {
  margin: 25px 0 25px 0;
}.upload-form[data-v-4763f402] {
  display: block;
}
.upload-form .row[data-v-4763f402] {
  width: 300px;
  margin: 20px 0;
}
.upload-form .row.flex[data-v-4763f402] {
  display: flex;
}
.upload-form label[data-v-4763f402] {
  display: block;
  margin-bottom: 5px;
  opacity: 0.5;
}
.upload-form input[data-v-4763f402] {
  display: block;
  width: 100%;
}
.upload-form input[disabled][data-v-4763f402] {
  color: black;
}
.upload-form input[type=text][data-v-4763f402] {
  border: none;
}
.upload-form input[type=file][data-v-4763f402] {
  cursor: pointer;
}
.upload-form input[type=submit][data-v-4763f402] {
  width: 50%;
  cursor: pointer;
  padding: 5px;
}.asset-jobs .h2 {
  margin: 50px 0 25px 0;
}
.asset-jobs .cols {
  display: flex;
  justify-content: space-between;
}
.asset-jobs .cols .col {
  width: 49%;
}
.asset-jobs table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 50px;
}
.asset-jobs table td,
.asset-jobs table th {
  border: none;
  padding: 10px;
}
.asset-jobs table td.actions {
  width: 50px;
}
.asset-jobs table .section-title {
  margin: 20px 0 10px 0;
}
.asset-jobs table .item {
  background-color: #f4f4f5;
}
.asset-jobs table .item.odd {
  background-color: white;
}
.asset-jobs .new-job {
  background-color: #f4f4f5;
  padding: 10px;
}
.asset-jobs .new-job form label {
  display: block;
  width: 100%;
}
.asset-jobs .new-job form input {
  display: block;
  width: 100%;
}
.asset-jobs .new-job form button {
  display: block;
  margin-top: 10px;
  margin-left: auto;
}
.asset-jobs .new-job .inputs {
  display: flex;
  justify-content: space-between;
}
.asset-jobs .new-job .inputs .input {
  width: 32%;
}
.asset-jobs .overlay {
  -webkit-transition: 0.25s ease-out;
  -moz-transition: 0.25s ease-out;
  -ms-transition: 0.25s ease-out;
  -o-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  transition-property: opacity;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}
.asset-jobs .overlay.active {
  opacity: 1;
  pointer-events: all;
}
.asset-jobs .overlay .panel {
  border-radius: 4px;
  padding: 25px;
  background-color: white;
  box-shadow: 0 2px 8px -4px rgba(0, 0, 0, 0.5);
}
.asset-jobs .overlay .panel .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.asset-jobs .overlay .panel .header .close {
  -webkit-transition: 0.25s ease-out;
  -moz-transition: 0.25s ease-out;
  -ms-transition: 0.25s ease-out;
  -o-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  transition-property: color;
  cursor: pointer;
}
.asset-jobs .overlay .panel .header .close:hover {
  color: #0097e0;
}button[data-v-d8978d9e] {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: #0097e0;
  background-color: #0097e0;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  color: #e5f4fc;
  cursor: pointer;
}
button[disabled][data-v-d8978d9e] {
  cursor: not-allowed;
}
button.loading span[data-v-d8978d9e] {
  position: relative;
}
button.loading span[data-v-d8978d9e]:after {
  content: "";
  position: absolute;
  border-radius: 100%;
  top: 6px;
  left: -30px;
  width: 0px;
  height: 0px;
  margin-top: -2px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left-color: #FFF;
  border-top-color: #FFF;
  animation: spin-d8978d9e 0.6s infinite linear,grow-d8978d9e 0.3s forwards ease-out;
}
@keyframes spin-d8978d9e {
to {
    transform: rotate(359deg);
}
}
@keyframes grow-d8978d9e {
to {
    width: 14px;
    height: 14px;
    margin-top: -8px;
    right: 13px;
}
}.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: #f4f4f5;
}
.content {
  display: flex;
  flex-direction: column;
  padding: 50px;
  width: 90%;
  max-width: 500px;
  background: #ffffff;
}
.wrapper-logo {
  display: flex;
  justify-content: center;
  padding: 25px 0 50px;
}
.wrapper-logo svg {
  display: block;
  height: 30px;
  margin-right: 15px;
}
.wrapper-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper-title {
  margin-bottom: 50px;
}
.wrapper-title strong {
  display: block;
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.wrapper-title p {
  text-align: center;
  color: #97979f;
}
.wrapper-form div {
  margin-bottom: 20px;
}
.wrapper-form .wrapper-form-errors ul {
  list-style: none;
}
.wrapper-form .wrapper-form-errors ul li {
  color: #e81616;
}
.wrapper-message {
  margin-bottom: 50px;
  text-align: center;
}
.wrapper-links {
  text-align: center;
}
.wrapper-links span {
  cursor: pointer;
  text-decoration: underline;
}.loader[data-v-61150e37] {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  animation: 1s spin-61150e37 infinite linear;
  border: 3px solid #bfe5f7;
  border-top-color: #0097e0;
}
@keyframes spin-61150e37 {
to {
    transform: rotate(360deg);
}
}.view {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.guide-container[data-v-e6a0b7d1] {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}
h1[data-v-e6a0b7d1] {
    color: #00a0d2;
    margin-bottom: 30px;
}
.section[data-v-e6a0b7d1] {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
h2[data-v-e6a0b7d1] {
    color: #333;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.code-example[data-v-e6a0b7d1] {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
    overflow-x: auto;
}
.code-example pre[data-v-e6a0b7d1] {
    margin: 0;
}
.code-example code[data-v-e6a0b7d1] {
    color: #333;
}
.preview-container[data-v-e6a0b7d1] {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
}
iframe[data-v-e6a0b7d1] {
    padding: 0;
    display: block;
}
.params-table[data-v-e6a0b7d1] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.params-table th[data-v-e6a0b7d1],
.params-table td[data-v-e6a0b7d1] {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.params-table th[data-v-e6a0b7d1] {
    background-color: #f5f5f5;
}
