/* background: #f6f8fb; */




/* member_sign_pop */
#member_sign_pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 10000000;
}
#member_sign_pop.-active {
    display: flex;
    align-items: center;
    justify-content: center;
}
#member_sign_pop .sign__contents {
    width: 400px;
    min-width: 400px;
    max-width: 90%;
    max-height: 100%;
}
#member_sign_pop .sign__contents .login__title {
    margin-bottom: 2rem;
    color: #000;
    font-weight: 700;
    font-size: 20px;
}
/* .sign__contents_back:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14.5rem;
    border-radius: 0 0 30px;
    background: linear-gradient(310deg, #1670B5 11.1%, #2941B5 87.61%);
} */

#member_sign_pop .sign__contents {
    display: inline-block;
    overflow-y: auto;
    position: relative;
    padding: 50px 30px 20px 30px;
    outline: 0;
    background-color: #fff;
    border-radius: 1.2rem;
    scrollbar-width: thin;
    scrollbar-color: #767676 transparent;
}
@media (min-width: 1060px) {
    #member_sign_pop .sign__contents {
        width: 400px;
        min-width: 400px;
        max-width: 90%;
        max-height: 100%;
    }
}
@media (max-width: 1060px) {
    #member_sign_pop .sign__contents {
        min-width: 90%;
        max-width: 90%;
        max-height: 100%;
    }
}

#member_sign_pop .login__set {

}
#member_sign_pop .login__set + .login__set {
    margin-top: 20px;
}
#member_sign_pop .label {
    display: block;
    margin-bottom: 5px;
    color: #767676;
    font-size: 13px;
    line-height: 1.58;
}
#member_sign_pop .forms {
    position: relative;
}
#member_sign_pop .forms [type=text], #member_sign_pop .forms [type=search], #member_sign_pop .forms [type=password], #member_sign_pop .forms [type=email], #member_sign_pop .forms [type=tel], #member_sign_pop .forms [type=number], #member_sign_pop .forms select, #member_sign_pop .forms textarea {
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    display: block;
    opacity: 1;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--color-main);
    border-radius: 0;
    color: #000;
    font-size: 13px;
    line-height: 1.5;
    transition: border .2s .3s, color .2s .3s, box-shadow .2s .3s;
    /* outline: none; */
    padding: 0 10px;
}
#member_sign_pop .forms [type=text][disabled], #member_sign_pop .forms [type=search][disabled], #member_sign_pop .forms [type=password][disabled], #member_sign_pop .forms [type=email][disabled], #member_sign_pop .forms [type=tel][disabled], #member_sign_pop .forms [type=number][disabled], #member_sign_pop .forms select[disabled], #member_sign_pop .forms textarea[disabled] {
    padding: 0 10px;
    border-radius: 0;
    background-color: #fff;
    border-bottom-color: #d9dbe1 !important;
    color: #bcbcbc;
    cursor: not-allowed;
}
#member_sign_pop .forms .message {
    display: none;
    margin: 5px 0;
    color: #767676;
    font-size: 10px;
    line-height: 1.58;
}
#member_sign_pop .forms.-error .message {
    display: block;
    color: #de001b;
}
#member_sign_pop .login__set.-id-save {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px !important;
}
#member_sign_pop .selection {
    position: relative;
}
#member_sign_pop .selection [type=checkbox], .selection [type=radio] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 0;
}
#member_sign_pop .selection label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    color: #000;
    font-size: 13px;
    line-height: 1.58;
    text-indent: 0;
    word-break: break-word;
}
#member_sign_pop .selection [type=checkbox]~label:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: .2rem;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid var(--color-main);
    border-radius: .2rem;
    background-size: 11px 9px;
}
#member_sign_pop .selection [type=checkbox]:checked~label:before {
    background: var(--color-main) url(/pages/header/images/ico-checkbox.svg) no-repeat 50% 50%;
}
#member_sign_pop .link.-inner {
    position: relative;
    font-size: 13px;
    text-decoration: none;
}
#member_sign_pop .link {
    word-wrap: break-word;
    word-break: break-word;
    color: #767676;
}
#member_sign_pop .link.-inner:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    background: url(/pages/header/images/ico-link-inner.svg) no-repeat;
    background-size: 16px 16px;
    vertical-align: -2px;
}
#member_sign_pop .login__submit {
    margin-top:30px;
}
#member_sign_pop .login__submit-act {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid var(--color-main);
    border-radius: 10px;
    background-color: var(--color-main);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.58;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
#member_sign_pop .login__submit-act-non {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid var(--color-main);
    border-radius: 10px;
    background-color: #ffffff;
    color: var(--color-main);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.58;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
#member_sign_pop .login__find {
    display: flex;
    justify-content: center;
    gap: 4.8rem;
    margin: 2.2rem 0;
}
#member_sign_pop .login__find-list.-first {
    position: relative;
}
#member_sign_pop .login__find-list {
    text-align: center;
}
#member_sign_pop .login__find-list.-first:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2.4rem;
    content: "";
    width: 1px;
    height: 1.2rem;
    background-color: #d9dbe1;
}

#member_sign_pop .login__mdivider {
    display: block;
    height: 1px;
    border: 0;
    background-color: #d9dbe1;
}
#member_sign_pop .login__link {
    color: #000;
    text-decoration: underline;
    font-size: 13px;
}
#member_sign_pop .login__join-copy {
    color: var(--color-main);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin: 20px 0 0;
}
#member_sign_pop .login__join-subcopy {
    color: var(--color-main);
    font-feature-settings: "clig" off, "liga" off;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin: .8rem 0 2rem;
}
#member_sign_pop .login__point {
    margin-top: 30px;
}
#member_sign_pop .login__point-button {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: #fff;
    border: 1px solid var(--color-main);
    border-radius: 1rem;
    color: var(--color-main);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.58;
    text-decoration: none;
}

/* 로그인경고 */
#member_sign_pop .alert {
    margin: 10px 0;
    padding: 20px 20px 20px 50px;
    font-size: 13px;
    background: #fff6f6 url(/pages/header/images/ico-caution.svg) no-repeat 20px 20px;
    background-position: 20px 30px;
    border-radius: 10px;
    line-height: 1.5;
}
#member_sign_pop .alert .alert_ {
    display: block;
    margin: 10px 0;
    color: #555;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.58;
}
#member_sign_pop .alert .alert_ .remark {
    color: #de001b;
    font-style: normal;
}



#member_sign_pop .forms.-error input, .forms.-error select {
    border-bottom: 1px solid #de001b;
}

#member_sign_pop .modals__close {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 10px;
    background: url(/pages/header/images/dialog__close.svg) no-repeat 50% 50%;
    background-size: 24px 24px;
    text-indent: 100%;
    cursor: pointer;
    font-size: 0;
}
#member_sign_pop .login__sns {
    margin-top: 20px;
}
#member_sign_pop .login__sns-title {
    position: relative;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.58;
    text-align: center;
    color: var(--color-main);
}
#member_sign_pop .login__sns-title-bg {
    display: inline-block;
    position: relative;
    margin: 0 20px;
    padding: 0 25px;
    background: #fff;
}
#member_sign_pop .login__sns-sort {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}
#member_sign_pop .login__sns-item {
    vertical-align: middle;
    width: 20%;
    min-height: 35px;
    line-height: 30px;
    word-break: break-word;
    text-align: center;
}
#member_sign_pop .login__sns-trigger {
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    min-width: 50px;
    border-radius: 5px;
    cursor: pointer;
    background-size: 35px 35px;
    background-repeat: no-repeat;
    background-position: center 0;
    padding: 40px 0 0;
    color: #555;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
}
#member_sign_pop .login__sns-trigger.-naver {
    background-image: url(/pages/header/images/ico-naver.svg);
}
#member_sign_pop .login__sns-trigger.-kakao {
    background-image: url(/pages/header/images/ico-kakao.svg);
}
#member_sign_pop .login__sns-trigger.-google {
    background-image: url(/pages/header/images/ico-google.svg);
}
#member_sign_pop .login__sns-trigger.-facebook {
    background-image: url(/pages/header/images/ico-facebook.svg);
}
#member_sign_pop .login__sns-trigger.-apple {
    background-image: url(/pages/header/images/ico-apple.svg);
}



