@charset "UTF-8";
/**********
 모듈
 module.css
**********/

/* ---------------------------------------------------------------------------------------------------------------------
Slick.js
--------------------------------------------------------------------------------------------------------------------- */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* ---------------------------------------------------------------------------------------------------------------------
Tab
--------------------------------------------------------------------------------------------------------------------- */
.c-tab {
    position: relative;
    margin-top: -1px;
}

.c-tab__list {
    display: -webkit-box;
    display: flex;
    height: 50px;
    padding: 0 18px;
    background-color: #fff;
    border-bottom: 1px solid #e3e3e3;
}

.c-tab__item {
    -webkit-box-flex: 1;
    flex: 1;
    text-align: center;
}

.c-tab__anchor {
    display: block;
    position: relative;
    height: 49px;
    font-family: 'SECGCWM', sans-serif;
    font-size: 14px;
    color: #888;
}

.c-tab__anchor.is-active,
.c-tab__input:checked + .c-tab__anchor {
    color: #009cff !important;
}

.c-tab__anchor.is-active:after,
.c-tab__input:checked + .c-tab__anchor:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #009cff;
}

.c-tab__text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    line-height: 1.2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-tab__number {
    color: #222;
}

.c-tab__anchor.is-active .c-tab__number {
    color: #009cff;
}

/* ---------------------------------------------------------------------------------------------------------------------
Grid
--------------------------------------------------------------------------------------------------------------------- */
.c-grid__item {
    position: relative;
    border-bottom: 1px solid #e3e3e3;
    background-color: #fff;
}

.c-grid--line {
    border-top: 1px solid #e3e3e3;
}

.c-grid--arrow .c-grid__item {
    padding-right: 25px;
}

.c-grid--arrow .c-grid__item:before {
    display: block;
    position: absolute;
    top: 50%;
    right: 21px;
    width: 1px;
    height: 9px;
    margin-top: -7px;
    background-color: #222;
    content: "";
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.c-grid--arrow .c-grid__item:after {
    display: block;
    position: absolute;
    top: 50%;
    right: 21px;
    width: 1px;
    height: 9px;
    margin-top: -1px;
    background-color: #222;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-grid--gutter .c-grid__item {
    margin-top: 10px;
    margin-bottom: 10px;
}

.c-grid--gutter .c-grid__item:first-child {
    margin-top: 0;
}

.c-grid--block {
    padding: 18px;
}

.c-grid--block .c-grid__item {
    margin-bottom: 0;
    border-bottom: none;
}

/* ---------------------------------------------------------------------------------------------------------------------
Card
--------------------------------------------------------------------------------------------------------------------- */
.c-card mark {
    background-color: #fff;
    color: #009cff;
}

.c-card__anchor {
    display: block;
    width: 100%;
    background-color: #fff;
}

.c-card__head {
    overflow: hidden;
    display: block;
    position: relative;
}

.c-card__head:after {
    content: "";
    display: block;
    padding-bottom: 44.44%;
}

.c-card__head--play:before {
    display: inline-block;
    position: absolute;
    left: 18px;
    bottom: 15px;
    z-index: 10;
    width: 30px;
    height: 30px;
    background: url("../images/common/bg_play.png") no-repeat;
    background-size: auto 30px;
    content: "";
}

.c-card__head--play:after {
    padding-bottom: 56.25%;
}

.c-card__overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
}

.c-card__done {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    width: 100%;
    font-family: SECGCWM,sans-serif;
    font-size: 27px;
    font-weight: normal;
    color: #fff;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-card__image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c-card__body {
    position: relative;
    display: block;
    padding: 23px 18px 20px;
    font-size: 0;
}

.c-card__title {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #222;
    word-break: break-all;
}

.c-card__title_read {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #c2c2c2;
    word-break: break-all;
}

.c-card__body .c-card__title:last-child {
    margin-bottom: 0;
}

.c-card__info {
    position: relative;
    display: inline;
    margin-right: 10px;
    padding-right: 11px;
    font-size: 13px;
    color: #888;
    line-height: 19px;
}

.c-card__info:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 3px;
    right: 0;
    width: 1px;
    height: 10px;
    background-color: #ddd;
}

.c-card__info--blue {
    color: blue;
}

