@charset "utf-8";
::selection {
	background:transparent;
	color:#db1416;
	text-shadow:none;
}
::-moz-selection {
	background:transparent;
	color:#db1416;
	text-shadow:none;
}
#loadingBar {
	position: fixed; top:0; left: 0;  width: 100%; height: 100%;background-color: rgba(0,0,0,0.4); z-index: 9999;
}
#loadingBar .loadingbar {
	position: fixed;
	top: 50%; left: 50%; transform: translate(-50%, -50%);
}
#loadingBar .loadingbar .loader {
  position: relative;
  display: inline-block;
  width: 130px;
  height: 100px;
  background-repeat: no-repeat;
  background-image: linear-gradient(#db1416, #db1416),
  linear-gradient(#db1416, #db1416), linear-gradient(#db1416, #db1416);
  background-size: 80px 70px, 30px 50px, 30px 30px;
  background-position: 0 0, 80px 20px, 100px 40px;
}
#loadingBar .loadingbar .loader:after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-sizing: content-box;
  border: 10px solid #000;
  box-shadow: 78px 0 0 -10px #fff, 78px 0 #000;
  animation: wheelSk 0.75s ease-in infinite alternate;
}
#loadingBar .loadingbar .loader:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0px;
  height: 70px;
  width: 70px;
  background-image: linear-gradient(#fff 45px, transparent 0),
    linear-gradient(#fff 45px, transparent 0),
    linear-gradient(#fff 45px, transparent 0);
  background-repeat: no-repeat;
  background-size: 30px 4px;
  background-position: 0px 11px, 8px 35px, 0px 60px;
  animation: lineDropping 0.75s linear infinite;
}
#loadingBar .loadingbar h1 {
	text-align: center;
	font-family:'Noto Sans KR','malgun gothic',sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
}
@keyframes wheelSk {
  0%, 50%, 100% { transform: translatey(0) }
  30%, 90% { transform: translatey(-3px) }
}

@keyframes lineDropping {
  0% {
    background-position: 100px 11px, 115px 35px, 105px 60px;
    opacity: 1;
  }
  50% { background-position: 0px 11px, 20px 35px, 5px 60px }
  60% { background-position: -30px 11px, 0px 35px, -10px 60px }
  75%, 100% {
    background-position: -30px 11px, -30px 35px, -30px 60px;
    opacity: 0;
  }
}
.container {
	position:relative;
	width: calc(100% - 20px);
	margin:0 auto;
	display:block;
	zoom:1;
}
.container:after {
	content:"";
	display:block;
	clear:both;
}
@media(min-width:767px) {
	.container {
		width: calc(100% - 40px);
	}
}
@media(min-width:961px) {
	.container {
		width: calc(100% - 60px);
	}
}
@media(min-width:1600px) {
	.container {
		width: calc(100% - 80px);
	}
}
@media(min-width:1280px) {
	.container {
		width: calc(100% - 100px);
	}
}
@media(min-width:1600px) {
	.container {
		width: calc(100% - 200px);
	}
}

#header {
	position:fixed;
	top: 0;
	width:100%;
	height:120px;
	transition:all .3s ease-in-out;
	z-index:9;
}
#header .container {
    display: flex;
	padding:10px 0 0 0;
}
#header a:focus,#header a:active,#header a:hover {
	color:#fff;
	text-decoration:none;
}
#header .logo {
	position: absolute;
	display: inline-block;
	text-align: center;
	width: 100%;
	height: 40px;
	z-index:11;
	transition:all .3s ease-in-out;
}
#header .logo img {
	width: auto;
	height: 40px;
	transition:all .3s ease-in-out;
}
#nav {
	position:relative;
    top: 60px;
    display: flex;
    justify-content: space-around;
    width: 100%;
    background: transparent;
    z-index: 10;
	transition:all .3s ease-in-out;
}
#nav i {
	margin:0;
	font-size:16px;
	line-height:40px;
	color: rgba(255,255,255,0.85);
	text-shadow: 0 0 7px rgba(0,0,0,0.7);
}
#nav i:hover {
	color: #fff;
}
#nav a {
	margin:0;
	font-size:15px;
	color:#fff;
	font-weight:700;
	text-decoration:none;
	text-align:center;
	transition:all .3s ease-in-out;
	text-shadow: 0 0 7px rgba(0,0,0,0.7);
}
#nav a:focus,#nav a:hover {
	text-decoration:none;
}
#nav a.active {
	position:relative;
}
#nav a span {
    display: inline-block;
    position: relative;
	line-height:40px;
}
#nav a.active span:after {
	content:'';
	position:absolute;
	left: 0;
	bottom:0;
	width: 100%;
	height: 2px;
	background-color:#db1416;
}
#header.header-fixed {
	position:fixed;
	top:0;
	left:0;
	right:0;
	width:100%;
	height:60px;
	background-color: rgba(0,0,0,0.4);
}
#header.header-fixed .logo {
	left:0;
	top:10px;
	display: none;
	transition:all .3s ease-in-out;
}
#header.header-fixed .logo img {
	width: auto;
	height: 40px;
}
#header.header-fixed #nav {
    top: 0;
	height:40px;
}
#header.header-fixed #nav a {
	line-height:40px;
}
@media (min-width:768px) {
	#header {
		height:100px;
	}
	#header .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding:20px 0 0 0;
	}
	#header .logo {
		top:20px;
		width: auto;
		height: 60px;
	}
	#header .logo img {
		height: 60px;
	}
	#nav {
		justify-content: flex-end;
		top:0;
		gap: 30px;
		width: 100%;
	}
	#nav a {
		font-size:16px;
		width:auto;
		line-height:60px;
		text-align:center;
		float:left;
	}  
	#header.header-fixed {
		height:60px;
	}
	#header.header-fixed .container {
		padding:10px 0 0 0;
	}
	#header.header-fixed .logo {
		top:10px;
		height: 40px;
		display: block;
	}
	#header.header-fixed .logo img {
		height: 40px;
	}
	#header.header-fixed #nav {
		height:40px;
	}
	#header.header-fixed #nav a {
		line-height:40px;
	}
}
@media (min-width:961px) {
	#header {
		height:80px;
	}
	#header .logo {
		top:20px;
		height: 60px;
	}
	#header .logo img {
		height: 60px;
	}
	#nav {
		gap: 30px;
	}
	#header.header-fixed {
		height:60px;
	}
	#header.header-fixed .logo {
		top:10px;
		height: 40px;
	}
	#header.header-fixed .logo img {
		height: 40px;
	}
}
@media (min-width:1280px) {
	#header {
		height:100px;
	}
	#header .logo {
		height: 80px;
	}
	#header .logo img {
		height: 80px;
	}
	#nav {
		gap: 40px;
	}
	#nav a {
		line-height: 80px;
		font-weight:400;
		font-size:18px;
		color: rgba(255,255,255,0.85);
	}
	#nav a:hover,
	#nav a.active {
		font-weight:700;
		color: #fff;
	}
	#header.header-fixed {
		height: 80px;
	}
	#header.header-fixed .logo {
		height: 60px;
	}
	#header.header-fixed .logo img {
		height: 60px;
	}
    #header.header-fixed #nav a {
        line-height: 60px;
    }
}
@media (min-width:1600px) {
	#nav {
		gap: 50px;
	}
}
/*푸터 */
#footer {
	width:100%;
	padding-bottom:30px;
	line-height:180%;
	color:#999;
	font-size:13px;
	overflow:hidden;
	text-align:center;
}
#footer .menu {
	padding:30px 0;
}
#footer .menu a {
	padding-left:20px;
}
#footer .menu a:first-child {
	padding-left:0;
}
#footer .menu a.text-primary {
	font-weight:700;
}
#footer a {
	color: #fff;
	font-weight: 700;
}
#footer .info span {
	margin-right:10px;
	white-space:nowrap;
	color: rgba(255,255,255,0.7)
}
#footer .logo {
	margin:50px auto 20px auto;
}
#footer .logo img {
	width: auto;
	height: 40px;
	filter: opacity(80%);
}
@media(max-width:767px) {
	#footer {
		padding-bottom:20px;
	}
	#footer .menu {
		padding-top:20px;
	}
	#footer .menu a {
		padding-left:10px;
	}
}
@media(min-width:768px) {
	#footer {
		padding-bottom:20px;
	}
	#footer .menu {
		padding-top:40px;
	}
	#footer .menu a {
		padding-left:20px;
	}
}
@media(min-width:961px) {
	#footer {
		padding-bottom:30px;
	}
	#footer .menu {
		padding-top:50px;
	}
	#footer .menu a {
		padding-left:20px;
	}
	#footer .logo img {
		width: auto;
		height: 40px;
	}
}
@media(min-width:1280px) {
	#footer {
		padding-bottom:30px;
	}
	#footer .menu {
		padding-top:50px;
	}
	#footer .menu a {
		padding-left:20px;
	}
	#footer .logo img {
		width: auto;
		height: 60px;
	}
}