/* 경고창 */
#alert_agree-confirm .dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 11000000;
}
#alert_agree-confirm .dialog.-active {
    display: flex;
    align-items: center;
    justify-content: center;
}
#alert_agree-confirm .dialog.-basic .dialog__contents {
    width: 50rem;
    min-width: 50rem;
}
@media (min-width:1060px) {
    #alert_agree-confirm .dialog.-basic .dialog__contents {
        width: 350px;
        min-width: 350px;
        max-width: 90%;
        max-height: 100%;
    }
}
@media (max-width:1060px) {
    #alert_agree-confirm .dialog.-basic .dialog__contents {
        min-width: 80%;
        max-width: 80%;
        max-height: 100%;
    }
}
#alert_agree-confirm .dialog__contents {
    display: inline-block;
    overflow-y: auto;
    position: relative;
    padding: 2rem 2rem 0;
    outline: 0;
    background-color: #fff;
    border-radius: 1.2rem;
}
#alert_agree-confirm .dialog__contents {
    padding: 40px 40px 0;
    scrollbar-width: thin;
    scrollbar-color: #767676 transparent;
}
#alert_agree-confirm .dialog__aligner {
    margin: 20px 0 0;
    padding-bottom: 20px;
}
#alert_agree-confirm .dialog__aligner.-titleless {
    margin-top: 10px;
}
#alert_agree-confirm .dialog .p {
    display: block;
    margin: .8rem 0;
    color: #555;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.58;
}
#alert_agree-confirm .dialog .confirms {
    margin-top: 20px;
    display: flex;
    justify-items: flex-start;
    justify-content: center;
}
@media (min-width:1060px) {
    #alert_agree-confirm .dialog .confirm {
        display: block;
        margin: 0;
        padding: 10px 20px;
        min-width: 200px;
        max-width: 200px;
        min-height: 30px;
        border: 1px solid var(--color-main);
        border-radius: 10px;
        background-color: var(--color-main);
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.58;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        appearance: none;
    }
}
@media (max-width:1060px) {
    #alert_agree-confirm .dialog .confirm {
        display: block;
        margin: 0;
        padding: 10px 20px;
        min-width: 200px;
        max-width: 200px;
        min-height: 30px;
        border: 1px solid var(--color-main);
        border-radius: 10px;
        background-color: var(--color-main);
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.58;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        appearance: none;
    }
}
#alert_agree-confirm .dialog__close {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 10px;
    background: url(/pages/header/images/dialog__close.svg) no-repeat 50% 50%;
    background-size: 24px 24px;
    text-indent: 100%;
    cursor: pointer;
    font-size: 0;
}

.dialog__close:hover {
    border: 1px solid var(--color-mainsub);
}
#alert_agree-confirm .modals__close {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 10px;
    background: url(/pages/header/images/dialog__close.svg) no-repeat 50% 50%;
    background-size: 24px 24px;
    text-indent: 100%;
    cursor: pointer;
    font-size: 0;
}
#alert_agree-confirm .required {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    position: relative;
    width: 5px;
    font-size: inherit;
    vertical-align: bottom;
}
#alert_agree-confirm .required:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #de001b;
}
/* 경고창 */




