﻿/*navigation*/
.layout-wrap{height: 110vh; padding: 0 15px;}
.layout-nav { padding: 35px 0; border-top: 1px solid #F2F2F2; border-bottom: 1px solid #F2F2F2; margin-top: 50px;}
.page-tit{padding: 30px 0 40px;}
.page-tit strong{font-size: 22px; font-weight: 600; color:#013dfd;}
.page-tit p{font-size: 15px; padding-top: 20px; font-weight: 400; color: #555;}

@media only screen and (min-width: 500px){
    .layout-wrap {
        position: relative;
        height: 110vh;
        width: 500px;
        margin: 0 auto;
    }
}

/*layout*/
.fixed {position: fixed; z-index: 1000; left: 50%;transform: translateX(-50%);max-width:500px; }
.w-full {width: 100%;}
.round-0 {border-radius: 0 !important;}
.border-0 {border: none !important}
.z-1000 {z-index: 1000;}
.flex {display: flex; align-items: center;}
.txt-center {text-align: center;}
.txt-blue{color: #013dfd;}


/*intro*/
.intro_wrap{display: flex; align-items: center; justify-content: center; width: 100%; height: 100vh;}
.img-logo{text-align: center;}
.txt-intro{font-size: 20px; padding: 30px 0 80px 0; text-align: center; display: block; width: 100%;}
.btn-intro .btn{display: block; background: #FFE101; font-size: 22px; text-align: center; color:#222; padding:20px 30px; border-radius: 10px; width: 100%; font-weight: 600;}

/*환급유형선택*/
.btn-type .btn{padding: 40px 20px 40px 20px; background: #F2F2F2; display: block; border-radius: 10px; text-align: center; color: #001453; font-size: 24px; font-weight: 600;}
.btn-type .btn+.btn {margin-top: 15px;}

/*체크박스*/
.checkbox {display: inline-block;position: relative; font-size:15px; line-height: 30px;}
.checkbox_input {position: absolute;top: 0;left: 0;width: 18px;height: 18px;opacity: 0;z-index: 0; }
.checkbox_label {display: block;padding: 0 0 0 30px;cursor: pointer; font-weight: 400;}
.checkbox_label:before {content: '';position: absolute;top: 5px;left: 0;width: 18px;height: 18px;background-color: transparent;border: 1px solid #767676;border-radius: 2px;z-index: 1;-webkit-transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);-webkit-transition-property: background-color, border-color;transition-property: background-color, border-color;}
.checkbox_label:after {content: '';position: absolute;top: 8px;left: 7px;width: 5px;height: 9px;border-bottom: 2px solid transparent;border-right: 2px solid transparent;-webkit-transform: rotate(45deg);transform: rotate(45deg);z-index: 2;-webkit-transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);}
.checkbox_input:checked + .checkbox_label:before {background-color: #013dfd;border-color: #013dfd;}
.checkbox_input:checked + .checkbox_label:after {border-color: #fff;}

/*약관동의*/
.term-list{ padding: 10px 20px; border: 1px solid #f2f2f2; border-radius: 10px;}
.term-list li{position: relative; display: flex; align-items: center; color: #333;}
.term-list li+li {margin-top: 5px;}
.term-list li a .mark{ color: #fa5252; padding-right: 5px;}
.term-confirm {position: relative; padding: 10px 0;display: flex;justify-content: space-between; align-items: center; font-size: 15px; font-weight: 500;}

/*버튼*/
.btn-next{padding:25px 0;}
.btn-next button{display: block; background: #d0d0d0; padding: 20px; color: #fff; width: 100%; border-radius: 10px; font-size: 20px; font-weight: 500; }
.btn-next .btn-active {background: #013dfd;}

/*input*/
.input-item {margin-bottom: 20px;}
.input-item:last-child{margin-bottom: 0;}

.input-item input:placeholder {color: #9f9f9f;}
.error-message {font-size: 12px; color: #fa5252; letter-spacing: -0.38px;  margin-top: 4px;}
.input-item.type-01 {display: flex; align-items: center; margin-bottom: 0;}
.input-item.type-01 label {padding: 0 10px; font-weight: 400;}
.input-item.type-01 input {max-width:100%; text-align: center;}
.input-item.type-01 .input-item {margin-bottom: 0;}
.input-item.type-02 .input-item {margin-bottom: 0;}
.input-item.type-02 {display: flex; align-items: center; margin-bottom: 0;}
.input-item.type-02 span{padding: 0 10px;}

.input-item {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.input-item label {
    position: absolute;
    top: 20px;
    left: 12px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    transform-origin: 0 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease;
    pointer-events: none;
}

.input-item input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 16px 12px 0 12px;
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    color: #000;
    transition: all 0.15s ease;
}
.input-item input:hover {
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}
.input-item input:not(:-moz-placeholder-shown) + label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
}
.input-item input:not(:-ms-input-placeholder) + label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
}
.input-item input:not(:placeholder-shown) + label {
    color: rgba(0, 0, 0, 0.5);
    transform: translate3d(0, -12px, 0) scale(0.75);
    top:15px;
}
.input-item input:focus {
    outline: none;
    box-shadow: inset 0 -2px 0 #0077FF;
}
.input-item input:focus + label {
    color: #0077FF;
    transform: translate3d(0, -12px, 0) scale(0.75);
    top:15px;
}
.input-item input:focus + .label + .focus-bg {
    transform: scaleX(1);
    transition: all 0.1s ease;
}
.input-item input::-webkit-input-placeholder {
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
}
.input-item input:not(:focus)::-webkit-input-placeholder {
    color: transparent;
}


/*라디오버튼*/
.radio-wrap {position: relative; display: flex; align-items: center; border: 1px solid #dee2e6; border-radius: 10px; overflow: hidden;}
.radio-wrap:after {content: '';width: 1px; height: 50px; position: absolute; left:50%; background: #dee2e6;}
.radio-group {width: 50%;  height: 50px; text-align: center; position: relative; }
.radio-label { color: #212529;background: #fff;cursor: pointer; width: 100%; height: 100%; display: block; padding: 14px; }
.radio-wrap input[type="radio"]:checked ~ .radio-label {background: #013dfd; color: #fff;}
.hidden {display: none;}
.input-group{margin-bottom: 20px;}
.label{color: #333; margin-bottom: 5px; display: block;}

/*alert*/
.alert-area {position: fixed; top: 0; background: rgba(0,0,0,.8);z-index: 9999;width: 100vw;height: 0;opacity: 0;overflow: hidden;transition: opacity .3s ease;display: none;}
.alert-area.show{height: 100%;opacity: 1;display: flex; align-items: center; justify-content: center;}
.alert{width: 300px; border-radius: 5px; overflow: hidden;}
.alert .alert-box {width: 300px; margin: 0 auto; border-radius: 5px; overflow: hidden; }
.alert .txt-box{padding: 50px 15px; color: #555;  background: #fff; text-align: center;}
.alert .txt{color: #fff; text-align: center; opacity: .8; font-size: 1.1rem;}
.alert .alert-close {background: #013dfd; display: block; width: 100%; text-align: center; color: #fff; font-weight: 500; padding: 15px; }
.loader{margin: 0 0 2em;height: 60px;width: 100%;text-align: center;padding: 1em;margin: 0 auto 1em;display: inline-block;vertical-align: top;}
.loader svg path, .loader svg rect{fill: #013dfd;}

/*약관상세*/
.term-area{opacity:0; display: none; position: fixed; top:0; left: 0; width: 100vw; height: 100vh; z-index: 100; background: #fff;    overflow-y:scroll;overflow-x:hidden;}
.term-area.show{opacity: 1; display: block;}
.term{ width: 500px; margin: 0 auto;padding: 30px 20px 0;}
.term-cont dt,.term-cont dd{margin-bottom: 40px;}

/*설치가이드*/
.guide {padding: 30px 0;}
.guide strong{font-size: 18px;}
.guide p{font-size: 15px; padding-top: 20px; font-weight: 400; color: #555;}
.guide ul{padding-top: 20px;}
.guide ul li+li{padding-top: 20px;}
.guide ul li span{display: block; margin-bottom: 5px;}
.guide ul li img{width: 100%;}

@media only screen and (max-width: 500px){
    .layout-nav{margin-top: 20px; padding: 25px 0;}
    .page-tit{padding: 30px 0 0;}
    .page-tit p{padding-top: 10px;}
    .term{width: 100%;}
}