@import url(/_fonts/fonts.css);
a {color: inherit;text-decoration: none;}

body {
	font-family: "Pretendard";
	margin: 0;
	padding: 0;
	background-color: #f4f4f9;
}
header {
	background-color: #0078d4;
	color: #fff;
	padding: 20px;
	text-align: center;
}
nav {
	display: flex;
	justify-content: center;
	background-color: #005bb5;
	padding: 10px;
}
nav a {
	color: #fff;
	margin: 0 15px;
	text-decoration: none;
	font-weight: bold;
}
nav a:hover {
	text-decoration: underline;
}
section {
	padding: 20px;
	text-align: center;
}

ul li span:nth-child(1) {
	color: red;
	font-weight: bold;
}

ul li span:nth-child(2) {
	color: blue;
	font-weight: bold;
}

.toast {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: green;
	color: #bbb;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	left: 50%;
	top: 100px;
	font-size: 17px;
	opacity: 0;
	transition: opacity 0.5s, bottom 0.5s ease-in-out;
}

.toast.show {
	visibility: visible;
	opacity: 1;
	
}

.services {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.service {
	background: #fff;
	margin: 10px;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 30%;
	min-width: 250px;
	text-align: center;
}
.service img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 10px;
}
footer {
	background-color: #0078d4;
	color: #fff;
	text-align: center;
	padding-top: 15px;
	position: fixed;
	bottom: 0;
	width: 100%;
	font-size:14px;
}

.stock_list{
	width:100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top:10px;
}
.notice_txt{
	font-size:12px;
	padding:10px;
}
table {
    width: 60%;
    border-collapse: collapse;
}

th {
    background-color: #0078d4; 
    color: white;
    padding: 10px; 
    text-align: left; 
	font-size: 14px;
}

td {
    padding: 10px; 
    text-align: left; 
    border: 1px solid #ddd; 
	font-size: 14px;
}

.date_input_selection {
    width: auto;
    font-size: 14px;
	font-weight:bold;
    padding: 3px 0px 3px 10px;

}
.time_input{
	width:50px;
	font-size: 14px;
	padding: 3px 0px 3px 10px;
	}


.custom_btn {
	width:100%;
	display: block;
	text-align: center;
	margin:20px 0 0;
}

.custom_btn .custom_btn_qna {
	width:100px;
	margin-left:5px;
	padding: 10px 20px 10px 20px;
	font-size: 14px;
	display: inline-block;
	border: 1px solid #bbb; 
	cursor:pointer;
}

.blue {
	background-color: #0078d4;
	border: 1px solid #0078d4; 
	color: white;
}


.custom_btn .custom_btn_dsn {
    width:50px;
	margin-left:5px;
	padding: 3px 10px 4px 10px;
    background-color: #eeeeee;
    font-size: 14px;
    
    display: inline-block;
	border: 1px solid #bbb; 

}

.contents{
	display: flex;
	justify-content: center;
	align-items: center;
}


.login-container {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px; 
	text-align: center;
}
/*
.qan_container {
	max-width: 100%;
	margin: 0 auto;
	padding: 20px;
}
*/
.qna_table {
    width: 100%;
    border-collapse: collapse;
}

.qna_th {
    background-color: #eee; 
    color: #000;
    padding: 10px; 
    text-align: center; 
	font-size: 12px;
	border:solid 1px #d6d6d6;
	border-top:solid 2px #0078d4;
}

.qna_td {
    padding: 10px; 
    text-align: center; 
	font-size: 12px;
	background-color: white;

}
.title_left {
	text-align: left;
}


.qna_checkbox-wrapper{
	width:100%;
	display: inline-flex; 
	align-items: center;
	margin-left:0px;
	font-size:12px;
	margin-top:5px;
}
.qna_privacy{
	font-size:12px;
	height:50px;
}

.comm_red {
	font-size:12px;
	color:red;
	padding-left:5px;
}

label {
  display: inline; /* 텍스트를 인라인 요소로 표시 */
  margin-left: 5px; /* 체크박스와 텍스트 사이의 간격을 조절 */
}