/* 하단플러스버튼 */
@media (min-width:1060px) {
    .floating-button {
        position: absolute;
        bottom: 85px;
        right: 20px;
        display: block;
        z-index: 2;
        z-index: 9101;
    }
    .floating-button__wrap {
        display: flex;
        flex-direction: column-reverse;
        width: 55px;
    }
    .floating-button__expander {
        position: relative;
        display: block;
        width: 55px;
        height: 55px;
        border-radius: 100%;
        border: 0;
        background: none;
        background-color: var(--color-main);
        transition: all ease-in-out 0.3s;
        z-index: 11;
        cursor: pointer;
    }

    .floating-button__expander:before {
        display: inline-block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 25px;
        height: 0.2rem;
        margin-left: -13px;
        margin-top: -1px;
        border-radius: 0.1rem;
        background-color: #FFFFFF;
        transition: all ease-in-out 0.3s;
        content: '';
    }
    .floating-button__expander:after {
        display: inline-block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 25px;
        height: 0.2rem;
        margin-left: -13px;
        margin-top: -1px;
        transform: rotate(90deg);
        border-radius: 0.1rem;
        background-color: #FFFFFF;
        transition: all ease-in-out 0.3s;
        content: '';
    }
    .floating-button__expander.-active {
        background-color: rgb(127, 127, 127);
    }
    .floating-button__expander.-active::before {
        transform: rotate(-135deg);
    }
    .floating-button__expander.-active::after {
        transform: rotate(-45deg);
    }
    .floating-button__list-plus {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
        border-radius: 100%;
        border: 0;
        background: #FFFFFF;
        /* border: solid 1px #d9dbe1; */
        /* display: flex; */
        justify-content: center;
        align-items: center;
        cursor: pointer;
        position: relative;
        /* box-shadow: 0 0 3px #0003; */
    }
    .floating-button__item {
        position: relative;
        width: 55px;
        height: 55px;
        transition: all 0.3s;
    }
    .floating-button__link-plus {
        position: absolute;
        right: 0;
        top: 0;
        width: 55px;
        height: 55px;
        display: block;
        border-radius: 100%;
        border: 0;
        background-color: #FFFFFF;
        transition: all ease-in-out 0.3s;
        color: var(--color-main);
        font-size: 13px;
        font-weight: 700;
        border-radius: 2.5rem;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s;
        overflow: hidden;
        padding-left: 55px;
    }
    .floating-button__item-plus:hover .floating-button__link-plus:hover {
        width: 250px;
        background-position: left 8px center;
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.06);
    }
    .floating-button__link-plus.-edit {
        background: #fff url(/pages/header/images/icon--setting1.png) no-repeat;
        background-position: left 8px center;
        background-size: 55px auto;
        background-size: 40px;
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.06);
    }
    .floating-button__link-plus.-chat {
        background: var(--color-back) url(/pages/header/images/icon--chat.png) no-repeat;
        background-position: left 8px center;
        background-size: 40px auto;
        background-size: 40px;
        box-shadow: 0 0 3px #0003;
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.06);
    }


    .floating-button__list {
        display: flex;
        flex-direction: column-reverse;
        position: static;
        padding: 0;
        border: none;
        border-radius: 0;
        background-color: inherit;
        width: 55px;
        margin: 0;
    }

    


    .floating-button__expander.-active + .floating-button__expand .floating-button__item {
        margin-bottom: 10px;
    }

    .floating-button__link {
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        width: 50px;
        height: 100%;
        border-radius: 100%;
        border: 0;
        background-color: #FFFFFF;
        transition: all ease-in-out 0.3s;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        border-radius: 2.5rem;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s;
        overflow: hidden;
        padding-left: 55px;
        z-index: 10;
    }
    .floating-button__item {
        position: relative;
        margin-bottom: -55px;
        width: 55px;
        height: 55px;
        transition: all 0.3s;
    }

    .floating-button__link.-chatbot {
        background-position: 0 0.5rem;
        background-size: 55px auto;
    }
    .floating-button__link.-chatbot {
        background: #FAE100 url(/pages/header/images/icon--kakaoc_hat_.svg) no-repeat center center;
        background-size: 55px auto;
        /* text-shadow: 3px 4px 5px #000; */
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.06);
    }

    .floating-button__link.-service {
        background: var(--color-subsub) url(/pages/header/images/service-wrap.png) no-repeat center center;
        background-size: 55px auto;
        /* text-shadow: 3px 4px 5px #000; */
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.06);
    }
    .floating-button__link.-chat {
        background: #416045 url(/pages/header/images/icon--chat.png) no-repeat center center;
        background-size: 55px auto;
        /* background-position: left 8px center;
        background-size: 55px auto;
        background-size: 40px;
        box-shadow: 0 0 3px #0003; */
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.06);
    }


    .floating-button__link.-yeoyu {
        background: #192547 url(/pages/header/images/icon--yeoyu_.png) no-repeat center center;
        background-size: 55px auto;
    }
    .floating-button__top {
        display: none;
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
        border-radius: 100%;
        border: 0;
        background-color: #FFFFFF;
        background: #FFFFFF url(/pages/header/images/icon-main__top.svg) no-repeat center center;
        background-size: 24px 24px;
        border: solid 1px #d9dbe1;
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.06);
    }
    .floating-button__link {
        width: 55px;
        border-radius: 3.2rem;
    }
    .floating-button__top.-active {
        display: block;
    }

    .floating-button__txt {
        display: flex;
        align-items: center;
        width: 27.6rem;
        height: 100%;
        margin: 0;
        color: inherit;
        font-size: 13px;
        /* color: #fff; */
    }

    
    .floating-button__link:hover, .floating-button__link:active {
        width: 250px;
        background-position: left center;
    }

    /* detail_view_inner */
    #detail-plus-inner .detail_plus{
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
        border-radius: 100%;
        border: 0;
        background: #FFFFFF;
        border: solid 1px #d9dbe1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        cursor: pointer;
    }
    #detail-plus-inner .detail_plus img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* // detail_view_inner */
}
@media (max-width:1060px) {
    .floating-button {
        position: absolute;
        bottom: 60px;
        right: 20px;
        display: block;
        z-index: 2;
        z-index: 91000;
    }
    .floating-button__wrap {
        display: flex;
        flex-direction: column-reverse;
        width: 40px;
    }
    .floating-button__expander {
        position: relative;
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        border: 0;
        background: none;
        background-color: var(--color-main);
        transition: all ease-in-out 0.3s;
        z-index: 11;
        cursor: pointer;
    }
    .floating-button__expander:before {
        display: inline-block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 20px;
        height: 0.2rem;
        margin-left: -10px;
        margin-top: -1.5px;
        border-radius: 0.1rem;
        background-color: #FFFFFF;
        transition: all ease-in-out 0.3s;
        content: '';
    }
    .floating-button__expander:after {
        display: inline-block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 20px;
        height: 0.2rem;
        margin-left: -10px;
        margin-top: -1.5px;
        transform: rotate(90deg);
        border-radius: 0.1rem;
        background-color: #FFFFFF;
        transition: all ease-in-out 0.3s;
        content: '';
    }
    .floating-button__expander.-active {
        background-color: rgb(127, 127, 127);
    }
    .floating-button__expander.-active::before {
        transform: rotate(-135deg);
    }
    .floating-button__expander.-active::after {
        transform: rotate(-45deg);
    }
    
    .floating-button__list-plus {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        border-radius: 100%;
        border: 0;
        /* background: #FFFFFF; */
        /* border: solid 1px #d9dbe1; */
        /* display: flex; */
        justify-content: center;
        align-items: center;
        cursor: pointer;
        position: relative;
        /* box-shadow: 0 0 3px #0003;*/
    }
    .floating-button__item-plus {
        position: relative;
        width: 40px;
        height: 40px;
        transition: all 0.3s;
    }
    .floating-button__link-plus {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        width: 40px;
        height: 100%;
        border-radius: 100%;
        border: 0;
        background-color: #FFFFFF;
        transition: all ease-in-out 0.3s;
        color: var(--color-main);
        font-size: 13px;
        border-radius: 2.5rem;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s;
        overflow: hidden;
        padding-left: 40px;
    }
    .floating-button__item-plus:hover .floating-button__link-plus {
        width: 250px;
        background-position: left 8px center;
    }
    .floating-button__link-plus.-edit {
        background: #fff url(/pages/header/images/icon--setting1.png) no-repeat;
        background-position: left 8px center;
        background-size: 30px auto;
        background-size: 25px;
        box-shadow: 0 0 3px #0003;
    }
    .floating-button__link-plus.-chat {
        background: var(--color-back) url(/pages/header/images/icon--chat.png) no-repeat;
        background-position: left 8px center;
        background-size: 30px auto;
        background-size: 30px;
        box-shadow: 0 0 3px #0003;
        box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.06);
    }


    .floating-button__list {
        display: flex;
        flex-direction: column-reverse;
        position: static;
        padding: 0;
        border: none;
        border-radius: 0;
        background-color: inherit;
        width: 40px;
        margin: 0;
    }

    
    .floating-button__item {
        position: relative;
        margin-bottom: -40px;
        width: 40px;
        height: 40px;
        transition: all 0.3s;
    }


    /* .floating-button__expand[aria-hidden='false'] .floating-button__item, .floating-button__expand.-one .floating-button__item {
        margin-bottom: 10px;
    } */
    .floating-button__expander.-active + .floating-button__expand .floating-button__item {
        margin-bottom: 5px;
    }

    .floating-button__link {
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        width: 50px;
        height: 100%;
        border-radius: 100%;
        border: 0;
        background-color: #FFFFFF;
        transition: all ease-in-out 0.3s;
        color: #FFFFFF;
        font-size: 13px;
        border-radius: 2.5rem;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s;
        overflow: hidden;
        padding-left: 40px;
        z-index: 10;
    }

    .floating-button__link.-chatbot {
        background-position: 0 0.5rem;
        background-size: 40px auto;
    }
    .floating-button__link.-chatbot {
        background: #FAE100 url(/pages/header/images/icon--kakaoc_hat_.svg) no-repeat center center;
        background-size: 40px auto;
    }
    .floating-button__link {
        width: 40px;
        border-radius: 3.2rem;
    }
    
    .floating-button__link.-service {
        background: var(--color-subsub) url(/pages/header/images/service-wrap.png) no-repeat center center;
        background-size: 40px auto;
        /* text-shadow: 3px 4px 5px #000; */
    }
    .floating-button__link.-chat {
        background: #416045 url(/pages/header/images/icon--chat.png) no-repeat center center;
        background-size: 40px auto;
        /* background-position: left 8px center;
        background-size: 40px auto;
        background-size: 40px;
        box-shadow: 0 0 3px #0003; */
    }
    


    .floating-button__txt {
        /* display: none; */
        align-items: center;
        width: 100%;
        height: 100%;
        margin: 0;
        color: inherit;
        font-size: 10px;
        padding: 5px 0;
    }

    .floating-button__link.-yeoyu {
        background: #192547 url(/pages/header/images/icon--yeoyu_.png) no-repeat center center;
        background-size: 40px auto;
    }

    .floating-button__link:hover, .floating-button__link:active {
        width: 250px;
        background-position: left center;
    }
    .floating-button__link:hover .floating-button__txt {
        display: flex;
    }


    .floating-button__top {
        background-size: 32px 32px;
        width: 6.4rem;
        height: 6.4rem;
    }
    .floating-button__top {
        display: none;
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        border-radius: 100%;
        border: 0;
        background-color: #FFFFFF;
        background: #FFFFFF url(/pages/header/images/icon-main__top.svg) no-repeat center center;
        background-size: 24px 24px;
        border: solid 1px #d9dbe1;
    }
    .floating-button__top.-active {
        display: block;
    }

    /* detail_view_inner */
    #detail-plus-inner .detail_plus{
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        border-radius: 100%;
        border: 0;
        background: #FFFFFF;
        border: solid 1px #d9dbe1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        cursor: pointer;
        position: relative;
        box-shadow: 0 0 3px #0003;
    }
    #detail-plus-inner .detail_plus img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #detail-plus-inner .detail_chat{
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        border-radius: 100%;
        border: 0;
        background: #FFFFFF;
        border: solid 1px #d9dbe1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        cursor: pointer;
        position: relative;
        box-shadow: 0 0 3px #0003;
    }
    #detail-plus-inner .detail_chat img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* // detail_view_inner */
}
/* // 하단플러스버튼 */
















