@import url(color.css);

* {
    box-sizing: border-box;
}

html,
body {
    /* height: 100%; */
    margin: 0;
    font-family: 'Noto Sans KR', "NanumBarunGothic", "Malgun Gothic", "맑은 고딕", arial, sans-serif;
    font-size: 1em;
    font-style: normal;
    letter-spacing: -1px;
    line-height: initial;   
    /* height: calc(var(--vh, 1vh) * 3); */
    height: calc(var(--vh, 1vh) * var(--vh-multiplier, 1));
}

body {
    height: 100vh;
    -webkit-overflow-scrolling: touch;
}

.hide {
    display: none;
}

.pointer-not-event {
    pointer-events: none;
}

/** margin start **/
.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

/** margin end **/

.d-none {
    display: none;
}

.iframe {
    min-width: 100%;
    height: 0px;
    border: none;
}

.width-0 {
    width: 0%;
}

.float-left {
    float: left;
}

.page {
    position: relative;
    padding: 0 20px 100px;
    min-height: 100vh;
    line-height: 1.6em;
}

.page.with-bottom-nav {
    /* height: 100%; */
    padding-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
}


.page-header {
    width: 100%;
    padding: 15px 15px;
}


.guide {
    font-size: 1em;
    color: var(--sub-text);
    margin-bottom: 80px;
}

/** input field  start **/
.field {
    position: relative;
    max-width: 100%;
    margin-bottom: 15px;
}

.field-title {
    display: inline-block;
    font-size: 1em;
    font-weight: bold;
    margin-top: 40px;
}

.field-title .asterisk {
    color: var(--point);

}

.field .input {
    width: 100%;
    height: 45px;
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    background: var(--default);
    color: #000000;
    transition: all ease 0.25s;
    font-size: 1em;
}

.field .input:focus {
    border: 2px solid var(--primary);
    /* background: #ffffff; */
}

.field .input:disabled {
    background: #e3e4e6;
    color: var(--sub-text);
}

.field .input::placeholder {
    color: #b7b7b7;
}

.field .input:placeholder-shown~.btn-eraser {
    opacity: 0;
}

.field .input:read-only {
    color: #888;
}

.field .defult_input {
    width: 100%;
    height: 45px;
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    background: var(--default);
    color: #000000;
    transition: all ease 0.25s;
    font-size: 1em;
    margin-top: 2px;
    margin-bottom: 2px;
}

.field .defult_input:focus {
    border: 2px solid var(--primary);
    /* background: #ffffff; */
}

.field .defult_input:disabled {
    background: #e3e4e6;
    color: var(--sub-text);
}

.field .defult_input::placeholder {
    color: #b7b7b7;
}

.field .defult_input:placeholder-shown~.btn-eraser {
    opacity: 0;
}

.field .defult_input:read-only {
    color: #888;
}

.field .btn-eraser {
    position: absolute;
    top: 12px;
    right: 17px;
    transition: all ease 0.25s;
}

.field .btn-eraser img {
    width: 18px;
    height: 18px;
}

/* 우편번호 */
.post {
    display: flex;
}

/** input field end **/

/** button start **/
.button-bottom {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 20px;
    z-index: 100;
  
   
}

.btn {
    border-radius: 3px;  
    transition: all ease 0.25s;
    font-size: 1em;
}

.btn:disabled {
    background: #dddddd;
    color: #888;
}

.btn:active {
    background-color: #dddddd;
}


.btn-lg {
    height: 50px;
}

.btn-md {
    height: 45px;
}

.btn-sm {
    height: 40px;
    /* border-radius: 20px; */
    font-size: 1em;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 20px;
    text-align: center;
    background-color: transparent;
}

.btn-icon img {
    width: 100%;
}

.btn-text {
    width: auto;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1em;
    font-weight: bold;
    line-height: 1.2em;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
    color: #ffffff;
}

.btn-point {
    background-color: var(--bg-point);
    border: none;
    color: var(--text-primary);
}

