@charset "utf-8"; /* 노토산스 */
/* static에서 가져오지 못해 구굴 CDN 사용 */
@import url("notosanskr2.css"); /* 오픈산스 */
@import url("opensans.css"); /* static에서 가져오지 못해 구굴 CDN 사용 */
/* CSS Document */
* {
    padding: 0;
    margin: 0;
    font-size: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    color: #171717;
    letter-spacing: -0.02em;
}

header,main,footer,section,article {
    display: block;
}

html {
    position: relative;
}

html,body {
    width: 100%;
    height: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

ul,ol,li,dl,dt,dd {
    list-style: none;
}

i,em,address {
    font-style: normal;
}

label,button {
    cursor: pointer;
}

button {
    border: none;
    background: none;
}

hr,legend {
    display: none;
}

img,fieldset,iframe {
    border: none;
}

img {
    max-width: 100%;
    vertical-align: top;
}

caption {
    display: none;
}

input,button {
    box-sizing: border-box;
    vertical-align: middle;
    -webkit-appearance: none;
    border-radius: 0;
    outline: none;
}

select {
    box-sizing: border-box;
    vertical-align: middle;
    border-radius: 0;
    -webkit-appearance: none;
    outline: none;
}

table {
    border: none;
    border-collapse: collapse;
    padding: 0;
    border-spacing: 0;
    table-layout: fixed;
}

.btn_box {
    margin-top: 15px;
    font-size: 0;
    text-align: center;
}

.btn_box a {
    display: inline-block;
    margin: 0 5px;
}

.btn_box button {
    display: inline-block;
    margin: 0 5px;
}

.bt_type1 {
    padding: 0 18px;
    color: #fff;
    line-height: 35px;
    border-radius: 3px;
}

.bt_color1 {
    background-color: #0061ad;
}

.bt_color2 {
    background-color: #808080;
}

.row,.col {
    box-sizing: border-box;
}

.row:after {
    display: block;
    content: '';
    clear: both;
}

.skip a {
    display: block;
    position: absolute;
    left: 0;
    top: -9999em;
    width: 100%;
    background-color: #272727;
    color: #aaa;
    font: bold 12px/3.4 arial,sans-serif;
    text-align: center;
    z-index: 99999;
}

.skip a:hover,.skip a:active,.skip a:focus {
    top: 0;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
}

.blind {
    display: block;
    overflow: hidden;
    top: -1000em;
    position: absolute;
}

/* float */
.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.fl_left {
    float: left;
}

.fl_right {
    float: right;
}

/*기본*/
#wrap {
    width: 100%;
    height: 100%;
}

/*공통부분*/
textarea {
    border: 1px solid #c9c9c9;
    padding: 5px;
}

.container-row:after {
    display: block;
    clear: both;
    content: '';
}

input[type="checkbox"], input[type="radio"] {
    width: 0;
    height: 0;
    border: 0;
}

/*페이징*/
#paging {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

#paging a {
    display: inline-block;
    border: 1px solid #aaa;
    width: 25px;
    height: 25px;
    line-height: 23px;
    border-radius: 3px;
    box-sizing: border-box;
    text-align: center;
    transition: 0.3;
}

#paging a.num:hover {
    color: #fff;
    background: #666;
    border-color: #666;
}

#paging a.num.on {
    color: #fff;
    background: #666;
    border-color: #666;
}

/* 폰트 */
.op-sans {
    font-family: 'open sans', sans-serif !important;
}

.op-sans-semibold {
    font-weight: 600 !important;
    font-family: 'open sans', sans-serif !important;
}

.op-sans-b {
    font-weight: 700 !important;
    font-family: 'open sans', sans-serif !important;
}

.deftxt {
    letter-spacing: -0.04em;
}

.txt-14 {
    font-size: 14px;
    line-height: 21px;
}

.txt-16 {
    font-size: 16px;
}

.txt-24 {
    font-size: 24px;
    line-height: 36px;
}

.txt-bold {
    font-weight: bold;
}

.txt-medium {
    font-weight: 500;
}

.point-color1 {
    color: #0a0a0a;
}

.point-color2 {
    color: #999;
}

.point-color3 {
    color: #efae00 !important;
}

.point-color4 {
    color: #6a3efd !important;
}

/* 간격 */
.mt0 {
    margin-top: 0 !important;
}

.pt0 {
    padding-top: 0 !important;
}

/* 라인 */
.bdt0 {
    border-top: 0 !important;
}

