/**
  * 메뉴얼 관련 스타일
  * 2019.04.30 / ksm
  */

.color-primary {
    color: #ff724c;
    font-style: normal;
}

.menual-button,
.menual-body__close-button {
    border: 0 none;
    padding: 0;
    background-color:transparent;
    outline: none;
}

.menual-wrap.is-open {
    display: block;
}
.menual-wrap {
    display: none;
}
.menual-popup {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    overflow-y: scroll;
}
.menual-body {
    position: relative;
    margin: 0 auto;
    max-width: 963px;
    width: 100%;
    height: 100%;
    background-color: #fafafa;
}
.menual-body__title {
    margin: 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.8px;
    color: #333;
    padding-bottom: 14px;
    border-bottom: 2px solid #d5d5d5;
    background-color: #fff;
}
.menual-body__close-button {
    z-index: 1;
    position: absolute;
    top: 13px;
    right: 17px;
    width: 20px;
    height: 20px;
}

.menual-info{
    padding: 20px;
    background-color: #fafafa;
    border-top: 1px solid #ebebeb;
}
.menual-info dl {
    margin-bottom: 0;
}
.menual-info__title {
    margin: 13px 0 10px 0;
    padding: 14px 0 0 20px;
    text-indent: -20px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #333;
}
.menual-info__title:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0 none;
}
.menual-info__step {
    text-indent: 0;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    background-color: #e84418;
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -0.2px;
    color: #fff;
}
.menual-info__item {
    text-indent: -5px;
    padding-left: 10px;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.46;
    letter-spacing: -0.2px;
    color: #aaa;
}
.menual-info__item:before {
    position: relative;
    top: -3px;
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #aaa;
}

.menual-image{
    padding: 15px 25px 25px;
    background-color: #fff;
}
.menual-image--mobile {
    display: block;
}
.menual-image--pc{
    display: none;
}

.menual-button{
    position: relative;
    top: -2px;
    width: 17px;
    height: 17px;
    vertical-align: middle;
}
.menual-button__image{
    width:100%;
    vertical-align: top;
}

@media screen and (min-width:767px) {
    .menual-popup {
        padding: 88px 0 88px;
        display: flex;
        align-items: center;
        overflow-y: hidden;
    }
    .menual-body {
        max-width: 626px;
        overflow-y: scroll;
        background-color: #fff;
    }
    .menual-body__title{
        padding: 30px 0 15px 20px;
        font-size: 20px;
    }
    .menual-body__close-button {
        top: 17px;
        width: 34px;
        height: 34px;
    }
    .menual-info__title {
        font-size: 15px;
    }
    .menual-image{
        padding: 20px;
    } 
    .menual-image--mobile {
        display: none;
    }
    .menual-image--pc{
        display: block;
    }
}

@media screen and (min-width:1000px) {
    .menual-body {
        max-width: 963px;
        height: auto;
        overflow-y: auto;
        padding-right: 344px;
        background-color: #fafafa;
    }
    .menual-info,
    .menual-body__title {
        position: absolute;
        right: 0;
        width: 344px;
    }
    .menual-info {
        border-top: 0 none;
    }
    .menual-body__title {
        z-index: 1;
        top: 0;
        background-color: #fafafa;
    }
    .menual-info {
        top: 74px;
    }
    .menual-image{
        min-height: 505px;
        border-right: 1px solid #ebebeb;
    }    
} 