.c-card__info:last-of-type {
    margin-right: 0;
    padding-right: 0;
}

.c-card__info:last-of-type:after {
    display: none;
}

.c-card__point {
    position: absolute;
    top: 50%;
    right: 18px;
    font-size: 17px;
    font-family: SECGCWM,sans-serif;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-card--scrap {
    padding-right: 52px;
}

.c-card--scrap .c-card__body {
    padding-right: 0;
}

.c-card__scrap {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    height: 100%;
    padding: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-card--sort .c-card__body {
    padding-right: 90px;
}

.c-card__sort {
    position: absolute;
    top: 50%;
    right: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-card--half .c-card__anchor {
    position: relative;
    height: 140px;
    padding-left: 140px;
}

.c-card--half .c-card__head {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
}

.c-card--half .c-card__head:after {
    padding-bottom: 100%;
}

.c-card--half .c-card__body {
    height: 100%;
    padding: 20px;
}

.c-card--half .c-card__title {
    display: -webkit-box;
    overflow: hidden;
    max-height: 85px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.c-card--middle .c-card__anchor {
    display: table;
}

.c-card--middle .c-card__body {
    display: table-cell;
    vertical-align: middle;
}

/* ---------------------------------------------------------------------------------------------------------------------
숫자카운터
--------------------------------------------------------------------------------------------------------------------- */
.c-counter {
    display: inline-block;
    overflow: hidden;
    height: 30px;
    background-color: #fff;
    font-size: 0;
    vertical-align: top;
}

.c-counter * {
    box-sizing: border-box;
    vertical-align: top;
}

.c-counter__decrease,
.c-counter__increase {
    position: relative;
    width: 30px;
    height: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}

.c-counter__decrease:after,
.c-counter__increase:before,
.c-counter__increase:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    margin: -1px 0 0 -5px;
    background-color: #222;
}

.c-counter__increase:before {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.c-counter__number {
    width: 40px;
    height: 100%;
    margin: 0 -1px;
    border: 1px solid #ccc;
    font-size: 15px;
    line-height: 28px;
    text-align: center;
    color: #222;
}

.c-counter__number::-webkit-outer-spin-button,
.c-counter__number::-webkit-inner-spin-button {
    display: none;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
}

.c-counter__decrease[disabled],
.c-counter__increase[disabled] {
    background-color: #f4f4f4;
}

.c-counter__decrease[disabled]:after,
.c-counter__decrease[disabled]:before,
.c-counter__increase[disabled]:after,
.c-counter__increase[disabled]:before {
    background-color: #ccc;
}

/* ---------------------------------------------------------------------------------------------------------------------
File Attachment
--------------------------------------------------------------------------------------------------------------------- */
.c-attachment {
    -webkit-box-flex: 0;
    flex: none;
    max-width: 32.3%;
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
}

.c-attachment:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.c-attachment__placeholder {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    width: 100%;
    margin-top: 13px;
    font-size: 14px;
    color: #bbb;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-attachment__placeholder:before {
    display: block;
    position: absolute;
    top: -22px;
    left: 50%;
    width: 1px;
    height: 15px;
    background-color: #ccc;
    content: "";
}

.c-attachment__placeholder:after {
    display: block;
    position: absolute;
    top: -15px;
    left: 50%;
    width: 15px;
    height: 1px;
    margin-left: -7px;
    background-color: #ccc;
    content: "";
}

.c-attachment__handler {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.c-attachment__preview {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.c-attachment__image,
.c-attachment__canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c-attachment__delete {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: rgba(0,0,0,.7);
}

.c-attachment.is-loaded .c-attachment__handler {
    display: none;
}

.c-attachment.is-loaded .c-attachment__delete {
    display: block;
}

.c-attachment.is-disabled {
    background: #f4f4f4 url("../images/common/img_attach_logo.png") no-repeat 50% 50%;
    background-size: auto 17px;
}

.c-attachment.is-disabled .c-attachment__canvas,
.c-attachment.is-disabled .c-attachment__placeholder,
.c-attachment.is-disabled .c-attachment__handler {
    display: none;
}

/* ---------------------------------------------------------------------------------------------------------------------
도로명, 지번
--------------------------------------------------------------------------------------------------------------------- */
.mod-address {
    display: block;
    padding: 18px;
    font-size: 13px;
}

.mod-address__name {
    display: block;
    margin-bottom: 9px;
    font-family: 'SECGCWM', sans-serif;
    font-size: 15px;
}

.mod-address__item {
    position: relative;
    margin: 6px 0;
    padding-left: 53px;
    font-size: 13px;
}

.mod-address__label {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 44px;
    height: 18px;
    border: 1px solid #009cff;
    border-radius: 9px;
    font-size: 10px;
    line-height: 16px;
    color: #009cff;
    text-align: center;
}

.mod-address__phone {
    display: block;
    color: #888;
}

.mod-address__phone .o-icon--tel {
    top: 1px;
    margin-right: 5px;
    opacity: 0.4;
}

/* ---------------------------------------------------------------------------------------------------------------------
Q&A
--------------------------------------------------------------------------------------------------------------------- */
.c-accordion + .c-accordion {
    margin-top: 10px;
}

.c-accordion__title {
    padding: 26px 18px 10px;
    font-size: 17px;
    background-color: #fff;
    font-family: 'SECGCWM', sans-serif;
}

.c-accordion__list {
}

.c-accordion__item {
    border-bottom: 1px solid #e3e3e3;
}

.c-accordion--line .c-accordion__list {
    border-top: 1px solid #e3e3e3;
}

.mod-question {
    display: block;
    position: relative;
    padding: 30px 18px 25px 50px;
    font-size: 15px;
    background-color: #fff;
}

.mod-question__abbr {
    position: absolute;
    top: 30px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-family: 'SECGCWM', sans-serif;
    font-size: 12px;
    background-color: #009cff;
    text-align: center;
    text-decoration: none;
    color: #fff;
    line-height: 18px;
}

.mod-question__info {
    margin-top: 15px;
    padding-right: 40px;
    font-size: 0;
}

.mod-question__date {
    display: block;
    font-size: 13px;
    color: #888;
}

.mod-question__name {
    font-size: 13px;
    color: #888;
}

.mod-question__name + .mod-question__name {
    position: relative;
    margin-left: 7px;
    padding-left: 8px;
}

.mod-question__name + .mod-question__name:before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 1px;
    height: 9px;
    background-color: #ddd;
    content: "";
}

.mod-question__delete {
    display: block;
    position: absolute;
    bottom: 30px;
    right: 18px;
    width: 30px;
    height: 30px;
    border: 1px solid #e3e3e3;
    line-height: 28px;
    text-align: center;
}

.mod-question img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 10px 0 5px;
    vertical-align: top;
}

.mod-question--anchor {
    padding: 23px 45px 19px 50px;
    font-family: 'SECGCWM', sans-serif;
}

.mod-question--anchor .mod-question__abbr {
    top: 23px;
}

.mod-question--anchor:before {
    display: block;
    position: absolute;
    top: 50%;
    right: 27px;
    width: 1px;
    height: 9px;
    margin-top: -4px;
    background-color: #222;
    content: "";
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.mod-question--anchor:after {
    display: block;
    position: absolute;
    top: 50%;
    right: 21px;
    width: 1px;
    height: 9px;
    margin-top: -4px;
    background-color: #222;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mod-question--anchor.is-active:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mod-question--anchor.is-active:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.mod-answer {
    position: relative;
    padding: 28px 18px 24px 50px;
    font-size: 15px;
    background-color: #f4f4f4;
    word-break: break-all;
    word-wrap: break-word;
}

.mod-answer__abbr {
    position: absolute;
    top: 28px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-family: 'SECGCWM', sans-serif;
    font-size: 12px;
    background-color: #222;
    text-align: center;
    text-decoration: none;
    color: #fff;
    line-height: 18px;
}

.mod-answer__abbr--request {
    background-color: #888;
}

.mod-answer__info {
    margin-top: 15px;
    font-size: 0;
}

.mod-answer__date {
    display: block;
    font-size: 13px;
    color: #888;
}

.mod-answer__name {
    font-size: 13px;
    color: #888;
}

.mod-answer__name + .mod-answer__name {
    position: relative;
    margin-left: 7px;
    padding-left: 8px;
}

.mod-answer__name + .mod-answer__name:before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 1px;
    height: 9px;
    background-color: #ddd;
    content: "";
}

.mod-answer img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 10px 0 6px;
    vertical-align: top;
}

.mod-answer__write {
    margin: 11px 0 0 -32px;
}

.mod-answer__button {
    position: absolute;
    top: 24px;
    right: 18px;
    height: 30px;
    padding: 0 15px;
    font-size: 13px;
    border: 1px solid #e3e3e3;
    line-height: 28px;
    text-align: center;
}

.mod-answer__textarea {
    height: 120px;
}

.mod-answer__register {
    margin-top: 20px;
}

.mod-answer--request {
    border-top: 1px solid #e3e3e3;
}

.mod-answer--request + .mod-answer--write {
    border-top: none;
}

.mod-answer--write {
    border-top: 1px solid #e3e3e3;
    font-family: 'SECGCWM', sans-serif;
    background-color: #fff;
}

/* 문의하기 */
.mod-query {
    position: relative;
    padding: 28px 18px 25px;
    border-top: 1px solid #e3e3e3;
    font-size: 13px;
    background-color: #fff;
    color: #888;
}

.mod-query__button {
    position: absolute;
    top: 32px;
    right: 18px;
    height: 30px;
    padding: 0 15px;
    font-size: 13px;
    border: 1px solid #e3e3e3;
    line-height: 28px;
    text-align: center;
}

.mod-query__write {
    margin-top: 11px;
    padding-bottom: 45px;
}

.mod-query__textarea {
    height: 120px;
}

.mod-query__register {
    margin-top: 20px;
}

/* ---------------------------------------------------------------------------------------------------------------------
우측하단 플로팅 메뉴
글쓰기, 검색
--------------------------------------------------------------------------------------------------------------------- */
.sticky-group {
    position: fixed;
    right: 18px;
    bottom: 60px;
    width: 45px;
    z-index: 90;
    -webkit-transition: all 250ms;
    transition: all 250ms;
}

.sticky-group.is-expand {
    right: 0;
    width: 100%;
    padding: 0 18px;
    z-index: 105;
}

.sticky-group__item {
    position: relative;
    margin-top: 5px;
    text-align: right;
}

.sticky-group__item:after {
    content: "";
    display: block;
    clear: both;
}

.sticky-group__item:first-child {
    margin-top: 0;
}

.sticky-group__anchor {
    float: right;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
}

.sticky-group__anchor--write {
    background-color: #009cff;
}

.sticky-search {
    overflow: hidden;
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 45px;
    padding: 0;
    border-radius: 45px;
    background-color: #222;
    -webkit-transition: background-color 200ms;
    transition: background-color 200ms;
}

.sticky-search__input {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    padding: 0 50px 0 20px;
    border: 0;
    -webkit-transition: width 200ms;
    transition: width 200ms;
    background: none;
}

.sticky-search__submit {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
}

.sticky-search__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
}

.sticky-search__icon--open {
    opacity: 1;
}

.sticky-search__icon--submit {
    opacity: 0;
}

.sticky-search.is-active {
    background-color: #fff;
}

.sticky-search.is-active .sticky-search__input {
    width: 100%;
}

.sticky-search.is-active .sticky-search__icon--open {
    opacity: 0;
}

.sticky-search.is-active .sticky-search__icon--submit {
    opacity: 1;
}

/* ---------------------------------------------------------------------------------------------------------------------
테이블 ( 정보 )
--------------------------------------------------------------------------------------------------------------------- */
.mod-table {
    margin-top: 30px;
    padding-bottom: 10px;
}

.mod-table__title {
    margin-bottom: 9px;
    font-size: 15px;
    font-family: SECGCWM,sans-serif;
}

.mod-table table {
    width: auto;
    min-width: 100%;
    max-width: none;
    border-top: 1px solid #222;
}

.mod-table th {
    padding: 8px 0 4px;
    font-weight: normal;
    font-size: 15px;
    color: #888;
    text-align: left;
    vertical-align: top;
}

.mod-table td {
    padding: 8px 0 4px;
    font-size: 15px;
    word-break: break-word; /* 2018.04.05 결재함 고장신고승인화면에서 줄바꿈적용을 위해. */
}

.mod-table tr:first-child th,
.mod-table tr:first-child td {
    padding-top: 18px;
}

.mod-table img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    vertical-align: top;
}

.mod-table img + img {
    margin-top: 15px;
}

.mod-table__tel {
    position: relative;
    margin-left: 14px;
    border-bottom: 1px solid #222;
}

.mod-table__tel .o-icon {
    position: absolute;
    top: 1px;
    left: -14px;
}

/* ---------------------------------------------------------------------------------------------------------------------
진행사항
--------------------------------------------------------------------------------------------------------------------- */
.mod-process {
    overflow: hidden;
    background-color: #fff;
    text-align: center;
}

.mod-process__pictogram {
    overflow: hidden;
    display: block;
    width: 60px;
    height: 60px;
    margin: 30px auto 11px;
    border-radius: 50%;
    line-height: 60px;
}

.mod-process__pictogram--gray {
    background-color: #888;
}

.mod-process__pictogram--black {
    background-color: #222;
}

.mod-process__pictogram--red {
    background-color: #f3624f;
}

.mod-process__pictogram--blue {
    background-color: #009cff;
}

.mod-process__pictogram--deep-blue {
    background-color: #376db3;
}

.mod-process__state {
    display: block;
    font-size: 17px;
}

.mod-process__date {
    display: block;
    font-size: 11px;
    color: #888;
}

.mod-process__detail {
    margin-top: 26px;
    padding: 10px 18px 0;
    background-color: #f4f4f4;
    border-top: 1px solid #e3e3e3;
    font-size: 13px;
}

.mod-process__comment {
    padding: 18px 0 25px;
}

.mod-process__comment + .mod-process__comment {
    margin-top: -10px;
    padding-top: 0;
}

.mod-process__visit {
    display: block;
    font-size: 11px;
    color: #366db2;
}

.mod-process__visit a {
    color: inherit;
}

.mod-process__blue {
    color: #366db2;
}

/* ---------------------------------------------------------------------------------------------------------------------
상황판(결제함,S/O관리,추천실적)
--------------------------------------------------------------------------------------------------------------------- */
.state-panel {
    padding: 25px 3px 24px;
    font-size: 0;
    background-color: #435879;
    line-height: 15px;
}

.state-panel__item {
    position: relative;
    display: inline-block;
    width: 50%;
    padding: 0 15px;
    vertical-align: middle;
    font-size: 13px;
}

.state-panel__item:after {
    content: "";
    display: block;
    clear: both;
}

.state-panel__item:nth-child(2n):before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 12px;
    margin-top: -7px;
    background-color: #a2acbc;
}