#quickmenu {position:fixed; top:calc(100% - 40px); right:10px; transform: translateY(-50%);z-index:100;}
#quickmenu a {display:block; width:40px;height:40px; border-radius: 50%; overflow: hidden; text-align:center;}
#quickmenu img {width: 100%; height: auto;}
#quickmenu a:hover {color:#000; text-decoration:none;}

@media(min-width:768px){
	#quickmenu {top:calc(50% - 25px); right:20px;}
	#quickmenu a {width:50px;height:50px;}
}
/*
.tooltipster-default {border:0;background:#000;color:#fff;margin-top:5px;-moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px;}
.tooltipster-default .tooltipster-content {font-size:12px; line-height:16px; padding:5px 7px;white-space: pre-wrap; }
*/

.section  {
	position:relative;
	display:inline-block;
	width: 100%;
	/*transition: transform 0.5s ease-in-out;*/
} 
#section1  {
	display:block;
} 
.main-visual #mainVisual {
	top:0px;
	position:relative;
	width:100%;
	height:100%;
}
.main-visual,.main-visual .owl-stage-outer,.main-visual .owl-stage,.main-visual .owl-item {
	width:100%;
	height:100vh;
    background-color: #111;
    background-image: url('../img/common/bg.jpg');
    background-position: center center;
    background-size: cover;
}
.main-visual .owl-stage {
	z-index:-1;
}
.main-visual .thumb {
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	height:100vh;
	width:100%;
}
.main-visual .thumb:after {
	content:'';
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color: rgba(0,0,0,0.5);
}
.main-visual .thumb img {
	width:100%;
	height:auto;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(.6) translateY(0);
    transform: scale(.6) translateY(0);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    opacity: 1;
    -webkit-transform: scale(.9) translateY(50px);
    transform: scale(.9) translateY(50px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(.6) translateY(0);
    -ms-transform: scale(.6) translateY(0);
    transform: scale(.6) translateY(0);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    opacity: 1;
    -webkit-transform: scale(.9) translateY(50px);
    -ms-transform: scale(.9) translateY(50px);
    transform: scale(.9) translateY(50px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.main-visual .text {
	position:absolute;
	width:calc(100% - 40px);
	left:20px;
	top:50%;
	margin:0 auto;
	margin-top:-140px;
	height:200px;
	text-align:center;
	display:inline-block;
}
.main-visual p {
	position:absolute;
	width:100%;
	left:0;
	color:#fff;
	display:inline-block;
	font-size:16px;
	line-height:140%;
	word-break:keep-all;
	opacity:0;
}
.main-visual .text1 {
	top:0;
	font-family: "Nanum Brush Script", cursive;
	font-size:48px;
	font-weight:400;
	color:#fff;
	letter-spacing:-1px;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.main-visual .text2 {
	top:130px;
	font-family:'Nanum Myeongjo',sans-serif;
	font-size:16px;
	font-weight:700;
	letter-spacing:-1px;
}
.main-visual .active .text1 {
	opacity:1;
	top:50px;
	transition:all 1s linear 1s;
}
.main-visual .active .text2 {
	opacity:1;
	transition:all 1s linear 2s;
}
@media(min-width:768px) {
	.main-visual .text {
		width:80%;
		left:10%;
		margin-top:-140px;
		height:240px;
	}
	.main-visual .text1 {
		font-size:72px;
		letter-spacing:unset;
	}
	.main-visual .text2 {
		font-weight:400;
		font-size:24px;
		top:150px;
	}
	.main-visual .active .text1 {
		top:50px;
	}
}
@media(min-width:961px) {
	.main-visual .text {
		margin-top:-160px;
		height:280px;
	}
	.main-visual .text1 {
		font-size:86px;
	}
	.main-visual .text2 {
		font-size:30px;
		top:170px;
	}
	.main-visual .active .text1 {
		top:50px;
	}
}
@media(min-width:1280px) {
	.main-visual .text {
		margin-top:-200px;
		height:320px;
	}
	.main-visual .text1 {
		font-size:100px;
	}
	.main-visual .text2 {
		font-size:36px;
		top:200px;
	}
	.main-visual .active .text1 {
		top:50px;
	}
}
.scrollbar {
	position:absolute;
	bottom:20px;
	left:calc(50% - 15px);
	z-index:6;
}
.scrollbar span {
	position:absolute;
	top:0;
	left:50%;
	width:30px;
	height:50px;
	margin-left:-15px;
	border:1px solid #fff;
	border-radius:50px;
	box-sizing:border-box;
}
.scrollbar span::before {
	position:absolute;
	top:10px;
	left:50%;
	content:'';
	width:6px;
	height:6px;
	margin-left:-3px;
	background-color:#fff;
	border-radius:100%;
	-webkit-animation:sdb 2s infinite;
	animation:sdb 2s infinite;
	box-sizing:border-box;
}
.scroll-text {
	margin-top:60px;
	color: #fff;
}
@media(min-width:768px) {
	.scrollbar {
		bottom:40px;
	}
	.scrollbar span {
		border:2px solid #fff;
	}

}
@-webkit-keyframes sdb {
	0% {
		-webkit-transform:translate(0,0);
		opacity:0;
	}
	40% {
		opacity:1;
	}
	80% {
		-webkit-transform:translate(0,20px);
		opacity:0;
	}
	100% {
		opacity:0;
	}
}
@keyframes sdb {
	0% {
		transform:translate(0,0);
		opacity:0;
	}
	40% {
		opacity:1;
	}
	80% {
		transform:translate(0,20px);
		opacity:0;
	}
	100% {
		opacity:0;
	}
}
.main-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #111;
    background-image: url('../img/common/bg.jpg');
    background-position: center center;
    background-size: cover;
}
.main-section-header {
	padding:120px 0 30px 0;
	text-align:center;
}
.main-section-header h2 {
    position: relative;
	margin:0;
	font-size:20px;
	line-height:42px;
	font-weight:700;
	color:#fff;
}
.main-section-header h2::before {
	content: '';
    display: inline-block;
	position: absolute;
	top: -30px;
	left:  calc(50% - 15px);
    height: 100%;
    width: 30px;
    background-size: 70%;
	background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../img/common/section-header.png');
}
@media(min-width:768px) {
	.main-section-header {
		padding:90px 0 50px 0;
	}
	.main-section-header h2 {
		font-size:24px;
		line-height:50px;
	}
	.main-section-header h2::before {
		top: -40px;
		left:  calc(50% - 20px);
		width: 40px;
		background-size: 70%;
	}
}
@media(min-width:961px) {
	.main-section-header {
		padding:110px 0 60px 0;
	}
	.main-section-header h2 {
		font-size:30px;
		line-height:60px;
	}
	.main-section-header h2::before {
		top: -40px;
		left:  calc(50% - 25px);
		width: 50px;
		background-size: 70%;
	}
}
@media(min-width:1280px) {
	.main-section-header {
		padding:130px 0 70px 0;
	}
	.main-section-header h2 {
		font-size:36px;
	}
}
@media(min-width:1600px) {
	.main-section-header {
		padding:150px 0 80px 0;
	}
	.main-section-header h2 {
		font-size:42px;
	}
}
.modal-orderview {
	max-width: calc(100% - 40px);
    max-height: calc(100% - 100px);
}
.modal-orderview .form-group {
	text-align: center;
}
.modal-orderview .form-group input[type="text"] {
    width: calc(100% - 140px);
    height: 40px;
    padding: 0 10px;
    line-height: 40px;
    color: #fff;
    font-size: 13px;
    border: 1px solid #666;
    background-color: transparent;
    vertical-align: middle;
    border-radius: 3px;
}
@media (min-width: 900px) {
    .modal-orderview {
        max-width: 700px;
        max-height: calc(100% - 200px);
    }
	.modal-orderview .form-group input[type="text"] {
		font-size: 16px;
	}
}
.modal-order  .modal-header {
	padding: 15px 20px;
}
.modal-order .modal-header h4 {
	font-size:18px;
	color:#fff;
	font-weight:700;
	text-align: center;
}
.modal-order .modal-body {
	padding:20px;
	font-size:13px;
}
.modal-order .modal-body h2 {
	margin:20px 0 10px 0;
	font-weight: 700;
	font-size: 15px;
} 
.modal-order .modal-body h2 span {
	float: right;
	font-weight: 700;
	font-size: 13px;
} 
.modal-order .modal-body h1 {
	margin:20px 0 5px 0;
	font-weight: 700;
	font-size: 15px;
}  
.modal-order .modal-body .help {
	margin:10px 0;
	font-size: 13px;
}     
.modal-order .modal-body .itemList {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: thin dashed rgba(255,255,255,.3);
}  
.modal-order .modal-body .itemList h1 {
	margin-top: 0;
} 
.modal-order .modal-body .itemList li {
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}  
.modal-order .modal-body .itemList li:first-child {
	padding: 6px 0;
	text-align: center;
	border-top: dashed 1px rgba(255,255,255,.3);
	border-bottom: dashed 1px rgba(255,255,255,.3);
} 
.modal-order .modal-body .itemList li:last-child {
	margin-bottom: 0;
} 
.modal-order .modal-body .itemList li div {
	padding: 0 2px;
	display: block;
}
.modal-order .modal-body .itemList li .name {
	width: calc(100% - 180px);
} 
.modal-order .modal-body .itemList li .name span {
	display: inline-block;
	font-size: 0.9em;
	color: rgba(255,255,255,.8);
} 
.modal-order .modal-body .itemList li .price {
	white-space:nowrap;
	width: 80px;
	text-align: center;
} 
.modal-order .modal-body .itemList li .price em {
	font-style: normal;
}
.modal-order .modal-body .itemList li .price em.through {
	color: rgba(255,255,255,.5);
	text-decoration:line-through;
}
.modal-order .modal-body .itemList li .price .soldout {
	font-weight: 400;
	color: rgba(255,255,255,.7);
}
.modal-order .modal-body .itemList li .qty {
	width: 40px;
	text-align: center;
}  
.modal-order .modal-body .itemList li .status {
	width: 30px;
	text-align: center;
} 
.modal-order .modal-body .itemList li .line {
	width: 100%;
	border-top: dashed 1px rgba(255,255,255,.3);
}
.modal-order .modal-body .info {
	margin-bottom:20px;
}
.modal-order .modal-body .info dl {
	margin-top:5px;
}
.modal-order .modal-body .info dl:after {
	display:block;
	visibility:hidden;
	clear:both;
	content:""
}
.modal-order .modal-body .info dt {
	float:left;
	width:80px;
	font-weight: 700;
	color:rgba(255,255,255,.7);
}
.modal-order .modal-body .info dd {
	float: left;
	color: #fff;
}
@media(min-width:768px) {
	.modal-order {
		max-height:calc(100% - 60px);
	}
	.modal-order .modal-header h4 {
		font-size:20px;
	}
	.modal-order .modal-body {
		font-size:14px;
	}
	.modal-order .modal-body .info dt {
		width:100px;
	}
}
@media(min-width:900px) {
	.modal-order {
		width:100%;
		max-width:600px !important;
		margin:auto;
		height: auto;
		max-height:calc(100% - 100px);
	}
	.modal-order .modal-header h4 {
		font-size:18px;
	}
	.modal-order .modal-body {
		font-size:15px;
	}
}
/*
.main-about {
    position: relative;
    width: 100%;
    color: #fff;
    font-size: 13px;
}
.main-about:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.main-about .aboutWrap {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.main-about .aboutBox {
	width: 100%;
	margin-top:140px;
	height: calc(100vh - 140px);
}
*/
.main-about {
    position: relative;
    width: 100%;
    color: #fff;
    font-size: 13px;
}

.main-about:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.main-about .aboutWrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden; /* Overflow hidden으로 설정 */
}
.main-about .aboutBox {
    width: 100%;
    margin-top: 100px;
    height: calc(100vh - 100px);
}
.main-about .aboutBox .container {
	position: relative;
	width: 100%;
	height: 100%;
}
.main-about .aboutBox .textwrap {
    position: absolute;
	top: 0;
	width: 100%;
	height: 50%;
	padding: 0 20px;
} 
.main-about .aboutBox .text {
    position: relative;
} 
.main-about .aboutBox .text h1 {
    position: relative;
	top:0;
	display: inline;
	font-size: 12px;
	word-break: keep-all;
	color: #fff;
	font-weight: 700;
	opacity: 0;
} 
.main-about .aboutBox .text h1:before {
	content:'';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: 0.8s;
}
.main-about .aboutBox .text h2 {
    position: absolute;
	top: 50px;
	width: 100%;
	font-size: 24px;
	word-break: keep-all;
	color: #fff;
	font-weight: 700;
	opacity: 0;
}
.main-about .aboutBox .text p {
    position: absolute;
	top: 150px;
	color: rgba(255,255,255,.8);
	font-size: 15px;
	word-break: keep-all;
	opacity: 0;
}
.main-about .aboutBox .thumb {
    position: relative;
	top: 50%;
	overflow: hidden;
	width: 100%;
	height: 50%;
}
.main-about .aboutBox .thumb .img {
	position: relative;
    height: 60%;
    width: 60%;
	overflow: hidden;
    background-color: #111;
    background-position: center center;
    background-size: cover;
	opacity: 0;
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
	animation-duration: 1s !important;
	animation-iteration-count: 1 !important;
}
.main-about .aboutBox .thumb .img:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.1);
}
.main-about .aboutBox .thumb img {
	width: 100%;
	height: auto;
}
.main-about .aboutBox:nth-of-type(1) .thumb .img {
    background-image: url('../img/common/about1.jpg');
}
.main-about .aboutBox:nth-of-type(2) .thumb .img {
    background-image: url('../img/common/about2.jpg');
}
.main-about .aboutBox:nth-of-type(3) .thumb .img {
    background-image: url('../img/common/about3.jpg');
}  
.main-about .aboutBox.active .text h1 {
	opacity: 1;
	transition:all 1s linear 0.5s;
}
.main-about .aboutBox.active .text h1:before {
    width: 100%;
    transition-delay: 1s;
}
.main-about .aboutBox.active .text h2 {
	opacity: 1;
	transition:all 1s linear 1s;
}
.main-about .aboutBox.active .text p {
	opacity:1;
	transition:all 1s linear 1.5s;
}
.main-about .aboutBox.active .thumb .img {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
} 
@media(min-width:768px) {
	.main-about .aboutBox .text h1 {
		top:30px;
		font-size: 13px;
	}
	.main-about .aboutBox .text h2 {
		top: 50px;
		font-size: 36px;
	}
	.main-about .aboutBox .text p {
		top: 300px;
		font-size: 15px;
	}
	.main-about .aboutBox.active .text h2 {
		top: 100px;
	}
	.main-about .aboutBox.active .text p {
		top: 250px;
	}
}
@media(min-width:961px) {
/*
	.main-about {
		position: relative;
		width: 100%;
		contain: paint;
		height: 400vh;
		color: #fff;
		font-size: 13px;
	}
	.main-about .aboutWrap {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		position: sticky;
		top:0;
		left:0;
		width: 300vw;
		height: 100vh;
		transform: translateX(0vw);
	}
	.main-about .aboutBox {
		margin-top:100px;
		height: calc(100vh - 100px);
	}
*/
	.main-about {
        height: 400vh;
    }
    .main-about .aboutWrap {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: sticky;
        top: 0;
        left: 0;
        width: 300vw; /* 3개의 aboutBox에 맞춤 */
        height: 100vh;
        transform: translateX(0vw);
    }
    .main-about .aboutBox {
        margin-top: 100px;
        height: calc(100vh - 100px);
    }
	.main-about .aboutBox .textwrap {
		position: relative;
	    float: left;
		top: 0 !important;
		width: 50%;
		height: 100%;
		padding: 0 40px;
	}
	.main-about .aboutBox .text h1 {
		top: 100px;
		font-size: 15px;
	}
	.main-about .aboutBox .text h2 {
		top: 150px;
		font-size: 36px;
	}
	.main-about .aboutBox .text p {
		top: 450px;
		font-size: 16px;
	} 
	.main-about .aboutBox.active .text h2 {
		top: 200px;
	}
	.main-about .aboutBox.active .text p {
		top: 400px;
	}
	.main-about .aboutBox .thumb {
		top: 0 !important;
		width: 50%;
		height: 100%;
	}
	.main-about .aboutBox .thumb img {
		width: 100%;
		height: auto;
	}
}
@media(min-width:1280px) {
	.main-about .aboutBox {
		margin-top:120px;
		height: calc(100vh - 120px);
	}
	.main-about .aboutBox .textwrap {
		padding: 0 60px;
	}
	.main-about .aboutBox .text h1 {
		top: 100px;
	}
	.main-about .aboutBox .text h2 {
		top: 150px;
		font-size: 44px;
	}
	.main-about .aboutBox .text p {
		top: 450px;
		font-size: 16px;
	} 
	.main-about .aboutBox.active .text h2 {
		top: 200px;
	}
	.main-about .aboutBox.active .text p {
		top: 400px;
	}
} 
@media(min-width:1440px) {
	.main-about .aboutBox {
		margin-top:140px;
		height: calc(100vh - 140px);
	}
	.main-about .aboutBox .textwrap {
		padding: 0 80px;
	}
	.main-about .aboutBox .text h1 {
		top: 100px;
	}
	.main-about .aboutBox .text h2 {
		top: 150px;
		font-size: 54px;
	}
	.main-about .aboutBox .text p {
		top: 500px;
		font-size: 16px;
	} 
	.main-about .aboutBox.active .text h2 {
		top: 200px;
	}
	.main-about .aboutBox.active .text p {
		top: 450px;
	}
}
@media(min-width:1680px) {
	.main-about .aboutBox {
		margin-top:140px;
		height: calc(100vh - 140px);
	}
	.main-about .aboutBox .textwrap {
		padding: 0 100px;
	}
	.main-about .aboutBox .text h1 {
		top: 150px;
	}
	.main-about .aboutBox .text h2 {
		top: 200px;
		font-size: 60px;
	}
	.main-about .aboutBox .text p {
		top: 550px;
		font-size: 16px;
	} 
	.main-about .aboutBox.active .text h2 {
		top: 250px;
	}
	.main-about .aboutBox.active .text p {
		top: 500px;
	}
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.6);
    transform: scale(.6);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.6);
    -ms-transform: scale(.6);
    transform: scale(.6);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.6);
    -ms-transform: scale(.6);
    transform: scale(.6);
  }

  100% {
    opacity: 0;
  }
}