@media (min-width:1060px) {
    [class]._pc-hidden {
        display: none !important;
    }
    .head {
        position: relative;
        min-height: 5.1rem;
        z-index: 9110;
    }
    
    
    .head {
        min-height: auto;

        position: fixed;
        top: 0px;
        width: 100%;
    }
    
    .air__aligner {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 40px;
    }
    ._angular {
        padding-top: 100px;
        padding-bottom: 0;
        min-height: 500px;
    }
    .headers {
        position: fixed;
        top: 0px;
        z-index: 9100;
        width: 100%;
        padding: 0px 40px;
        border-bottom: 1px solid rgb(217, 219, 225);
        pointer-events: none;
        background: transparent;
    }
    
    .headers__aligner {
        padding: 0px;
        height: 100px;
        position: relative;
        max-width: 1440px;
        width: 100%;
        margin: 0px auto;
        pointer-events: none;
    }
    
    .headers__logo {
        padding-top: 40px;
        display: flex;
        align-items: end;
        float: left;
        height: auto;
        pointer-events: auto;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    
    .logo__tripduty {
        overflow: hidden;
        white-space: nowrap;
        text-indent: 100%;
        display: inline-block;
        width: 100px;
        height: 30px;
        max-height: 30px;
        background: url(/pages/header/images/logo-ko-title.svg) center center / 162px 54px no-repeat transparent;
        background-size: 100% auto;
    }
    .dark_mode .logo__tripduty {
        background: url(/pages/header/images/logo-title-w.png) center center / 162px 54px no-repeat transparent;
        background-size: 100% auto;
    }
    .logo__tripduty_fav {
        overflow: hidden;
        white-space: nowrap;
        text-indent: 100%;
        display: inline-block;
        width: 20px;
        height: 20px;
        outline: 0px;
        background: url(/pages/header/images/logo.png) center center / 38px 54px no-repeat transparent;
        text-decoration: none;
        vertical-align: top;
        background-size: 100%;
        margin-left: 3px;
    }
    
    
    
    
    
    .headers__aligner::after {
        content: "";
        display: block;
        clear: both;
    }
    .headers__utils {
        float: right;
        pointer-events: auto;
        margin-right: 1.6rem;
    }
    .headers__utils--lang {
        position: absolute;
        top: 0;
        right: 0px;
        padding-top: 10px;
        padding-bottom: 5px;
    }
    .uixlang__aligner {
        flex-direction: row;
        gap: 20px;
        margin: 0px auto;
        display: flex;
        width: 100%;
        max-width: 1440px;
        line-height: 1.5;
    }
    
    
    
    .uixlang__util-link {
        display: inline-block;
        font-size: 13px;
        outline: 0px;
        color: rgb(0, 0, 0);
        text-decoration: none;
        vertical-align: top;
        line-height: 20px;
        padding-left: 30px;
        background: transparent;
        font-family: inherit;
        border-radius: 0.3rem;
    }
    .uixlang__util-link.-notice {
        background: url(/pages/header/images/icon--notice.png) left 5px center / 24px 24px no-repeat;
        background-size: 20px;
    }
    .dark_mode .uixlang__util-link.-notice {
        background: url(/pages/header/images/icon--notice-w.png) left 5px center / 24px 24px no-repeat;
        background-size: 20px;
    }
    .uixlang__util-link.-faq {
        padding-left: 30px;
        background: url(/pages/header/images/icon--faq.png) left 5px center / 24px 24px no-repeat;
        background-size: 20px;
    }
    .dark_mode .uixlang__util-link.-faq {
        background: url(/pages/header/images/icon--faq-w.png) left 5px center / 24px 24px no-repeat;
        background-size: 20px;
    }
    
    
    
    .uixlang__button {
    
        display: inline-flex;
        min-height: 30px;
        white-space: nowrap;
        position: relative;
        padding-left: 30px;
        border: 0px;
        outline: 0px;
        color: rgb(0, 0, 0);
        font-family: inherit;
        font-size: 13px;
        align-self: center;
        vertical-align: top;
        line-height: 1.5;
        cursor: pointer;
        border-radius: 0.3rem;
        background-size: 24px 24px;
    }
    
    .uixlang__flag[class*=" -"] {
        background-image: url(/pages/header/images/flag-country-sprite-24x24.jpg);
    }
    .uixlang__flag {
        position: absolute;
        left: 0;
        top: 0px;
        width: 30px;
        height: 30px;
        background: url(/pages/header/images/icon--browsing.svg) 0px 0px / 24px no-repeat;
    }
    .uixlang__value {
        color: rgb(0, 0, 0);
        font-size: 13px;
        line-height: 1.5;
        display: flex;
        align-items: center;
    }
    .uixlang__current {
        display: inline-block;
        font-size: 13px;
        color: rgb(0, 0, 0);
        vertical-align: top;
        line-height: 1.5;
        position: relative;
        padding-left: 1.1rem;
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    .uixlang__current::before {
        content: "";
        position: absolute;
        width: 0.5rem;
        height: 0.1rem;
        background: var(--color-main);
        top: 0px;
        left: 0.2rem;
        bottom: 0px;
        margin: auto;
    }
    
    
    .uixlang__util-link.-join {
    }
    .uixlang__util-link.-join {
        padding-left: 30px;
        background: url(/pages/header/images/icon--sign-up.svg) left 5px center / 24px 24px no-repeat;
        background-size: 20px;
    }
    .uixlang__util-link.-logout {
        padding-left: 30px;
        background: url(/pages/header/images/icon--log-out.svg) left 5px center / 24px 24px no-repeat;
        background-size: 20px;
    }
    .dark_mode .uixlang__util-link.-logout {
        background: url(/pages/header/images/icon--log-out-w.svg) left 5px center / 24px 24px no-repeat;
        background-size: 20px;
    }
    
    
    
    
    
    
    .headers__utils--nav {
        position: absolute;
        top: 40px;
        right: 0px;
    }
    .headers__utils--nav {
        padding: 0px;
        clear: both;
        float: none;
    }
    
    
    ul.headers__utils--list {
        font-size: 0px;
        margin-left: auto;
        display: flex;
        align-items: center;
        height: 50px;
        gap: 1.6rem;
    }
    
    
    .headers__utils--item {
        display: flex;
        position: relative;
        width: fit-content;
    }
    
    
    
    
    
    .uixbutton {
        position: relative;
        padding: 0px;
        border: 0px;
        text-decoration: none;
        text-align: center;
        line-height: 1.5;
        cursor: pointer;
        appearance: none;
        background-color: transparent;
        vertical-align: middle;
        border-radius: 0.2rem;
        font-family: inherit;
    }
    
    
    
    .action-button {
        position: relative;
        font-family: inherit;
    }
    .uixbutton.-gnb-search {
        position: relative;
        border-radius: 0;
        font-size: 13px;
        font-family: inherit;
        letter-spacing: -0.02em;
        width: auto;
        min-height: 40px;
        max-height: 40px;
        padding: 0px 40px 0px 10px;
        text-align: left;
        color: rgb(94, 94, 94);
        cursor: pointer;
        border-bottom: 1px solid var(--color-main);
    }
    .uixbutton.-gnb-search::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0px;
        bottom: 0px;
        margin: auto;
        width: 2.4rem;
        height: 2.4rem;
        background: url(/pages/header/images/icon--search.svg) 50% 50% / 24px 24px no-repeat;
    }
    .dark_mode .uixbutton.-gnb-search::before {
        background: url(/pages/header/images/icon--search-w.svg) 50% 50% / 24px 24px no-repeat;
    }
    
    
    
    .uixbutton.-gnb-login {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        color: var(--color-main);
        font-weight: 700;
        line-height: 1.5;
        min-width: 50px;
        padding: 0;
        font-size: 13px;
        border-radius: 20px;
        /* min-height: 40px;
        max-height: 40px; */
        text-decoration-line: underline;
    }
    .uixbutton.-gnb-mypage {
        display: block;
        padding-left: 30px;
        background: url(/pages/header/images/icon-40_40-my.svg) center center / 30px 30px no-repeat;
        background-size: 100%;
        width: 35px;
        height: 35px;
    }
    .dark_mode .uixbutton.-gnb-mypage {
        background: url(/pages/header/images/icon-40_40-my-w.svg) center center / 30px 30px no-repeat;
    }
    
    
    /* 상단메뉴 */
    .gnb-new {
        position: fixed;
        z-index: 9000;
        display: block;
        height: 100px;
        background: rgb(255, 255, 255);
        width: 100%;
    }
    .gnb-new__aligner {
        padding-left: 33.6rem;
        padding-right: 41.6rem;
    }
    .gnb-new__aligner {
        overflow: visible;
        background-color: transparent;
        display: flex;
        justify-content: center;
        height: 100%;
        max-width: 1440px;
        padding: 0px 450px 0px 300px;
        margin: 0px auto;
    }
    .gnb-new__groups {
        display: flex;
        gap: 10px;
    }
    .gnb-new__groups {
        margin: 0px;
    }
    
    
    .gnb-new__group {
        display: block;
        height: 80px;
        margin: 20px 0px 0px;
    }
    .gnb-new__group {
        pointer-events: inherit;
        background-color: rgb(255, 255, 255);
    }
    
    
    .gnb-new__nav {
        position: relative;
        padding: 0px;
    }
    .gnb-new__button {
        font-weight: 400;
        height: 80px;
        text-align: center;
        padding: 0px 10px;
        pointer-events: none;
    
        display: block;
        position: relative;
        width: 100%;
        border: 0px;
        outline: 0px;
        min-height: 4.1rem;
        background-color: transparent;
        cursor: pointer;
        color: rgb(0, 0, 0);
        font-size: 18px;
        font-family: inherit;
        line-height: 1.5;
    }
    .gnb-new__group.-active .gnb-new__button {
        font-weight: 600;
    }
    .gnb-new__group.-active .gnb-new__button::before {
        content: "";
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 0;
        height: 3px;
        border-radius: 10px;
        background: var(--color-main);
    }
    
    
    
    .gnb-new__panel {
        display: none;
        outline: 0px;
        max-width: initial;
        padding-bottom: 2.8rem;
        z-index: 999;
        background-color: rgb(255, 255, 255);
    }
    .gnb-new__panel {
        position: absolute;
        left: 0px;
        top: 100px;
        right: 0px;
        padding: 4.8rem;
        box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px -1px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px;
    }
    .gnb-new__group.-active .gnb-new__panel {
        z-index: 10000;
        display: block;
    }
    .gnb-new__contents {
        display: flex;
        width: 100%;
        flex-direction: row;
        max-width: 144rem;

        max-width: 1341px;
        margin: 0 auto;
    }
    
    .gnb-new__grids {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        min-height: auto;
        margin: 0px;
        border: none;
        gap: 20px 30px;
    }
    
    
    .gnb-new__grid {
        width: calc(25% - 2.4rem);
        padding: 0px;
        margin-right: 0px;
        border-radius: 0.6rem;
        background: rgb(255, 255, 255);
    }
    .gnb-new__grid + .gnb-new__grid {
        border-left: none;
    }
    .gnb-new__grid:nth-child(4n) {
        margin-right: 0px !important;
    }
    
    
    .gnb-new__title:first-child {
        margin-top: 0px;
    }
    
    
    .gnb-new__title {
        margin: 0px 0px 20px;
        color: rgb(0, 0, 0);
        font-weight: 700;
        font-size: 15px;
    }
    
    
    .gnb-new__sub {
        appearance: none;
        margin: 0px;
        padding: 0px 0px 0px 1.6rem;
        border: 0px;
        font-family: inherit;
        line-height: 1.5;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        cursor: pointer;
    
        display: inline-block;
        width: auto;
        padding-left: 0px;
        font-size: 15px;
        font-weight: 700;
        color: rgb(0, 0, 0);
    }
    
    
    .gnb-new__sub .icon__host {
        margin-left: 10px;
        vertical-align: top;
    }
    .icon.-msize24 {
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        height: 20px;
        background-size: 100%;
    }
    /* .icon.-arrow-right {
        background-image: url(/pages/header/images/icon--arrow-right.svg);
    } */
    .icon {
        background-repeat: no-repeat;
        background-position: center center;
        pointer-events: none;
    }
    
    
    
    
    .gnb-new__item + .gnb-new__item {
        margin-top: 15px;
    }
    .gnb-new__item {
        line-height: 1.4rem;
    }
    .gnb-new__link {
        display: inline-block;
        outline: 0px;
        text-decoration: none;
        color: rgb(85, 85, 85);
        font-size: 13px;
        line-height: 1.5;
    }
    
    
    
    
    
    .gnb-new__article {
        margin-left: 20px;
    }
    .gnb-new__banner + .gnb-new__banner {
        margin-top: 20px;
    }
    
    .gnb-new__quick-title {
        margin-top: 2.8rem;
        font-size: 15px;
        color: rgb(85, 85, 85);
    }
    
    .gnb-new__banner {
        width: 220px;
        height: 90px;
        border-radius: 1.2rem;
    }
    .gnb-new__banner-link {
        position: relative;
        width: 100%;
        height: 100%;
        display: block;
        padding: 0.1rem 0.1rem 0.2rem;
        border-radius: 1rem;
        overflow: hidden;
    }
    .gnb-new__banner-link img {
        width: 100%;
    }
    .gnb-new__banner-title {
        position: absolute;
        left: 20px;
        top: 20px;
        max-width: 220px;
        font-size: 13px;
        font-weight: 700;
        /* color: rgb(0, 0, 0); */
        color: var(--color-main);
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-height: 1.5;
        max-height: 90px;
        white-space: normal;
    }
    .gnb-new__banner-title::after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-left: 0.4rem;
        background: url(/pages/header/images/icon--arrow-right.svg) center center / 24px 24px no-repeat;
        vertical-align: top;
    }
}