.state-panel__label {
    float: left;
    color: #bac5d6
}

.state-panel__name {
    font-family: SECGCWM,sans-serif;
    color: #fff;
}

.state-panel__number {
    float: right;
    font-family: SECGCWM,sans-serif;
    font-size: 22px;
    line-height: 1;
    color: #fff;
}

.state-panel__number .o-icon {
    margin-right: 10px;
}
/* S-ZONE관리 */
.state-panel--zone {
    line-height: 22px;
}

.state-panel--zone .state-panel__item:first-child {
    font-size: 15px;
}

.state-panel--zone .state-panel__number {
    font-size: 22px;
}
/* 추천실적 */
.state-panel--recommend {
    padding-top: 0;
    padding-bottom: 0;
}

.state-panel--recommend .state-panel__item {
    padding-top: 25px;
    padding-bottom: 24px;
}

.state-panel--recommend .state-panel__number {
    font-size: 15px;
}
/* 결제함 */
.state-panel--assign {
    line-height: 22px;
}

.state-panel--assign .state-panel__label {
    color: #fff;
}

/* ---------------------------------------------------------------------------------------------------------------------
매장검색결과 ( S-ZONE관리, S/O관리 )
--------------------------------------------------------------------------------------------------------------------- */
.search-store {
    margin-top: -5px;
}