.main-price {
    width: 100%;
	height: auto; 
    color: #fff;
    font-size: 13px;
}
.main-price:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.main-price .container > div {
    display: flex;
	width: 100%; 
    padding-bottom:40px;
}
.main-price .container .catelist {
	width: 100%;
	height: auto;
	z-index: 1;
}
.main-price .container .imgWrap {
	display: none;
	width: 100%;
	padding-top: 50px;
	position: -webkit-sticky;
    position: sticky;
	align-self: flex-end;
    bottom: 20px;
} 
.main-price .imgWrap .img {
    width: 100%;
}
.main-price .imgWrap .img img {
	width: 100%;
    height: auto;
	opacity: 0.5;
}
.main-price h3 {
	margin: 20px 0;
}
.main-price h3 span {
	font-size: 18px;
	font-weight: 700;
}
.main-price h3 em {
	font-style: normal;
	font-size: 13px;
	font-weight: 400;
	white-space: nowrap;
}
.main-price ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
}
.main-price li {
    cursor: pointer;
	width: 100%;
    margin: 0 0 10px 0;
	color: rgba(255,255,255,.8);
}
.main-price li:hover {
	color: #fff;
}
.main-price li .text {
}
.main-price li .name {
	margin-bottom: 5px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	transition:all .3s ease-in-out;
}
.main-price li:hover .name {
	color: #db1416;
	transition:all .3s ease-in-out;
}
.main-price li .price {
	margin-bottom: 10px;
	font-size: 13px;
}
.main-price li .price #mainPork {
	position:relative;
	width:100%;
	height:100%;
} 
.main-price li .price span {
	color: #fff;
} 
.main-price li .price em {
	font-style: normal;
	font-weight: 700;
	color: #fff;
	float: right;
} 
.main-price li .price .soldout {
	font-weight: 400;
	color: rgba(255,255,255,.7);
}
.main-price li .price .itemgift {
	font-size: 0.9em;
	word-break: keep-all;
}
.main-price li .price i {
	margin-left: 6px;
	font-size: 14px;
}
.main-price li .category {
	font-weight: 700;
}
.main-price li .explan {
	display: none;
	margin-top: 5px;
	width: 100%;
	word-break: keep-all;
}
.main-price li .cate {
	display: none;
	margin-top: 5px;
	width: 100%;
	word-break: keep-all;
}
@media (min-width:768px) {
	.main-price .container > div {
		padding-bottom:40px;
	}
	.main-price h3 span {
		font-size: 20px;
	}
	.main-price ul {
		margin-left: -30px;
	}
	.main-price li {
		width: calc(50% - 30px);
		margin: 0 0 20px 30px;
	}	
	.main-price li .name {
		font-size: 16px;
	}
	.main-price li .price {
		margin-bottom: 10px;
		font-size: 15px;
	}
}
@media (min-width:961px) {
	.main-price {
		font-size:15px;
		padding-bottom: 50px;
	}
	.main-price .container > div {
		width: 100%;
		padding-bottom:60px;
	}
	.main-price .container .catelist {
		width: 70%;
	}
	.main-price .container .imgWrap  {
		display: inline-block;
		width: 30%;
	} 
	.main-price .container .pork .imgWrap  {
        left: -10px;
		right: 0;
	} 
	.main-price .container .beef .imgWrap .img {
	    float: right;
		width: 80%;
	}
	.main-price .container .pork .imgWrap .img {
		width: 70%;
	}
	.main-price .container .beef .imgWrap .img  {
		-webkit-animation-name: fadeOutRightMiddle;
		animation-name: fadeOutRightMiddle;
	}  
	.main-price .container .pork .imgWrap .img  {
		-webkit-animation-name: fadeOutLeftMiddle;
		animation-name: fadeOutLeftMiddle;
	}  
	.main-price .container .beef.active .imgWrap .img  {
		-webkit-animation-name: fadeInRightMiddle;
		animation-name: fadeInRightMiddle;
		animation-duration: 2s !important;
		animation-iteration-count: 1 !important;
	}
	.main-price .container .pork.active .imgWrap .img  {
		-webkit-animation-name: fadeInLeftMiddle;
		animation-name: fadeInLeftMiddle;
		animation-duration: 2s !important;
		animation-iteration-count: 1 !important;
	}
	.main-price h3 span {
		font-size: 24px;
	}
	.main-price ul {
		margin-left: -30px;
	}
	.main-price li {
		width: calc(50% - 30px);
		margin: 0 0 40px 30px;
	}	
	.main-price li .name {
		font-size: 17px;
	}
	.main-price li .price {
		margin-bottom: 15px;
		font-size: 16px;
	}
	.main-price li .explan {
		display: block;
	}
	.main-price li .cate {
		display: block;
	}
}
@media (min-width:1280px) {
	.main-price {
		font-size:15px;
		padding-bottom: 60px;
	}
	.main-price .container > div {
		padding-bottom:80px;
	}
	.main-price .container .catelist {
		width: 70%;
	}
	.main-price .container .imgWrap {
        right: -30px;
		width: 30%;
	}  
	.main-price .container .pork .imgWrap  {
        left: -30px;
	}
	.main-price ul {
		margin-left: -40px;
	}
	.main-price li {
		width: calc(50% - 40px);
		margin: 0 0 40px 40px;
	}
}
@media (min-width:1600px) {
	.main-price {
		padding-bottom: 70px;
		font-size:15px;
	}
	.main-price .container > div {
		padding-bottom:100px;
	}
	.main-price .container .catelist {
		width: 75%;
	}
	.main-price .container .imgWrap {
        right: -50px;
		width: 25%;
	} 
	.main-price .container .pork .imgWrap {
        left: -50px;
	}
	.main-price h3 span {
		font-size: 26px;
	}
	.main-price ul {
		margin-left: -40px;
	}
	.main-price li {
		width: calc(33.33% - 40px);
		margin: 0 0 40px 40px;
	}
	.main-price li .name {
		font-size: 20px;
	}
}