/* 모바일메뉴 */
@media (max-width:1060px) {

    .gnb-new {
        height: calc(100% - 150px);
    }
    .mosidemore {
        padding: 20px 0;
        height: 150px;

        background-color: #eeeeee0a;
        border-top: 1px solid var(--color-back1);

        /* width: 150px; */
    }
    .ux-lang__aligner {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 128rem;
        margin: 0.2rem auto 0;
        line-height: 1.5;
    }
    .ux-lang__m-utils {
        padding: 5px 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        position: relative;
    }
    .ux-lang__util-link {
        display: inline-block;
        font-size: 15px;
        outline: 0;
        color: #000;
        text-decoration: none;
        vertical-align: top;
        line-height: 2.4rem;
        background: transparent;
        font-family: inherit;
        border-radius: 0.3rem;
    }
    .ux-lang__util-link.-join {
        padding-left: 2.4rem;
        background: url(/pages/header/images/icon--sign-up.svg) no-repeat left 60%;
        background-size: 24px 24px;
    }
    .ux-lang__util-link.-logout {
        padding-left: 2.4rem;
        background: url(/pages/header/images/icon--log-out.svg) no-repeat left 60%;
        background-size: 24px 24px;
    }
    .dark_mode .ux-lang__util-link.-logout {
        background: url(/pages/header/images/icon--log-out-w.svg) no-repeat left 60%;
        background-size: 24px 24px;
    }
    .ux-lang__m-util {
        position: relative;
    }
    .ux-lang__m-util+.ux-lang__m-util::before {
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0.1rem;
        height: 1.2rem;
        background-color: #D9D9D9;
        content: "";
    }






}