.store-card {
    display: block;
    width: 100%;
    background-color: #fff;
}

.store-card__anchor {
    position: relative;
    display: block;
    padding: 18px 18px 15px;
    font-size: 0;
}

.store-card__title {
    display: block;
    font-family: 'SECGCWM',sans-serif;
    font-size: 15px;
    color: #222;
}

.store-card__address {
    font-size: 13px;
    line-height: 20px;
    color: #222;
}

.store-card__number {
    display: inline-block;
    margin-left: 10px;
    font-family: 'SECGCWM',sans-serif;
    color: #222;
}

.store-card__category {
    margin: 1px 0 8px;
}

.store-card__content {
    position: relative;
    height: 40px;
    padding: 12px 18px 9px;
    background-color: #f2f6fb;
    text-align: right;
}

.store-card__tel {
    position: absolute;
    top: 0;
    left: 18px;
    padding: 16px 0 11px;
    line-height: 13px;
    font-size: 13px;
    color: #888;
}

.store-card__tel:after {
    content: "";
    position: absolute;
    bottom: 11px;
    left: 15px;
    right: 0;
    height: 1px;
    background-color: #888;
}

.store-card__tel--none:after {
    display: none;
}

.store-card__tel .o-icon--tel {
    opacity: 0.4;
}

.store-card__info {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding-right: 11px;
    font-size: 13px;
    color: #888;
    line-height: 19px;
}