.bdb0 {
    border-bottom: 0 !important;
}

/* 정렬 */
.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

.tar {
    text-align: right !important;
}

.tac {
    text-align: center !important;
}

.tal {
    text-align: left !important;
}

/* 공통팝업 */
.lpop {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .6);
}

.lpop__content-wrap {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    background: #fff;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, .25);
}

.lpop__content {
    display: flex;
    align-items: center;
    padding: 50px 20px;
}

.lpop__content-txt {
    width: 100%;
    color: #0a0a0a;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.04em;
    text-align: center;
}

.lpop__btn-wrap {
    display: flex;
}

.lpop__btn {
    width: 100%;
    height: 50px;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    letter-spacing: -0.04em;
    text-align: center;
}

.lpop__btn--grey {
    background: #acadb1;
}

.lpop__btn--black {
    background: #000;
}

.survey {
    padding: 50px 20px 20px;
    background: #fff;
}

.survey__btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
}

/* 로딩 */
.loading {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.loading.black {
    background: rgba(0,0,0,.5);
}

.loading .loading-bar__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 40px;
    text-align: center;
    font-size: 1rem;
    transform: translate(-50%, -50%);
}

.loading .loading-bar__wrap>div {
    height: 100%;
    width: 6px;
    display: inline-block;
    margin: 0 2.5px;
    animation: d 1.2s infinite ease-in-out;
}

.loading.black .loading-bar__wrap>div {
    background-color: #fff;
}

.loading .loading-bar2 {
    animation-delay: -1.1s!important;
}

.loading .loading-bar3 {
    animation-delay: -1s!important;
}

.loading .loading-bar4 {
    animation-delay: -.9s!important;
}

.loading .loading-bar5 {
    animation-delay: -.8s!important;
}

.loading.white {
    background: rgba(255,255,255,.5);
}

.loading.white .loading-bar__wrap>div {
    background-color: #1d1d1d;
}

.loading.white .loading-bar3 {
    background: #6a3efd !important;
}

@keyframes d {
    0%,40%,to {
        transform: scaleY(.4)
    }

    20% {
        transform: scaleY(1)
    }

    ;}

@media screen and (max-width: 320px) {
    .lpop__content-txt {
        font-size: 14px;
    }
}

/* 임시 */
.hidden {
    position: absolute;
    left: -9999em;
}

#doc .wrap #container {
    padding: 0 20px 20px;
}

/* 2022-03-08 */
.pop_service_closing .opensans {
    font-family: 'open sans';
}

.pop_service_closing .lpop__content-wrap {
    width: 100%;
    max-width: 320px;
    left: 50%;
    transform: translate(-50%,-50%);
}

.pop_service_closing .lpop__content {
    display: block;
}

.pop_service_closing .tit {
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: -1px;
    color: #6a3efd;
}