@media (max-width:1060px) {
    [class]._mo-hidden {
        display: none !important;
    }



    .head {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        min-height: 50px;
        z-index: 120000;
        width: 100%;
        background: #ffffff;
        
        transform: translate(0%, -100%);
        transition: all ease-in-out 0.3s;
    }
    .head.-active {
        transform: translate(0%, 0%);
        transition: all ease-in-out 0.3s;
    }
    .ng-star-inserted {
        padding-top: 50px;
        max-width: 1440px;
        margin: 0 auto;
    }
    .air__aligner {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 20px;
    }
    ._angular {
        padding-top: 50px;
        padding-bottom: 0px;
        min-height: 500px;
    }
    .headers {
        position: relative;
        border-bottom: 1px solid rgb(217, 219, 225);
        pointer-events: none;
        z-index: 9101;
        background: transparent;
        padding: 0px 20px;
        height: 50px;
    }
    .headers__aligner {
        width: 100%;
        height: calc(50px - 1px);
        margin: 0px auto;
        /* padding: 0px 30px 0px 0px; */
        pointer-events: none;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .headers__logo {
        display: flex;
        align-items: center;
        float: left;
        height: 50px;
        pointer-events: auto;
    }
    .logo {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    
    .logo__tripduty {
        overflow: hidden;
        white-space: nowrap;
        text-indent: 100%;
        display: inline-block;
        width: 100px;
        height: 30px;
        max-height: 30px;
        background: url(/pages/header/images/logo-ko-title.svg) center center / 162px 54px no-repeat transparent;
        background-size: 100% auto;
    }
    .dark_mode .logo__tripduty {
        background: url(/pages/header/images/logo-title-w.png) center center / 162px 54px no-repeat transparent;
        background-size: 100% auto;
    }
    .logo__tripduty_fav {
        overflow: hidden;
        white-space: nowrap;
        text-indent: 100%;
        display: inline-block;
        width: 20px;
        height: 20px;
        outline: 0px;
        background: url(/pages/header/images/logo.png) center center / 38px 54px no-repeat transparent;
        text-decoration: none;
        vertical-align: top;
        background-size: 100%;
        margin-left: 3px;
    }


    .headers__utils {
        float: right;
        pointer-events: auto;
        /* margin-right: 10px; */
        height: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .headers__utils--nav {
        padding: 0px;
        clear: both;
        float: none;
    }

    .headers__utils--side {
        height: 30px;
        width: 30px;
    }
    .headers__utils--btn_side {
        width: 100%;
        height: 100%;
        background: url(/pages/header/images/icon--menu.svg) no-repeat center center;
        background-size: 100%;
    }
    .dark_mode .headers__utils--btn_side {
        background: url(/pages/header/images/icon--menu-w.svg) no-repeat center center;
        background-size: 100%;
    }


    ul.headers__utils--list {
        font-size: 0px;
        margin-left: auto;
        display: flex;
        align-items: center;
        height: 50px;
        gap: 10px;
    }
    .headers__utils--item {
        display: flex;
        position: relative;
        width: fit-content;
    }
    .headers__utils--link.headers__utils-search {
        width: 30px;
        height: 30px;
        border-radius: 0.2rem;
        display: inline-block;
        background-color: transparent;
        border: 0px;
        padding: 0px;
    }
    .icon_icon {
        width: 28px;
        height: 28px;
        background-size: 100%;
    }
    .icon_icon.-search {
        display: inline-block;
        vertical-align: middle;
        background-image: url(/pages/header/images/icon--search.svg);
    }
    .dark_mode .icon_icon.-search {
        background-image: url(/pages/header/images/icon--search-w.svg);
    }
    .icon_icon {
        background-repeat: no-repeat;
        background-position: center center;
        pointer-events: none;
    }


    .uixbutton {
        background-color: transparent;
        border: 0px;
        font-size: 13px;
        line-height: 1.5;
        text-decoration-line: underline;
        min-width: auto;
        color: rgb(0, 0, 0);
        padding: 0;
    }

    .uixbutton.-gnb-mypage {
        padding-left: 30px;
        background: url(/pages/header/images/icon-40_40-my.svg) center center / 30px 30px no-repeat;
        background-size: 100%;
        width: 35px;
        height: 35px;
    }
    .dark_mode .uixbutton.-gnb-mypage {
        background: url(/pages/header/images/icon-40_40-my-w.svg) center center / 30px 30px no-repeat;
        background-size: 100%;
    }
    




    /* 메뉴화면 */
    #moheadside.moheadside {
        display: none;
    }
    #moheadside.moheadside.-active {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 1700000;
        overflow: auto;
    }
    .mobile-gnb {
        position: relative;
        width: 100%;
        height: 100%;
    }



    /* menu_top */
    .gnb-new__mobile-header {
        width: 100%;
        position: fixed;
        padding: 10px 20px;
        background: #ffffff;
        display: flex;
        justify-content: space-between;
        min-height: 60px;
        max-height: 60px;
        box-shadow: inset 0 -0.1rem #EDEDED;
        z-index: 999;
        align-items: center;
    }
    .btn-flex {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .icon_icon.-home {
        display: block;
        width: 28px;
        height: 28px;
        background-size: 100% auto;
        background-image: url(/pages/header/images/icon--home.svg);
    }
    .icon_icon.-close {
        display: block;
        width: 28px;
        height: 28px;
        background-size: 100% auto;
        background-image: url(/pages/header/images/icon--close.svg);
    }
    .dark_mode .icon_icon.-home {
        background-size: 100% auto;
        background-image: url(/pages/header/images/icon--home-w.svg);
    }
    .dark_mode .icon_icon.-close {
        background-size: 100% auto;
        background-image: url(/pages/header/images/icon--close-w.svg);
    }




    /* menu_content */
    /* .gnb-new {
        overflow: hidden auto;
        height: calc(100% - 60px);
        margin: 0;
        max-width: initial;
        padding: 0.8rem 0 8rem;
    } */
    .gnb-new__aligner {
        overflow: hidden ;
        height: 100%;
        margin: 0;
        max-width: initial;
        padding: 60px 0 0px;
    }
    .gnb-new__groups {
        margin: 0;
        /* margin-top: 20px !important; */
        /* min-height: calc(100vh - 80px); */
        /* min-height: 50vh; */
        height: 100%;
        overflow: auto;
    }
    .gnb-new__group {
        pointer-events: inherit;
        background-color: #FFFFFF;
        width: 150px;
    }
    .gnb-new__group.-active {
        /* border-top: 1px solid #eeeeee; */
        background-color: var(--color-back);
    }
    .gnb-new__group.-active:first-child {
        border-top: none;
    }
    .gnb-new__nav {
        position: relative;
        padding: 0;
    }
    .gnb-new__group.-active .gnb-new__button {
        background-color: #FFFFFF;
        font-weight: 700;
        background-color: var(--color-back);
    }
    .gnb-new__button {
        display: block;
        position: relative;
        width: 100%;
        border: 0;
        outline: 0;
        min-height: 4.1rem;
        padding: 18px 20px 18px 20px;
        background-color: transparent;
        cursor: pointer;
        color: #000;
        font-size: 14px;
        font-family: inherit;
        text-align: left;
        line-height: 1.5;
        font-weight: 500;
    }
    /* .gnb-new__button:after {
        content: "";
        position: absolute;
        right: 20px;
        top: 30%;
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        background: url(/pages/header/images/icon--arrow-down.svg) no-repeat center center;
        background-size: cover;
    }
    .gnb-new__group.-active .gnb-new__button:after {
        background: url(/pages/header/images/icon--arrow-up.svg) no-repeat center center;
        background-size: cover;
    } */

    


    .gnb-new__panel {
        display: none;
        outline: 0;
        max-width: initial;
        padding-bottom: 2.8rem;
        z-index: 999;
        background-color: #FFFFFF;
    }
    .gnb-new__group.-active .gnb-new__panel, .gnb-new__group:first-child .gnb-new__panel {
        z-index: 10000;
        display: block;

        position: absolute;
        top: 60px;
        left: 150px;
        right: 0;
        bottom: 150px;
        overflow: hidden;
        padding: 0;

        background-color: var(--color-back);
    }

    .gnb-new__contents {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
    }
    .gnb-new__grids {
        justify-content: flex-start;
        width: 100%;
        max-width: auto;
        min-height: auto;
        margin: 0;
        border: none;
        height: 100%;
        flex-direction: column;
        overflow: auto;
    }
    .gnb-new__grid {
        width: 100%;
        padding: 20px;
        border-radius: 0.6rem;
        /* background: #fff; */
    }
    .gnb-new__title {
        margin: 0;
        color: rgb(0, 0, 0);
        font-weight: 700;
        font-size: 15px;
    }
    .gnb-new__list {
        gap: 10px;
        display: flex;
        flex-direction: column;
        margin-top: 18px !important;
        padding: 0 20px !important;
    }
    .gnb-new__list {
        /* display: none; */
    }
    .gnb-new__sub {
        appearance: none;
        margin: 0px;
        padding: 0px 0px 0px 1.6rem;
        border: 0px;
        font-family: inherit;
        line-height: 1.5;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        cursor: pointer;
        display: inline-block;
        width: auto;
        padding-left: 0px;
        font-size: 15px;
        font-weight: 700;
        color: #555555;
    }
    .gnb-new__link {
        display: inline-block;
        outline: 0px;
        text-decoration: none;
        color: rgb(85, 85, 85);
        font-size: 13px;
        line-height: 1.5;
    }


    /* .gnb-new__article {
        display: none;
    } */

    .gnb-new__banner {
        width: 100%;
        height: 150px;
        padding: 20px;
        border-radius: 1.2rem;
        overflow: hidden;
    }
    .gnb-new__banner-link {
        position: relative;
        width: 100%;
        height: 100%;
        /* display: block; */
        padding: 0.1rem 0.1rem 0.2rem;
        border-radius: 1rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .gnb-new__banner-title {
        position: absolute;
        left: 20px;
        top: 20px;
        max-width: 220px;
        font-size: 13px;
        font-weight: 700;
        color: rgb(0, 0, 0);
        overflow: hidden;
        text-overflow: ellipsis;
        overflow-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-height: 1.5;
        max-height: 90px;
        white-space: normal;
    }
    .gnb-new__banner-link img {
        width: 100%;
    }
    .gnb-new__banner-title::after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-left: 0.4rem;
        background: url(/pages/header/images/icon--arrow-right.svg) center center / 24px 24px no-repeat;
        /* vertical-align: top; */
    }










    
}






/* search_bar */
@media (min-width:1060px) {
    .search-wrapper {
        display: none;
        opacity: 0;
        position: absolute;
        left: 0;
        top: 100px;
        width: 100%;
        padding: 28px 40px  35px;
        background: #ffffff;
        transition: 0.2s all 0s ease-in-out;
        z-index: 190000;
    }
    .search-wrapper.-active {
        display: block;
        opacity: 1;
        border-bottom: 1px solid #eee;
    }
    .search-wrapper .search-wrap_ {
        max-width: 1440px;
        margin: 0 auto;
        position: relative;

        width: 500px;
    }
    .search-wrapper .field-wrapper {
        width: 500px;
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 8px;
        height: 50px;
    }
    .search-wrapper .search_boxss.field-wrapper {
        position: relative;
        z-index: 2;
        border: 1px solid var(--color-main);
        background: rgb(255, 255, 255);
        border-radius: 10px 10px 0px 0px;
    }
    .search-wrapper .field-wrapper .field {
        gap: 0;
        /* padding: 0 4px; */
        display: flex;
        align-items: center;
        height: 100%;
    }
    .search-wrapper .has-reset-input {
        position: relative;
        width: 100%;
    }
    .search-wrapper .field-wrapper .field input[type=text] {
        width: calc(100% - 40px);
        height: 44px;
        border: none;
        /* padding: 0 48px 0 12px; */
        /* border-bottom: 2px solid #9f9f9f; */
        border-radius: 10px;
        outline: 0;
        padding: 0 10px;
    }
    .has-reset-input input + button {
        display: none;
        position: absolute;
        right: 40px;
        top: 50%;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        background: #dddddd url(/pages/header/images/icon--close.svg) no-repeat center / 12px auto;
        border-radius: 50%;
        text-indent: -3000em;
        overflow: hidden;
        cursor: pointer;
    }
    .dark_mode .has-reset-input input + button {
        background: #dddddd url(/pages/header/images/icon--close-w.svg) no-repeat center / 12px auto;
    }
    .has-reset-input input + button.-active {
        display: block;
    }
    .search-wrapper .field-wrapper .field .btn-goSearch {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 25px;
        height: 25px;
        background: url(/pages/header/images/icon--search.svg) no-repeat center / 25px auto;
        cursor: pointer;
    }
    .dark_mode .search-wrapper .field-wrapper .field .btn-goSearch {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 25px;
        height: 25px;
        background: url(/pages/header/images/icon--search-w.svg) no-repeat center / 25px auto;
        cursor: pointer;
    }
    
    
    .search-wrapper #searchClose {
        position: absolute;
        right: 0;
        top: 0;
        width: 24px;
        height: 24px;
        min-width: 0;
        background: url(/pages/header/images/icon--close.svg) no-repeat 50% 50% / 12px;
        cursor: pointer;
    }
}
@media (max-width:1060px) {
    .search-wrapper {
        display: none;
        opacity: 0;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        padding: 0;
        background: rgba(0, 0, 0, 0.5);
        transition: 0.2s all 0s ease-in-out;
        z-index: 190000;

        height: 100vh;
    }
    .search-wrapper.-active {
        display: block;
        opacity: 1;
    }
    .search-wrapper .search-wrap_ {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #ffffff;
        /* border-radius: 15px 15px 0 0; */
    }
    .search-wrapper .field-wrapper {
        padding: 14px 20px 0 20px;
        display: flex;
        gap: 15px;
        justify-content: space-between;
        align-items: center;
        /* border-bottom: 1px solid #efefef; */
        position: relative;
        max-height: 75px;
        min-height: 75px;
        top: 50px;
    }
    .search-wrapper .field-wrapper .field {
        width: 100%;
        position: relative;
    }
    .search-wrapper .has-reset-input {
        display: flex;
        position: relative;
        width: 100%;
    }
    .search-wrapper .field-wrapper .field input[type=text] {
        width: 100%;
        height: 60px;
        border: none;
        /* padding: 0 48px 0 12px; */
        border: 1px solid #dddddd;
        border-radius: 6px 6px 0 0;
        padding: 0 30px 0 10px;
    }
    .has-reset-input input + button {
        display: none;
        position: absolute;
        right: 40px;
        top: 50%;
        width: 20px;
        height: 20px;
        margin-top: -11px;
        background: #dddddd url(/pages/header/images/icon--close.svg) no-repeat center / 10px auto;
        border-radius: 50%;
        text-indent: -3000em;
        overflow: hidden;
        cursor: pointer;
    }
    .has-reset-input input + button.-active {
        display: block;
    }

    
    .search-wrapper .field-wrapper .field .btn-goSearch {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: url(/pages/header/images/icon--search.svg) no-repeat center / 23px auto;
        cursor: pointer;
    }
    
    
    .search-wrapper #searchClose {
        position: absolute;
        right: 25px;
        top: 20px;
        width: 24px;
        height: 24px;
        min-width: 0;
        background: url(/pages/header/images/icon--close.svg) no-repeat 50% 50% / 20px;
        cursor: pointer;
    }
}