.input-group {
	margin-bottom: 15px;
	text-align: left;
}

.input-group label {
	font-size: 14px;
	color: #555;
	display: block;
	margin-bottom: 5px;
}

.input-group input {
	width: 95%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 12px;
}

.input-group input:focus {
	border-color: #4CAF50;
	outline: none;
}

.submit-btn {
	background-color: #0078d4;
	color: white;
	border: none;
	padding: 12px 20px;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
}

.submit-btn:hover {
	background-color: #005bb5;
}

.forgot-password {
	margin-top: 15px;
	font-size: 14px;
	color: #555;
}

.forgot-password a {
	color: #4CAF50;
	text-decoration: none;
}

.forgot-password a:hover {
	text-decoration: underline;
}

.form-container {
	max-width: 800px;
	margin: 10px auto;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form-group {
	margin-bottom: 15px;
}
.form-group label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	color: #333;
	text-align:left;
}
.form-group input, .form-group textarea {
	width: 100%;
	padding: 10px;
	font-size: 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}
.form-group textarea {
	height: 150px;
	resize: vertical;
}
.form-group input[type="submit"] {
	background-color: #007BFF;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	width: 100%;
}
.form-group input[type="submit"]:hover {
	background-color: #0056b3;
}

.nav{
	width:100%;
	font-size:12px;
	padding-top:10px;
}
.nav .now_p{
	font-weight:bold;
}
.nav span{
	
	padding:5px;
}

.login {
	position: absolute;
	top: 10px;
	right: 100px;
	font-size:12px;
	display: flex;
	align-items: center;
}
.login img {
    margin-right: 1px; 
	padding-right:5px;
	
  }

.top-right-links {
  position: absolute;
  top: 10px;
  right: 100px;
  font-size:12px;

}

.top-right-links a {
  display: inline-flex;
  align-items: center;
  padding-left:10px;

}

.main_tdiv{
	display: flex;
	justify-content: center;  /* 수평 중앙 정렬 */
}

.main_table{
	width: 60%; border-collapse: collapse; text-align: center;
}

.main_ul{
	text-align: left;
	margin-top:-5px;
}

.web_br, .mo_menu {
		 display: block;
	}
.mo_br {
		 display: none;
	}

.mypage-container{
	justify-content: center;
	align-items: center;
	display: inline;
}


.mypage {
	width:100%;
	margin: 0 auto;
	padding-top:40px;
}

.mypage div {
	margin-bottom: 5px; /* 각 div 간 간격 추가 */
	text-align: left; /* 왼쪽 정렬 */
	font-size:14px;
}

.top-msg {
	font-size:30px;
	margin-top:40px;
	font-weight:bold;
}
.sub-msg{
	font-size:20px;
	margin-top:1px;
}

.desc-msg{
	font-size:16px;
	margin-top:35px;
}

.paylist{
	
	margin: 0 auto;
	padding-top:40px;
	text-align: left; /* 왼쪽 정렬 */
}

.paylist .title{
	font-size:14px;
	font-weight:bold;
	
}
.paylist .title_sub{
	font-size:12px;
	padding-left:10px;
}


.mypay-container {
	max-width: 600px;
	margin: 10px auto;
	
}

.receipt-btn{
	max-width: 30px;
	margin: 0 auto;
	padding: 5px;
	background-color: white;
	border-radius: 3px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	font-size:12px;
}

.service-div {
	/*border:1px solid #000;*/
	margin: 0 auto;
	padding-left:40px;
	padding-right:40px;

	
}
.service-div div {
	padding: 10px;
}

.service-btn {
	margin-top:20px;
	margin-bottom:10px;
}


.discuss_title {
	font-size:18px;
	text-align:left;
	padding:5px;

}
.discuss_sub {
	font-size:12px;
	border-bottom:1px solid #ccc;
	display: flex;
	justify-content: space-between;
	padding: 10px 0 5px 5px;
}
.discuss_msg {
	text-align:left;
	padding:10px 10px 10px 10px;
	min-height:150px;
	border-bottom:1px solid #ccc;
	font-size:14px;
}
.discuss_btn{
	display: flex;
	justify-content: flex-end;
	padding:10px 10px 10px 10px;
}
.discuss-btn{
	font-size:12px;
	padding:5px 5px 5px 5px;
	margin-left:5px;
}