.pop_service_closing .tit::before {
    content: '';
    display: block;
    width: 89px;
    height: 10px;
    margin-bottom: 10px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='88.117' height='10' viewBox='0 0 88.117 10'%3E%3Cg data-name='%5B+%5D logo'%3E%3Cpath data-name='패스 1' d='M462.181 1430.288h-2.037v5.74c0 .357.144 2.148-1.588 2.215-1.767.068-2.133-1.711-2.19-2.12l-1.814.574a3.833 3.833 0 0 0 3.168 3.382 3.7 3.7 0 0 0 4.019-1.767 5.825 5.825 0 0 0 .442-2.643z' transform='translate(-454.552 -1430.138)' style='fill:%23171717'/%3E%3Cpath data-name='패스 2' d='M940.336 1423.814a4.978 4.978 0 1 0 5.043 4.978 4.714 4.714 0 0 0-5.043-4.978zm0 8.033a3.063 3.063 0 1 1 2.855-3.056 2.787 2.787 0 0 1-2.855 3.056z' transform='translate(-926.334 -1423.784)' style='fill:%23171717'/%3E%3Cpath data-name='패스 5271' d='m0 0 9.71.087.018 2.044-9.71-.087z' transform='rotate(-70 16.12 -9.038)' style='fill:%236a3efd'/%3E%3Cpath data-name='패스 3' d='M4942.144 1438.5v-2.085h4.328v-1.75h-4.328v-2.09h4.76v-1.875h-6.811v9.676h6.927v-1.876z' transform='translate(-4858.902 -1430.54)' style='fill:%23171717'/%3E%3Cpath data-name='패스 4' d='M4264.015 1430.7h-.679l-2.733 7.2-2.733-7.2h-2.729v9.676h2.051v-6.5l2.461 6.5h1.9l2.461-6.5v6.5h2.05v-9.676h-2.05z' transform='translate(-4186.713 -1430.54)' style='fill:%23171717'/%3E%3Cpath data-name='패스 5' d='m1890.852 1437.422-4.014-6.725h-2.417v9.676h2.051v-6.713l4.007 6.713h2.424v-9.673h-2.051z' transform='translate(-1858.554 -1430.54)' style='fill:%23171717'/%3E%3Cpath data-name='패스 6' d='M2416.749 1427.456a5.021 5.021 0 0 0-2.727-1.074c-1.588-.318-1.875-.574-2.026-.972a1.047 1.047 0 0 1 .6-1.239 2.326 2.326 0 0 1 1.922-.018 1.572 1.572 0 0 1 .886 1.149l1.842-.56a3.153 3.153 0 0 0-1.754-2.091 4.981 4.981 0 0 0-3.939.015 2.74 2.74 0 0 0-1.713 2.289 2.683 2.683 0 0 0 1.689 2.7 23.961 23.961 0 0 0 2.693.674c.413.091.937.234 1.107.712a1.022 1.022 0 0 1-.512 1.243 2.863 2.863 0 0 1-2.487-.075 1.613 1.613 0 0 1-.851-1.313l-1.88.3a3.3 3.3 0 0 0 2.452 2.83 5.871 5.871 0 0 0 3.772-.233 2.567 2.567 0 0 0 1.681-2.205 2.539 2.539 0 0 0-.755-2.132z' transform='translate(-2374.221 -1422.243)' style='fill:%23171717'/%3E%3Cpath data-name='사각형 2' transform='translate(65.085 .158)' style='fill:%23171717' d='M0 0h2.051v9.676H0z'/%3E%3Cpath data-name='패스 7' d='M3545.82 1433.868c0-1.751-1.264-3.17-3.527-3.17h-4.193v9.676h2.051v-3.335h2.014l1.623 3.335h2.275l-1.918-3.733a3 3 0 0 0 1.675-2.773zm-5.671-1.3h2.088a1.309 1.309 0 0 1 1.455 1.3 1.309 1.309 0 0 1-1.455 1.3h-2.088z' transform='translate(-3482.305 -1430.54)' style='fill:%23171717'/%3E%3Cpath data-name='패스 8' d='M3055.489 1430.7h-4.195v9.676h2.051v-3.335h2.144c2.263 0 3.527-1.419 3.527-3.17-.001-1.754-1.265-3.171-3.527-3.171zm1.4 3.17a1.309 1.309 0 0 1-1.455 1.3h-2.088v-2.6h2.088a1.309 1.309 0 0 1 1.455 1.3z' transform='translate(-3004.305 -1430.54)' style='fill:%23171717'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.pop_service_closing .tit span {
    font-size: 19px;
    letter-spacing: 0;
    color: inherit;
}

.pop_service_closing .txt {
    margin-top: 18px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -1px;
    color: #0a0a0a;
}

.pop_service_closing .txt span {
    font-size: 15px;
    letter-spacing: 0;
    color: inherit;
}

.pop_service_closing ul {
    margin-top: 21px;
    padding: 11px 0 13px;
    border-top: 2px solid #1d1d1d;
    border-bottom: 1px solid #1d1d1d;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: #0a0a0a;
}

.pop_service_closing li:not(:first-child) {
    margin-top: 2px;
}

.pop_service_closing li strong {
    margin-left: 6px;
}

.pop_service_closing li span {
    font-size: 15px;
    color: inherit;
}

.pop_service_closing .dot {
    position: relative;
    margin-top: 7px;
    padding-left: 9px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
    color: #6a3efd;
}

.pop_service_closing .dot::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 3px;
    height: 3px;
    background: #6a3efd;
    border-radius: 100%;
}

.pop_service_closing .dot span {
    color: inherit;
}

.pop_service_closing .lpop__btn {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.47px;
}

/* 2022-06-30 */
.mw_service_closing {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 60px 0 60px;
    box-sizing: border-box;
    color: #000000;
}