@-webkit-keyframes fadeInLeftMiddle {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftMiddle {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftMiddle {
  -webkit-animation-name: fadeInLeftMiddle;
  animation-name: fadeInLeftMiddle;
}
@-webkit-keyframes fadeInRightMiddle {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightMiddle {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    transform: translateX(200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightMiddle {
  -webkit-animation-name: fadeInRightMiddle;
  animation-name: fadeInRightMiddle;
}
@-webkit-keyframes fadeOutLeftMiddle {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
}

@keyframes fadeOutLeftMiddle {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
  }
}

.fadeOutLeftMiddle {
  -webkit-animation-name: fadeOutLeftMiddle;
  animation-name: fadeOutLeftMiddle;
}
@-webkit-keyframes fadeOutRightMiddle {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }
}

@keyframes fadeOutRightMiddle {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    transform: translateX(200px);
  }
}

.fadeOutRightMiddle {
  -webkit-animation-name: fadeOutRightMiddle;
  animation-name: fadeOutRightMiddle;
}

.modal-item  .modal-header {
	padding: 20px;
}
.modal-item .modal-header h4 {
	margin-bottom:10px;
	font-size:18px;
	color:#fff;
	font-weight:700;
}
.modal-item .modal-header .modal-close {
	top: 20px;
	right: 20px;
}
.modal-item .modal-header .explan span {
	display: block;
	width: 100%;
	word-break: keep-all;
	font-size:14px;
}
.modal-item .modal-body {
	padding:20px;
	font-size:14px;
}
.modal-item .modal-body li {
	margin-bottom: 10px;
}  
.modal-item .modal-body li .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 10px;
}
.modal-item .modal-body li .name {
	font-weight: 700;
}
.modal-item .modal-body li .name,
.modal-item .modal-body li .price {
	white-space:nowrap;
} 
.modal-item .modal-body li .line {
	width: 100%;
	border-top: dashed 1px rgba(255,255,255,.3);
}
.modal-item .modal-body li em {
	width: 100%;
	font-style:normal;
	font-weight: 700;
	color: #fff;
}
.modal-item .modal-body li .price em span {
	margin-left: 4px;
	font-style:normal;
	font-weight: 400;
	color: rgba(255,255,255,.8);
}
.modal-item .modal-body li .soldout {
	font-weight: 400;
	color: rgba(255,255,255,.7);
} 
.modal-item .modal-body li .cate {
    margin-top:5px;
	color: rgba(255,255,255,.8);
	font-size: 0.9em;
}
@media(min-width:768px) {
	.modal-item {
		max-width:calc(100% - 40px);
		max-height:calc(100% - 60px);
	}
    .modal-item  .modal-header {
        padding: 20px;
    }
	.modal-item .modal-header h4 {
		font-size:20px;
	}
    .modal-item .modal-header .modal-close {
        top: 20px;
        right: 20px;
    }
	.modal-item .modal-body {
		padding:20px;
		font-size:15px;
	}
}

@media(min-width:961px) {
	.modal-item {
		width:100%;
		max-width:calc(100% - 40px);
		margin:auto;
		height: auto;
		max-height:calc(100% - 100px);
	}
    .modal-item  .modal-header {
        padding: 25px;
    }
	.modal-item .modal-header h4 {
		font-size:24px;
	}
    .modal-item .modal-header  .modal-close {
        top: 25px;
        right: 25px;
    }
	.modal-item .modal-header .explan span {
		font-size:15px;
	}
	.modal-item .modal-body {
		padding:25px;
		font-size:15px;
	}
	.modal-item .modal-body li {
		margin-bottom: 15px;
	}
}

@media(min-width:1280px) {
	.modal-item {
		width:100%;
		max-width:600px;
		margin:auto;
		height: auto;
		max-height:calc(100% - 100px);
	}
    .modal-item  .modal-header {
        padding: 25px;
    }
	.modal-item .modal-header h4 {
		font-size:24px;
	}
    .modal-item .modal-header  .modal-close {
        top: 25px;
        right: 25px;
    }
	.modal-item .modal-header .explan span {
		font-size:15px;
	}
	.modal-item .modal-body {
		padding:25px;
		font-size:15px;
	}
	.modal-item .modal-body li {
		margin-bottom: 15px;
	}
}

.main-order {
	position:relative;
	width:100%;
	color:#fff;
	font-size:13px;
	overflow:hidden;
}
.main-order .order-form {
	font-size:13px;
	margin-bottom:50px;
}
.main-order .order-form .required {
	background:url("../img/common/wrest.gif") transparent calc(100% - 15px) calc(50% - 2px) no-repeat !important;
}
.main-order .order-form .order {
	margin-bottom:20px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	gap: 10px;
}
.main-order .order-form .goods {
	display: flex;
    flex-direction: column;
}
.main-order .order-form .goods .form-group:last-child {
	padding-bottom: 0;
}
.main-order .order-form .goods .btn-item {
	width: calc(100% - 40px);
	text-align: left;
	color:#fff;
	border-radius: 0 3px 3px 0;
	border: 1px solid #666;
	background-color:transparent;
	outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.main-order .order-form .goods .close {
    font-weight: 700;
	background-color:#444;
}
.main-order .order-form .itemselect {
	display: none;
}
.main-order .order-form .itemselect > div {
	position: relative;
}
.main-order .order-form .itemselect .item-close {
	position: absolute;
	top: -30px;
	right: 15px;
}
.main-order .order-form .itemselect .item-close i {
    font-size: 24px;
	color: #db1416;
}
.main-order .order-form .itemselect .item-close:hover i {
    color:#fff;
}
.main-order .order-form .itemselect .itemList {
	border:1px solid #db1416 !important;
}
.main-order .order-form .itemList {
	overflow-y: auto;
	padding: 10px;
	width: 100%;
	height: 35vh;    
	max-height: 220px;
	border:1px solid #666;
	border-radius:3px;
	scrollbar-face-color: #333;
	scrollbar-track-color: transparent;
	scrollbar-arrow-color: #333;
	scrollbar-highlight-color: transparent;
	scrollbar-3dlight-color: transparent;
	scrollbar-shadow-color: transparent;
	scrollbar-darkshadow-color: transparent;
}
.main-order .order-form .itemList::-webkit-scrollbar {
	width:6px;
	height:6px;
}
.main-order .order-form .itemList::-webkit-scrollbar-corner {
	background:transparent;
	border-right:1px solid transparent;
	border-bottom:1px solid transparent;
}
.main-order .order-form .itemList::-webkit-scrollbar-track {
	background-color:transparent;
	border:1px solid transparent;
}
.main-order .order-form .itemList::-webkit-scrollbar-thumb {
	background:#333;
	border:1px solid transparent;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
}
.main-order .order-form .itemList::-webkit-scrollbar-thumb:hover {
	background:#db1416;
	border:1px solid transparent;
}
.main-order .order-form .itemList h3 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 10px 0;
	font-size: 15px;
}
.main-order .order-form .itemList h3 em {
	font-size: 13px;
	font-style:normal;
	color: #fff;
}
.main-order .order-form .itemList li {
	margin-bottom:10px;
	width: 100%;
}
.main-order .order-form .itemList li .iteminfo {
	display: flex;
    justify-content: space-between;
	align-items: center;
	width: 100%;
}
.main-order .order-form .itemList li .itemgift {
	width: 100%;
	color: rgba(255,255,255,.7);
	font-size: 0.9em;
	margin-top: 5px;
}
.main-order .order-form .itemList .btnprice {
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-order .order-form .itemList .btncart {
	display: flex;
	gap: 10px;
}
.main-order .order-form .itemList em {
	font-style: normal;
}
.main-order .order-form .itemList em span {
	margin-left: 4px;
    font-style: normal;
    font-weight: 400;
    color: rgba(255, 255, 255, .8);
}
.main-order .order-form .itemList .soldout {
	color: rgba(255,255,255,.7);
}
.main-order .order-form .itemList .opt_count {
	width:auto;
}
.main-order .order-form .itemList .opt_block {
	display:inline-block;
	vertical-align: middle;
}
.main-order .order-form .itemList .opt_hidden {
	display:none;
}
.main-order .order-form .itemList .opt_count:after {
	display:block;
	visibility:hidden;
	clear:both;
	content:""
}
.main-order .order-form .itemList .opt_count button {
	position: relative;
	float:left;
	width:30px;
	height:30px;
	border:1px solid #666;
	border-radius:3px 0 0 3px;
	background-color:transparent;
}
.main-order .order-form .itemList .opt_count button::before {
	display:inline-block;
	position: absolute;
	top: 0;
    left: 0;
	width:28px;
	line-height:28px;
	text-align:center;
	background:transparent;
	color:rgba(255,255,255,.7);
	font-family:'Font Awesome 6 Free';
	font-weight:900;
	font-size:14px;
}
.main-order .order-form .itemList .opt_count .btminus {
	border-radius:3px 0 0 3px;
}
.main-order .order-form .itemList .opt_count .btminus::before {
	content: "\f068";
}
.main-order .order-form .itemList .opt_count .btplus {
	border-radius:0 3px 3px 0;
}
.main-order .order-form .itemList .opt_count .btplus::before {
	content: "\2b";
}
.main-order .order-form .itemList .opt_count input[type="text"] {
	float:left;
	width:40px;
	height:30px;
	text-align:center;
	line-height:30px;
	color: #fff;
	border: 0;
	border-top:1px solid #666;
	border-bottom:1px solid #666;
	border-radius:0;
	background-color:transparent;
}
.main-order .order-form .itemList .btn-cart {
	width: 30px;
	height: 30px;
	padding: 0;
	border:1px solid #666;
	background-color:transparent;
}
.main-order .order-form .itemList i {
    cursor: pointer;
	font-size: 14px;
	color: rgba(255,255,255,.7);
}
.main-order .order-form .itemList .btn:hover i {
	color: #fff;
}
.main-order .order-form .itemList .add_item.clicked i,
.main-order .order-form .itemList .add_item.clicked:hover i {
	color: #db1416;
}

.main-order .order-form .btn-group {
	display: flex;
	margin-bottom: 10px;
}
.main-order .order-form .btn-group input[type="radio"] {
    display: none;
}
.main-order .order-form .btn-group input[type="radio"]+label {
    display: inline-block;
    cursor: pointer;
	margin-right: 0;
	text-align: center;
	width: 50%;
	height: 40px;
	outline:0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.main-order .order-form .btn-group input[type="radio"]+label div {
	line-height: 40px;
	color: #fff;
    background-color: #333;
	transition:all .3s ease-in-out;
} 
.main-order .order-form .btn-group input[type="radio"]:checked+label div {
    font-weight: 700;
	color: #fff;
    background-color: #444;
}
.main-order .order-form .btn-group input[type="radio"]+label:hover div {
	background-color: #db1416;
}  
.main-order .order-form .btn-group input[type="radio"]:checked+label:hover div {
	background-color: #444;
}  
.main-order .order-form .btn-group input[type="radio"]+label i {
	margin-right: 4px;
	color: rgba(255,255,255,.7);
} 
.main-order .order-form .form-group {
	padding-bottom:10px;
}
.main-order .order-form .form-group:after {
	content:"";
	display:block;
	clear:both;
}
.main-order .order-form .form-group .col {
	width:100%;
}
.main-order .order-form .form-group .col label {
	margin-right:10px;
	display:inline-block;
	line-height:180%;
	vertical-align:middle;
	color:#666;
}
.main-order .order-form .form-group input[type="text"] {
	width:calc(100% - 40px);
	height:40px;
	padding:0 10px;
	line-height:40px;
	color:#fff;
	font-size: 13px;
	border:1px solid #666;
	background-color:transparent;
	vertical-align:middle;
	border-radius:0 3px 3px 0;
}
.main-order .order-form .form-group .hasDatepicker {
    cursor: pointer;
}
.main-order .order-form .form-group select {
    position: relative;
	display:inline-block;
    width: calc(100% - 40px);
    height: 40px;
	padding:0 10px;
	line-height:40px;
	color:#fff;
	border:1px solid #666;
	border-radius:0 3px 3px 0;
	vertical-align:middle;
    cursor: pointer;
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url('../img/common/select-arrow.png') calc(100% - 15px) 15px no-repeat !important;
}
.main-order .order-form .form-group select .option {
	color:#fff;
	background:#333;
}
.main-order .order-form .colbus {
	display: flex;
}
.main-order .order-form .colbus select {
	width: calc(50% - 20px);
	border-right: 0;
	border-radius:0;
}
.main-order .order-form .colbus select + select {
	border:1px solid #666;
	border-radius:0 3px 3px 0;
}
.main-order .order-form .colbus input[type="text"] {
	width: calc(50% - 20px);
}
.main-order .order-form .col::before {
	float:left;
	width:40px;
	height:40px;
	padding:12px 0;
	display:inline-block;
	text-align:center;
	background:transparent;
	border:1px solid #666;
	border-right:hidden;
	border-radius:3px 0 0 3px;
	color:rgba(255,255,255,.7);
	font-family:'Font Awesome 6 Free';
	font-weight:400;
	font-size:16px;
}
.main-order .order-form .col.icon-delivery::before {
	content:"\f0d1";
}
.main-order .order-form .col.icon-packaging::before {
	content:"\f06b";
	font-weight:900;
}
.main-order .order-form .col.icon-name::before {
	content:"\f007";
}
.main-order .order-form .col.icon-hp::before {
	content:"\f3cd";
	font-weight:900;
}
.main-order .order-form .col.icon-goods::before {
	content:"\f291";
	font-weight:900;
}
.main-order .order-form .col.icon-date::before {
	content:"\f274";
}
.main-order .order-form .col.icon-time::before {
	content:"\f017";
}
.main-order .order-form .col.icon-card::before {
	content:"\f09d";
}
.main-order .order-form .col.icon-bus::before {
	content:"\f207";
	font-weight:900;
}
.main-order .order-form input::placeholder {
	color:#fff;
}
.main-order .order-form input:focus,
.main-order .order-form select:focus {
	color:#fff;
	height:40px;
	border:1px solid #ddd !important;
	outline:0;
	box-shadow: none;
	transition:border linear .2s,box-shadow linear .2s;
}
.main-order .order-form input:focus::-webkit-input-placeholder {
	color:transparent;
}
.main-order .order-form input:focus::-moz-placeholder {
	color:transparent;
}
.main-order .order-form .form-group-textarea:after {
	content:"";
	display:block;
	clear:both;
}
.main-order .order-form .form-group-textarea textarea {
	width:100%;
	height:100px;
	padding:5px;
	color:#fff;
	line-height:180%;
	border:1px solid #666;
	background-color:transparent;
	vertical-align:middle;
	border-radius:2px !important;
}
.main-order .order-form textarea::placeholder {
	color:#fff;
}
.main-order .order-form textarea:focus {
	color:#fff;
	border:1px solid #ddd !important;
	outline:0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition:border linear .2s,box-shadow linear .2s;
	-moz-transition:border linear .2s,box-shadow linear .2s;
	-o-transition:border linear .2s,box-shadow linear .2s;
	transition:border linear .2s,box-shadow linear .2s;
}
.main-order .order-form textarea:focus::-webkit-input-placeholder {
	color:transparent;
}
.main-order .order-form textarea:focus::-moz-placeholder {
	color:transparent;
}
.main-order .order-form .agreeBtn {
    display: flex;
    align-items: center;
	flex-direction: column;
}
.main-order .order-form .footer-agree {
	margin:0;
	line-height:180%;
	color:#fff;
	display:block;
}
.main-order .order-form .footer-agree .text {
	font-size:13px;
	font-weight:400;
	color:#fff;
	text-decoration:none;
}
.main-order .order-form .footer-agree a {
	font-weight:700;
	color:#fff;
	text-decoration:none;
}
.main-order .order-form .checkbox {
	position:relative;
	display:inline-block;
	line-height:25px;
	vertical-align:top;
	overflow:hidden;
	cursor:pointer;
}
.main-order .order-form .checkbox input[type="checkbox"] {
	position:absolute;
	left:1px;
	top:1px;
	width:13px;
	height:13px;
	margin:0;
	padding:0;
	margin-left:-16px;
	z-index:-1;
}
.main-order .order-form .checkbox input+span {
	display:inherit;
	padding-left:1px;
	color:#666;
	font-size:0;
	line-height:11px;
	white-space:nowrap;
	word-break:break-all;
	border:0;
}
.main-order .order-form .checkbox input:focus+span {
	color:#666;
	border:0;
}
.main-order .order-form .checkbox input+span h1 {
	display:inherit;
	margin-left:8px;
	margin-top:-5px;
	font-weight:normal;
	vertical-align:middle;
}
.main-order .order-form .checkbox span span {
	display:inline-block;
	width:18px;
	height:18px;
	margin-left:-25px;
	border:1px solid #666;
	background-color:transparent;
	vertical-align:middle;
	border-radius:3px !important;
}
.main-order .order-form .checkbox span span i {
	display:none;
	position:absolute;
	font-size:14px;
	color:#db1416;
	text-align:center;
}
.main-order .order-form .checkbox input[type="checkbox"]+span span i {
	left:3px;
	top:11px;
}
.main-order .order-form .checkbox input[type="checkbox"]:checked+span span {
	border-color:#db1416;
}
.main-order .order-form .checkbox input[type="checkbox"]:checked+span span i {
	display:block;
}
.main-order .order-form .checkbox input {
	vertical-align:middle;
}
.main-order .order-form .footer-btn {
	margin-top: 20px;
	width: 100%;
	text-align:center;
}
.main-order .order-form .footer-btn button {
	width: 100%;
}


@media (max-width:767px) {
	.main-order .order-form #reg_relation li .iteminfo {
		flex-direction: column;
	}
	.main-order .order-form #reg_relation li .iteminfo .name {
		width: 100%;
		text-align: left;
		margin-bottom: 5px;
	}
	.main-order .order-form #reg_relation .btnprice {
		width: 100%;
		justify-content: space-between;
	}
}
@media (min-width:768px) {
	.main-order .order-form {
	    margin: 0 auto;
		margin-bottom:70px;
		width: 80%;
		transition: 1s cubic-bezier(0.5, 0, 0, 1);
	}
	.main-order.active .order-form {
		width: 100%;
	}
	.main-order .order-form .order {
	    position: relative;
		display: block;
	}
	.main-order .order-form .goods,
	.main-order .order-form .item,
	.main-order .order-form .itemselect,
	.main-order .order-form .info {
		width: calc(50% - 10px);
	}
	.main-order .order-form .goods .form-group:last-child {
		padding-bottom: 10px;
	}
	.main-order .order-form .info {
		position: absolute;
		top: 0;
		right: 0;
	}
	
	.main-order .order-form .itemList {
		height: 300px;
		max-height: 300px;
	}
	.main-order .order-form .itemselect {
		position: absolute;
		top: 0;
		right: 0;
	}
	.main-order .order-form .itemselect .itemList {
		height: 400px;
		max-height:400px;
	}
	.main-order .order-form .form-group {
		padding-bottom:10px;
	}
	.main-order .order-form .form-group-textarea textarea {
		height:100px;
		padding:10px;
	}
	.main-order .order-form .agreeBtn {
		justify-content: space-between;
		flex-direction: unset;
	}
	.main-order .order-form .footer-btn {
		margin-top: 0;
		width: auto;
	}
	.main-order .order-form .footer-btn button {
		width: auto;
	}
}
@media (min-width:961px) {
	.main-order .order-form {
		font-size:15px;
		margin-bottom:80px;
	}
	.main-order .order-form .itemList h3 {
		font-size: 17px;
	}
	.main-order .order-form .form-group input[type="text"] {
		font-size: 15px;
	}
	.main-order .order-form .footer-agree {
	    font-size: 15px;
	}
	.main-order .order-form .footer-btn button {
		font-size: 16px;
	}
}
@media (min-width:1280px) {
	.main-order .order-form {
		font-size:15px;
		margin-bottom:100px;
		/*clip-path: inset(0% 15% 0% 15% round 4.8rem);*/
	}
	.main-order.active .order-form {
		/*clip-path: inset(0% 0% 0% 0% round 4.8rem);*/
	}
	.main-order .order-form .itemList {
		height: 350px;
		max-height: 350px;
	}	
	.main-order .order-form .itemList h3 {
		font-size: 17px;
	}
	.main-order .order-form .itemselect .itemList {
		height: 450px;
		max-height:450px;
	}
	.main-order .order-form .form-group-textarea textarea {
		height:150px;
	}
	.main-order .order-form .form-group input[type="text"] {
		font-size: 15px;
	}
	.main-order .order-form .footer-agree {
	    font-size: 15px;
	}
	.main-order .order-form .footer-btn button {
		font-size: 16px;
	}
}