.font-red{
	color:red;
}
.font-blue{
	color:blue;
}
.font-left{
	margin-left:10px;
}

.evt_title{
	font-size:20px;
/*	color:green;*/
	font-weight:bold;
	line-height:40px;
}

.evt_title_desc{
	font-size:15px;
	padding-top:20px;
	text-align:left;
}


.pay-wrapper {
    display: flex;
    justify-content: space-between; /* Even spacing between form containers */
    gap: 10px; /* Optional: Adds space between form containers */
    flex-wrap: wrap; /* Allows the form containers to wrap to the next row if there's not enough space */
}
.pay-container {
	max-width: 300px;
	margin: 10px auto;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.payinfo-container {
	max-width: 600px;
	margin: 10px auto;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align:left;
}
.small_txt{
	font-size:13px;
}

.prod_txt{
	font-size:20px;
	/*text-decoration: line-through;
	text-decoration-color: red;*/
}

.pay_price{
	font-size:20px;
	font-weight:bold;
}
.add_service_txt{
	font-size:18px;
	color:red;
	margin-top:-20px;
	font-weight:bold;
	
}

.hot_container {
    display: flex;
    align-items: center; /* Vertically center the items */
    justify-content: flex-start; /* Align content to the left */
}

.hot-box {
    background-color: #ff5733; /* HOT box background color */
    color: white; /* Text color */
    border-radius: 5px; /* Rounded corners */
    margin-left: 10px; /* Space between the text and the HOT box */
    font-weight: bold; /* Make the text bold */
	font-size:12px;
    max-height: 10px; /* Set max height */
    display: flex; /* Use Flexbox to align items */
    justify-content: center; /* Horizontally center the text */
    align-items: center; /* Vertically center the text */
    padding: 0 5px; /* Optional: Some padding to avoid cutting off the text */
}

.servicereq-btn{
	background-color: #ff6600;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	font-weight:bold;
}

.servicecancel-btn{
	background-color: #ccc;
	color: white;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	font-weight:bold;
}


.down_err_txt{
	text-align:left;
	margin-left:25%;
	line-height:25px;
}
.down_err{
	font-size:18px;
	color:red;
	font-weight:bold;
}
.down_err_title{
	font-weight:bold;
	margin-top:10px;
}
.down_err_sub{
	margin-left:20px;
}
.policy{
	padding: 0 20px 20px 20px;
}

.diary{
	margin-top:10px;

}
.diary_ex{
	justify-content: left; width: 500px; 
	padding:5px 20px 5px 20px;
	line-height:25px;
	margin-top:5px;

}
.payinfo-agree {
	margin:30px 0px 20px 0px;	
	}

.serviceinfo-div {
	/*border:1px solid #000;*/
	margin: 0 auto;
	padding-left:40px;
	padding-right:40px;

	
}
.serviceinfo-div div {
		padding: 10px;
	}

@media screen and (max-width: 768px) {

	section {
		padding: 10px;
		
	}

	h2{
		font-size:20px;
	}

	header {
		padding: 10px;
	}

	footer {
		font-size:2.8833vw;
	}
	footer img {
		width:70%;
	}


	nav {
		padding:10px 2px;
		font-size:3.9833vw;
	}

	nav a {
		margin: 0px 5px;
	}

	table {
		width: 100%;
	}

	.top-msg {
		font-size:6.0833vw;
		margin-top:35px;
	}
	.sub-msg{
		font-size:3.5833vw;
	}

	.desc-msg{
		margin-top:20px;
		font-size:4.0833vw;
	}
	.form-container {
		max-width: none;
		margin: 0;
		padding: 0;
		background-color: transparent;
		border-radius: 0;
		box-shadow: none;
	}
	

	.qna_th {
		padding: 5px; 
	}

	.qna_td {
		padding: 4px; 
		height:30px;
	}

	.form-group input[type="submit"] {
		font-size: 14px;
	}
	.login {
		top: 10px;
		right: 10px;
	}

	.main_table{
		width: 100%; 
	}

	.web_br, .mo_menu {
		 display: none;
	}
	.mo_br{
		 display: block;
	}

	.mypage {
		width:100%;
		padding-top:20px;
	}
	.paylist{
		width:100%;
	}
	.paylist .title_sub{
		padding-left:0px;
	}

	.discuss_title {
		font-size:14px;
	}

	.discuss_msg {
		font-size:12px;
	}

	.down_err_txt{
		text-align:left;
		line-height:25px;
		margin-left:1px;
	}
	.down_err{

	}
	.down_err_title{
		font-weight:bold;
		margin-top:10px;
	}
	.down_err_sub{
		margin-left:10px;
	}
	.font-left{
		margin-left:0px;
	}

	.diary_ex{
		justify-content: left; width: 94%;
		padding:5px 10px 5px 10px;
		line-height:25px;
		margin-top:5px;
	}

	.payinfo-container {
        max-width: none; /* or you can remove the max-width for mobile */
        margin: 0; /* Optional: remove margin */
        padding: 20px 5px 5px 5px; /* Optional: remove padding */
        box-shadow: none; /* Optional: remove box-shadow */
		background-color: none;
    }

	.serviceinfo-div {
		/*border:1px solid #000;*/
	
		padding-left:5px;
		padding-right:5px;
		

		
	}
	.serviceinfo-div div {
		padding: 5px;
	}
	.payinfo-agree {
		padding: 5px;
	}

}

/*
body {font-family: Arial, sans-serif;width: 100%;height: 100vh;overflow: auto;background-color: #f4f4f9;}
.wrap {position: relative;width: 100%;min-height: 100vh;min-width: 1080px;overflow: hidden;}




        header {
            background-color: #0078d4;
            color: #fff;
            padding: 20px;
            text-align: center;
        }
        nav {
            display: flex;
            justify-content: center;
            background-color: #005bb5;
            padding: 10px;
        }
        nav a {
            color: #fff;
            margin: 0 15px;
            text-decoration: none;
            font-weight: bold;
        }
        nav a:hover {
            text-decoration: underline;
        }
        section {
            padding: 20px;
            text-align: center;
        }
        .services {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        .service {
            background: #fff;
            margin: 10px;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 30%;
            min-width: 250px;
            text-align: center;
        }
        .service img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        footer {
            background-color: #0078d4;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
        }






        .login-container {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px; 
            text-align: center;
        }

        h2 {
            margin-bottom: 20px;
            color: #333;
        }

        .input-group {
            margin-bottom: 15px;
            text-align: left;
        }

        .input-group label {
            font-size: 14px;
            color: #555;
            display: block;
            margin-bottom: 5px;
        }

        .input-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        .input-group input:focus {
            border-color: #4CAF50;
            outline: none;
        }

        .submit-btn {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: #45a049;
        }

        .forgot-password {
            margin-top: 15px;
            font-size: 14px;
            color: #555;
        }

        .forgot-password a {
            color: #4CAF50;
            text-decoration: none;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }


@media screen and (max-width: 768px) {

	.wrap {
        min-width:100%;
        padding: 0;
        margin:0 auto;
    }

    table {
        width: 100%;
        overflow-x: auto;
        border: 1px solid #ddd;
    }

    th {
        position: sticky;
        top: 0;
        background-color: #4CAF50;
        z-index: 1;
    }


   td {
        padding: 8px;
    }

	 .date_input_selection {
	 font-size: 4.13vw;
	  padding: 0 3.73vw 0 2.73vw;
	}

	.custom_btn .custom_btn_dsn {
		font-size: 4.13vw;
	}

	.login-container {
                padding: 20px;
            }

            h2 {
                font-size: 20px;
            }

            .input-group input {
                font-size: 14px;
            }

            .submit-btn {
                padding: 10px;
                font-size: 14px;
            }
}
*/