@charset 'UTF-8';
/* Icons use Font Awesome by default. */
/* Font */
@font-face {
    font-family: 'Spoqa Han Sans';
    font-weight: 300;
    src: local('Spoqa Han Sans Light'), url('/common/fonts/SpoqaHanSansLight.woff2') format('woff2'), url('/common/fonts/SpoqaHanSansLight.woff') format('woff'), url('/common/fonts/SpoqaHanSansLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Spoqa Han Sans';
    font-weight: 400;
    src: local('Spoqa Han Sans Regular'), url('/common/fonts/SpoqaHanSansRegular.woff2') format('woff2'), url('/common/fonts/SpoqaHanSansRegular.woff') format('woff'), url('/common/fonts/SpoqaHanSansRegular.ttf') format('truetype');
}

@font-face {
    font-family: 'Spoqa Han Sans';
    font-weight: 700;
    src: local('Spoqa Han Sans Bold'), url('/common/fonts/SpoqaHanSansBold.woff2') format('woff2'), url('/common/fonts/SpoqaHanSansBold.woff') format('woff'), url('/common/fonts/SpoqaHanSansBold.ttf') format('truetype');
}

/* reset */
html {
    font-size: 100%;
}

body {
    position: relative;
    width: 100%;
    min-height: 100%;
    font-family: 'Spoqa Han Sans', sans-serif;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
}

body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, code, del, dfn, em, img, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, hr {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ol, ul, li {
    list-style: none;
}

table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

h1, h2, h3, h4, h5, h6, strong, b, th {
    font-weight: 700;
}

form, fieldset, iframe {
    display: block;
    border: 0;
}

img, button {
    vertical-align: top;
    border: 0 none;
}

hr {
    display: none;
    height: 0;
}

i, em, address {
    font-style: normal;
}

small {
    font-weight: 400;
}

label, button {
    cursor: pointer;
}

blockquote, q {
    quotes: none;
}

caption span, legend {
    position: absolute;
    z-index: -1;
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-indent: -100%;
    font-size: 0;
}

header, footer, section, article, aside, nav, hgroup, details, menu, figure, figcaption {
    display: block;
}

input, textarea, select, button {
    vertical-align: middle;
    letter-spacing: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: 'Spoqa Han Sans', sans-serif;
    font-size: .875rem;
    line-height: 1.3;
}

input, textarea {
    margin: 0;
    padding: 0;
}

textarea {
    resize: none;
}

input, select {
    width: 100%;
    border: 1px solid var(--g06);
    border-radius: .5rem;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}

h2, h3 {
    display: block;
    margin-top: .5rem;
    margin-bottom: .5rem;
    color: #575c86;
    font-size: 1rem;
}

h3 {
    font-size: .875rem;
}

button {
    width: 100%;
    height: 100%;
    padding: .75rem;
    border-radius: .5rem;
}

button.default {
    color: var(--normal);
    border: 1px solid var(--g06);
    background-color: var(--white);
}

button.big {
    font-size: 1.125rem;
    font-weight: 700;
}

button:disabled {
    opacity: .5;
}

button.action {
    color: #fff;
    background: #eb5757;
}

button.primary {
    color: var(--white);
    background-color: var(--action);
}

button.secondary {
    color: var(--white);
    background-color: var(--secondary);
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

section + section {
    margin-top: 1rem;
}

:root {
    --action: #3fa2f7;
    --action-form: #eb5757;
    --background: #f2f2f6;
    --black: #000;
    --bodypadding: 1rem;
    --g01: #525252;
    --g02: #737373;
    --g03: #999;
    --g04: #a3a3a3;
    --g05: #c4c4c4;
    --g06: #d4d4d4;
    --g07: #ddd;
    --g08: #ededed;
    --g09: #f2f2f6;
    --liner: linear-gradient(90deg, #f77062 0%, #fe5196 100%);
    --liner2: linear-gradient(90deg, #005c97 0%, #363795 100%);
    --liner3: linear-gradient(180deg, #414566 0%, #6b86ca 100%);
    --normal: #222;
    --primary: #575c86;
    --primary-dark: #3e454f;
    --primary-light: #6b86ca;
    --secondary: #ed4563;
    --white: #fff;
}

.blind {
    display: block;
    overflow: hidden;
    height: 1px;
    margin: 0;
    padding: 0;
}

.wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f2f2f6;
}

.wrap .content-box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 1rem;
}

.wrap .content-box.background {
    background-image: url('/common/images/background.png');
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.wrap-header {
    text-align: center;
    color: #fff;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
}

.wrap-header .page-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 42px;
    margin: 0;
    background-color: #6b86ca;
    font-size: 1.125rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wrap-header .back, .wrap-header .util, .wrap-header .download {
    position: absolute;
    top: 0;
    width: 42px;
    height: 42px;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.wrap-header .back {
    left: 0;
    background-image: url('/common/images/icon_back.svg');
}

.wrap-header .util {
    right: 0;
    background-image: url('/common/images/icon_setting.svg');
}

.wrap-header .download {
    right: 42px;
    background-image: url('/common/images/icon_down.svg');
}

.wrap-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
}

.sns-footer {
    padding: 1rem 2rem;
    text-align: center;
}

.menu-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 42px;
    background: #fff;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.menu-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-indent: -9999px;
    border: none;
    border-radius: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu-item.search {
    background-image: url('/common/images/menu_search_off.svg');
}

.menu-item.my {
    background-image: url('/common/images/heart_off.svg');
}

.menu-item.like {
    background-image: url('/common/images/menu_like_off.svg');
}

.menu-item.awesome {
    background-image: url('/common/images/menu_awesome_off.svg');
}

.menu-item.setting {
    background-image: url('/common/images/menu_setting_off.svg');
}

.menu-item.board {
    background-image: url('/common/images/community_off.svg');
}


.menu-item.active {
    background-color: #575c86;
}

.menu-item.active.search {
    background-image: url('/common/images/menu_search_on.svg');
}

.menu-item.active.my {
    background-image: url('/common/images/heart_on.svg');
}

.menu-item.active.like {
    background-image: url('/common/images/menu_like_on.svg');
}

.menu-item.active.awesome {
    background-image: url('/common/images/menu_awesome_on.svg');
}

.menu-item.active.setting {
    background-image: url('/common/images/menu_setting_on.svg');
}

.menu-item.active.board {
    background-image: url('/common/images/community_on.svg');
}


.menu-item.coming {
    position: relative;
    opacity: .4;
}

.menu-item.coming::after {
    content: 'coming soon';
    text-indent: 0;
    color: #000;
    line-height: 14px;
}

.search-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
}

.search-tab .tab {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    margin-right: 14px;
    text-align: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.search-tab .tab.active input[name='search'] + span {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    color: #222;
    border: 1px solid #575c86;
    border-radius: .25rem;
    background: #fff;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.search-tab .tab label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 42px;
    color: #a3a3a3;
    border-radius: .25rem;
    background: #ededed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.search-tab .tab label input[name='search'] {
    position: absolute;
    opacity: 0;
}

.search-tab .tab:last-child {
    margin-right: 0;
}

.sub-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 1rem;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    margin-top:15px;
}

.sub-tab .tab {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    text-align: center;
    font-size: 16px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sub-tab .tab.active input[name='tabmenu'] + span {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #222;
    background: #fff;
    font-weight: bold;
    line-height: 50px;
}

.sub-tab .tab.active input[name='tabmenu'] + span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #000;
}

.sub-tab .tab label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 50px;
    color: #a3a3a3;
    border-radius: .25rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sub-tab .tab label input[name='tabmenu'] {
    position: absolute;
    opacity: 0;
}

.sub-tab .tab:last-child {
    margin-right: 0;
}

.tab-container .tab-content {
    display: none;
}

.tab-container .tab-content h3:first-child {
    margin-top: 0;
}

.form-style {
    position: relative;
    margin-bottom: 1rem;
    border-radius: .5rem;
}

.form-style label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: .5rem 1rem;
}

.form-style label:first-child {
    border-bottom: 1px solid #d4d4d4;
}

.form-style label input[type='text'] {
    width: calc(100% - 40px);
    color: #575c86;
    border: none;
    font-size: 1rem;
    font-weight: 700;
}

.form-style label span {
    color: #999;
    font-size: .75rem;
}

.form-style .change-position {
    position: absolute;
    top: 38px;
    right: -1px;
    display: block;
    width: 42px;
    height: 42px;
    text-indent: -9999px;
    border: 1px solid #d4d4d4;
    border-radius: .5rem 0 0 .5rem;
    background: #fff url('/common/images/icon_change.svg') no-repeat center center;
}

.form-style.form-top, .form-style.form-left {
    border: 1px solid #d4d4d4;
    background-color: #fff;
}

.form-style.form-left {
    margin-right: .25rem;
    margin-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.form-style.form-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 90px;
    margin-bottom: 0;
}

.form-style.form-right button {
    color: #575c86;
    border: 1px solid #d4d4d4;
    background: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.form-style.form-right button span {
    display: block;
    color: #999;
    font-size: .75rem;
}

.form-style.form-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-style.form-bottom .inner {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    border: 1px solid #d4d4d4;
    border-radius: .5rem;
    background: #fff;
}

.form-style.form-bottom .inner:first-child {
    margin-right: .5rem;
}

.form-style.form-bottom .inner button {
    padding: .5rem 1rem;
    color: #575c86;
    background: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.form-style.form-bottom .inner span {
    display: block;
    color: #999;
    font-size: .75rem;
}

.form-style.form-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 43px;
    margin-top: .25rem;
    margin-bottom: 0;
}

.form-style.form-inner .controller {
    overflow: hidden;
    height: auto;
    text-indent: -999px;
}

.form-style.form-inner .controller:first-child {
    margin-right: .25rem;
    background-image: url('/common/images/icon_minus.svg');
}

.form-style.form-inner .controller:last-child {
    background-image: url('/common/images/icon_plus.svg');
}

.display {
    display: block !important;
}

.multicity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 1rem;
}

.multicity legend {
    position: relative;
    z-index: 0;
    visibility: unset;
    overflow: unset;
    width: unset;
    height: unset;
    margin-bottom: .5rem;
    text-indent: unset;
    color: #575c86;
    font-size: .875rem;
    font-weight: 700;
}

.multicity-passenger {
    margin-bottom: 1rem;
}

.multicity-passenger button {
    padding: .5rem 1rem;
    color: #575c86;
    border: 1px solid #d4d4d4;
    background: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.multicity-passenger button span {
    display: block;
    color: #999;
    font-size: .75rem;
}

.search-engine {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.search-engine select[name='search-engine'] {
    margin-bottom: 1rem;
    padding: 8px;
    color: #575c86;
    border: 1px solid #d4d4d4;
    border-radius: .5rem;
    background: #fff url('/common/images/icon_trangle_b.svg') no-repeat center right 1rem;
    font-weight: 700;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-engine button[type='submit'] {
    color: #fff;
    background: #eb5757;
}

.search-engine li {
    margin-bottom: 10px;
}

.search-engine.half li {
    float: left;
    width: calc(50% - 5px);
}

.search-engine.half li:nth-child(2n) {
    margin-left: 10px;
}

.search-engine.half .search-link span, .likeSearch-link span {
    display: inline-block;
    overflow: hidden;
    width: 1px;
    height: 1px;
}

.search-engine .search-link, .likeSearch-link {
    padding: 12px;
    color: #222;
    border-radius: .25rem;
    border: 1px solid #cccccc;
    background-color: #fff;
}

.search-working{
    background-color: #EDEDED !important;
    color:#A3A3A3 !important;
}

.not-use-site {
    background-color: #EDEDED !important;
    color:#A3A3A3 !important;
}

.not-use-site > span {
    color:#A3A3A3 !important;
}

.list-count {
    display: block;
    margin-bottom: .5rem;
    text-align: right;
    color: #3e454f;
    font-size: .75rem;
}

.list-group .list-title .list-count {
    display: inline-block;
    margin-bottom: 0;
}

.list-item-outer {
    position: relative;
    margin-bottom: .5rem;
}

.list-item-outer .list-link
{
    position: absolute;
    z-index: 1;

    width: 100%;
    height: 100%;
    padding: .5rem;

    border: 1px solid #3fa2f7;
    border-radius: .5rem;
}



.list-item-outer .list-clear {
    position: absolute;
    z-index: 10;
    right: .5rem;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 4rem;
    height: 26px;
    padding: 0;
    border-radius: .5rem .5rem 0 0;
    font-size: .75rem;
    line-height: 2rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.list-item-outer .list-clear .icon {
    width: 12px;
    height: 12px;
    margin-right: .25rem;
    background: url(/common/images/icon_clear.svg) no-repeat center center;
}


.list-item-outer .list-link b {
    display: inline-block;
    width: 24px;
    height: 24px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background: url('/common/images/icon_arrow_w.svg') no-repeat center center;
}

.list-item-outer .list-link span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 86px;
    height: 100%;
    padding: .5rem;
    text-align: center;
    word-break: keep-all;
    color: #fff;
    border-radius: .5rem;
    background: rgba(63, 162, 247, .9);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.list-item-outer:last-child {
    margin-bottom: 0;
}

.list-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    text-align: left;
    border-radius: .5rem;
    background: #fff;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
}

.list-item[role='button'] {
    cursor: pointer;
}

.list-item:last-child {
    margin-bottom: 0;
}
.list-item-outer .listLine
{
    margin-top: 25px;

}

.list-item-map {
    width: 105px;
    height: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-item-map-img {
    width: 100%;
    height: 100%;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    text-align: center;
}


.list-item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: .5rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.list-item-info-content {
    display: flex;

    flex-direction: row;

    justify-content: space-between;

}

.lsit-item-info-icons {
    display: flex;

    flex-direction: row;
}


.item-payment {
    /*margin-right: .25rem;*/
    color: #eb5757;
    font-size: 1rem;
}

.icon-size
{
    font-size: 1rem;
}

.board-icon-size {
    font-size: 12px;
}

.search-icon-size
{
   display: inline-block;
   width: 25px;
   padding: 3px;
}

.board-item-div .ticketCnt {
    font-size: 12px;
}

.item-payment::after {
    content: '원';
    font-size: 70%;
}

.item-search-pipe {
    font-size: 1rem;
    padding-left: 0.25rem;
}

.searched-icon-size {
    width: 25px;
    display: inline-block;
    padding: 3px;
}

.item-schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #3e454f;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.item-date {
    font-size: .75rem;
    color: #999;
    margin: 0 0 0 auto;
    display: inline-block;
    text-align: right;
}

.item-date-detail {
    line-height: 35px;
}
.item-passenger {
    font-size: .75rem;
    text-align: right;
    display: inline-block;
    margin: 0 0 0 auto;
}

.item-avg-dur{
    color: #999;
    text-align: right;
    display: inline-block;
    margin: 0 0 0 auto;
}

.other-passenger {
    font-size: .75rem;
}


.item-flex-box {
    display: flex;
    flex-direction: row;
}

.item-flex-box.right-box{
    margin: 0 0 0 auto;
}

.item-airplan-otherInfo {
    display: flex;
}


.item-other {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #999;
    font-size: .75rem;
}


.item-airplane {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.item-airplane .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #3e454f;
}

.item-airplane .item::after {
    display: inline-block;
    width: 20px;
    height: 21px;
    content: '';
    background: url('/common/images/icon_arrow_next.svg') no-repeat center center;
}

.item-airplane .item:last-child::after {
    display: none;
}

.item-airplane .item.more::after {
    background-image: url('/common/images/icon_more.svg');
}

.item-airplane .item.openjaw::after {
    content: "/"attr(data-date)"/";
    text-align: center;
    color: #a3a3a3;
    background: none;
    font-weight: bold;
    display: inline-block;
    width: fit-content;
    padding: 0 2px;
}

.openjaw{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    color: #a3a3a3;
    background: none;
    font-weight: bold;
}

.openjaw-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #3e454f;
}

.stay-red{
    color: #eb5757;
}

@media screen and (max-width: 400px){
    .comment_depth2 .item-list-col{
       flex-direction: column;
    }
    .comment_depth2 .item-date-list{
       margin: 0;
       text-align: left;
    }
     .comment_depth2 .item-schedule-list {
        font-size: .7rem;
    }


}

@media screen and (max-width: 395px){
	.comment_depth1 .comment_buttons{
        position: static!important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 2.5rem;
        float: right;
    }
}

@media screen and (max-width: 390px){
	.board-detail .item-list-col{
	   flex-direction: column;
	}
	.board-detail .item-date-list{
	   margin: 0;
       text-align: left;
	}
	 .board-detail .item-schedule-list {
        font-size: .7rem;
    }
}

@media screen and (max-width: 385px) {

    .item-list-col {
        flex-direction: column;
    }

    .item-date-list {
        margin: 0;
        text-align: left;
    }

    .list-item-info-content-col {
        display: flex;
        flex-direction: row;
    }

    .item-airplane {
        font-size: .8rem;
    }

    .item-schedule-list {
        font-size: .7rem;
    }

    .item-passenger-list, .item-avg-dur {
        text-align: left;
        font-size: .7rem;
    }

}

@media screen and (max-width: 350px) {
    .list-item-info-content-list {
        flex-direction: column;
    }
}

@media screen and (max-width: 345px){
	.comment_depth2 .comment_buttons{
        position: static!important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 2.5rem;
        float: right;
    }
}

.airport-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.airport-group li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: .75rem;
}

.airport-group li > b {
    font-weight: 400;
}

.airport-group li > b:first-child::before, .airport-group li > b:first-child::after {
    display: none;
}

.airport-group li > b span {
    margin: 0 4px;
    color: #eb5757;
}

.airport-group li span {
    color: #999;
}

.airport-group .airport-flighttime {
    text-align: center;
}

.airport-group .airport-flighttime b {
    color: #eb5757;
}

.airport-group .airport-arrive {
    text-align: right;
}

.airport-group .airport-arrive b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.list-utility {
    display: block;
    width: 100%;
    margin: 1rem 0 0;
    padding: 0 1rem .5rem;
    border-bottom: 1px solid #eee;
}

.list-utility + .board-box {
    border-top: 0;
}

.list-utility select {
    padding: 0;
}

.list-utility_filter {
    float: right;
    margin: 0 -.25rem;
}

.list-utility_filter .filter-link {
    position: relative;
    display: inline-block;
    margin: 0 .25rem;
    /* color: var(--primary-dark); */
}

.list-utility_filter .filter-link:not(:first-child)::after {
    position: absolute;
    top: 4px;
    left: -6px;
    display: block;
    width: 1px;
    height: 14px;
    content: '';
    background-color: var(--g05);
}

.list-utility_filter a {
    color: #cccccc;
}

.accent {
    color: #616161 !important;
}

.board-outer
{
	background-color: #fff;
}

.board-box {
    border-top: 1px solid #eee;
}

.board-box > .title {
    margin: 1rem 0 !important;
}

.detail-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.detail-header dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.detail-header dt {
    width: 70px;
    color: #575c86;
    line-height: 3;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.detail-header dt .research-title
{
    line-height: 1!important;


}
.detail-header dt .research-type
{
    font-size: 0.6rem;
}

.detail-header dd .priceInfo, .detail-header dd .lpriceInfo
{
    display: flex;

    flex-direction: column;

    line-height: 1.2;

    text-align: center;

    margin-bottom: 5px;
}

.detail-header dd .priceCheck, .detail-header dd .lpriceCheck {

    display: flex;

    flex-direction: row;

    flex-wrap: wrap;
}

.detail-header dd span
{
    color: #dd3339;
    font-size: .6rem;
}


.detail-header dd li {
    display: inline-block;
    margin-right: .2rem;
    line-height: 3;
}

.detail-header dd li:last-child {
    margin-right: 0;
}

.detail-header .item-link {
    padding: .4rem .5rem;
    text-decoration: underline;
    text-decoration: none;
    color: #575c86;
    border: 1px solid #575c86;
    border-radius: .25rem;
    font-size: .875rem;
}

.item-summary {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 1rem 1rem 0;
    border-radius: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#414566), to(#6b86ca));
    background: linear-gradient(180deg, #414566 0%, #6b86ca 100%);
}

.item-summary::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1rem;
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(97, 100, 104, 0)), to(rgba(97, 100, 104, .3)));
    background: linear-gradient(180deg, rgba(97, 100, 104, 0) 0%, rgba(97, 100, 104, .3) 100%);
}

.item-summary .list-item-info {
    margin-bottom: .5rem;
    padding: 0;
}

.item-summary .list-item-map {
    width: 100%;
    height: 200px;
    border-radius: .5rem .5rem 0 0;
}

.item-summary .item-payment {
    margin-right: .25rem;
    font-size: 1.5rem;
}

.item-summary .item-payment::after {
    content: '원';
    font-size: 70%;
}

.item-summary .item-payment,
.item-summary .item-schedule,
.item-summary .item-date,
.item-summary .item-other,
.item-summary .item,
.item-summary .item-passenger,
.item-summary .warning,
.item-summary .item-avg-dur-str,
.item-summary .openjaw-item
 {
    color: #fff;
}

.item-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0;
}

.item-detail .detail-header {
    padding: .75rem 1rem;
    background: #f2f2f6;
}

.item-detail .detail-body {
    padding: 1rem;
}

.schedule-detail-item {
    margin-bottom: 1rem;
}

.schedule-detail-item:last-child {
    margin-bottom: 0;
}

.schedule-detail-item .item {
    word-break: keep-all;
    color: #3e454f;
    font-weight: 700;
}

.schedule-detail-item .item:first-child::before {
    display: inline-block;
    margin-right: .25rem;
    content: '|';
}

.schedule-detail-item .item::after {
    display: inline-block;
    margin: 0 .25rem;
    content: '-';
    text-align: center;
}

.schedule-detail-item .item:last-child::after {
    display: none;
}

.accordion-box {
    padding: 0 1rem 1rem;
    background: #fff;
}

.accordion-item {
    border-top: 1px solid #f2f2f6;
    border-bottom: 1px solid #f2f2f6;
}

.accordion-item + .accordion-item {
    margin-top: -1px;
}

.accordion-item[open] {
    border-top: 1px solid #6b86ca;
}

.accordion-item[open] .accordion-menu {
    background: #f2f2f6;
}

.accordion-item[open] .accordion-menu::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background: url('/common/images/icon_arrow_b.svg') no-repeat center center;
}

.accordion-item .goto-like, .accordion-item .goto-board {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: .5rem;
    padding: .25rem;
    color: #fff;
    border-radius: .5rem;
    background: #6b86ca;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.accordion-item .goto-like span {
    display: inline-block;
    padding-left: 3rem;
    background: url('/common/images/menu_like_on.svg') no-repeat left .75rem center;
}

.accordion-item .goto-board span {
    display: inline-block;
    padding-left: 3rem;
    background: url('/common/images/community_trans.svg') no-repeat left .78rem center;
    line-height: 2;

}


.accordion-item .goto-like a, .accordion-item .goto-board a {
    margin-left: auto;
    padding: .5rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: .25rem;
}

.accordion-menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: .75rem 1rem;
    text-align: left;
    color: #3e454f;
    border-radius: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.accordion-menu::after {
    position: absolute;
    top: .7rem;
    right: .5rem;
    width: 24px;
    height: 24px;
    content: '';
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    background: url('/common/images/icon_arrow_b.svg') no-repeat center center;
}

.accordion-menu::-webkit-details-marker {
    display: none;
}

.accordion-content {
    padding-top: .5rem;
}

.accordion-content .list-item:first-child {
    margin-top: .5rem;
}

.searcher-info {
    padding: 1rem;
    color: #3e454f;
    background: #f2f2f6;
    font-size: .75rem;
}

/* 게시판 */
.board {
    width: 100%;
    background-color: #fff;
}

.board-box .title {
    padding: 0 1rem;
    color: #000;
    font-size: 1rem;
}

.board-box .heading {
    padding: 0 1rem;
}

.board .board-list {
    padding: 0 1rem;
}

.board .board-list_item {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #eee;
}

.board .board-list_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: .5rem 0;
}