.main-location {
	position:relative;
	width:100%;
	color:#fff;
	font-size:13px;
	overflow:hidden;
}
.main-location #map {
	width:100%;
	height:100vh;
	color:#333;
}
.main-location #map > div {
	/*background:#111;*/
}
.main-location #map img {
	filter: opacity(95%) invert(100%) grayscale(100%) !important;

}
.main-location #map .customoverlay i {
	color: #db1416;
	font-size: 42px;
	animation: rotate 2s infinite;
}

@-webkit-keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.rotate {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
.main-location .radius_border {
	border:1px solid #111;
	border-radius:5px;
	/*background:linear-gradient(#fff,#e6e6e6);*/
}
.main-location .custom_zoomcontrol {
	display: flex;
	width:72px;
	height:36px;
	overflow:hidden;
	background-color:#222;
}
.main-location .custom_zoomcontrol span {
	display:block;
	width:36px;
	height:36px;
	text-align:center;
	cursor:pointer;
	display:flex;
	justify-content:center;
	align-items:center;
} 
.main-location .custom_zoomcontrol span i {
	transition:all .3s ease-in-out;
} 
.main-location .custom_zoomcontrol span:hover i {
	color: #db1416;
}
.main-location .custom_zoomcontrol span:first-child {
	border-right: 1px solid #111;
}  
.main-location .info {
	position:absolute;
	left: 5%;
	bottom: 30px;
	width:90%;
	padding:25px;
	border-radius:20px;
	overflow:hidden;
	background: rgba(51,51,51,.9);
	z-index:2;
}
.main-location .info .title {
    display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}
.main-location .info h2 {
	font-size:18px;
}
.main-location .info dl {
	margin-top:20px;
}
.main-location .info dl:after {
	display:block;
	visibility:hidden;
	clear:both;
	content:""
}
.main-location .info dt {
	float:left;
	width:75px;
	font-weight: 700;
	color:rgba(255,255,255,.7);
}
.main-location .info dt i {
	font-size:14px;
	margin-right: 6px;
	color:rgba(255,255,255,.7);
}
.main-location .info dd {
	float: left;
}
.main-location .info dd a {
	color: #fff;
}
@media (min-width:768px) {
	.main-location .info {
		left: unset;
		top: 70%;
		right: 20px;
		bottom: unset;
		width:40%;
		padding:20px;
		transform: translateY(-50%);
		transition:all .5s ease-in-out;
	}
	.main-location.active .info {
		left: unset;
		top: 50%;
		bottom: unset;
	}
	.main-location .info h2 {
		font-size:20px;
	}
	.main-location .info dt {
		width: 85px;
	}
}
@media (min-width:961px) {
	.main-location .info {
		right: 50px;
		width:36%;
		padding:30px;
	}
	.main-location .info h2 {
		font-size:24px;
	}
	.main-location .info dl {
		margin-top:30px;
		font-size:16px;
	}
	.main-location .info dt {
		width: 85px;
	}
}
@media (min-width:1280px) {
	.main-location .info {
		right:100px;
		width:30%;
		padding:40px;
		border-radius:30px;
	}
	.main-location .info h2 {
		font-size:30px;
	}
	.main-location .info dl {
		font-size:18px;
	}
	.main-location .info dt {
		width: 100px;
	}
}