* {
	margin: 0;
	padding: 0;
}

body, html {
	width: 100%;
	height: 100%;
    /* overflow: hidden; */
}

@font-face {
	font-family: 'pretendard-r';
	src: url('/font/Pretendard-Regular.woff') format('woff');
}

#superView {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

#topView {
    width: 100%;
    height: auto;
    display: flex;
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
    z-index: 1;
}

#topView .topNav {
    width: 100%;
    height: auto;
    display: flex;
    background-color: #3a92d4;
}

#topView .topNav .topTitle {
    width: 100%;
    height: auto;
    font-size: 16px;
    font-family: "pretendard-r", sans-serif;
    background-color: #3a92d4;
    color: white;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0.5rem 0.5rem;
}

#contentsView {
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: white;
    overflow-x: hidden;
    overflow-y: hidden;
    min-height: 0;
}

.titleContents {
    width: 100%;
    height: auto;
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
}

.titleContents b {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 22px;
    font-family: "pretendard-r", sans-serif;
}

.resultContents {
    width: calc(100% - 40px);
    height: auto;
    background-color: rgb(189, 205, 230);
    border-radius: 16px;
    display: flex;
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.resultContents .result-left {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0.7rem 1rem;
    gap: 0.4rem;
}

.resultContents .result-right {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0.7rem 1rem;
    gap: 0.4rem;
}

.result-left .result-text {
    width: 100%;
    height: auto;
    font-size: 17px;
	font-family: "pretendard-r", sans-serif;
}

.result-right .result-value {
    display: flex;
    justify-content: end;
    width: 100%;
    height: auto;
    font-size: 17px;
	font-family: "pretendard-r", sans-serif;
}

.inputContents-prev {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: 18px;
    margin-bottom: 18px;
}

.input-row2 {
    width: calc(100% - 40px);
    height: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

#prev-use-div {
    font-size: 18px;
	font-family: "pretendard-r", sans-serif;
}

#prev-use-select {
    font-size: 18px;
	font-family: "pretendard-r", sans-serif;
    width: 140px;
    color: black;
    text-align: center;
    outline: none;
}

.verti-wrap {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

.inputContents {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inputContents .inputList {
    width: calc(100% - 40px);
    height: 100%;
}

.list-no {
    display: none;
}

.list-title {
    width: 100%;
    position: relative;
    display: inline-block;
}

.list-title .no-title {
    font-size: 20px;
	font-family: "pretendard-r", sans-serif;
    font-weight: bold;
    display: inline;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
}

.list-title img {
    width: 50x;
    height: 24px;
    position: absolute;
    object-fit: contain;
    /* background-color: red; */
    margin-left: 4px;
}

.list-input {
    width: 100%;
    height: auto;
    margin-top: 12px;
    display: flex;
    margin-bottom: 48px;
    align-items: center;
}

.select-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    height: auto;
    align-items: center;
}

.price-btn {
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: white;
    color: #333;
    font-size: 14px;
    font-family: "pretendard-r", sans-serif;
    cursor: pointer;
    width: 70px;
    height: auto;
    padding: 0.4rem 0;
}

.price-btn:hover {
    border-color: #888;
}

.price-btn.active {
    background-color: #3a92d4;
    color: white;
    border-color: #3a92d4;
}

.select-input {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
}

.select-input div {
    width: 100%;
    height: auto;
    font-size: 14px;
    font-family: "pretendard-r", sans-serif;
}

.select-input .commaInput {
    width: 0%;
    height: 0%;
}

.input-78 {
    display: flex;
    width: 100px;
    height: auto;
    font-size: 14px;
    font-family: "pretendard-r", sans-serif;
    outline: none;
    border: 2px solid #ccc;
    border-radius: 8px;
    color: #3a92d4;
    text-align: center;
    padding: 0.4rem;
    margin-top: 12px;
}

.info-popup {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 0.8rem;
    font-size: 14px;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: none;
    z-index: 10;
    margin-top: 12px;
}

.save-contents {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

#save-btn {
    width: 140px;
    height: auto;
    background-color: #3a92d4;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.5rem;
    margin-bottom: 12px;
}

.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: rgba(0,0,0,0.5);
    z-index: 900;
}

#popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 901;
    width: 300px;
    height: auto;
    border-radius: 10px;
}

#popup #popup-img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

#save-form {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#popup .agree-chk {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#chk-img {
    width: 18px;
    height: 18px;
}

.agree-chk .agree-text {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    font-size: 16px;
}

#popup .popup-input {
    width: 100%;
    height: auto;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 0.5rem;
}

#save-btn2 {
    width: 100%;
    height: auto;
    background-color: #3a92d4;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

#popup2 {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 903;
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.popup2-cont {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.popup2-cont .popup2-text-area {
    width: 100%;
    height: auto;
    font-size: 14px;
    padding: 0;
}

.popup2-cont .agree-btn {
    width: 100%;
    height: auto;
    color: white;
    font-size: 16px;
    font-weight: bold;
    background-color: #3a92d4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-sizing: border-box;
    margin-top: 12px;
}


/* common */
.tc-brown {
    color: rgb(165, 71, 42)
}

.tc-red {
    color: red;
}

.tc-blue {
    color: blue;
}

.fw-7 {
    font-weight: 700;
}