/* hrader_검색창_최근기록 */
#combobox-grid.auto-complete__listbox {
    position: relative;
    /* top: -2px; */
    /* width: 100%; */
    z-index: 2;
    background: rgb(255, 255, 255);
    border-radius: 0px 0px 10px 10px;
    padding: 0px 20px 0px;

    flex-direction: column;
    align-items: flex-start;
    /* overflow: auto; */
}
@media (min-width:1060px) {
    #combobox-grid.auto-complete__listbox {
        border: 1px solid var(--color-main);
        position: absolute;
        top: 49px;
        height: auto;
        max-height: 500px;
        /* overflow: auto; */
        /* overflow-y: scroll;
        overflow-x: hidden; */
    }
}
@media (max-width:1060px) {
    #combobox-grid.auto-complete__listbox {
        min-height: calc(100vh - 125px);
    }
}
#combobox-grid .recent-search.-active {
    padding-top: 20px;
    width: 100%;
    /* padding: 20px 20px; */
}
@media (max-width:1060px) {
    #combobox-grid .recent-search.-active {
        border: 1px solid #eee;
        border-radius: 0 0 6px 6px;
    }
}
#combobox-grid .search__recom-title {
    /* width: calc(100% - 30px); */
    color: #000000;
    font-size: 15px;
    margin: 0px 0px 20px;
    padding: 0 20px;
}
@media (min-width:1060px) {
    #combobox-grid .recent-search__list {
        height: 300px;
        overflow: auto;
    }
}
@media (max-width:1060px) {
    #combobox-grid .recent-search__list {
        height: 300px;
        overflow: auto;
        padding: 0 20px;
    }
}


#combobox-grid .recent-search__item {
    color: rgb(0, 0, 0);
    font-size: 13px;
    line-height: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    max-height: 35px;
    margin: 10px 0;
}
#combobox-grid .recent-search__flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    margin-right: 10px;
    border-bottom: 1px solid transparent;
    max-height: 30px;
}
#combobox-grid .recent-search__data-item {
    position: relative;
    font-size: 13px;
    line-height: 1.5;
    width: calc(100% - 30px);
    margin-right: 0px;
}
#combobox-grid .recent-search__data-item:hover {
    text-decoration: underline;
}
#combobox-grid .recent-search__data-del {
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    background: url(/pages/header/images/icon--close.svg) center center / 15px 15px no-repeat;
}



/* // 닫기 */
.auto-complete__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px #d9dbe1 solid;
    margin-top: 10px;
    padding: 10px 0;
}
.auto-complete__bottom .auto-complete__bottom-btn {
    text-decoration: underline;
    color: #555;
    font-size: 13px;
    font-weight: 400;
    margin-left: auto;
    width: fit-content;
}
/* search_bar */




/* tab연습실-합주실 */
#type__tabs {
    position: absolute;
    top: 110px;
    right: 0;
}
@media (max-width:1060px) {
    #type__tabs {
        position: absolute;
        top: 60px;
        right: 0;
    }
}
#type__tabs .type__tabs {
    display: inline-block;
    /* height: 5rem; */
    display: flex;
    align-items: center;
}
#type__tabs .type__tabs_list {
    display: flex;
    justify-content: center;
    width: auto;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #d9dbe1;
    border-radius: 100px;
    box-shadow: 0 0 1rem #0000001a;
}
#type__tabs .__tabs_item_link {
    display: flex;
    border-radius: 100px;
    transition: .2s;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    min-width: auto;
    padding: 7px 15px;
}
#type__tabs .__tabs_item_link.-active {
    color: #ffffff;
    background-color: var(--color-main);
    margin: 0px;
    font-size: 13px;
    font-weight: 700;
}












/* 페이지로드 */
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffe6;
}
.loading.-active {
    display: block;
    z-index: 20000;
}
.loading__wait {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    padding: 0 2rem;
    transform: translateY(-50%);
    text-align: center;
    background-color: #fff0;
}
.loading__round {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 3px;
    border-radius: 100%;
    background-color: var(--color-main);
}
@keyframes motion01 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(.4);}
}
@keyframes motion02 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(.8);}
}
@keyframes motion03 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(1.2);}
}
@keyframes motion04 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(.8);}
}
@keyframes motion05 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(.4);}
}
.loading__round.-shape1 {
    animation: motion01 1s ease-in-out infinite;
}
.loading__round.-shape2 {
    animation: motion02 1s ease-in-out infinite;
    animation-delay: -.46s;
}
.loading__round.-shape3 {
    animation: motion03 1s ease-in-out infinite;
    animation-delay: -.36s;
}
.loading__round.-shape4 {
    animation: motion04 1s ease-in-out infinite;
    animation-delay: -.26s;
}
.loading__round.-shape5 {
    animation: motion05 1s ease-in-out infinite;
    animation-delay: -.16s;
}






/* inner로딩 */
.inner_loading {
    display: flex;
    width: 100%;
    height: 100px;
    background-color: transparent;
    align-items: center;
    justify-content: center;
}
.inner_loading__wait {
    /* position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    padding: 0 2rem;
    transform: translateY(-50%); */
    text-align: center;
    background-color: #fff0;
}
.inner_loading__round {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 3px;
    border-radius: 100%;
    background-color: var(--color-main);
}
@keyframes motion01 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(.4);}
}
@keyframes motion02 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(.8);}
}
@keyframes motion03 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(1.2);}
}
@keyframes motion04 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(.8);}
}
@keyframes motion05 {
    0%, 100% {transform: scale(0);}
    50% {transform: scale(.4);}
}
.inner_loading__round.-shape1 {
    animation: motion01 1s ease-in-out infinite;
}
.inner_loading__round.-shape2 {
    animation: motion02 1s ease-in-out infinite;
    animation-delay: -.46s;
}
.inner_loading__round.-shape3 {
    animation: motion03 1s ease-in-out infinite;
    animation-delay: -.36s;
}
.inner_loading__round.-shape4 {
    animation: motion04 1s ease-in-out infinite;
    animation-delay: -.26s;
}
.inner_loading__round.-shape5 {
    animation: motion05 1s ease-in-out infinite;
    animation-delay: -.16s;
}
/* // inner로딩 */