.board .board-list + .title {
    margin-top: 3rem;
}

.board .link-type_arrow .board-list_item:first-child {
    border-top: 1px solid #eee;
}

.board .link-type_arrow .board-list_link {
    position: relative;
    display: block;
    padding: .875rem .75rem;
    color: #575c86;
}

.board .link-type_arrow .board-list_link::after {
    position: absolute;
    top: middle;
    right: .5rem;
    display: inline-block;
    width: 20px;
    height: 20px;
    content: '';
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background: url(/common/images/icon_arrow_b.svg) no-repeat center center;
}

.board .link-type_default .board-list_item {
    border: none;
}

.board .link-type_default .board-list_link {
    position: relative;
    display: block;
    padding: .85rem 0;
    color: #525252;
    font-size: large;
}

.board .board-item_single-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.board .board-item_single-middle{
	margin-top: .5rem;
}

.board .board-item_single-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.board .board-item_title {
    color: #3e454f;
    overflow:hidden;
}

.board .board-item_profile{
	display: inline-block;
}
.board .board-item_nikname{
    font-size: 12px;
    color: #999;
}
.board .blog-title {
    font-weight: bold;
    font-size: 16px;
}

.board .board-item_pic {
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60px;
    flex: 1 0 60px;
    max-width: 60px;
    height: 60px;
    margin-left: 1rem;
    border-radius: .5rem;
}

.ticket-board-list .board-item_pic {
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60px;
    flex: 1 0 60px;
    max-width: 60px;
    height: 60px;
    margin-left: 0;
    border-radius: .5rem;
}

.board .board-item_pic:empty {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    margin-left: 0;
}

.board .board-item_pic span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.board .board-item_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #525252;
    font-size: 12px;
}

.board .board-item_info [class^='board-item_'] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: .5rem;
    color: #c4c4c4;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.board .board-item_info [class^='board-item_']:first-child {
    margin-left: 0;
}

.board .board-item_info [class^='board-item_'].on {
    color: #525252;
}