.btn-default {
    background-color: var(--default);
    border: none;
    color: var(--primary);
}

.btn-primary-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-lime-outline {
    background-color: transparent;
    border: 1px solid var(--lime);
    color: var(--dark-lime);
}

.btn-primary:active,
.btn-point:active {
    opacity: 0.6;
}

.btn-per100 {
    width: 100%;
}

.btn-per50 {
    width: 50%;
}


.button-pre50:last-child {
    margin-right: 0;
}

.btn-search {
    width: 40%;
    border-radius: 0 4px 4px 0;
}

/** button end **/

/** bottom navigation start **/
.bottom-navigation {
    /* display: none !important; */
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    background: #ffffff;
    box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, .1);
    padding: 0 10px 0 0;

    .nav-item {
        color: gray;
    }
}

.bottom-navigation .nav-item {
    flex-direction: row;
    flex: 1 1 0;
    text-align: center;
}

.bottom-navigation .nav-item .nav-icon {
    display: inline-block;
    height: 30px;
}

.bottom-navigation .nav-item.active {
    color: var(--primary);
}

.bottom-navigation .nav-item .material-icons {
    font-size: 32px;
}

/* 홈 inactive*/
/* .bottom-navigation .nav-item .nav-icon.home {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23828D95' d='M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}

.bottom-navigation .nav-item.active .nav-icon.home {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%230086FF' d='M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}

.bottom-navigation .nav-item .nav-icon.applications {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23828D95' d='M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}

.bottom-navigation .nav-item.active .nav-icon.applications {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%230086FF' d='M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}

.bottom-navigation .nav-item .nav-icon.registration {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23828D95' d='M17,13H13V17H11V13H7V11H11V7H13V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}

.bottom-navigation .nav-item.active .nav-icon.registration {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%230086FF' d='M17,13H13V17H11V13H7V11H11V7H13V11H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}

.bottom-navigation .nav-item .nav-icon.point {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23828D95' d='M17 3H7C4.79 3 3 4.79 3 7V17C3 19.21 4.79 21 7 21H19C20.11 21 21 20.11 21 19V9C21 7.9 20.11 7 19 7V5C19 3.9 18.11 3 17 3M17 5V7H7C6.27 7 5.59 7.2 5 7.54V7C5 5.9 5.9 5 7 5M15.5 15.5C14.67 15.5 14 14.83 14 14S14.67 12.5 15.5 12.5 17 13.17 17 14 16.33 15.5 15.5 15.5Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}
    
.bottom-navigation .nav-item.active .nav-icon.point {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%230086FF' d='M17 3H7C4.79 3 3 4.79 3 7V17C3 19.21 4.79 21 7 21H19C20.11 21 21 20.11 21 19V9C21 7.9 20.11 7 19 7V5C19 3.9 18.11 3 17 3M17 5V7H7C6.27 7 5.59 7.2 5 7.54V7C5 5.9 5.9 5 7 5M15.5 15.5C14.67 15.5 14 14.83 14 14S14.67 12.5 15.5 12.5 17 13.17 17 14 16.33 15.5 15.5 15.5Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}

.bottom-navigation .nav-item .nav-icon.customer_service {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23828D95' d='M17,11H15V9H17M13,11H11V9H13M9,11H7V9H9M20,2H4A2,2 0 0,0 2,4V22L6,18H20A2,2 0 0,0 22,16V4C22,2.89 21.1,2 20,2Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
}

.bottom-navigation .nav-item.active .nav-icon.customer_service {
    width: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%230086FF' d='M17,11H15V9H17M13,11H11V9H13M9,11H7V9H9M20,2H4A2,2 0 0,0 2,4V22L6,18H20A2,2 0 0,0 22,16V4C22,2.89 21.1,2 20,2Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 25px;
} */


.bottom-navigation .nav-item p {
    color: #828D95;
    font-size: 0.8em;
    margin: 0;
}

.bottom-navigation .nav-item.active p {
    color: var(--primary);
}

/** bottom navigation end **/