/* 필수항목 */
.required {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    position: relative;
    width: 5px;
    font-size: inherit;
    vertical-align: bottom;
}
.required:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #de001b;
}
/* // 필수항목 */







/* back-btn */
#back-btn {
    position: absolute;
    bottom: 60px;
    left: 20px;
    z-index: 100000;
    border-radius: 50px;
}
@media (min-width:1060px) {
    #back-btn {
        bottom: 85px;
        left: 40px;
    }
}
#back-btn .back-imgs {
    background: #ffffff;
    box-shadow: 0 0 10px #0000001a;
    padding: 7px 10px;
    border-radius: 50px;

    display: block;
    position: relative;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.5) url(/pages/header/images/btn_next_prev.png) no-repeat;
    background-size: 15px auto;
    background-position: center 10px;
}
/* #back-btn .back-imgs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */








/* 팝업레이어 */
.popup_layer {
    position: fixed;
    z-index: 10000;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: #0000000a;
    border: 1px solid #eee;
}
.popup_layer_content {
    position: relative;
}
.popup_layer_content_inner {
    position: absolute;
    left: 10px;
    top: 10px;
    min-width: 300px;
    box-shadow: 0 0 16px 4px rgba(136, 152, 170, 0.15);
}
.popup_layer_img {
    width: auto;
    height: auto;
    max-width: 450px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.popup_layer_img img {
    width: 100%;
    height: auto;
}
.popup_layer_option {
    display: flex;
    justify-content: space-between;
    background: #000;
    color: #fff;
    padding: 5px 5px;
    font-size: 13px;
}
.popup_layer__text {
    cursor: pointer;
    font-size: 13px;
}
.popup_layer__close {
    cursor: pointer;
    font-size: 13px;
}
/* // 팝업레이어 */


/* 페이지네이션 */
nav.pagination {
    margin-top: 3.2rem;
    margin-bottom: 3rem;
}
nav.pagination .pagination__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
nav.pagination .pagination__item.-first {
    background: url(/pages/header/images/icon--arrow-left-2.svg) no-repeat center center;
    float: #fff;
    background-size: 20px;
}
nav.pagination .pagination__item.-prev {
    background: url(/pages/header/images/icon--arrow-left.svg) no-repeat center center;
    background-size: 20px;
}
nav.pagination .pagination__item.-next {
    background: url(/pages/header/images/icon--arrow-right.svg) no-repeat center center;
    background-size: 20px;
}
nav.pagination .pagination__item.-last {
    margin-left: -1px;
    background: url(/pages/header/images/icon--arrow-right-2.svg) no-repeat center center;
    background-size: 20px;
}
/* .pagination__item.-ctrl {
    width: 4.4rem;
} */

nav.pagination .pagination__link {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 10px;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

nav.pagination .pagination__item+.pagination__item {
    margin-left: .1rem;
}
/* .pagination__item {
    width: 4.4rem;
    font-size: 1.4rem;
} */

@media (min-width:1060px) {
    nav.pagination .pagination__item {
        width: 30px;
        height: 30px;
        line-height: 4.4rem;
        /* text-align: center; */
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav.pagination .pagination__item.-active {
        width: 30px;
        background-color: var(--color-main);
        color: #fff;
        border-radius: 50%;
    }
}


@media (max-width:1060px) {

    nav.pagination .pagination__item {
        width: 30px;
        height: 30px;
        line-height: 4.4rem;
        /* text-align: center; */
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav.pagination .pagination__item.-active {
        width: 30px;
        background-color: var(--color-main);
        color: #fff;
        border-radius: 50%;
    }

}
nav.pagination .pagination__item.-active .pagination__link {
    color: #fff;
}
/* // 페이지네이션 */












@keyframes total_list_none {
    0%, 100% {
        /* transform: scale(1); */
        background: #f6f8fb;
    }
    50% {
        /* transform: scale(.96); */
        background: #eef1f5;
    }
}
.-none {
    min-height: 20px;
    background: #f6f8fb;
    border-radius: 10px;
    /* border: 1px solid #eee; */
    animation: total_list_none 1s ease-in-out infinite;
}


.-title {
    font-size: 13px;
    line-break: anywhere;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    vertical-align: top;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.-desc {
    font-size: 12px;
    color: #555;
    line-break: anywhere;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    vertical-align: top;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}




















/* 뷰하단버튼 */

.payment-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 1px 0 10px #698aa154;
    z-index: 99999;
}
@media (min-width: 1060px) {
    .payment-widget__wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        max-width: 1340px;
        margin: 0 auto;
    }
}
.payment-widget__aligner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
}
@media (min-width: 1060px) {
    .payment-widget__aligner {
        align-items: center;
        flex-wrap: nowrap;
        max-width: 1340px;
        margin: 0 auto;
        padding: 1rem 2rem;
    }
}
@media (max-width: 1060px) {
    .payment-widget__aligner {
        min-height: 130px;
    }
}
.payment-widget__aligner.-flex-end {
    padding-top: 1.2rem;
}
@media (min-width: 1060px) {
    .payment-widget__aligner.-flex-end {
        justify-content: flex-end;
    }
}
.payment-widget__wrap .payment-widget__aligner {
    margin: 0;
    width: 100%;
}

@media (min-width: 1060px) {
     .payment-widget__currencyfares {
        width: auto;
        align-items: center;
        padding-right: 0;
    }
}
.payment-widget__currencyfares {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 100%;
    padding-right: 0;
}

.payment-widget__key {
    display: block;
    padding-left: 5px;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
}
@media (min-width: 1060px) {
    .payment-widget__key {
        padding-left: 0;
        padding-right: 40px;
        font-size: 18px;
        line-height: 1.56;
    }
}
.payment-widget__currencyfares .payment-widget__key {
    margin-right: auto;
}
@media (max-width: 1059px) {
    .payment-widget__key {
        font-size: 15px;
    }
}
.payment-widget__fares {
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    padding-left: 10px;
}
@media (min-width: 1060px) {
    .payment-widget__fares {
        align-items: center;
    }
}
.-flex-end .payment-widget__fares {
    margin-left: 0;
}
.payment-widget__fare {
    display: block;
    padding: 0 0 10px;
    border: 0;
    background: transparent none;
    color: var(--color-main);
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    font-weight: 700;
}
@media (min-width: 1060px) {
    .payment-widget__fare {
        padding: 10px  0;
        font-size: 18px;
    }
    .payment-widget__fare:last-child {
        padding-right: 20px;
    }
}
.payment-widget__fare-num {
    margin-right: .2rem;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.56;
    vertical-align: -1px;
}
@media (min-width: 1060px) {
    .payment-widget__fare-num {
        margin-right: .4rem;
        font-size: 20px;
        line-height: 1.5;
    }
}
@media (max-width: 1059px) {
    .payment-widget__fare-num {
        font-size: 15px;
    }
}
.payment-widget__confirms {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
@media (min-width: 1060px) {
    .payment-widget__confirms {
        width: auto;
    }
}
.payment-widget__confirm {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid var(--color-main);
    border-radius: 1rem;
    background-color: var(--color-main);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
@media (min-width: 1060px) {
    .payment-widget__confirm {
        display: inline-block;
        width: auto;
        min-width: 250px;
        height: 60px;
        font-size: 20px;
        line-height: 1.56;
    }
    .payment-widget__confirm:first-child {
        margin-left: auto;
    }
}
/* // 뷰하단버튼 */





.message {
    font-size: 10px;
    color: #555;
}





/* 광고 */
.ADS_Content {
    margin: 40px auto !important;
    background: #eee !important;
    width: auto;
    display: block;
    text-align: center;
    padding: 0px 0px;
    overflow: hidden;
}
@media (min-width:1060px) {
    .ADS_Content {
        padding: 40px 40px;
    }
}
.ADS_Content .ADS_Content_inner {
    max-width: 1340px;
    margin: 0 auto;
}
/* // 광고 */











/* bid */
.bid__aligner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width:1060px) {
    .bid__aligner {
        padding: 0 40px;
    }
}
/* // bid */