.mw_service_closing .logo {
    display: block;
    width: 150px;
    height: 17px;
    margin: 0 auto;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='150' height='17' viewBox='0 0 150 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3504 0.159637H9.05264V9.94909C9.05264 10.5581 9.28476 13.6127 6.48195 13.7238C3.61881 13.8401 3.02879 10.8055 2.93676 10.1084L0 11.0864C0.070556 12.1189 1.04607 16.2123 5.12809 16.8517C7.71003 17.4461 10.3635 16.2165 11.6346 13.837C12.2031 12.4103 12.4475 10.8684 12.3504 9.33063V0.159637Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.1958 13.7442C20.0426 13.7442 18.3808 11.4313 18.3808 8.57775C18.3808 5.72424 20.049 3.41129 23.1958 3.41129C26.3427 3.41129 28.0109 5.72424 28.0109 8.57775C28.0109 11.4313 26.3427 13.7442 23.1958 13.7442ZM23.1958 0.159637C17.6372 0.159637 14.6907 3.92793 14.6907 8.57983C14.6907 13.2317 17.6255 17 23.1958 17C28.7662 17 31.701 13.2317 31.701 8.57983C31.701 3.92793 28.7544 0.159637 23.1958 0.159637Z' fill='black'/%3E%3Cmask id='mask0_3_333' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='32' y='0' width='10' height='17'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M32.7021 0H41.2949V16.7699H32.7021V0Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3_333)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M32.7021 15.3268L35.7413 16.7695L41.2949 1.441L38.2558 -0.000610352L32.7021 15.3268Z' fill='%236635FF'/%3E%3C/g%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M141.836 13.8783V10.4168H149.082V7.50937H141.836V4.03967H149.805V0.92511H138.402V17H150V13.8844L141.836 13.8783Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M131.968 0.92511H130.863L126.416 12.8833L121.968 0.92511H117.526V16.999H120.862V6.20517L124.871 17H127.964L131.973 6.20517V17H135.309V0.92511H131.973H131.968Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M54.6247 12.0958L48.0385 0.92511H44.0723V16.999H47.4374V5.84769L54.0122 17H57.9898V0.92511H54.6247V12.0958Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M72.1809 8.94394C71.0373 7.9847 70.2942 7.66806 67.6559 7.1303C65.0187 6.59255 64.546 6.16068 64.2934 5.489C64.0618 4.64603 64.48 3.7605 65.2818 3.39715C66.2881 2.9196 67.4578 2.90818 68.4725 3.36704C69.2491 3.74181 69.7952 4.46436 69.9399 5.30733L72.9984 4.36158C72.6127 2.81163 71.5436 1.51603 70.0866 0.831898C68.0018 -0.0733615 65.6277 -0.0640182 63.5492 0.857852C61.9476 1.51915 60.8512 3.00888 60.7076 4.72182C60.5452 6.68183 61.6772 8.52142 63.5104 9.27718C64.9768 9.74435 66.4694 10.1264 67.9809 10.4191C68.6653 10.5728 69.5353 10.8147 69.8172 11.6203C70.0908 12.4311 69.7323 13.3197 68.9682 13.7194C67.6486 14.3194 66.1214 14.2717 64.8416 13.5927C64.0209 13.1391 63.4895 12.3034 63.4297 11.3753L60.3093 11.8757C60.5368 14.1492 62.1551 16.0479 64.3794 16.6511C66.4505 17.2262 68.658 17.0871 70.639 16.2576C72.9691 15.2963 74.0718 12.647 73.1012 10.3392C72.8842 9.82221 72.5718 9.34985 72.1798 8.94498L72.1809 8.94394Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M111.34 17H114.433V0.92511H111.34V17Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M98.4856 4.02967H101.933C103.136 3.9174 104.205 4.7808 104.322 5.95853C104.329 6.03609 104.331 6.11366 104.33 6.19224C104.347 7.3761 103.38 8.34767 102.17 8.36502C102.091 8.36604 102.012 8.36196 101.933 8.35482H98.4856V4.02967ZM107.848 6.19224C107.848 3.28363 105.763 0.92511 102.027 0.92511H95.103V17H98.4887V11.4584H101.813L104.494 17H108.247L105.081 10.7991C106.836 9.91628 107.913 8.12213 107.848 6.19224Z' fill='black'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M89.9354 6.19224C89.9526 7.3761 88.9548 8.34767 87.7087 8.364C87.6259 8.36502 87.5431 8.36196 87.4614 8.35482H83.9078V4.02967H87.4614C88.7032 3.91638 89.8064 4.7808 89.9247 5.95853C89.9322 6.0361 89.9365 6.11366 89.9354 6.19224ZM87.5528 0.92511H80.4124V17H83.9035V11.4584H87.5528C91.4041 11.4584 93.5567 9.09983 93.5567 6.19122C93.5567 3.27955 91.4052 0.92511 87.5528 0.92511Z' fill='black'/%3E%3C/svg%3E%0A");
}