.store-card__info:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    right: 0;
    width: 1px;
    height: 10px;
    background-color: #ddd;
}

.store-card__info:last-of-type {
    margin-right: 0;
    padding-right: 0;
}

.store-card__info:last-of-type:after {
    display: none;
}

/* ---------------------------------------------------------------------------------------------------------------------
안내사항 박스 (리스트형식 텍스트)
연출물신청 & 매장관리
--------------------------------------------------------------------------------------------------------------------- */
.mod-guidance {
    margin-top: 30px;
}

.mod-guidance__title {
    display: block;
    width: 100%;
    margin-bottom: 9px;
    font-family: SECGCWM, sans-serif;
    font-size: 15px;
}

.mod-guidance__box {
    padding: 20px 20px 15px;
    border: 1px solid #e3e3e3;
    font-size: 15px;
    line-height: 1.43333;
}

.mod-guidance__item {
    position: relative;
    margin-bottom: 4px;
    padding-left: 8px;
    font-size: 13px;
    color: #888;
}

.mod-guidance__item:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 3px;
    height: 1px;
    background-color: #999;
}

.mod-guidance__item.mod-guidance__item--link {
    margin: 10px 0 5px;
    padding-left: 0
}

.mod-guidance__item.mod-guidance__item--link:before {
    display: none
}

