/* =========================================
   상담신청 완료 레이어 팝업 (모바일 기준)
========================================= */
.complete-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.complete-modal-overlay.show {
    display: flex;
}

.complete-box {
    position: relative;
    width: 90%;
    max-width: 322px;
    height: 125px;
    border-radius: 3px;
    border: 1px solid #B70000;
    background: rgba(183, 0, 0, 0.9);
    box-shadow: 2px 2px 5px 0 rgba(89, 0, 0, 0.30);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    box-sizing: border-box;
}

.complete-icon {
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    width: 71px;
    height: 74px;
    aspect-ratio: 71 / 74;
    background: url('/assets/images/request_complate.svg') 0.186px 0.242px / 100% 98.157% no-repeat;
    background-color: transparent;
}

.complete-title {
    color: #FFF;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    margin: 0 0 4px 0;
}

.complete-desc {
    color: #FFF;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .complete-desc {
        font-size: 11px;
    }
}