.mw_service_closing .visually_hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.mw_service_closing .bg_gray {
    margin-top: 30px;
    padding: 50px 0;
    background: #F4F5FA;
    text-align: center;
}

.mw_service_closing .bg_gray strong {
    display: block;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -0.4px;
}

.mw_service_closing .bg_gray em {
    display: block;
    margin-top: 34px;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: -0.4px;
}

.mw_service_closing .body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.4px;
}

.mw_service_closing .body::before {
    content: '';
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.65021 19.7788C10.5517 23.6803 16.8774 23.6803 20.7789 19.7788C24.6804 15.8773 24.6804 9.55165 20.7789 5.65012C16.8774 1.7486 10.5517 1.7486 6.65021 5.65012C4.8763 7.42404 3.90925 9.69982 3.74823 12.0191L2.46158 10.7324L1.04736 12.1467L4.82958 15.9289L8.6118 12.1467L7.19759 10.7324L5.74119 12.1888C5.86337 10.3214 6.63806 8.4907 8.06443 7.06434C11.1849 3.94386 16.2442 3.94386 19.3647 7.06434C22.4852 10.1848 22.4852 15.2441 19.3647 18.3646C16.2442 21.4851 11.1849 21.4851 8.06443 18.3646L6.65021 19.7788ZM14.5868 8.09143H12.5868V14.068L15.8503 17.1908L17.233 15.7457L14.5868 13.2136V8.09143Z' fill='black'/%3E%3C/svg%3E%0A");
}

.mw_service_closing .foot {
    margin: 0 30px;
}

.mw_service_closing .foot a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    margin: 0 auto;
    border-radius: 24px;
    background-color: #000;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
}

.mw_service_closing .foot a:not(:first-child) {
    margin-top: 10px;
}

.mw_service_closing {
    justify-content: center;
    padding: 0;
}

.mw_service_closing .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 740px;
    padding: 50px 0;
    box-sizing: border-box;
}

.mw_service_closing .body {
    margin-top: 30px;
}

.mw_service_closing .foot {
    margin-top: 30px;
}
/* 2024-08-28 */
[class*=ico_] {display: inline-block;font-style: normal;background-position: 50% 50%;background-repeat: no-repeat;background-size: 100% auto;}
.error_area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;justify-content:center;min-height:calc(100vh - 216px);padding-left:20px;padding-right:20px;}
.error_area .ico_info_circle{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23F6330A' d='M20 26a2 2 0 1 1 .001 3.999A2 2 0 0 1 20 26zm1.5-15v12h-3V11h3z'/%3E%3Cpath fill='%231D1D1D' fill-rule='nonzero' d='M20 0c11.046 0 20 8.954 20 20s-8.954 20-20 20S0 31.046 0 20 8.954 0 20 0zm0 2C10.059 2 2 10.059 2 20s8.059 18 18 18 18-8.059 18-18S29.941 2 20 2z'/%3E%3C/g%3E%3C/svg%3E");height:60px;width:60px}
.error_area .btn{-webkit-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-ms-flex-pack:center;align-items:center;background-color:transparent;background-repeat:no-repeat;border:1px solid transparent;border-radius:50px;color:#111;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;font-weight:700;justify-content:center;letter-spacing:-.5px;line-height:20px;padding:3px 14px;text-align:center;white-space:nowrap;width:auto}
.error_area .title{display:block;margin-top:50px;font-size:20px;font-weight:700;line-height:30px;padding-top:80px;position:relative;text-align:center}
.error_area .title i{left:50%;position:absolute;top:0;-webkit-transform:translateX(-50%);transform:translateX(-50%)}
.error_area>p{font-size:14px;line-height:22px;margin-top:10px;text-align:center}
.error_area>p+p{margin-top:20px}
.error_area .btn_group{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:80px;margin-bottom:50px}
.error_area [class*=btn].btn_m{border-radius:50px;font-size:16px;letter-spacing:-.4px;line-height:24px;padding:11px 30px}
.error_area .btn_outline_black{border:1px solid #111!important}
.error_area .btn_black{background-color:#111;border:1px solid #111;color:#fff}
.error_area .btn_group a{margin:0 5px;max-width:155px;width:100%}