/** checkbox start **/
.checkbox-group {
    padding-left: 0;
    border: 1px solid var(--divider);
    border-radius: 4px;
}

.checkbox-group .checkbox-item {
    position: relative;
    padding: 15px 10px;
}

.checkbox-group .checkbox-item:first-child {
    border-bottom: 1px solid var(--divider);
}

.checkbox-group .checkbox-item:last-child {
    padding-bottom: 25px;
}

.checkbox-group .checkbox-item a {
    position: absolute;
    top: 14px;
    right: 15px;
    font-size: 0.9em;
    line-height: 24px;
    color: var(--sub-text);
    text-decoration: underline;
}

.checkbox-group label {
    display: block;
    position: relative;
    padding-left: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-group label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkbox-group label .checkmark {
    position: absolute;
    top: -5px;
    left: 0;
    height: 30px;
    width: 30px;
    border-radius: 15px;
    background-color: #eee;
}

.checkbox-group label input[type="checkbox"]:checked~.checkmark {
    background-color: var(--primary);
}

.checkbox-group label .checkmark:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-group label .checkmark-narrow {
    position: absolute;
    top: -4px;
    left: 0;
    height: 30px;
    width: 30px;
}

.checkbox-group label .checkmark-narrow:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid var(--default);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-group label input[type="checkbox"]:checked~.checkmark-narrow:after {
    border: solid var(--primary);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* checkbox 단독 */
.checkbox label {
    display: block;
    position: relative;
    font-size: 1em;
    line-height: 1.3em;
    padding-left: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.checkbox label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 10px;
    background-color: #eee;
}

.checkbox label input[type="checkbox"]:checked~.checkmark {
    background-color: var(--primary);
}

.checkbox label .checkmark:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/** checkbox end **/

/** radio group start **/
/* .radio-group {
    font-size: 0;
    letter-spacing: 0;
    word-spacing: 0;
}

.radio-group .radio {
    display: inline-block;
    vertical-align: middle;
    width: calc(33.3% - 14px);
    margin-right: 20px;
    margin-bottom: 20px;
}

.radio-group .radio:nth-child(3n+0) {
    margin-right: 0;
}


.radio-group .radio input[type="radio"],
.radio-group .radio input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}


.radio-group .radio .radio-content {
    position: relative;
    background-color: var(--default);
    color: var(--primary);
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem !important;
    line-height: 45px;
}

.radio-group .radio .radio-content p {
    margin: 0;
}

.radio-group .radio .radio-content.with-img {
    font-size: 1em;
    line-height: 20px;
    height: 100px;
}

.radio-group .radio .radio-content.with-img p {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 1rem !important;
}


.radio-group .radio input[type="radio"]:checked+.radio-content,
.radio-group .radio input[type="checkbox"]:checked+.radio-content {
    background-color: var(--point);
    color: #ffffff;
    transition: all 0.2s;
}

.radio-group .radio.ramen .radio-content {
    background-image: url('../img/icon/category/ramen_inactive.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.ramen input[type="radio"]:checked+.radio-content,
.radio-group .radio.ramen input[type="checkbox"]:checked+.radio-content {
    background-image: url('../img/icon/category/ramen_active.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.beer .radio-content {
    background-image: url('../img/icon/category/beer_inactive.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.beer input[type="radio"]:checked+.radio-content,
.radio-group .radio.beer input[type="checkbox"]:checked+.radio-content {
    background-image: url('../img/icon/category/beer_active.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.water .radio-content {
    background-image: url('../img/icon/category/water_inactive.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.water input[type="radio"]:checked+.radio-content,
.radio-group .radio.water input[type="checkbox"]:checked+.radio-content {
    background-image: url('../img/icon/category/water_active.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.yogurt .radio-content {
    background-image: url('../img/icon/category/yogurt_inactive.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.yogurt input[type="radio"]:checked+.radio-content,
.radio-group .radio.yogurt input[type="checkbox"]:checked+.radio-content {
    background-image: url('../img/icon/category/yogurt_active.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.milk .radio-content {
    background-image: url('../img/icon/category/milk_inactive.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.milk input[type="radio"]:checked+.radio-content,
.radio-group .radio.milk input[type="checkbox"]:checked+.radio-content {
    background-image: url('../img/icon/category/milk_active.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.coffee .radio-content {
    background-image: url('../img/icon/category/coffee_inactive.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
}

.radio-group .radio.coffee input[type="radio"]:checked+.radio-content,
.radio-group .radio.coffee input[type="checkbox"]:checked+.radio-content {
    background-image: url('../img/icon/category/coffee_active.png');
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center 10px;
} */

/* 월 선택 header */
.month-picker-header {
    display: flex;
    font-size: 1.3em;
    font-weight: bold;
    color: var(--primary);
    align-items: center;
    margin-bottom: 20px;
}

.month-picker-header .btn-prev-wrap,
.btn-next-wrap {
    flex: 1 1 0;
    flex-direction: row;

}

.month-picker-header .btn {
    background: transparent;
    line-height: 44px;
    text-align: center;
}

.month-picker-header .btn:active {
    background: #dddddd;
}

.month-picker-header .btn-prev-wrap {
    text-align: left;
}

.month-picker-header .btn-next-wrap {
    text-align: right;
}

.month-picker-header .btn img {
    width: 9px;
}

/** radio group end **/

/** List 공통 start **/
.no-data {
    width: 100%;
    height: 100%;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    padding: 15vw 10vw;
    color: var(--sub-text);
}

.icon-nodata {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23828D95' d='M9 4V8H6V4H9M4 16V13H2V16H4M2 12H4V9H2V12M18 8H22C22 6.89 21.1 6 20 6H18V8M22 13H20V16H22V13M20 9V12H22V9H20M9 20V18H6V20H9M5 18H4V17H2V18C2 19.11 2.9 20 4 20H5V18M20 17V18H18V20H20C21.11 20 22 19.11 22 18V17H20M4 8H5V4H4C2.89 4 2 4.89 2 6V8H4M17 18H14V20H17V18M13 18H10V20H13V18M17 6H14V8H17V6M10 8H13V6H12L10 4V8Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 50px;
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

/** List 공통 end **/



/** layer popup 공통 **/
.overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    visibility: visible;
    opacity: 1;
    transition: all ease 0.25s;
}

.overlay.hide {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    /* z-index: -1; */
}

/** alert modal start **/
.alert-modal {
    width: 80vw;
    height: auto;
    background: #fff;
    /* border-radius: 20px; */
}

.alert-modal .modal-title {
    font-size: 1.2em;
    font-weight: bold;
    padding: 15px;
    border-bottom: 1px solid var(--divider);
}

.alert-modal {
    .modal-message {
        padding: 20px 15px 20px;
        /* font-weight: 300; */
        font-size: 1em;
    }

    .logo {
        display: flex;
        justify-content: center;
        padding: 25px;

        .versionInfo {
            /* font-size: 1em; */
            padding-top: 15px;
            padding-left: 15px;
        }

        img {
            width: 30%;
        }
    }

    .textInfo {
        padding: 10px;
        text-align: center;
    }
}

.alert-modal .modal-message b {
    color: var(--primary);
}

.alert-modal .modal-message a {
    color: var(--primary);
    font-weight: bold;
}

.alert-modal .modal-btn {
    /* border-radius: 0 0 20px 20px; */
    border-radius: 0;
}

.alert-modal .button-wrap.divisions {
    display: flex;
}

.alert-modal .button-wrap.divisions .modal-btn:first-child {
    /* border-radius: 0 0 0px 20px; */
    border-radius: 0;
    border: none;
    background-color: var(--default);
    color: var(--primary);
}

.alert-modal .button-wrap.divisions .modal-btn:last-child {
    /* border-radius: 0 0 20px 0px; */
    border-radius: 0;
}

/** alert modal end **/



/** confirm modal start **/
.confirm-modal {}

.confirm-modal .modal-btn {
    display: block;
    width: 50%;
    float: left;
}

.confirm-modal .modal-btn100 {
    width: 100%;
}

.confirm-modal .modal-btn:first-child {
    /* border-radius: 0 0 0 20px; */
}

.confirm-modal .modal-btn:last-child {
    /* border-radius: 0 0 20px 0; */
}

/** confirm modal end **/


/** bottom popup start **/
.bottom-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-height: calc(100% - 90px);
    background: #ffffff;
    padding: 15px 25px 25px;
    border-radius: 15px 15px 0 0;
    transition: all 0.4s;
}

.hide .bottom-popup {
    bottom: -100%;
}

.bottom-popup .popup-handler {
    width: 96px;
    height: 5px;
    background: #E7EAEE;
    margin: 0 auto;
}

.bottom-popup .popup-title {
    padding: 20px 0;
    font-size: 1.3em;
    font-weight: bold;
}

.bottom-popup .category-all {
    text-align: right;
    padding: 0 0 15px;
}

.bottom-popup .category-all .btn {
    text-decoration: underline;
}

.bottom-popup .popup-content {
    height: calc(100% - 143px);
    overflow-y: auto;
    overflow-x: hidden;
}

/** bottom popup end **/

/** toast popup start **/
.custom-toast {
    position: fixed;
    display: flex;
    bottom: 0;
    flex-direction: row;
    align-items: center;
    width: calc(100% - 40px);
    min-height: 40px;
    background-color: var(--point);
    margin: 20px 20px 80px 20px;
    opacity: 1;
    border-radius: 4px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 1000;
    transition: all 0.4s;
}

.custom-toast.success {
    background: #00b894;
}

.custom-toast.danger {
    background: var(--danger);
}

.custom-toast.warning {
    background: #ffa600;
    color: #000000;
}

.custom-toast .toast-message {
    width: 85%;
    padding: 0 15px;
    font-size: 1em;
    color: #ffffff;
}

.custom-toast .close-toast {
    text-align: right;
    width: 15%;
    height: 40px;
    margin-right: 5px;
    vertical-align: middle;
    background: url('../img/icon/close_w.png') no-repeat;
    background-size: 40px;
    background-position: center right;
    cursor:pointer;
}

/** toast popup end **/


/** fin list start **/
.fin-list {
    border-radius: 4px;
}

.fin-list ul {
    padding-left: 20px;
    border-radius: 4px;
}

.fin-list li {
    line-height: 1.3em;
    margin-bottom: 15px;
}

.fin-list li b {
    color: var(--primary);
}

/** fin list end **/

.versionBtn.hide {
    display: none;
}

/** full popup start **/
.popup {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: block;
    background: #ffffff;
    padding: 60px 0 0;
    z-index: 1000;
}

.full-popup {  
    background: #ffffff;
    padding: 0px 0 0;
    z-index: 1000;
}

.full-popup.hide, .popup.hide, .full-popup .popup-header.hide{
    display: none;
}

.full-popup .popup-header {
    position: fixed;
    display: flex;
    flex: 1;
    width: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    color: #000000;
    border-bottom: 1px solid var(--divider);
    padding: 10px 15px;
    font-weight: bold;
    align-items: center;
    z-index: 100;
}

.full-popup .popup-header .popup-title {
    margin-left: 10px;
}

.full-popup .popup-header .btn-icon .icon.close {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23828D95' d='M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 30px;
}

.full-popup .popup-content {
    height: 100%;
    overflow: auto;
    padding: 0 20px 20px;
    text-align: justify;

    p {
        color: rgb(96, 96, 96);
        font-size: 0.9em;
        line-height: 1.6em;
    }
}

/** full popup end **/

/* 탭 전체 스타일 */
.tabs {
    margin-top: 50px;
    padding-bottom: 40px;
    background-color: #ffffff;
    width: 100%;
    margin: 0 auto;
}

/* 탭 스타일 */
.tab_item {
    width: calc(100%/2);
    height: 50px;
    border-bottom: 1px solid #ffffff;
    background-color: #dbdbdb;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #333333;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
}

.tab_item:hover {
    opacity: 0.75;
}

/* 라디오 버튼 UI삭제*/
input[name="tab_item"] {
    display: none;
}

/* 탭 컨텐츠 스타일 */
.tab_content {
    display: none;
    padding: 2px 2px 0;
    clear: both;
    overflow: hidden;
}


/* 선택 된 탭 콘텐츠를 표시 */
#apply:checked~#apply_content,
#applyList:checked~#applyList_content,
#tab1:checked~#tab1_content,
#tab2:checked~#tab2_content,
#design:checked~#design_content {
    display: block;
}