.board .board-item_info [class^='board-item_'] .icon {
    width: 20px;
    height: 20px;
    margin: 0 .25rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.board .board-item_data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #999;
    font-size: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.board-title-wrapper {
 display: block;
}

.board-title-wrapper .board-item-data {
    flex-basis: 100%;
}

.board .board-item_comment.on .icon {
    background-image: url('/common/images/icon_comment_on.svg');
}

.board .board-item_comment .icon {
    background-image: url('/common/images/icon_comment_off.svg');
}

.board .board-item_like.on .icon {
    background-image: url('/common/images/icon_like_on.svg');
}

.comment-item_comment .icon {
    background-image: url('/common/images/icon_comment_off.svg');
    color: #999;
    margin-right: .25rem;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
}

.comment-item_comment.on .icon {
    background-image: url('/common/images/icon_comment_on.svg');
    color: #525252;
    margin-right: .25rem;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
}

.date-item_comment .icon {
    background-image: url('/common/images/icon_comment_off.svg');
    color: #999;
    margin-right: .25rem;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
}

.date-item_comment.on .icon {
    background-image: url('/common/images/icon_comment_on.svg');
    color: #525252;
    margin-right: .25rem;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
}

.comment-item_like .icon {
    background-image: url('/common/images/icon_like_off.svg');
    color: #999;
    margin-right: .25rem;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
}

.comment-item_like.on .icon {
    background-image: url('/common/images/icon_like_on.svg');
    width: 20px;
    margin-right: .25rem;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
}

.comment-item_comment {
    color: #999;
}
.comment-item_comment.on {
    color: #525252;
}

.date-item_comment {
    color: #999;
}

.date-item_comment.on {
    color: #525252;
}

.icon-comment-item_comment {
    color: #999;
}
.icon-comment-item_comment.on {
    color: #525252;
}

.icon-date-item_comment {
    color: #999;
}

.icon-date-item_comment.on {
    color: #525252;
}

.icon-comment-item_like {
    margin-left: .5rem;
    color: #999;
}
.icon-comment-item_like.on {
    margin-left: .5rem;
    color: #525252;
}

.comment-item_like {
    margin-left: .5rem;
    color: #999;
}
.comment-item_like.on {
    margin-left: .5rem;
    color: #525252;
}

.comment-item_pencil .icon {
    background-image: url('/common/images/pencil.png');
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
}

.date-item_pencil .icon {
    background-image: url('/common/images/pencil.png');
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: inline-block;
}

.board .board-item_like .icon {
    background-image: url('/common/images/icon_like_off.svg');
}

.board-detail {
    padding: var(--bodypadding);
}

.board-detail .detail-heading {
    padding-bottom: .5rem;
    color: var(--g03);
}

.board-detail .detail-heading + .list-group {
    padding: .5rem 0;
    border-top: 1px solid var(--g08);
}

.board-detail .detail-heading + .list-group + .detail-content {
    margin-top: 0;
}

.board-detail .title {
    margin-top: 0;
    color: var(--normal);
    font-size: 1.125rem;
}

.board-detail .board-item_single-bottom {
    margin-top: 0;
}

.board-detail .list-item {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.board-detail .detail-content {
    padding-top: .5rem;
    border-top: 1px solid var(--g08);
}

.board-detail .detail-content .image
{
	max-width: 100%;
	height: auto;
	margin: 0;
	margin-bottom: 10px;
	text-align: center;
}

.board-detail .detail-content .image img
{
	max-width: 100%;
    height: auto;
    text-align: center;
}

.board-detail .detail-content .content {
    padding-bottom: 1rem;
}

.board-detail .detail-content img {
    display: inline-block;
    overflow: hidden;
    border-radius: 16px;
}

.board-detail .detail-content p {
    margin: .5rem 0;
    color: var(--primary-dark);
}

.board-detail .detail-content .modify {
    margin: 0 -1rem;
    padding: .5rem 1rem;
    background: var(--g09);
}

.board-detail .detail-comments .title {
    margin-bottom: 0;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--g08);
    font-size: 1rem;
}

.board-detail .detail-comments .title .count {
    margin-left: .5rem;
    color: var(--g03);
}

.board-detail .detail-comments .no-data {
    border-bottom: 1px solid var(--g08);
}

.board-detail .detail-comments + .board-search-box {
    margin: 1rem 0 0;
    padding: 0;
}

.board-detail .detail-comments + .board-search-box input {
    padding: .5rem 4rem .5rem .5rem;
}

.board-detail .detail-comments + .board-search-box .clear {
    right: .5rem;
}

.detail-comments .comment {
    border-bottom: 1px solid var(--g08);
}

.detail-comments .comment_depth1 {
    position: relative;
    padding: 1rem 0;
    background: var(--white);
}

.detail-comments .comment_depth2 {
    position: relative;
    /* z-index: 1; */
    margin: 0 -1rem;
    padding: 1rem 1rem 1rem 2.5rem;
    background: var(--g09);
}

.detail-comments .comment_depth2 .comment_buttons, .comment_depth2 .comment_cancle_button {
    right: 1rem!important;
}

.detail-comments .comment_depth2 + .comment_depth2 {
    border-top: 1px solid var(--white);
}

.detail-comments .comment_info {
    margin-bottom: .875rem;
}

.detail-comments .comment_info strong {
    display: block;
    color: var(--primary-dark);
}

.detail-comments .comment_info small {
    color: var(--g03);
}

.detail-comments .comment_text {
    white-space: pre-wrap;
    color: var(--primary-dark);
}

.comment_depth1 .comment_buttons {
    position: absolute;
    top: 1rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2.5rem;
    float: right;
}

.comment_depth2 .comment_buttons {
    position: absolute;
    top: 1rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2.5rem;
    float: right;
}

.detail-comments .comment_cancle_button{
	position: absolute;
    top: 1rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2.5rem;
    float: right;
}


.detail-comments .comment_buttons button, .comment_cancle_button button {
    width: 4rem;
}

/* .detail-comments .comment_buttons button {
    width: 5rem;
    line-height: 1;
} */

.detail-comments .comment_buttons button + button {
    margin-left: .5rem;
}

.detail-comments .comment_utilbox {
	text-align: right;
}

.detail-comments .comment-single_like {
	width: auto;
	margin: 0;
	padding: 0;
	color: var(--g01);
	background-color: transparent;
	font-size: .875rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.detail-comments .comment-single_like .count {
	color: var(--g05);
}

.detail-comments .comment-single_like .count.on {
	color: var(--secondary);
}

.board-write {
    display: block;
}

.board-write .detail-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.board-write .detail-heading .title {
    margin-bottom: 0;
}

.board-write .detail-heading .button {
    width: 6.5rem;
}

.board-write .detail-content {
    padding-top: 0;
    border: none;
}

.board-write .list-utility {
    margin: 0;
    padding: 0 0 .5rem;
    border-bottom: 0;
}

.board-write select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.board-write input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: .5rem 0;
    padding: .5rem;
}

.board-write .buttons-half {
    margin-top: 1.5rem;
}

.board-write .list-group {
    margin-bottom: .5rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-top: 1px solid var(--g08);
    border-bottom: 1px solid var(--g08);
}

.board-comment-box {
	display: block;
}

.board-comment-box .comment_utility {
	width: 100%;
	margin: .5rem 0;
}

.board-comment-box .comment_utility .add-flight {
	width: auto;
	margin: 0;
	padding: 0 0 0 .75rem;
	color: var(--action);
	background: url(/common/images/icon_arrow_next.svg) no-repeat left top 50%/8px;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.board-comment-box .write-box {
	display: inline-block;
	width: 100%;
	height: 3rem;
}

.board-comment-box .write-box textarea {
	display: block;
	float: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: calc(100% - 5rem);
	height: 3rem;
	padding: .5rem;
	border: 1px solid var(--g06);
	border-right: none;
	border-radius: .5rem 0 0 .5rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.board-comment-box .write-box .action {
	display: block;
	float: right;
	width: 5rem;
	height: 3rem;
	border-radius: 0 .5rem .5rem 0;
}


.faq-box {
    padding: 1rem 1rem 1rem 2rem;
    color: var(--normal);
    font-size: 1rem;
}

.faq-box p {
    padding: .5rem 0;
}

.board-insertFlight .list-item {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.board-insertFlight .list-item .list-item-outer .list-item {
    border: 1px solid var(--g07);
}

.passenger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
}

.passenger h2:first-child {
    margin-top: 0;
}

.passenger-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    margin-left: -14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.passenger-type .type {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .5rem;
    margin-left: 14px;
    text-align: center;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.passenger-type .type label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 42px;
    color: #a3a3a3;
    border-radius: .25rem;
    background: #ededed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.passenger-type .type label input[name='passenger'] {
    position: absolute;
    opacity: 0;
}

.passenger-type .type label input[name='passenger']:checked + span {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    color: #222;
    border: 1px solid #575c86;
    border-radius: .25rem;
    background: #fff;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.passenger-type .type:last-child {
    margin-right: 0;
}

.passenger-count-box {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.passenger-count-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: .5rem;
    border-top: 1px solid #d4d4d4;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.passenger-count-item:last-child {
    border-bottom: 1px solid #d4d4d4;
}

.passenger-count-item .title {
    margin-right: 1rem;
    color: #3e454f;
}

.passenger-count-item .criteria {
    color: #575c86;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.passenger-count-item .control {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.passenger-count-item .control button {
    overflow: hidden;
    text-indent: -9999px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
}

.passenger-count-item .control button.plus {
    background-image: url('/common/images/icon_plus.svg');
}

.passenger-count-item .control button.minus {
    background-image: url('/common/images/icon_minus.svg');
}

.passenger-count-item .control button, .passenger-count-item .control input {
    width: 40px;
    height: 40px;
    text-align: center;
    border: none;
}

.passenger-count-item .control input {
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
}

.passenger-count-item .control input[value='0'] {
    opacity: .3;
}

.passenger-apply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: -1rem;
    padding: 1rem 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.passenger-apply .action {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.calendar {
    padding: 1rem;
    background: #fff;
}

.calendar-week {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.calendar-week span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 40px;
    color: #3e454f;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.calendar-table {
    max-width: 420px;
    margin: 0 auto;
    margin-bottom: 160px;
}

.calendar-table button {
    width: 40px;
    height: 40px;
    background-color: transparent;
}

.calendar-table button span {
    z-index: 1;
}

.calendar-table button.start, .calendar-table button.end, .calendar-table button.inner, .calendar-table button.today , .calendar-table button.stopover{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.calendar-table button.stopover::after {
   position: absolute;
    top: 5px;
    left: 6px;
    display: block;
    width: 30px;
    height: 30px;
    content: '';
    border-radius: 20px;
    background: #90c8f9;
}

.calendar-table button.start::after, .calendar-table button.end::after, .calendar-table button.inner::after, .calendar-table button.today::after {
    position: absolute;
    top: 5px;
    left: 6px;
    display: block;
    width: 30px;
    height: 30px;
    content: '';
    border-radius: 20px;
    background: #3fa2f7;
}

.calendar-table button.today::after {
    width: 28px;
    height: 28px;
    border: 1px solid #3fa2f7;
    background: none;
}

.calendar-table button.start, .calendar-table button.end, .calendar-table button.stopover {
    color: #fff;
}



.calendar-table button.inner::after {
    opacity: .3;
}

.calendar-info {
    position: fixed;
    z-index: 2;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    color: #3e454f;
    background: #f2f2f6;
}

.calendar-info::after {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 242, 246, 0)), to(#f2f2f6));
    background: linear-gradient(180deg, rgba(242, 242, 246, 0) 0%, #f2f2f6 100%);
}

.calendar-info .info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
}

.calendar-info .info-box .item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: .25rem 1rem;
}

.calendar-info .info-box .item:last-child {
    border-left: 1px solid #d4d4d4;
}

.calendar-info .info-box .item:only-child {
    border: none !important;
}

.calendar-info span {
    display: block;
}

.calendar-info b {
    font-size: 1rem;
}

.search-box, .city-search-box, .board-search-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.search-box label, .city-search-box label, .board-search-box label {
    overflow: hidden;
    width: 1px;
    height: 1px;
}

.search-box input, .city-search-box input, .board-search-box input {
    padding-left: .5rem;
}

.search-box .clear, .city-search-box .clear, .board-search-box .clear {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    text-decoration: underline;
    color: #3fa2f7;
    background-color: transparent;
}

.city-search {
    padding: 1rem;
}

.city-search-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.city-search-box .action {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 5rem;
    flex: 0 1 5rem;
    height: auto;
    margin-left: .5rem;
}

.city-search-list {
    height: 300px;
    padding: 1rem;
    overflow: auto;
}

.city-search-list .result-item {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1rem;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.city-search-list .result-item:last-child {
    margin-bottom: 0;
}

.city-search-list .result-item.inner::after {
    display: none;
}

.city-search-list .result-item::after {
    position: absolute;
    top: 8px;
    left: 0;
    display: inline-block;
    width: 3px;
    height: 3px;
    content: '';
    background: #3e454f;
}

.city-search-list .result-item > ul {
    width: 100%;
}

.city-search-list .result-item > ul .list-item:last-child {
    margin-bottom: 0;
}

.city-search-list .item, .likeItem {
    width: 100%;
}

.city-search-list .item em, .likeItem em {
    color: #ed4563;
}

.city-search-list .item .airport, .likeItem .airport {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #3e454f;
}

.city-search-list .item .name, .likeItem .name {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.city-search-list .item .position, .likeItem .position {
    color: #999;
    font-size: .75rem;
}

.URL-search-title {
    padding-left: 16px;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.75rem;
}

.URL-cursor{
    position: absolute;
    margin-left: calc(0.5rem + 1px);
    margin-top: 0.25rem;
    border: 1px solid #575c86;
    height: 2.175rem;
    display: none;
}

.URL-input:focus{
    touch-action: none;
    -ms-touch-action: none;
    -webkit-touch-callout: none;
}

.board-search-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: .5rem 1rem;
}

.board-search-box .action {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 5rem;
    flex: 0 1 5rem;
    height: auto;
    margin-left: .5rem;
}

.popup {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: contents;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
}

.popup .content-box {
    width: 100%;
    height: 100%;
}

.popup-header {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .04);
}

.popup-header .popup-title, .popup-header .page-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 42px;
    margin: 0;
    background-color: #6b86ca;
    font-size: 1.125rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.popup-header .popup-title {
    color: #fff;
    background: #575c86;
}

.popup-header .back, .popup-header .util, .popup-header .close, .popup-header .share {
    position: absolute;
    top: 0;
    width: 42px;
    height: 42px;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.popup-header .close {
    left: 0;
    background-image: url('/common/images/popup_close_w.svg');
}

.popup-header .share {
    right: 0;
    background-image: url('/common/images/icon_share.svg');
}

.popup-header .back {
    left: 0;
    background-image: url('/common/images/icon_back.svg');
}

.popup-header .util {
    right: 0;
    background-image: url('/common/images/icon_setting.svg');
}

.popup-content {
    position: fixed;
    top: 42px;
    left: 0;
    overflow-y: auto;
    width: 100%;
}

.popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.popup-alert {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    width: 320px;
    min-height: 185px;
    padding: 1.5rem 1rem;
    border-radius: .5rem;
    background: var(--white);
}

.popup-alert_header {
    text-align: center;
    font-size: 1.125rem;
}

.popup-alert_content {
    position: relative;
    padding: 1rem 0;
}

.login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: calc(100vh - 3rem);
    padding-bottom: 3rem;
    text-align: center;
    /*background: #575c86 url('/common/images/bg.png') no-repeat center top 0;*/
    background-color: #6b86ca;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.login .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 170px;
    height: 170px;
    margin: 4rem 0;
    text-indent: -9999px;
    color: #fff;
    background: url('/common/images/logo.png') no-repeat center center/contain;
    font-size: 4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*-webkit-filter: drop-shadow(2px 4px 6px #323550);*/
    /*filter: drop-shadow(2px 4px 6px #323550);*/
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-box {
    max-width: 230px;
    color: #fff;
}

.login-box span {
    display: inline-block;
}

.login-sns button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: .5rem;
    padding: .75rem;
    text-align: left;
    color: #222;
    background: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login-sns .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    background-repeat: no-repeat;
    background-position: center center;
}

.login-sns .icon.google {
    background-image: url('/common/images/login_google.png');
}

.login-sns .icon.facebook {
    background-image: url('/common/images/login_facebook.png');
}

.login-sns .icon.kakao {
    background-image: url('/common/images/login_kakao.png');
}

.login-sns .icon.naver {
    background-image: url('/common/images/login_naver.png');
}

.login-sns .icon.apple {
    background-image: url('/common/images/login_apple.png');
}

.info-message {
    padding: 1rem;
    text-align: center;
    color: #3e454f;
    border-radius: .5rem;
    background: #fff;
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
    font-size: 1rem;
}

.info-message button {
    margin-top: 1rem;
    padding: .5rem;
    color: #fff;
    background: #eb5757;
}

.no-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(0%, #575c86), to(#6b86ca));
    background: linear-gradient(0, #575c86 0%, #6b86ca 100%);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.no-page .error-message {
    margin-top: 2rem;
    font-size: 1rem;
}

.no-page .go-main {
    margin-top: 2rem;
    text-decoration: underline;
    color: #fff;
}

.no-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem;
    color: #a3a3a3;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.no-data:only-child {
    height: calc(100vh - 115px);
}

.no-data .icon {
    display: block;
    width: 45px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 1rem;
    background: url('/common/images/no_data.svg') no-repeat center center;
}

.no-data .back-button {
    margin-top: 0.5rem;
    background: #eb5757;;
    box-shadow: 0 4px 14px rgb(0 0 0 / 10%);
    color: var(--white);
}

.terms {
    padding: 1rem;
    background: #fff;
}

.terms .title {
    color: #3e454f;
    font-size: 1rem;
}

.terms-box {
    width: 100%;
    margin: 1rem 0;
    font-weight: 300;
    line-height: 1.75;
}

.terms-box h2, .terms-box h3, .terms-box h4 {
    color: #222;
    font-weight: 500;
}

.terms-box p {
    margin: .5rem 0;
}

.terms-box ol, .terms-box ul {
    margin: .5rem 0;
    padding-left: 1.5rem;
}

.terms-box ol li {
    list-style-type: decimal;
}

.terms-box ul li {
    list-style-type: disc;
}

.terms-go:disabled {
    background: #999;
}

.setting {
    width: 100%;
}

.setting-menus:first-child {
    margin-top: 1rem;
}

.setting-menus .menus-title {
    padding: 1rem 1rem 0;
    color: #999;
    font-size: .875rem;
    font-weight: 500;
}

.setting-menu {
    position: relative;
    padding: 1rem;
    border-top: 1px solid #ddd;
    background: #fff;
}

.setting-menu:last-child {
    border-bottom: 1px solid #ddd;
}

.setting-menu .title {
    margin: 0;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
}

.setting-menu .desc {
    width: 75%;
    color: #a3a3a3;
}

.setting-menu .desc p {
    display: inline-block;
}

.setting-menu .desc p:first-child {
    padding-right: 15px;
}

.setting-menu .set {
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.setting-menu .set a {
    color: #eb5757;
}

.setting-menu .link {
    display: block;
    overflow: hidden;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background: url('/common/images/icon_arrow_next.svg') no-repeat right 0 top 50%/10px;
}

.logout {
    color: #eb5757;
    border: 1px solid #d4d4d4;
    background: #fff;
}

.logout-outer {
    padding: 0rem;
}

.logout-outer .logout-box {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    justify-content: space-between;
}

.logout-outer .logout-box span {
    width: 70px;
    text-align: center;
    color: #c0c0c0;
    border: 1px solid #c0c0c0;
    border-radius: 15px;
    line-height: 25px;
}

.buy-outer {
    padding: 1rem;
}

.buy-outer .title {
    margin-bottom: 0;
    padding-bottom: .5rem;
    color: var(--normal);
    border-bottom: 1px solid var(--g06);
    font-size: 1.375rem;
}

.buy-outer .title small {
    color: var(--g03);
    font-size: .75rem;
}

.buy-outer .ticket-box {
    display: inline-block;
    width: 100%;
    margin: 1rem 0;
}

.buy-outer .ticket-box .ticket-check.on .ticket-box_l {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    background-color: var(--action-form);
}

.buy-outer .ticket-box .ticket-check.on .ticket-box_r {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
    background-color: var(--action-form);
}

.buy-outer .ticket-box_group {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 285px;
    height: 120px;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
}

.buy-outer .ticket-box_l, .buy-outer .ticket-box_r {
    display: block;
    height: 120px;
}

.buy-outer .ticket-box_l {
    position: relative;
    overflow: hidden;
    width: 54px;
    border-radius: 1rem 0 0 1rem;
    background: url(/common/images/sale_ticket_line.svg) no-repeat center left 50px;
    background-color: var(--action);
}

.buy-outer .ticket-box_l span {
    position: absolute;
    top: 50px;
    left: -30px;
    width: 110px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    color: var(--white);
    font-size: .875rem;
}

.buy-outer .ticket-box_r {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 230px;
    border-radius: 0 1rem 1rem 0;
    background: url(/common/images/sale_ticket_line.svg) no-repeat center left -3px;
    background-color: var(--action);
}

.buy-outer .ticket-box .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding-right: 1.25rem;
    text-align: right;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.3;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.buy-outer .ticket-box .info span {
    font-size: 1.8rem;
}

.buy-outer .ticket-box .info span small {
    margin-left: .25rem;
    font-size: 1rem;
}

.buy-outer .payment {
    margin-bottom: 2rem;
}

.buy-outer .payment table {
	color: var(--normal);
    border-bottom: 1px solid var(--g08);
}

.buy-outer .payment table th, .buy-outer .payment table td {
    padding: .5rem;
}

.buy-outer .payment table th {
    text-align: left;
}

.buy-outer .payment table th.thv {
    vertical-align: top;
}

.buy-outer .payment table td {
    text-align: right;
}

.buy-outer .payment table tr {
    border-top: 1px solid var(--g08);
}

.buy-outer .payment .cash-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    margin-top: .25rem;
    border: 1px solid var(--g07);
    border-radius: .5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.buy-outer .payment .cash-box_cash {
    width: 199%;
    margin-right: .5rem;
    color: var(--secondary);
    font-size: .875rem;
}

.buy-outer .payment .cash-box_cash .cash-input {
    width: calc(100% - 1rem);
    height: 100%;
    text-align: right;
    vertical-align: baseline;
    color: var(--secondary);
    border: none;
    font-size: 1rem;
    line-height: 1;
}

.buy-outer .payment .cash-box_cash + button {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 4.5rem;
    flex: 1 0 4.5rem;
    width: 4.5rem;
    padding: .75rem 0;
    color: var(--g04);
    border-left: 1px solid var(--g07);
    border-radius: 0;
    background-color: transparent;
}

.buy-outer .payment .tickte-info {
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.3;
}

.buy-outer .payment .tickte-info small {
    font-size: .75rem;
}

.buy-outer .payment .payment-detail th, .buy-outer .payment .payment-detail td {
    padding-top: 2rem;
}

.buy-outer .payment .payment-detail td {
	color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: bold;
}

.buy-outer .payment .payment-detail td small {
    font-size: .875rem;
}

.buy-outer .payment .payment-detail_box {
    background-color: var(--g09);
}

.buy-outer .payment .payment-detail_box th, .buy-outer .payment .payment-detail_box td {
    padding: .25rem .5rem;
    border-color: var(--g08);
    font-weight: normal;
}

.buy-outer .payment .payment-detail_box.first {
    border-top: 1px solid var(--g07);
}

.buy-outer .payment .payment-detail_box.last {
    border-bottom: 1px solid var(--g07);
}

.buy-outer .checkbox {
    width: 160px;
    margin: 1rem auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.buy-outer .checkbox .checkbox-label {
    margin-right: unset;
    padding-left: .5rem;
    padding-left: unset;
    line-height: 1.6;
}

.buy-outer .checkbox .title {
    padding-bottom: 0;
    color: var(--primary-dark);
    border: none;
    font-size: .875rem;
}

.buy-outer .buy-important {
    margin-top: 1.5rem;
    color: var(--normal);
}

.buy-outer .buy-important ul {
    margin-top: .5rem;
    padding-left: 1.5rem;
}

.buy-outer .buy-important li {
    list-style-type: disc;
    color: var(--g01);
    font-size: .75rem;
}

.checkbox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.checkbox .checkbox-input, .setting-menu.pushYn .checkbox-input{
    width: 0;
    height: 0;
    opacity: 0;
}

.checkbox .checkbox-input + .checkbox-label::after, .setting-menu.pushYn .checkbox-input + .checkbox-label::after {
    content: none;
}

.checkbox .checkbox-input:checked + .checkbox-label::after, .setting-menu.pushYn .checkbox-input:checked + .checkbox-label::after {
    content: '';
}

.checkbox .checkbox-input:focus + .checkbox-label::before, .setting-menu.pushYn .checkbox-input:focus + .checkbox-label::before  {
    outline: #3b98fc auto 1px;
}

.checkbox .checkbox-input:checked + .checkbox-label::before, .setting-menu.pushYn .checkbox-input:checked + .checkbox-label::before {
    border-color: #575c86;
    background-color: #fff;
}

.checkbox .checkbox-label {
    display: inline-block;
    margin-right: .5em;
    padding-left: 1.8em;
    cursor: pointer;
    line-height: 1.5em;
}

.checkbox .checkbox-label-no-margin {
    display: inline-block;
    margin-right: 0px !important;
    padding-left: 1.8em;
    cursor: pointer;
    line-height: 1.5em;
}

.checkbox .checkbox-label::before, .checkbox .checkbox-label::after{
    position: absolute;
    display: inline-block;
    content: '';
}

.checkbox .checkbox-label::before {
    top: 3px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #3e454f;
    border-radius: 2px;
    background-color: #fff;
}

.checkbox .checkbox-label::after {
    top: 7px;
    left: 3px;
    width: 10px;
    height: 4px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: 2px solid #3e454f;
    border-left: 2px solid #3e454f;
}

.setting-menu.pushYn .checkbox-label::before, .setting-menu.pushYn .checkbox-label::after{
    position: absolute;
    display: inline-block;
    content: '';
}

.setting-menu.pushYn .checkbox-label::before{
    top: 1px;
    left: -14px;
    width: 16px;
    height: 16px;
    border: 1px solid #3e454f;
    border-radius: 2px;
    background-color: #fff;
}

.setting-menu.pushYn .checkbox-label::after {
    top: 5px;
    left: -10px;
    width: 10px;
    height: 4px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: 2px solid #3e454f;
    border-left: 2px solid #3e454f;
}

.last-search-line{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.radiobox {
    position: relative;
    display: inline-block;
    margin: 5px 0;
}

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

.right-radiobox-inner {
    display: inline-block;
    position: relative
}

.radiobox .radiobox-input{
    width: 0;
    height: 0;
    opacity: 0;
}

.radiobox .radiobox-input + .radiobox-label::after{
    content: none;
}

.radiobox .radiobox-input:checked + .radiobox-label::after{
    content: '';
}

.radiobox .radiobox-input:focus + .radiobox-label::before  {
    outline: #3b98fc auto 1px;
}

.radiobox .radiobox-input:checked + .radiobox-label::before {
    border-color: #575c86;
    background-color: #fff;
}

.radiobox .radiobox-label {
    display: inline-block;
    margin-right: .5em;
    padding-left: 1.8em;
    cursor: pointer;
    line-height: 1.5em;
}

.radiobox .radiobox-label::before, .radiobox .radiobox-label::after{
    position: absolute;
    display: inline-block;
    content: '';
}

.radiobox .radiobox-label::before {
    top: 3px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #3e454f;
    border-radius: 2px;
    background-color: #fff;
}

.radiobox .radiobox-label::after {
    top: 7px;
    left: 3px;
    width: 10px;
    height: 4px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: 2px solid #3e454f;
    border-left: 2px solid #3e454f;
}

.switchbox {
    position: relative;
    height: 28px;
    border-radius: 20px;
    background: #c4c4c4;
}

.switchbox .checkbox {
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 28px;
    margin: 0;
    opacity: 0;
}

.switchbox .checkbox:checked + .switch [class^='inner-']:first-child {
    z-index: 0;
    color: #eb5757;
    border-color: #eb5757;
    background: #eb5757;
}

.switchbox .checkbox:checked + .switch [class^='inner-']:first-child::before {
    position: absolute;
    top: -1px;
    left: 10px;
    display: block;
    width: 100%;
    height: 28px;
    content: '';
    background: #eb5757;
}

.switchbox .checkbox:checked + .switch [class^='inner-']:not(:first-child) {
    z-index: 1;
    border-color: #eb5757;
    background: #fff;
}

.switchbox .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 20px;
}

.switchbox .switch [class^='inner-'] {
    position: absolute;
    z-index: 1;
    top: 0;
    min-width: 28px;
    height: 100%;
    padding: 0 3px;
    border: 1px solid #c4c4c4;
    border-radius: 20px;
    background: #fff;
    line-height: 28px;
}

.switchbox .switch [class^='inner-']:not(:first-child) {
    z-index: 0;
    right: 0;
    color: #fff;
    border-color: #c4c4c4;
    background: #c4c4c4;
}

.select {
    position: relative;
    display: inline-block;
    padding-left: 1.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select select {
    border: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 1.25rem;
    height: 1.5rem;
    content: '';
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: .5;
    background: url('/common/images/icon_arrow_b.svg') no-repeat center right/12px;
}

.search-engine select[name='search-engine'] {
    margin-bottom: 1rem;
    padding: 8px;
    color: #575c86;
    border: 1px solid #d4d4d4;
    border-radius: .5rem;
    background: #fff url('/common/images/icon_trangle_b.svg') no-repeat center right 1rem;
    font-weight: 700;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.buttons-half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.buttons-half button:nth-child(2n) {
    margin-left: 10px;
}

/* 2021-02-22 곽은빈 추가 (개인정보 취급방침) */
.pp-title {
    text-align: center;
}

.pp-title p {
    font-weight: bold;
    font-size: 1.2rem;
}

.termstit {
    font-weight: bold;
}

.pp-td-center {
    text-align: center;
}

.pp-td-over {
    font-size: 0.8rem;
    padding: 5px;
}

/* setting */
#purchase {
    margin-top: 10px;
}

/* terms */
.trems-main {
    width: 100%;
}

.termsTitle {
    font-size: 1.6rem;
    margin: auto;
    text-align: center;
    font-weight: bold;
}

.termsContent {
    width: 100%;
    height: 400px;
    border: 1px solid #C2C2C2;
    border-radius: 6px;
    overflow: scroll;
    padding: 6px;
}

.contentTitle {
    font-size: 1.4rem;
    font-weight: bold;
}

#sns-schedule-detail-item {
    margin-bottom: 1rem;
}

/* 2021-03-15 Point 페이지 style 추가*/
.points {
    background: #fcfcfc;
    width: 100%;
}


.point-detail {
    width: 95%;
    margin: auto;
    margin-top: 40px;
    border-radius: 15px;
    height: 200px;
    position: relative;
}

.point-detail .point-line {
    position: absolute;
    border: 1px solid #c4c4c4;
    height: 80px;
    top: 45%;
    left: 48.5%;
}

.myPoint {
    width: 90%;
    height: 80px;
    text-align: left;
    margin: auto;
    display: flex;
    flex-direction: column;

}

.myPoint span:nth-child(1) {
    font-size: 1.2rem;
    font-weight: 700;
    word-spacing: -1px;
    margin-top: 15px;
    color: #686868;
}

.myPoint span:nth-child(2) {
    font-size: .9rem;
    font-weight: 400;
    word-spacing: -1px;
    color: #686868;
}


.myPoint-info {
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: row;
}

.myPoint-info div {
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    height: 90px;
    padding-top: 15px;
}


.myPoint-info div p:nth-child(1) {
    font-size: .8rem;
    color: #6b86ca;
}

.myPoint-info div p:nth-child(2) {
    font-size: 1.4rem;
    color: #686868;
}


.dateSelectBox {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 40px;
    margin-bottom: 10px;
    text-align: right;
    padding-right: 5px;
}

.dateSelectBox .date-select {
    width: 85px;
    height: 35px;
    margin-left: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    background-color: #fff;
    color: #474747;
}

.dateSelectBox .date-select:nth-child(2) {
    margin-right: 5px;
}

.dateSelectBox a {
    width: 35px;
    background-color: #6b86ca;
    border-radius: 100px;
}

.dateSelectBox a img {
    margin-top: 8px;
    margin-right: 8px;
    width: 18px;
}

.point-chart {
    width: 100%;
    margin: auto;
    margin-bottom: 15px;
}


.pointBox {
    width: 100%;
    padding-top: 8px;
    color: #474747;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 30px;
}

.pointBox .point-content-intr {
    width: 85%;
    margin: auto;
    color: #686868;
    font-weight: 400;
}

.pointBox p {
    font-size: .75rem;
}

.pointBox p:nth-child(1) {
    margin-top: 15px;
    margin-bottom: 5px;
}

.pointBox .point-content-intro {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    margin-bottom: 5px;
}

.pointBox div p {
    font-size: .6rem;
    margin-bottom: 3px;
}

.pointBox div .pl {
    margin-bottom: 15px;
}

.point-search-titleBox {
    margin: auto;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.point-search-titleBox .point-search-contentBox {
    border-radius: 10px;
    margin: 0 auto 0;
    margin-top: 10px;
    width: 90%;
    display: flex;
    flex-direction: row;
}

.point-search-titleBox .point-search-contentBox li {
    list-style: none;
    height: 30px;
}

.point-search-titleBox .point-search-contentBox li:nth-child(1) {
    margin-top: 10px;
}

.point-search-titleBox .point-search-contentBox .point-search-name {
    width: 75%;
    font-size: .8rem;
    padding-left: 5%;
    font-weight: 50;
}

.point-search-titleBox .point-search-contentBox .point-search-name li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    word-spacing: -1px;
}

.point-search-titleBox .point-search-contentBox .point-search-name li p {
    float: left;
    padding-right: 5px;
    color: #686868;
}

.point-search-titleBox .point-search-contentBox .point-search-name li a {
    color: #583dba;
}

.point-search-titleBox .point-search-contentBox .pont-search-price {
    width: 25%;
    text-align: center;
    font-size: .9rem;
    font-weight: 700;
    color: #6b86ca;
}

#chart_div {
    margin-top: 10px;
}


.point-total-titleBox .point-total-title {
    width: 90%;
    margin: auto;
    height: 40px;
    line-height: 40px;
    margin-top: 15px;
    text-align: center;
    /*
    background-color: #6b86ca;
    border-right: 1px solid #6b86ca;
    border-left: 1px solid #6b86ca;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    */

    border: 2px solid #6b86ca;
    border-radius: 30px;
    color: #6b86ca;
}

.chartBox {
    margin-bottom: 20px;
}

.point-content-line {
    background-color: #6b86ca;
    border-radius: 5px;
    width: 95%;
    font-size: 1.2rem;
    margin: auto;
    height: 40px;
    line-height: 40px;
    color: #fcfcfc;
    padding-left: 5px;
}

/* 2021. 03. 19 settings 추가 (곽은빈)*/
.setting-menus .season-ticket .seasonTicketBox {
    font-size: 1rem;
}

.setting-menus .season-ticket .seasonTicketBox .sstTitle {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #575c86;
    color: #fff;
}

.setting-menus .season-ticket .seasonTicketBox .sstContentBox {
    padding-top: 10px;
    padding-bottom: 5px;
    border-left: 1px solid #575c86;
    border-right: 1px solid #575c86;
    border-bottom: 1px solid #575c86;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.setting-menus .season-ticket .seasonTicketBox .sstTitle p {
    padding-left: 5px;
}


.setting-menus .season-ticket .seasonTicketBox .sstT .sstT-line {
    width: 95%;
    margin: auto;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 5px;
}

.setting-menus .season-ticket .seasonTicketBox .sstT p {
    padding-left: 5px;
    font-size: .9rem;
    color: #575c86;
}

.setting-menus .season-ticket .seasonTicketBox .sstT p:nth-child(2) {
    margin-bottom: 10px;
}

.setting-menus .season-ticket .seasonTicketBox .sstF {
    color: #575c86;
    line-height: 40px;
}

.setting-menus .season-ticket .seasonTicketBox .sstF div:nth-child(1) {
    padding-left: 5px;
}

.buyCaution {
    padding-left: 5px;
    line-height: 25px;

}

.setting-menus .setting-email div p {
    padding-left: 3px;
    margin-bottom: 5px;
}

.setting-menus #buy-prod {
    color: #fff;
    background-color: #575c86;
    border-radius: 8px;
    width: 100%;
    margin: 0 auto 0;
    margin-top: 15px;
    padding: 0;
    text-align: center;
}

.setting-menus .buy-btn-style {
    color: #fff;
    background-color: #575c86;
    border-radius: 8px;
    width: 98%;
    margin: 10px auto auto;
    text-align: center;
    height: 40px;
}

.setting-menus .buy-btn-style a {
    color: #fff;
    text-decoration: none;
    line-height: 40px;
    display: block;
}

.setting-menus #buy-prod a {
    display: block;
    color: #fff;
    text-decoration: none;
}

.cash-mng {
    width: 90%;
    height: 30px;
    text-align: left;
    margin: auto;
}

.cash-mng span{
    font-size: .9rem;
    font-weight: 400;
    word-spacing: -1px;
    color: #686868;
}

.buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.href-btn-style {
    color: #fff;
    background-color: #575c86;
    border-radius: 8px;
    margin: 10px;
    text-align: center;
    height: 40px;
    width: calc(30% - 20px);
    display: flex;
    justify-content: center;
}

.href-btn-style a {
    color: #fff;
    background-color: inherit;
    text-decoration: none;
    line-height: 40px;
    border-radius: inherit;
    flex-grow: 1;
    margin: 0 10px;
}

/* 2021. 03. 19 구독권 구매 추가 (곽은빈)*/

.prod {
    background: #fcfcfc;
    width: 100%;
}

.prod-title {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.prod-title .text-box {
    text-align: left;
    margin-top: 30px;
    color: #696969;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.6rem;
    word-spacing: -3px;
}

.prod-title .text-box2 {
    text-align: left;
    color: #696969;
    border-radius: 20px;
    font-weight: 400;
    font-size: .8rem;
    margin-left: 2px;
}

.prod-title .text-line {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
}


.prdt-radio {
    display: inline-block;
    width: 90%;
    margin: auto;
    height: 150px;
    font-size: 30px;

    border: 2px solid transparent;
    border-radius: 10px;

    background: linear-gradient(#fcfcfc, #fcfcfc), linear-gradient(to top, #cecece 0%, #cecece 52%, #cecece 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;


    margin-bottom: 10px;
    display: flex;
    align-items: center;

}

.prod-contents {
    display: flex;
    flex-direction: column;
    width: 70%;
    text-align: right;
    margin: 0 0 0 auto;
    padding-right: 18px;
}

.prdt-radio span {
    font-size: 12px;
    background-image: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.prdt-radio .prtd-content-title {
    font-size: 1.2rem;
    font-weight: 600;

    background: linear-gradient(#eb5757, #eb5757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.prdt-radio .prodPrice {
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 25px;
    height: 35px;
    line-height: 30px;
    margin: 0 0 0 auto;
    padding-left: 3px;
    padding-right: 3px;
    text-align: right;

    background-image: linear-gradient(-20deg, #2b5876 0%, #4e4376 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;

}


.prdt-radio:before {
    content: "";
    height: 30px;
    width: 30px;

    border: 2px solid transparent;
    background: linear-gradient(#fcfcfc, #fcfcfc), linear-gradient(to top, #eb5757 0%, #eb5757 52%, #eb5757 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;

    margin-left: 10px;
    border-radius: 50%;
}


.prdt-radio-disable.prdt-radio:before {
    background: linear-gradient(#fcfcfc, #fcfcfc), linear-gradient(to top, #cecece 0%, #cecece 52%, #cecece 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.prod-line {
    border-right: 2px dotted #cecece;
    width: 15%;
    height: 100%;
}

.radio-input {
    display: none;
}


.radio-input:checked + .prdt-radio {
    background-image: linear-gradient(to top, #cecece 0%, #cecece 52%, #cecece 100%);
}

.radio-input:checked + .prdt-radio:before {
    height: 30px;
    width: 30px;
    background-image: url("/common/images/free-icon-check-mark.svg");
    border: 2px solid #eb5757;
    white-space: nowrap;
}

.radio-input:checked + .prdt-radio {
    border: 2px solid #fff;
    color: #fff;
}

.radio-input:checked + .prdt-radio span {
    background: linear-gradient(#fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.prodinfo {
    width: 90%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #5e5e5e;
}

.prodinfo li {
    font-size: .6rem;
}

.prodinfo li:nth-child(1) {
    margin-bottom: 5px;
    font-size: 1rem;
}

.buy-btn {
    margin-top: 25px;
    text-align: center;
}

.buy-btn button {
    width: 90%;
    height: 40px;
    text-align: center;
    background-color: #eb5757;
    color: #fff;
}

.ckBox {
    width: 88%;
    height: 40px;
    margin: auto;
}

.ckBox .prod-ck {
    display: flex;
    flex-direction: row;
}

.ckBox .prod-ck .checkbox {
    margin: 0;
    padding: 0;
    margin-top: 3px;
}

.ckText {
    width: 140px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #eb5757;
    border-radius: 10px;
    text-align: center;
    color: #eb5757;
    margin: 0 0 0 auto;
    display: none;
}

.cashTrhBox {
    border: 1px solid #cecece;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 20px;
}

.cashTrhBox table tr {
    height: 35px;
}

.cashTrhBox th:nth-child(1) {
    border-bottom: 1px solid #cecece;
    border-right: 1px solid #cecece;
    width: 30%;
}

.cashTrhBox th:nth-child(2) {
    border-right: 1px solid #cecece;
    border-bottom: 1px solid #cecece;
    width: 40%;
}

.cashTrhBox th:nth-child(3) {
    border-left: 1px solid #cecece;
    border-bottom: 1px solid #cecece;
    width: 30%;
}


.cashTrhBox td:nth-child(1),
.cashTrhBox td:nth-child(2) {
    border-right: 1px solid #cecece;
}

.cashTrhBox td:nth-child(3) {
    border-left: 1px solid #cecece;
}

.cashTrhBox tr td {
    font-size: .8rem;
}

.prod-content-name {
    color: #eb5757;
}

/* 2021-04-01 탈퇴페이지 추가 (곽은빈) */
.deleteAcount {
    width: 100%;
    background-color: #fcfcfc;
}

.deleteAcount .container {
    width: 100%;
}

.deleteAcount .delete-userInfo {
    width: 90%;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.deleteAcount .delete-userInfo .delete-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 10px;
    color: #4b4b4b;
}

.deleteAcount .delete-userInfo .delete-cash,
.deleteAcount .delete-userInfo .delete-prod {
    display: flex;
    flex-direction: column;
    width: 50%;
    font-size: 1.2rem;
    font-weight: 700;
}

.deleteAcount .delete-userInfo .delete-cash p,
.deleteAcount .delete-userInfo .delete-prod p {
    text-align: center;
}

.deleteAcount .delete-userInfo .delete-cash p:nth-child(1),
.deleteAcount .delete-userInfo .delete-prod p:nth-child(1) {
    font-size: .9rem;
    font-weight: 400;
    color: #eb5757;
}

.deleteAcount .delete-userInfo .userName {
    font-size: 1.5rem;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 5px;
    padding-bottom: 5px;
    color: #4b4b4b;
}

.deleteAcount .delete-userInfo .delete-cash {
    margin-bottom: 10px;
}

.deleteAcount .delete-select-box {
    text-align: center;
    margin-bottom: 20px;
}

.deleteAcount .delete-select-box select {
    width: 90%;
    height: 50px;
    border-radius: 5px;
    border-color: #dfdfdf;
    background-color: #fff;
}

.deleteAcount .delete-select-box .delete-select-text-box {
    margin-top: 20px;
}

.deleteAcount .delete-select-box .delete-select-text-box textarea {
    width: 88%;
    height: 100px;
    padding: 1%;
    border-radius: 5px;
    border-color: #dfdfdf;
    background-color: #fff;
}

.deleteAcount .delete-info {
    margin: auto;
    margin-bottom: 50px;
    width: 90%;
}

.deleteAcount .delete-info li {
    font-size: .7rem;
    font-weight: 400;
    margin-top: 4px;
    color: #909090;
}

.deleteAcount .delete-info li:nth-child(1) {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #dfdfdf;
    color: #2f2f2f;
}

.deleteAcount .delete-check-box .delete-check-box {
    width: 95%;
    margin: auto;
}

.deleteAcount .delete-check-box .delete-check-box span {
    font-size: .8rem;
    font-weight: 400;
    word-spacing: -px;
    color: #2f2f2f;
}

.deleteAcount .delete-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
}

.deleteAcount .delete-btn-layoutT {
    cursor: pointer;
    width: 47.5%;
    height: 40px;
    line-height: 40px;
    margin: auto;
    text-align: center;
    background-color: #dddddd;
    border-radius: 5px;
}

.deleteAcount .delete-btn-layoutF {
    cursor: pointer;
    width: 47.5%;
    height: 40px;
    line-height: 40px;
    margin: auto;
    text-align: center;
    background-color: #298fe9;
    color: #fff;
    border-radius: 5px;
}

.deleteAcount .delete-btn a {
    text-decoration: none;
    display: block;
    color: #808080;
}

.deleteAcount .delete-btn-layoutF a {
    color: #fff;
}

/* 2021.04.07 구매페에지 약관 팝업 추가 (곽은빈) */


.terms-info-view {
    width: 90%;
    font-size: 1rem;
    margin: auto;
    margin-top: 15px;
    text-align: center;
}

.terms-info-view .terms-info-view-box {
    border: 1px solid #888888;
    border-radius: 15px;
    width: 90px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.terms-info-view a {
    color: #888888;
    text-decoration: none;
    font-weight: 400;
}

.trems-ckBox {
    width: 88%;
    margin: auto;
    margin-top: 20px;
}


.termsInfo b {
    font-size: .9rem;
}


.trems-ckBox .termsInfo a {
    font-size: 1rem;
}

.popup-terms {
    background-color: #fff;
    color: black;
    text-align: left;
}

/* 2021.04.08 개인정보 추가 (곽은빈) */

.perInfo {
    width: 100%;
    background-color: #fff;
}

.perInfo .container {
    width: 100%;
}

.perInfo .perInfo-img-box {
    margin: 70px auto 80px;
    text-align: center;
}

.perInfo .perInfo-img-box img {
    width: 50%;
    image-rendering: -webkit-optimize-contrast;
}

.perInfo .perInfo-text-title {
    margin: auto;
    width: 90%;
    font-weight: 900;
    font-size: 1.1rem;
    color: #434343;
}

.perInfo .perInfo-text-title-line {
    margin: auto;
    margin-top: 5px;
    margin-bottom: 2px;
    width: 90%;
    border-bottom: 2px solid #e7e7e7;
}

.perInfo .perInfo-text-box {
    margin: auto;
    margin-bottom: 20px;
    width: 90%;
}

.perInfo .perInfo-text-box p {
    font-size: 1rem;
    color: #434343;
    margin-bottom: 5px;
}

.perInfo .perInfo-text-box span {
    font-size: 1rem;
    color: #434343;
    margin-bottom: 5px;
}

.perInfo .perInfo-text-box .snsType {
    font-weight: 900;
}


.web-perInfo {
    width: 100%;
    margin-top: 10px;
}

.web-perInfo .perInfo-text-title {
    margin: auto;
    font-weight: 900;
    font-size: 1.1rem;
    color: #434343;
}

.web-perInfo .perInfo-text-title-line {
    margin: auto;
    margin-top: 5px;
    margin-bottom: 2px;
    border-bottom: 2px solid #e7e7e7;
}

.web-perInfo .perInfo-text-title {
    margin: auto;
    font-weight: 900;
    font-size: 1.1rem;
    color: #434343;
}

.web-perInfo .perInfo-text-box p {
    font-size: 1rem;
    color: #434343;
    margin-bottom: 5px;
}

.web-perInfo .perInfo-text-box span {
    font-size: 1rem;
    color: #434343;
    margin-bottom: 5px;
}

.web-perInfo .perInfo-text-box .snsType {
    font-weight: 900;
}

.perInfo .withdraw-btn {
    margin: auto;
    width: 90%;
    height: 40px;
    line-height: 40px;
    background-color: #dddddd;
    text-align: center;
    border-radius: 5px;
}

.perInfo .withdraw-btn a {
    text-decoration: none;
    display: block;
    font-size: .9rem;
    color: #808080;
}

.skImgs {
    position: absolute;
    z-index: 100;
    top: 0%;
    width: 100%;
    height: 100%;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    text-align: center;

    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 70%), /* highlight */ linear-gradient(lightgrey 100%, transparent 0);

    background-size: 400% 400%;
    animation: Gradient 1s infinite;

}

@keyframes Gradient {
    to {
        background-position: 100% 10px;
    }
}


.point-content-no {
    display: none;
    flex-direction: row;
    width: 90%;
    margin: 0 auto 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.point-content-no li {
    list-style: none;
}

.point-content-no ul:nth-child(1) {
    width: 75%;
    font-size: .8rem;
    padding-left: 5%;
    font-weight: 400;
}

.point-content-no ul:nth-child(2) {
    width: 25%;
}


#snsContent {
    z-index: 5001;
    width: 100%;
    height: 100%;
}

#snsMask {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4999;
    opacity: 0.8;
    background-color: #000;

    width: 100%;
    height: 100%;

}

#snsMaskBtn {
    /*margin:0 auto;*/
    z-index: 5000;
    position: fixed;
    top: 45%;
    right: 20%;
    background-color: #fff;
    width: 60%;
    text-align: center;
    border-radius: 5px;
    height: 200px;
}

#snsMaskBtn h1 {
    margin-top: 50px;
}

#goGoogleStore img, #goAppleStore img {
    width: 200px;
}


/* 2021.04.26 게시판 추가 */
.board-main {
    width: 100%;
    position: relative;
}

.board-detail-main {
    width: 100%;
    background-color: #fff;
}

.board-box {
    width: 100%;

    height: 100%;

    padding: 0;

    margin: 0;

    margin-top: 15px;

    background-color: #fff;
}

.board-select-menu {
    display: flex;

    flex-direction: row;

    justify-content: center;

    width: 90%;

    margin: auto;
}

.board-select-menu a {
    flex-grow: 1;

    text-decoration: none;

    text-align: center;

    font-size: 1.1rem;

    font-family: 900;

    margin-top: 10px;

    margin-bottom: 40px;

    color: #cccccc;
}

.board-select-menu .select-menu {
    color: #404040;

    font-weight: 900;
}

.board-list {
    width: 90%;

    margin: auto;

    position: relative;
}

.board-list-blog {
    width: 90%;

    margin: auto;

    position: relative;

    border-bottom: 1px solid #cccccc;
}

.board-detail {
    margin: auto;

    position: relative;

}

.board-list .board-option {
    display: flex;

    flex-direction: column;

}

.board-list .board-option .board-free-search {

    text-align: left;

    margin: 0 0 0 auto;

    margin-bottom: 10px;

    display: flex;

    flex-direction: row;
}

.board-list .board-option .board-free-search img {
    width: 20px;
    height: 20px;

    margin-top: 5px;
    margin-left: 6px;

}

.board-option .board-free-select {

    text-align: right;

    display: flex;

    flex-direction: row-reverse;

    margin-top: 20px;

    margin-bottom: 5px;

    font-size: .8rem;

}

.board-list .board-option .board-free-search-from {

    display: flex;
    flex-direction: row;
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin: auto;
}


.board-list .board-option .board-free-search-from .freeSearch-img a {
    display: inline-block;

    text-decoration: none;


    width: 35px;
    height: 100%;
}

.board-list .board-option div .freeSearch {
    max-width: 80%;

    height: 30px;

    border: 0;

    font-size: .8rem;

    padding-left: 3px;

    border-right: 1px solid #cccccc;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.board-free-list {
    width: 100%;

    margin: auto;

    display: flex;

    flex-direction: column;


}

.board-free-list .board-free-content {
    border-bottom: 1px solid #cccccc;

    padding-top: 8px;

    padding-bottom: 8px;

    display: block;

    cursor: pointer;
}

.board-free-list .board-free-title {
    display: flex;

    flex-direction: row;

    height: 55px;
}

.board .new-icon {
    font-size: .6rem;
    font-weight: 700;

    line-height: 20px;

    color: #e84349;

    width: 10px;
}

.check-icon {
    font-size: .6rem;
    font-weight: 700;
    line-height: 20px;
    color: #e84349;
    width: 10px;
    margin-left: 0.5rem;
}

.board-free-list .board-free-title .free-title {
    width: 75%;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.board-free-list .board-free-title .free-img
{
     overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60px;
    flex: 1 0 60px;
    max-width: 60px;
    height: 60px;
    margin-left: 1rem;
    border-radius: .5rem;
}
.board-free-list .board-free-title .free-img span{

	display: block;
    width: 55px;
    height: 55px;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}


.board-free-list .board-free-title .free-title span {
    font-size: 1rem;
    line-height: 5px;

}

.board-free-list .board-free-info {
    display: flex;

    flex-direction: row;

    justify-content: space-between;

    margin-top: 3px;

    font-size: .7rem;
}

.board-free-list .board-free-info .board-free-info-left {
    color: #b1b1b1;
}

.board-free-list .board-free-info .board-free-info-right {
    display: flex;

    flex-direction: row;
}

.board-free-list .board-free-info .board-free-info-right img {
    margin-top: 1px;

    width: 15px;

    height: 15px;
}

.board-free-list .board-free-info .board-free-info-right .ticketCnt {
    margin-top: 1px;

    width: 20px;

    height: 15px;
}


.board-free-write .board-free-write-img,
.board-free-write .ticket-list-top {
    position: fixed;

    top: 86%;

    right: 3%;

    width: 70px;

    height: 70px;

    text-align: center;

    background-color: #575c86;

    border-radius: 100%;

    cursor: pointer;

}

.board-free-write .board-free-write-img img {
    margin-top: 13px;

    margin-left: 3px;

    width: 40px;

    height: 40px;
}

.board-detail {
    max-width: 1024px;
}

.board-detail .board-detail-title-box {
    display: flex;
    flex-direction: column;

    margin-top: 10px;

}

.board-detail .board-detail-title-box .board-detail-title span {
    font-size: 1.2rem;
}

.board-detail .board-detail-title-box .board-detail-subTitle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    margin-top: 10px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
}

.board-detail .board-detail-title-box .board-detail-subTitle .board-detail-subTitle-top {
    font-size: .8rem;
    color: #cccccc;
}

.board-detail .board-detail-title-box .board-detail-subTitle .board-detail-sub-left {
    display: flex;
    flex-direction: column;
}

.board-detail .board-detail-title-box .board-detail-subTitle .board-detail-subTitle-left {
    display: flex;
    flex-direction: row;
    line-height: 10px;
    justify-content: space-between;
}

.board-detail .board-detail-title-box .board-detail-subTitle .board-detail-subTitle-left .detail-left span {
    font-size: .7rem;
    color: #cccccc;
}

.board-detail .board-detail-title-box .detail-right {
    display: flex;
    flex-direction: row;

    margin-top: 5px;

}

.board-detail .board-detail-title-box .detail-right img {
    width: 25px;
    height: 25px;

    text-align: center;
}

.board-detail .board-detail-title-box .detail-right p {
    font-size: .8rem;
    line-height: 23px;

    margin-left: 5px;
}

.board-detail .board-detail-img-box {
    width: 100%;

    margin: auto;

    text-align: center;
}

.board-detail .board-detail-img-box .board-detail-img {
    margin-bottom: 5px;
}

.board-detail .board-detail-content {
    text-align: left;
    font-size: .8rem;

    margin-top: 10px;
}

.board-detail .board-detail-content .image {
    max-width: 100%;
    height: auto;
    margin: 0;
    margin-bottom: 10px;

    text-align: center;
}

.board-detail .board-detail-img-box img {
    max-width: 100%;
    height: auto;

    text-align: center;
}

.board-detail .board-detail-btn-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

    margin-top: 20%;
}

.board-detail .board-detail-btn-box div {
    width: 18%;
    height: 25px;
    line-height: 25px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: .7rem;

}

.board-detail .board-detail-btn-box .update-btn {
    background-color: #4fafe7;
    margin-right: 5px;
}

.board-detail .board-detail-btn-box .delete-btn {
    background-color: #e84349;
}

.board-detail .board-detail-btn-box div a {
    display: block;
    height: 30px;
}

.board-detail-comment-box {
    width: 100%;

    margin-top: 20px;

    margin-bottom: 30px;
}

.board-detail-comment-box .board-detail-comment-title {
    font-size: 1rem;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 5px;
}

.board-detail-comment-box .board-detail-comment .board-detail-name {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    justify-content: space-between;
}

.board-detail-name .comment-update-head-box {
    background-color: #fff;
    border-radius: 5px;
    padding-right: 8px;
    padding-left: 8px;
    text-align: center;
    right: 0;
}

.board-detail-name .comment-update-head-box a {
    text-decoration: none;
    color: #00a2e8;
}

.board-detail-comment-box .board-detail-comment {
    display: flex;
    flex-direction: column;

    border-bottom: 1px solid #cccccc;
    padding-bottom: 5px;
}

.detail-comments .comment-box .board-detail-name span {
    font-size: .8rem;
}

.detail-comments .comment-box  .detail-new {

    border-radius: 100%;

    font-size: .6rem;
    font-weight: 700;
    text-align: center;

    width: 15px;
    height: 15px;
    line-height: 13px;

    color: #e84349;

    margin-top: 3px;
    margin-left: 3px;
}

.board-detail-comment-box .board-detail-comment .board-detail-reple {
    white-space: normal;
}

.board-detail-comment-box .board-detail-comment .board-detail-reple span {
    font-size: .8rem;
}

.board-detail-comment-box .board-detail-comment .board-detail-reple-box {
    display: flex;
    flex-direction: row;

    justify-content: space-between;
}

.board-detail-reple-box .board-detail-reple-left,
.board-detail-reple-box .board-detail-reple-right {
    line-height: 15px;
    font-size: .7rem;
}

.board-detail-reple-box .board-detail-reple-left {
    display: flex;
    flex-direction: row;
    color: #8d8d8d;
}

.board-detail-reple-box .board-detail-reple-right {
    display: flex;
    flex-direction: row;
}


.board-detail-reple-box .board-detail-reple-left span {
    margin-right: 7px;
}

.comment-like-box span {
    margin-right: 7px;
}

.comment-like-box a:nth-child(1) {
    margin-right: 1px;
}

.likeT {
    color: #6b86ca !important;
    text-decoration: none;
    font-weight: 700;
}

.board-detail-reple-box .board-detail-reple-right a:nth-child(1) {
    margin-right: 5px;
}

.board-detail-reple-box .board-detail-reple-right a:nth-child(2) {
    color: #e84349;
}

.board-detail-reple-box .board-detail-reple-left .comment-like-box {
    display: flex;
    flex-direction: row;
}

.board-detail-comment-box .board-detail-comment .detail-reple {
    width: 95%;
    margin: 0 0 0 auto;


}

.comment-write {
    margin-top: 10px;
}

.commnet-write-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.comment-write-head-box {
    background-color: #fff;
    border-radius: 5px;

    padding-right: 8px;
    padding-left: 8px;

    margin-top: 10px;
    text-align: center;
    right: 0;
}

.comment-write-head-box a {
    text-decoration: none;
    color: #00a2e8;
}

.board-detail-comment-box .board-detail-comment-none {
    height: 100px;
    line-height: 100px;
    text-align: center;
    color: #cccccc;

    border-bottom: 1px solid #cccccc;
}

.board-detail-comment-box .board-detail-comment .board-detail-comment-text {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

.board-detail-reple-update {
    display: flex;
    flex-direction: row;
    margin-top: 5px;

}

.board-detail-comment-box .board-detail-comment .board-detail-comment-text textarea,
.board-detail-main-comment-box textarea,
.board-detail-reple-update textarea {
    width: 80%;
    border: 1px solid #cccccc;
}

.board-detail-comment-box .board-detail-comment .board-detail-comment-text .main-comment-btn,
.board-detail-main-comment-box .main-comment-btn,
.main-comment-btn {
    width: 20%;
    height: 44px;
    border: 1px solid #cccccc;
    border-left: 0;
    text-align: center;
}

.board-detail-comment-box .board-detail-comment .board-detail-comment-text .main-comment-btn a,
.board-detail-main-comment-box .main-comment-btn a,
.main-comment-btn a {
    display: block;
    line-height: 40px;
    height: 44px;

    font-size: .7rem;
}

.board-detail-main-comment-box {
    margin-top: 5px;
    display: flex;
    flex-direction: row;
}

.deleteComment {
    color: #cccccc;
}

.board-blog-list {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    cursor: pointer;

    border-top: 1px solid #cccccc;

    padding: 5px;
}

.board-blog-list .board-blog-text {
    display: flex;
    flex-direction: column;

    width: 80%;
}

.board-item_text-box{
	width: 80%;
}

.board-blog-list .board-blog-text div:nth-child(1) {
    font-size: 1.2rem;
    font-weight: 400;
    color: #474747;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-blog-list .board-blog-text div:nth-child(2), .board .board-item_cont {
    font-size: .8rem;
    color: #474747;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-blog-list .board-blog-text div:nth-child(3) {
    font-size: .7rem;

    color: #cccccc;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.board-blog-list .board-blog-img img {
    width: 30px;
    height: 30px;

    margin-top: 20px;
}

.board-faq {
    width: 95%;
    margin: auto;

}

.board-faq .board-faq-title {
    font-size: 1.3rem;

    font-weight: 900;

    margin-top: 50px;
}

.board-faq-item-box {


    font-size: .7rem;
    text-align: center;

    width: 100%;

    margin: auto;
}

.board-faq-item-box .board-faq-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.board-faq-item-box .board-faq-item div {
    height: 40px;
}

.board-faq-item-box .board-faq-item div a {
    height: 40px;
    line-height: 40px;
    display: block;
}


.board-faq-item-box .board-faq-item div {
    border: 1px solid #cccccc;
}

.board-faq-item-box .board-faq-item div:nth-child(3n+2) {
    border-left: 0;
    border-right: 0;
}

.board-faq-item-box .board-faq-item div:nth-child(1n+4) {
    border-top: 0;
}

.board-faq-item-box .board-faq-item .select {
    background-color: #585858;
    color: #fff;
}

.board-faq-list {
    border-bottom: 1px solid #cccccc;
}

.board-faq-list .board-faq-info {
    display: flex;
    flex-direction: column;
}

.board-faq-list .board-faq-info .board-faq-line {
    border-bottom: 1px solid #cccccc;
}

.board-faq-list .board-faq-info-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    height: 45px;

    cursor: pointer;
}

.board-faq-list .board-faq-info-item span {
    font-size: 1rem;

    margin-top: 10px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.board-faq-list .board-faq-info-item img {
    width: 15px;
    height: 15px;

    margin-top: 15px;
}

.board-faq-list .board-faq-info .board-faq-info-reple {
    width: 100%;
    min-height: 100px;

    border: 1px solid #cccccc;
    border-radius: 5px;

    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;

    font-size: .8rem;

    display: none;

}

.board-faq-list .board-faq-info .board-faq-info-reple p:nth-child(1) {
    margin-bottom: 10px;

    font-size: .9rem;
}

.board-faq-list .board-faq-info .noFaq {
    margin-top: 90px;
    margin-bottom: 90px;

    font-size: 1.2rem;
    text-align: center;
}


.accordion-item .board
{
	overflow-y:auto;
	max-height: 510px;
}


.board-write-box {
    width: 95%;

    margin: auto;
}

.board-write-box .write-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.board-write-box .board-write-head {
    font-size: 1.5rem;

    height: 55px;
    line-height: 55px;
}

.board-write-box .board-write-title {
    margin-top: 10px;

    display: flex;
    flex-direction: column;
}

.board-write-box .board-write-title .write-text {

    border: 1px solid #cccccc;


    height: 25px;
    line-height: 25px;

    margin-bottom: 5px;
}

.board-write-box .board-write-title .write-category {
    max-width: 80px;

    border: 1px solid #cccccc;
    background-color: #fff;
}

.detail-main-box {
    margin-top: 20px;
}

.ticket-share {
    margin-bottom: 10px;
    border: solid 1px #aadaff;
    border-radius: .5rem;
    position: relative;
}

.detail-main-box .ticket-share-detail {
    margin-top: 10px;
}

.img-del-btn {
    margin-top: 10px;
    text-align: right;

    transform: translateX(-1%);
}

.img-del-btn a {
    text-decoration: none;
    color: #eb5757;
}

.board-write-box .write-box {
    margin-top: 5px;

}

.board-write-box .write-box textarea {
    border: 1px solid #cccccc;

    width: 100%;

    height: 250px;
}

.file-area {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 5px;
}

.add-button, .add-file, .add-img {
    display: inline-block;
}


.add-img, .add-button, .preView {
    margin-top: 10px;
    margin-right: 10px;
    width: 90px;
    height: 90px;
}

.image-area {
    width: 90px;
    height: 90px;
}

.pre-img-box {
    position: relative;
}

.x-mark {
    position: absolute;

    width: 17px;
    height: 17px;

    top: 13%;
    right: 13%;
}

.add-file {
    float: left;
}

.add-img {
    background-image: url(/common/images/empty.png);

    background-size: cover;
}

.add-button-img {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 10px 0;
    background-image: url(/common/images/file-add.png);
}

.add-button {
    background-color: #f4f4f4;
}

.board-write-btn-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

    margin-top: 10px;
}

.board-write-head-box {
    height: 25px;
    line-height: 25px;
    background-color: #fff;
    border-radius: 5px;

    padding-right: 8px;
    padding-left: 8px;

    margin-top: 15px;
    text-align: center;
}

.board-write-head-box a {
    text-decoration: none;
    color: #00a2e8;
}

.board-write-btn-box .board-btn {
    width: 20%;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
}

.board-write-btn-box .board-insert {
    margin-right: 5px;
    background-color: #00a2e8;
}

.board-write-btn-box .board-update {
    margin-right: 5px;
    background-color: #00a2e8;
}

.board-write-btn-box .board-cancle {
    background-color: #eb5757;
}

.name-setting {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.name-setting .name-setting-box {
    background-color: #fff;
    width: 80%;
    height: 150px;
    position: fixed;

    margin: 0 auto;
    top: 35%;
    left: 0;
    right: 0;

    border-radius: 5px;

}

.name-setting .name-setting-box .name-setting-title {
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
}

.name-setting .name-setting-box .name-setting-text {
    text-align: center;
    margin-top: 5px;
}

.name-setting .name-setting-box .name-setting-text input {
    outline: 0;
    border: 1px solid #cccccc;
    border-radius: 5px;

    width: 80%;
    height: 30px;
}

.name-setting .name-setting-box .name-setting-btn {
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;

    margin-top: 30px;
}

.name-setting .name-setting-box .name-setting-btn div {
    width: 25%;
    height: 25px;
    line-height: 25px;

    color: #fff;

    text-align: center;
    border-radius: 5px;
}

.name-setting .name-setting-box .name-setting-btn div:nth-child(1) {
    background-color: #4fafe7;
    margin-right: 5px;

}

.name-setting .name-setting-box .name-setting-btn div:nth-child(2) {
    background-color: #e84349;
    margin-right: 15px;

}

.ticket-share .list-select-item {
    opacity: 0.5;
}

.ticket-share .selectItem {
    opacity: 1;

}

.list-option {
    display: flex;

    flex-direction: row;

    justify-content: center;

    width: 90%;

    margin: auto;
}

.list-option a {
    flex-grow: 1;

    text-decoration: none;

    text-align: center;

    font-size: 1.1rem;

    font-family: 900;

    margin-top: 10px;

    margin-bottom: 10px;

    color: #cccccc;
}

.list-option .selectType {
    color: #474747 !important;


}

.popup.js-list .popup-content {
    scroll-behavior: smooth;
}

.popup-header .top {
    right: 0;
    color: #fff;
    width: 60px !important;
    text-indent: 0px !important;
    position: absolute;
    top: 0;
    border: none;
    background-color: transparent;
}

.js-popupTop .text-area {
    color: #fff;
    margin-top: 10%;
    font-size: 1.875rem;
}

.ticket-delete {
    margin-top: 3%;
    border-radius: 5px;
}

.ticket-delete .ticket-delete-btn {
    color: white;
    background: #808080;
}

.item-airplane-otherInfo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.item-other.post {
    text-align: right;
    display: inline-block;
    margin: 0 0 0 auto;
}

.yhidden {
    overflow-y: hidden;
}

.hide {
    display: none !important;
}

.open-research {
    margin-top: 30px;
    font-size: 10pt;
}

/* 20220403 태그 검색 */
.result-item {position: relative; overflow: hidden; border-radius: 9px; background-color: var(--white); -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .1); box-shadow: 0 4px 14px rgba(0, 0, 0, .1);}
.result-item + .result-item {margin-top: 1rem;}
.result-item_header {padding: 11px 0 14px; text-align: center; color: #8f8f8f; font-weight: 700;}
.result-item_header + .result-item_img {

}
.result-item_header .result-item_title {width: 5rem; margin: 0 auto;}
.result-item_header .result-item_title img {width: 70%;}
.result-item_img img {width: 100%; max-height: 400px;}
.result-item_img.hot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result-item_sub-title {font-size: 1.5rem; font-weight: 700; color: red}
.result-item_infomation {position: absolute; top: 0; left: 0; display: -webkit-box; display: -ms-flexbox; display: flex; flex-direction: column; width: 100%; height: 100%; padding: 1rem 0;-webkit-box-direction: normal; -webkit-box-orient: vertical; -ms-flex-direction: column; }
.result-item_infomation.color-type1 {color: #eb5757;}
.result-item_infomation.color-type2 {color: #72bbff;}
.result-item_infomation.color-type3 {color: #5fd1cc;}
.result-item_title {display: -webkit-box; display: -ms-flexbox; display: flex; align-items: center;-webkit-box-align: center; -webkit-box-flex: 1; -webkit-box-pack: center; -ms-flex-align: center; flex-grow: 1; -ms-flex-pack: center; -ms-flex-positive: 1; justify-content: center; }
.result-item_title + .result-item_title_button-box {-webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.result-item_title-text {color: var(--white); font-size: 1rem; font-weight: 700;}
.result-item_button-box {position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; flex: 1; align-items: flex-end;-webkit-box-align: end; -webkit-box-flex: 1; -webkit-box-pack: center; -ms-flex: 1; -ms-flex-align: end; -ms-flex-pack: center; justify-content: center; }
.result-item_button {width: auto; height: 27px; padding: 3px 21px; color: inherit !important; border: 0 !important;border-radius: 6px; font-size: 14px; }
.result-item_bubble {display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; min-height: 50px; max-height: 152px; margin-bottom: 5px;-webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

.result-item_bubble-text {position: absolute; z-index: 1; display: -webkit-box; display: -ms-flexbox; display: flex; flex-direction: column; height: 4.375rem; text-align: center; color: #43bfb9;-webkit-box-direction: normal; -webkit-box-orient: vertical; -webkit-box-pack: center; -ms-flex-direction: column; -ms-flex-pack: center; justify-content: center; }
.result-item_bubble-caption {font-size: .75rem; font-weight: 700;}

/* 조건 검색  */
.travel-search {-webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .1); box-shadow: 0 4px 14px rgba(0, 0, 0, .1);}
.travel-search_button-box {padding: 1rem; text-align: center;background-color: var(--white); }
.travel-search_button-box button {width: 110px;}

.search-group {text-align: center; color: #3e454f;border-radius: .5rem .5rem 0 0; background: var(--white); font-size: 1rem; }
.search-group ~ .search-group {border-radius: 0;}
.search-group ~ .search-group:last-child {border-radius: 0 0 .5rem .5rem;}
.search-group.active {border-bottom: 1px solid #c4c4c6;}

.search-header {display: -webkit-box; display: -ms-flexbox; display: flex; padding: .5rem;align-items: center; -webkit-box-align: center; -ms-flex-align: center; }
.search-header .search-title {display: -webkit-box; display: -ms-flexbox; display: flex; flex: 0 1 5rem; height: 2rem; text-align: right; font-size: .875rem; font-weight: 700; align-items: center; align-self: baseline; -webkit-box-align: center; -webkit-box-flex: 0; -webkit-box-pack: end; -ms-flex: 0 1 5rem; -ms-flex-align: center; -ms-flex-item-align: baseline; -ms-flex-pack: end; justify-content: flex-end;}
.search-header .select-box {position: relative;display: -webkit-box; display: -ms-flexbox; display: flex; flex-direction: column; margin-left: .5rem; -webkit-box-direction: normal; -webkit-box-flex: 1; -webkit-box-orient: vertical; -ms-flex-direction: column; flex-grow: 1; -ms-flex-positive: 1; }
.search-header .select-box_stack {margin-right: 2rem;background-color: #ededed; }
.search-header .select-box_stack + .select-box_stack {margin-top: .25rem;}
.search-header .select-box_stack div { text-align: left}
.search-header .select-box .panel-control {position: absolute; right: 0; display: block; width: 2rem; height: 2rem; background-color: #fff; align-self: center;-ms-flex-item-align: center; }
.search-header .select-box .panel-control.on::before {-webkit-transform: rotate(180deg); transform: rotate(180deg);}
.search-header .select-box .panel-control::before {position: absolute; z-index: 1;top: .875rem; right: .5rem; display: block; content: ''; -webkit-transition: all .2s; transition: all .2s; border-top: .5rem solid #9d9da0; border-right: .5rem solid transparent; border-left: .5rem solid transparent; }
.search-header .select-box .select-box_stack div {padding: .5rem; border: none;border-radius: initial; background-color: transparent; font-size: .875rem; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
.search-header .select-box input::-ms-expand{display: none;}

.result-box .result-button_group {display: -webkit-box; display: -ms-flexbox; display: flex; padding: 1rem 2rem; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.result-box .result-button_group button {padding: .25rem;}
.result-box .result-button_group button:first-child {margin-right: 1.25rem;}
.result-box .select-left.active, .result-box .select-right.active {background: #c4c4c4 !important;}
.result-box .result-list_group {padding: 1rem 2rem; background: #ededed;}
.result-box .list-header {position: relative; overflow: hidden; height: 1.5rem;margin: 0 1.5rem 1rem; border-radius: 4px; background: #fff; -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .25); box-shadow: 1px 1px 1px rgba(0, 0, 0, .25); }
.result-box .list-header input {position: absolute; top: 0; left: 0;height: inherit; text-align: center; border: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
.result-box .list-header .list-search {position: absolute; top: 0; right: 0; width: 1rem; height: 1rem; background: url('/common/images/icon_city_search.svg') no-repeat center center;}
.result-box .list-box li {margin-top: 2px;}
.result-box .list-box button {display: -webkit-box; display: -ms-flexbox; display: flex; padding: 6px;align-items: center; -webkit-box-align: center; -ms-flex-align: center; }
.result-box .list-box button.active {background-color: #c4c4c6;}
.result-box .list-box .start {overflow: hidden; width: 115px; margin-right: .5rem; text-align: left; white-space: nowrap; text-overflow: ellipsis; color: #3e454f;font-weight: 400; }
.result-box .list-box .graph {position: relative;flex: 1; height: 7px; -webkit-box-flex: 1; -ms-flex: 1; }
.result-box .list-box .graph .bar {position: absolute; top: 0; left: 0; display: block; height: 100%;  border-radius: 10px;}
.result-box .list-box + .option-message {margin-top: 1rem;}
.result-box .scrollbox {overflow-y: auto; max-height: 200px;}
.result-box .scrollbox ul {padding-right: .875rem;}
.result-box .scrollbox::-webkit-scrollbar {width: 6px; border-radius: 10px; -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .1); box-shadow: 0 4px 14px rgba(0, 0, 0, .1);}
.result-box .scrollbox::-webkit-scrollbar-thumb {border-radius: 10px;background: #eb5757; }
.result-box .scrollbox::-webkit-scrollbar-track {border-radius: 10px;background-color: #ddd; }

.day-list {display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: -.5rem;-ms-flex-wrap: wrap; flex-wrap: wrap; }
.day-list li {display: -webkit-box; display: -ms-flexbox; display: flex; flex: 0 1 50%; margin-bottom: .5rem; -webkit-box-flex: 0; -webkit-box-pack: center; -ms-flex: 0 1 50%; -ms-flex-pack: center; justify-content: center;}
.day-list button {width: 80px; text-align: center; border: 1px solid #c4c4c6; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}

.option-message {margin: 0 -2rem; margin-bottom: 1rem;padding: 1rem; background: #fff; }
.option-message .title {color: #3e454f;font-size: .875rem; }
.option-message .title + .message {margin-top: .25rem;}
.option-message .message {color: #828286;font-size: .75rem; }
.option-message + .option-message {margin-top: -1rem; margin-bottom: 1rem;border-top: 1px solid #e6e6e6; }

.result-list-footer {display: -webkit-box; display: -ms-flexbox; display: flex; padding: .75rem 2rem; align-items: center;-webkit-box-align: center; -ms-flex-align: center; }

.result-description {flex: 1;padding-right: 2rem; text-align: left; font-size: .75rem; -webkit-box-flex: 1; -ms-flex: 1; }
.result-description strong {color: #3e454f;font-size: .95rem; font-weight: 400; }
.result-description span {color: #828286;font-size: .8rem; }
.result-description mark {padding: 1px 4px;border-radius: 2px; background-color: #c4c4c6; font-size: .75rem; }
.result-description .color-graph{
    display: block;
    max-width: 300px;
    margin: 10px 0;
}
.result-button_box {flex: 0 1 80px;-webkit-box-flex: 0; -ms-flex: 0 1 80px; }

.result-share {display: -webkit-box; display: -ms-flexbox; display: flex; margin-bottom: .5rem;align-items: center; -webkit-box-align: center; -webkit-box-pack: justify; -ms-flex-align: center; -ms-flex-pack: justify; justify-content: space-between; }
.result-share .share {position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; width: 10rem; padding: .25rem; color: var(--white); background: #a9a9ac; -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .1); box-shadow: 0 4px 14px rgba(0, 0, 0, .1); font-size: .875rem; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;}
.result-share .share-icon {display: inline-block; width: .875rem; height: .875rem; margin-right: .25rem; background: url(/common/images/icon_share.svg) no-repeat 0 0/contain;align-self: center; -ms-flex-item-align: center; }
.result-share .list-count {margin: initial; color: #828286; align-self: flex-end;-ms-flex-item-align: end; }

/* 20220403 태그 검색 추가[E] */
@media (min-width: 768px) {.sns .popup-header, .sns .popup-content {position: relative; max-width: 960px; margin: 0 auto; font-size: 1rem;}
    .sns .popup-content {top: unset !important; left: unset;}
    .sns .item-summary {padding: 2rem;}
    .sns .item-summary .list-item-map {height: 460px; margin-top: 1rem;border-radius: .5rem; }
    .sns .item-summary .item-payment::after {font-weight: normal;}
    .sns .item-airplane .item::after {width: 27px; height: 27px; background-position: center center;background-size: 40%; }
    .sns .item-other {font-size: 1rem;}
    .sns .airport-group {position: relative;}
    .sns .airport-departure, .sns .airport-flighttime, .sns .airport-arrive {font-size: 1rem;}
    .sns .airport-departure > div {position: absolute; width: 40px; height: 56px; background: url('/common/images/ico_airline.svg') no-repeat center center/contain;}
    .sns .airport-departure b, .sns .airport-departure b + span {margin-left: 50px;}
    .sns .airport-arrive > div {position: absolute; right: 0; width: 40px; height: 56px; background: url('/common/images/ico_airline.svg') no-repeat center center/contain;}
    .sns .airport-arrive b, .sns .airport-arrive b + span {margin-right: 50px;}
    .sns .list-item-outer .list-link span {width: 140px;}
    .sns .list-item-outer .list-item-map {width: 160px;}
    .sns .accordion-item .goto-like {padding: .5rem;}
    .sns .detail-header {padding: 1rem 2rem;}
    .sns .detail-header dt {width: 90px;}
    .sns .detail-body {padding: 2rem 4rem;}
    .sns .item-payment {font-size: 2.2rem;}
    .sns .schedule-detail-item {margin-bottom: 2rem;}
    .sns .schedule-detail-item li {line-height: 1.8;}
    .sns .schedule-detail-item:last-child {margin-bottom: 0;}
    .sns .schedule-detail-item .item {font-size: 1rem;}
    .sns .item-date {font-size: 1rem;}
    .sns .accordion-content {padding-top: 1rem;}
    .sns .list-item-outer {margin-bottom: 1rem;}
}


@media (min-width: 768px) {
    .sns .popup-header, .sns .popup-content {
        position: relative;
        max-width: 960px;
        margin: 0 auto;
        font-size: 1rem;
    }

    .sns .popup-content {
        top: unset !important;
        left: unset;
    }

    .sns .item-summary {
        padding: 2rem;
    }

    .sns .item-summary .list-item-map {
        height: 460px;
        margin-top: 1rem;
        border-radius: .5rem;
    }

    .sns .item-summary .item-payment::after {
        font-weight: normal;
    }

    .sns .item-airplane .item::after {
        width: 27px;
        height: 27px;
        background-position: center center;
        background-size: 40%;
    }

    .sns .item-other {
        font-size: 1rem;
    }

    .sns .airport-group {
        position: relative;
    }

    .sns .airport-departure, .sns .airport-flighttime, .sns .airport-arrive {
        font-size: 1rem;
    }

    .sns .airport-departure > div {
        position: absolute;
        width: 40px;
        height: 56px;
        background: url('/common/images/ico_airline.svg') no-repeat center center/contain;
    }

    .sns .airport-departure b, .sns .airport-departure b + span {
        margin-left: 50px;
    }

    .sns .airport-arrive > div {
        position: absolute;
        right: 0;
        width: 40px;
        height: 56px;
        background: url('/common/images/ico_airline.svg') no-repeat center center/contain;
    }

    .sns .airport-arrive b, .sns .airport-arrive b + span {
        margin-right: 50px;
    }

    .sns .list-item-outer .list-link span {
        width: 140px;
    }

    .sns .list-item-outer .list-item-map {
        /* width: 160px; */
    }

    .sns .accordion-item .goto-like {
        padding: .5rem;
    }

    .sns .detail-header {
        padding: 1rem 2rem;
    }

    .sns .detail-header dt {
        width: 90px;
    }

    .sns .detail-body {
        padding: 2rem 4rem;
    }

    .sns .item-payment {
        font-size: 2.2rem;
    }

    .sns .schedule-detail-item {
        margin-bottom: 2rem;
    }

    .sns .schedule-detail-item li {
        line-height: 1.8;
    }

    .sns .schedule-detail-item:last-child {
        margin-bottom: 0;
    }

    .sns .schedule-detail-item .item {
        font-size: 1rem;
    }

    .sns .item-date {
        font-size: 1rem;
    }

    .sns .accordion-content {
        padding-top: 1rem;
    }

    .sns .list-item-outer {
        margin-bottom: 1rem;
    }
}

/*# sourceMappingURL=maps/style.css.map */




/* 2021-03-08 김진하 추가 (sns 공유용 상세페이지) */
@media (min-width: 768px) {
    .sns {
        overflow: hidden;
    }

    .sns .popup-header, .sns .popup-content {
        margin: 0 auto;
        position: relative;
        max-width: 960px;
        font-size: 1rem;
    }

    .sns .popup-content {
        top: unset !important;
        left: unset;
    }

    .sns .item-summary {
        padding: 2rem;
    }

    .sns .item-summary .list-item-map {
        height: 460px;
        border-radius: 0.5rem;
        margin-top: 1rem;
    }

    .sns .item-summary .item-payment::after {
        font-weight: normal;
    }

    .sns .item-airplane .item::after {
        width: 27px;
        height: 27px;
        background-size: 40%;
        background-position: center center;
    }

    .sns .item-other {
        font-size: 1rem;
    }

    .sns .airport-group {
        position: relative;
    }

    .sns .airport-departure, .sns .airport-flighttime, .sns .airport-arrive {
        font-size: 1rem;
    }

    .sns .airport-departure > div {
        position: absolute;
        width: 40px;
        height: 56px;
        background: url("/common/images/ico_airline.svg") no-repeat center center/contain;
    }

    .sns .airport-departure b, .sns .airport-departure b + span {
        margin-left: 50px;
    }

    .sns .airport-arrive > div {
        position: absolute;
        right: 0;
        width: 40px;
        height: 56px;
        background: url("/common/images/ico_airline.svg") no-repeat center center/contain;
    }

    .sns .airport-arrive b, .sns .airport-arrive b + span {
        margin-right: 50px;
    }

    .sns .list-item-outer .list-link span {
        width: 140px;
    }

    /*  .sns .list-item-outer .list-item-map { width: 100%; } */
    .sns .accordion-item .goto-like {
        padding: 0.5rem;
    }

    .sns .detail-header {
        padding: 1rem 2rem;
    }

    .sns .detail-header dt {
        width: 90px;
    }

    .sns .detail-body {
        padding: 2rem 4rem 1rem 4rem;
    }

    .sns .item-payment {
        font-size: 1rem;
    }

    .sns .schedule-detail-item {
        margin-bottom: 1rem;
    }

    .sns .schedule-detail-item li {
        line-height: 1.8;
    }

    .sns .schedule-detail-group:last-child {
        margin-bottom: 0;
    }

    .sns .schedule-detail-item .item {
        font-size: 1rem;
    }

    .sns .item-date {
        font-size: 1rem;
    }

    .sns .accordion-content {
        padding-top: 1rem;
    }

    .sns .list-item-outer {
        margin-bottom: 1rem;
    }
}
@media (max-width: 390px) {
    .radiobox{
        position:relative;
        display: block;
        width: 100%;
    }
    .right-radiobox{
        text-align: left;
    }
    .last-search-line{
        display: block;
    }
    .result-description .color-graph{
        display: block;
        width: 100%;
    }
}

/* 글씨 강조용 css 추가 */

.important-text {
    color: red !important;
    font-weight: bold !important;
}

/* cash history 페이지 css 추가 */
.cash-history {
    background: #fcfcfc;
    width: 100%;
}

.cash-user {
    width: 95%;
    margin: auto auto auto 20px;
    margin-top: 40px;
    border-radius: 15px;
    position: relative;
}

.cash-user span:nth-child(1) {
    font-size: 1.0rem;
    font-weight: 700;
    word-spacing: -1px;
    margin-top: 15px;
    color: #686868;
}

.cash-amt {
    width: 95%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cash-amt span:nth-child(1), .cash-amt label:nth-child(1) {
    font-size: 1.0rem;
    font-weight: 700;
    word-spacing: -1px;
    margin-top: 15px;
    color: #686868;
}

.cash-amt span:nth-child(2) {
    font-size: 1.2rem;
    font-weight: bold;
    word-spacing: -1px;
    margin-top: 15px;
    color: #000000;
}

.user-detail {
    width: 95%;
    margin: auto;
    margin-top: 40px;
    border-radius: 15px;
    height: 100px;
    position: relative;
}

.history-box {
    width: 95%;
    margin: auto;
    margin-top: 30px;
}

.history-box div {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto auto auto 20px;
}

.history-box div:nth-child(1) span:nth-child(1) {
    font-size: 1.0rem;
    color: #686868;
}

.history-box div:nth-child(1) span:nth-child(2) {
    font-size: 1.2rem;
    font-weight: bold;
    color: #686868;
}

.history-box div:nth-child(2) span {
    font-size: 0.8rem;
    color: #686868;
}

.history-box div:last-child{
    margin-bottom: 20px;
}

.transfer-user {
    width: 95%;
    margin: auto auto auto 20px;
    margin-top: 40px;
    border-radius: 15px;
    position: relative;
}

.transfer-user span:nth-child(1) {
    font-size: 1.0rem;
    font-weight: 700;
    word-spacing: -1px;
    margin-top: 15px;
    color: #686868;
}

.span-small-gray {
    font-size: 0.8rem !important;
    font-weight: 700;
    word-spacing: -1px;
    margin-top: 15px;
    color: #686868;
}

.span-middle-gray {
    font-size: 1.0rem !important;
    font-weight: 700;
    word-spacing: -1px;
    margin-top: 15px;
    color: #686868;
}


.transfer-form-container {
    width: 95%;
    margin: 40px auto auto;
    border-radius: 15px;
    position: relative;
    text-align: center;
}

.form-container {
    width: 95%;
    margin: 20px auto auto;
    border-radius: 15px;
    position: relative;
}

.form-box {
    width: 95%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transfer-form-container {
    width: 95%;
    margin: 50px auto auto 20px;
    border-radius: 15px;
    position: relative;
    text-align: left;
}

.transfer-form-title {
    font-size: 1.0rem;
    font-weight: 700;
    word-spacing: -1px;
    color: #686868;
}

.display-box {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.display-box span {
    font-size: 1.0rem;
    font-weight: 700;
    word-spacing: -1px;
    color: #686868;
}

.transfer-form {
    width: 95%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transfer-form input, .transfer-form select, .cash-amt input{
    border-radius: 0;
}

.transfer-form div:first-child {
    width: 30%;
    text-align: left;
}

.transfer-form div:last-child {
    width: 60%;
}

.img-container {
    text-align: center;
    margin-bottom: 20px;
}

.photoContainer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.photoPopup {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    height: auto;
    text-align: center;
}

.photoFilePopup {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    height: auto;
    margin: 200px auto auto 20px;
    text-align: center;
}

.photoPopup img {
    max-width: 100%;
    max-height: 300px;
}

.photoFilePopup img {
    max-width: 100%;
    max-height: 300px;
}

.label-input-form {
    width: 95%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-input-form div:first-child {
    width: 30%;
    text-align: left;
}

.label-input-form div:last-child {
    width: 60%;
}

.empty-div {
    height: 20px;
}

.empty-div-t100 {
    margin-top: 100px;
}

.empty-div-t50 {
    margin-top: 50px;
}

.photo-input-container {
    width: 95% !important;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.photo-input-container-left {
    width:60%;
}

.photo-input-container-right  {
    width:25%;
}

.history-form {
    width: 95%;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-form div:first-child {
    width: 40%;
    text-align: left;
}

.history-form div:last-child {
    width: 60%;
    text-align: right;
}

.margin-container {
    margin-top: 30px;
    margin-left: 20px;
}

.gray-box {
    background-color: #f2f2f6;
}

.history-container {
    width: 90%;
    margin: 0 0 20px 29px;
}

.half-width-button {
    width: 50%;
    background-color: #cccccc;
}

.cash-history input {
    height: 40px;
    font-size: large;
    padding-left: 10px;
    max-width: 100%;
    box-sizing: border-box;
}

.board-item-div span {
    display: flex;
    justify-content: flex-end;
    /*margin-top: 4px;*/
}


.div-parent {
    position: relative;
}

.div-left {
    position: absolute;
    left: 0;
}

.div-right {
    position: absolute;
    right: 0;
}

.link_post_list {
    background-color: #fff;
    padding: 0 1rem;
    margin: 1rem 0;
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

.link_post_list_li {
    list-style: none;
    padding : 1rem 0;
}

.link_post_list_ul {
    height: 6.5rem;
    transition: height 0.5s;
    overflow: hidden;
}

.link_post_list_item{
    display: flex;
}

.link_post_item_box {
    margin-right: 5%;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link_post_item_title {
    text-decoration: none;
    color : #000;
    max-height: 2.2rem;
    font-size: 0.875rem;
    line-height: 1.2;
    overflow: hidden;
    width: 95%;
    margin-bottom: 0.2rem;
}

.link_post_item_content {
    color: #000;
    height: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-size: 0.725rem;
}

.link_post_item_pic {
    height: 4rem;
    width: 20%;
}

.link_post_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.link_post_item_time {
    color : #3e454f;
    font-size: 0.725rem;
}

.link_post_btn_box{
    display: flex;
    justify-content: end;
}

.link_post_see-more{
    margin-top: 1rem;
    width: 1rem;
    height: 1rem;
    display: block;
    cursor: pointer;
}

.link_post_see-more:before {
    display: block;
    content: '';
    transition: all .2s;
    border-top: 0.5rem solid #9d9da0;
    border-right: 0.5rem solid transparent;
    border-left: 0.5rem solid transparent;
}

.link_post_see-more.active:before {
    transform: rotate(180deg);
}

.add-list-margin {
    padding: 1rem 1rem 0;
    color: #999;
    font-size: 0.875rem;
    font-weight: 500;
}

.add-list-button {
    position: relative;
    padding: 1rem;
}

.add-list-line {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.add-list-text {
    margin: 0;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
}

.add-list-note {
    color: red;
    text-align: center;
}

.add-list-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    webkit-transform: translateY(-50%);
}



.add-list-arrow {
    display: block;
    overflow: hidden;
    width: 10px;
    height: 10px;
    text-indent: -9999px;
    transition: 0.5s;
    background: url(/common/images/icon_arrow_down.svg) no-repeat right 0 top 50% / 10px;
}

.add-list-arrow.up {
    transform: rotate(180deg);
}

.add-list-none {
    display: none;
}

.add-list-container {
    transition: height 0.5s;
    overflow: hidden;
    height: 0;
}