.mod-guidance__emphasis {
    color: #222;
}

.mod-guidance__link {
    display: inline-block;
    height: 25px;
    margin-top: 6px;
    padding: 0 6px;
    border: 1px solid #e3e3e3;
    font-size: 13px;
    line-height: 25px;
    text-align: center;
    vertical-align: middle;
}


/* ---------------------------------------------------------------------------------------------------------------------
스탬프모으기 이벤트 풍선
--------------------------------------------------------------------------------------------------------------------- */
.stamp-balloon {
    overflow: hidden;
    position: fixed;
    top: 10%;
    right: 10px;
    z-index: 10;
    width: 55px;
    height: 55px;
    background: url("../images/event/img_stamp_button.png") no-repeat 50% 50%;
    background-size: 100% auto;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: stamp-balloon 3s forwards, bounce 800ms infinite alternate;
    animation: stamp-balloon 3s forwards, bounce 800ms infinite alternate;
}

.stamp-balloon--1 {
    top: 14%;
}

.stamp-balloon--2 {
    top: 45%;
}

.stamp-balloon--3 {
    top: 64%;
}

@-webkit-keyframes stamp-balloon {
    0%,
    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes stamp-balloon {
    0%,
    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounce {
    from {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    from {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

/* ---------------------------------------------------------------------------------------------------------------------
Pull to Refresh
--------------------------------------------------------------------------------------------------------------------- */
.pull-to-refresh {
    position: fixed;
    top: 15%;
    left: 50%;
    z-index: 10;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    background: #fff url("../images/common/bg_pull_refresh.png") no-repeat 50% 50%;
    background-size: 50% auto;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0,0,0,.4);
    opacity: 0;
    -webkit-transition: all 100ms;
    transition: all 100ms;
    text-align: center;
}

.pull-to-refresh img {
    width: 100%;
}

.pull-to-refresh.is-active {
    opacity: 1;
}

.pull-to-refresh.rotating {
    -webkit-animation: rotating 800ms linear infinite;
    animation: rotating 800ms linear infinite;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes rotating {
    from {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}