/* 선택된 탭 스타일 */
.tabs input:checked+.tab_item {
    background-color: #fff;
    color: #333;
}

.right-menu {
    .menuBgBox {
        display: none;
        position: fixed;
        background: #000000;
        opacity: 0.5;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 900;
    }

    .show {
        display: block !important;
    }

    .menu {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        max-width: 0;
        transition: 0.5s ease;
        z-index: 1000;
        background-color: #fff;

        .menu-inner {
            .menuLbl {
                padding-left: 5px;
            }

            /* padding: 15px; */
            .userName {
                padding: 15px;
                font-size: 1.2em;
            }

            .menu-list {
                margin-top: 30px;
                line-height: 1.8em;

                .menuBox {
                    padding: 7px 4px 4px 14px;
                    display: flex;

                    &:hover {
                        background: lightgray;
                    }
                }

                .logoutBox {
                    position: absolute;
                    width: 100%;
                    bottom: 0;
                    padding: 8px;
                }
            }
        }
    }

    .burger-icon {
        cursor: pointer;
        display: inline-block;
        position: absolute;
        z-index: 1002;
        padding: 8px 0;
        top: 30px;
        right: 20px;
        user-select: none;
        width: auto;
        margin: 0;
    }

    .burger-icon .burger-sticks {
        background: #333;
        display: block;
        height: 2px;
        position: relative;
        transition: background .5s ease-out;
        width: 18px;
    }

    .burger-icon .burger-sticks:before,
    .burger-icon .burger-sticks:after {
        background: #333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .5s ease-out;
        width: 100%;
    }

    .burger-icon .burger-sticks:before {
        top: 5px;
    }

    .burger-icon .burger-sticks:after {
        top: -5px;
    }

    .burger-check {
        display: none;
    }

    .burger-check:checked~.menu {
        max-width: 250px;
    }

    /* .burger-check:checked~ body {
        filter: blur(5px);
    } */

    .burger-check:checked~.burger-icon .burger-sticks {
        background: transparent;
    }

    .burger-check:checked~.burger-icon .burger-sticks:before {
        transform: rotate(-45deg);
    }

    .burger-check:checked~.burger-icon .burger-sticks:after {
        transform: rotate(45deg);
    }

    .burger-check:checked~.burger-icon:not(.steps) .burger-sticks:before,
    .burger-check:checked~.burger-icon:not(.steps) .burger-sticks:after {
        top: 0;
    }
}

.select-wrap {
    min-width: 120px;
}

.select-wrap select {
    width: 100%;
    height: 45px;
    padding: 10px 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    background: #ffffff;
    color: #000000;
    transition: all ease 0.25s;
    border: 1px solid #d9dee9;
    font-size: 1em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25'%3E%3Cpath fill='%23000000' d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E") no-repeat right #ffffff;
    -webkit-appearance: none;
    background-position-x: 95%;
    background-size: 20px;
    line-height: 21px;
}

.scroll-container {
    /* height: 70vh;
    overflow-y: auto;
    padding-bottom: 50px; */
    /* 키보드 높이만큼 */
}

.preview-img {
    height: 120px;
    margin-bottom: 3px;
}


.home-detail {
    line-height: 1.5;
    .detail {
        float: left;
        margin-right: 0.3em;
    }

    .title {
        overflow: hidden;
    }
}