@charset "utf-8";

.main {
	min-width: 1600px;
	padding-bottom: 153px;
	background-color: var(--color-black-7);
	line-height: 1.4;

	.section-top {
		display: flex;
		height: 720px;
		padding-top: 33px;
		gap: 30px;
	}
	.section-top-right {
		display: flex;
		flex-direction: column;
		gap: 24px;
		width: 480px;

		.box--white {
			flex: 1;
		}
	}
	.section-middle {
		padding-top:124px;

		.title-main {
			font-size: 44px;
			font-weight: 700;
			color: var(--color-black-1);
			text-align: center;
		}
		.title-sub {
			margin-top: 12px;
			font-size: 24px;
			font-weight:500;
			color: var(--color-black-3);
			text-align: center;
		}
	}
	.section-gray {
		margin-top: 52px;
		padding: 42px 0;
		background-color: var(--color-black-5);
	}
	.box--white {
		padding: 27px 24px;
		background-color: #fff;
		border-radius: 12px;
		box-shadow: 0 7px 30px rgba(0,0,0,0.1);
	}
	.box--sub-white {
		background-color: #fff;
		border-radius: 12px;
	}
	.box--gray-gradient {
		padding: 27px 24px;
		background: linear-gradient(to right, #252525, #8B8B8B);
		border-radius: 12px;
		box-shadow: 0 7px 30px rgba(0,0,0,0.1);
	}
}
.main--banner {
	flex:1;
	background: #000 url("/img/hp/main/bg_main_banner.png") no-repeat 100% 0;
	border-radius: 0 16px 16px 0;

	.title {
		color: #fff;
		font-size: 30px;
		font-weight: 200;
		position: absolute;
		right: 58.5%;
		top: 25%;

		strong {
			font-size: 50px;
			font-weight: 700;
		}
	}
	.logo {
		width: 140px;
		height: 44px;
		margin-top: 3.911rem;
		background: url("/img/hp/main/logo_white.png") no-repeat 0 0;
		background-size: 100% auto;
		text-indent: -9999em;
		overflow: hidden;
	}
}
.main--login {
	display: flex;
	flex-direction: column;
	align-items: center;

	.login-logo {
		display: flex;
		height: 48px;
		width: 48px;
		margin-bottom: 10px;
		border: 1px solid #C4C4C4;
		border-radius: 50%;
		background-color: #fff;
		justify-content: center;
		align-items: center;

		p {
			padding-left: 1px;
		}
	}
	.login-title {
		margin-bottom: 16px;
		color: #111111;
		font-size: 20px;
		font-weight: 600;
		align-content: center;
	}
	.login-wrap{
		display: flex;
		gap: 15px;

		div {
			.login-item {
				position: relative;
				width: 295px;
				height: 61px;

				p {
					position: absolute;
					top: 10px;
					left: 16px;
					font-size: 12px;
				}
				input {
					width: 100%;
					height: 100%;
					padding: 31px 40px 10px 16px;
					color: #8F8F8F;
					border: 1px solid #DDD;
					border-radius: 8px;
				}
				input:focus {
					color: #171717;
					border-color: #252525;
					outline: none;
				}
				.btn-eyes {
					width: 24px;
					height: 24px;
					cursor:pointer;
					position:absolute;
					right:10px;
					top:65%;
					transform:translateY(-50%);
					z-index:101;
					background: url("/img/hp/main/ico_eye-off.png") no-repeat 0 0;
					background-size: 100% auto;
					display: none;
				}
				.btn-eyes.active {
					background: url("/img/hp/main/ico_eye-on.png") no-repeat 0 0;
					background-size: 100% auto;
				}
				.btn-del {
					width: 15px;
					height: 15px;
					cursor: pointer;
					position: absolute;
					right: 45px;
					top:65%;
					transform:translateY(-50%);
					z-index:101;
					background: url("/img/hp/main/ico_pwd-del.png") no-repeat 0 0;
					background-size: 100% auto;
					display: none;
				}
			}
			.login-item:nth-of-type(n+2) {
				margin-top: 8px;
			}
		}
		a {
			.btn-login {
				width: 120px;
				height: 100%;
				font-size: 18px;
				font-weight: 600;
				color: #FFF;
				border-radius: 8px;
				background-color: #E91B24;
				text-align: center;
				align-content: center;
			}
		}
	}
	.login-more {
		height: 20px;
		margin-top: 13px;
		color:#767676;

		span:before {
			content: "";
			display: inline-block;
			width: 1px;
			height: 8px;
			margin: 0 16px;
			background: #DDD;
		}
	}
	.login-info {
		display: flex;
		width: 100%;
		margin-bottom: 12px;
		justify-content: space-between;

		div {
			text-align: left;

			.member-info {
				font-size: 16px;
				color: #424242;
			}
			.bid-summary {
				margin-top: 2px;
				font-size: 26px;
				font-weight: 600;
				color: #111111;

				span {
					color: #E91B24;
				}
			}
		}
		img {
			width: 117px;
			height: 64px;
		}
	}
	.bid-status {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 10px;
		gap: 8px;

		li {
			display: flex;
			box-sizing: border-box;
			padding: 0 16px;
			width: 212px;
			height: 52px;
			background-color: #FAFAFA;
			justify-content: space-between;
			align-items: center;

			.status-name {
				font-size: 15px;
				font-weight: 500;
				color: #424242;

				span {
					color: #767676;
				}
			}
			.count {
				font-size: 16px;
				font-weight: 600;
				color: #E91B24;
			}
		}
	}
	.apply-button {
		display: flex;
		gap: 8px;

		.apply-item {
			width: 212px;
			height: 52px;
			font-size: 16px;
			font-weight: 700;
			color: #FFFFFF;
			border-radius: 8px;
			align-content: center;
			text-align: center;

			a {
				display: inline-flex;
				align-items: center;
			}
			a:after {
				content: '';
				display: inline-block;
				margin-left: 6px;
				width: 11px;
				height: 16px;
				background: url("/img/hp/main/ico_arrow-right-btn.png") no-repeat center;
			}
		}
		.after-apply {
			position: relative;
			background-color: #E91B24;

			.apply-tip {
				position: absolute;
				height: 26px;
				left: -15px;
				bottom: 40px;
				padding: 3px 9px;
				font-size: 14px;
				font-weight: 600;
				border-radius: 100px;
				background-color: #255EF0;
				align-content: center;
			}
			.apply-tip:after {
				content: '';
				position: absolute;
				left: 8px;
				bottom: -7px;
				border-left: 18px solid transparent;
				border-top: 9px solid #255EF0;
			}
		}
		.absentee-apply {
			background-color: #111111;
		}
	}
}
.login-content {
	padding: 17px 24px !important;
}
.member-content {
	padding: 24px 24px 25px !important;
}
.login-banner {
	padding: 0 !important;
	background-color : #252525 !important;

	a {
		display: flex;
		padding: 20px 20px 20px 25px;
		justify-content: space-between;
		align-items: center;

		.banner-title {
			align-content: center;
			text-align: left;

			.content {
				font-size: 20px;
				font-weight: 500;
				color: #81B6FF;
			}
			.title {
				margin-top: 6px;
				font-size: 21px;
				font-weight: 700;
				color: #FFFFFF;
				span {
					margin-left: 5px;
					font-size: 16px;
					font-weight: 300;
				}
				span:after {
					content: "";
					display: inline-block;
					width: 0.333rem;
					height: 0.689rem;
					margin-left: 0.289rem;
					background: url("/img/mo/main/icon-arrow-right.png") no-repeat center / 100%;
				}
			}
		}
		img {
			width: 139px;
			height: 76px;
			object-fit: contain;
		}
	}
}
.login-menu {
	padding: 20px 24px !important;

	.menu-title {
		margin-bottom: 10px;
		font-size: 20px;
		font-weight: 600;
		color: #111;
		text-align: left;

		.menu-date {
			font-size: 16px;
			font-weight: 400;
			color: #767676;
			margin-left: 10px;
		}
	}
	.menu-list {
		font-size: 16px;
		color: #424242;

		li {
			display: flex;

			.menu-type {
				width: 42px;
				height: 24px;
				font-size: 13px;
				font-weight: 500;
				color: #000;
				border: 1px solid #DDD;
				border-radius: 4px;
				box-sizing: border-box;
				align-content: center;
				text-align: center;
			}
			.menu-content {
				margin-left: 8px;
				width: calc(100% - 50px);
			}
		}
		li+li {
			margin-top: 6px;
		}
	}
}
.main--board {

	.notice-title-content {
		position: relative;
		display: flex;
		margin-bottom: 34px;
		justify-content: space-between;
		align-items: center;

		.notice-title {
			font-size: 20px;
			font-weight: 600;
			color: #111111;
		}
		.notice-all {
			font-size: 16px;
			color: #767676;
		}
	}
	.notice-title-content:after {
		position: absolute;
		content: "";
		width: 100%;
		bottom: -16px;
		border-bottom: 1px solid #AAAAAA;
	}
	.notice-list {
		height: 124px;
		font-size: 16px;
		color: #424242;

		li {
			display: flex;
			justify-content: space-between;
			letter-spacing: -1px;

			.notice-content {
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
			}
			.notice-date {
				color: #AAAAAA;
			}
		}
		li+li {
			margin-top: 12px;
		}
	}
}
.main--quick-menu {
	width: 135px;
	padding: 30px 20px !important;
	box-sizing: border-box;
	align-content: center;
	text-align: center;
	border-radius: 12px 0 0 12px !important;

	li {
		position: relative;
	}
	li+li {
		margin-top: 32px;
	}
	a {
		display: block;
		font-size: 16px;
		color: #424242;
	}

	[class ^= "icon-menu"] {
		padding-top:58px;
	}

	.icon-menu1 {
		background: url("/img/hp/main/icon_quick1.png") no-repeat center top;
		background-size: 48px auto;
	}
	.icon-menu2 {
		background: url("/img/hp/main/icon_quick2.png") no-repeat center top;
		background-size: 48px auto;
	}
	.icon-menu3 {
		background: url("/img/hp/main/icon_quick3.png") no-repeat center top;
		background-size: 48px auto;
	}
	.icon-menu4 {
		background: url("/img/hp/main/icon_quick5.png") no-repeat center top;
		background-size: 48px auto;
	}

	li:not([class ^= "menu"]) {
		height: 68px;
		align-content: center;
	}
	li:not([class ^= "menu"])+li:not([class ^= "menu"]) {
		margin-top: 8px;
	}
	li:not([class ^= "menu"])+li:not([class ^= "menu"]):before {
		content: "";
		display: inline-block;
		position: absolute;
		width: 46px;
		height: 1px;
		left: 24.5px;
		top: -8px;
		background-color: #DDD;
	}
}
.main--d-day {
	display:flex;
	padding:0 24px;
	width: 1098px;
	height:78px;
	margin-bottom:14px;
	background-color:#202020;
	border-radius:12px;
	justify-content:space-between;
	align-items:center;

	.d-day-info {
		display: flex;
		align-items: center;

		span {
			font-size: 20px;
			font-weight: 700;
			color:#F2F2F2;
		}
		a {
			display: inline-flex;
			margin-left: 10px;
			font-size:16px;
			font-weight:500;
			color:#AAA;
			align-items: center;
		}
		a:before {
			content: '';
			display: inline-block;
			margin-right: 4px;
			width: 20px;
			height: 20px;
			background: url("/img/hp/main/ico_calendar.png") no-repeat center;
		}
	}
	.flip-clock {
		display: flex;

		ul {
			display: flex;
			align-items: flex-end;
		}
		ul+ul:before {
			content: '';
			margin: 0 6px;
			width: 6px;
			height: 6px;
			background-color: #FFFFFF;
			border-radius: 60px;
		}
		li {
			position: relative;
			width: 34px;
			height: 54px;
			font-size: 30px;
			font-weight: 600;
			color: #FFFFFF;
			background-color: #696969;
			border-radius: 4px;
			align-content: center;
			text-align: center;
		}
		li+li {
			margin-left: 4px;
		}
		li:after {
			content: "";
			position: absolute;
			width: 100%;
			height: 0.5px;
			left: 0;
			top: 50%;
			background-color: #111;
		}
	}
}
.flex--between {
	display: flex;
	gap: 18px;

	.flex--content {
		display: flex;
		width: 600px;
		gap: 18px;
		flex-direction: column;
	}
}
.main--exhibit-number {
	display: flex;
	padding: 18px 36px;
	color: #767676;
	align-items: center;

	img {
		width: 110px;
		height: 52px;
		object-fit: contain;
	}
	.entry-car-summary {
		margin-left: 66px;

		p {
			font-size: 18px;
			font-weight: 500;
		}
		strong {
			font-size: 24px;
			font-weight: 600;
			color: #424242;

			span {
				color: #E91B24;
			}
		}
	}
	.entry-car-etc {
		margin-left: 104px;
		font-size: 16px;

		p+p {
			margin-top: 10px;
		}
	}
}
.main--counting {
	display:flex;
	padding:18px 46px 28px 28px;
	gap: 20px;

	.entry-title {
		margin-bottom:14px;
		font-size:18px;
		font-weight:500;
	}
	ul {

		li {
			display: flex;
			align-items: center;
			justify-content: space-between;

			.item {
				display: flex;
				align-items: center;
				font-size: 15px;
			}
			.icon {
				width: 26px;
				height: 26px;
				margin-right: 8px;
				border-radius: 50%;
				font-size: 10px;
				font-weight: 700;
				color: #FF8D92;
				background-color: #FEEAE9;
				align-content: center;
				text-align: center;
			}
			.name {
				color: #424242;
			}
			.count {
				color: #E91B24;
			}
		}
	}

	.entry-maker {
		width: 346px;

		ul {
			display: grid;
			gap: 10px 20px;
			grid-template-columns: repeat(2, 160px);
			grid-template-rows: repeat(4, 26px);
			grid-auto-flow: column;
		}
	}
	.entry-type {
		width: 160px;

		ul {
			display: grid;
			gap: 10px 20px;
			grid-template-columns: repeat(1, 160px);
			grid-template-rows: repeat(4, 26px);
			grid-auto-flow: column;
		}
	}
}
.main--auction-status {
	width: 480px;
	padding: 20px 24px;

	.condition-title {
		display: flex;
		align-items: center;

		.title{
			font-size: 20px;
			font-weight: 600;
			color: #111;
		}
		.info{
			margin-left:10px;
			font-size: 16px;
			color: #767676;
		}
	}
	.condition-check {
		margin-top: 64px;
		text-align: center;

		img {
			width: 143px;
			height: 39px;
		}
		p {
			margin-top: 25px;
			font-size: 16px;
			font-weight: 500;
			color: #AAA;
		}
	}
	.condition-content {
		margin-top: 37px;

		li {
			display: flex;
			padding: 17px 16px;
			background-color: #FAFAFA;
			font-size: 17px;
			font-weight: 500;
			color: #424242;
			justify-content: space-between;

			.line-type {

				span {
					color: #111;
				}
			}
		}
		li+li {
			margin-top: 8px;
		}
	}
}
.main--guide--list {
	display: flex;
	margin-top: 42px;
	justify-content: space-between;
	gap: 18px;

	& > li {
		flex: 1;
		width: 286px;
		height: 316px;
	    background-size: 200px auto;
	    background-repeat: no-repeat;
	    background-position: center 25px;
		background-color: #fff;
		text-align: center;
		border-radius: 12px;

		a {
			display: inline-block;
			padding: 222px 0 25px;
			width: 100%;
			height: 100%;
			box-sizing: border-box;
		}
	}
	.guide-title {
		font-size: 25px;
		font-weight: 600;
		letter-spacing: -1.4px;
	}
	.guide-title:after {
		content: "";
		position: absolute;
		width: 2rem;
		height: 2.2rem;
		background: url("/img/hp/main/icon_arrow_black.png") no-repeat center / 10px;
	}
	.guide-text {
		margin-top: 6px;
		font-size: 20px;
		font-weight: 500;
		letter-spacing: -1.4px;
		color: var(--color-black-3);
	}
	.menu1 {
		background-image: url("/img/hp/main/ico_guide1.png");
	}
	.menu2 {
		background-image: url("/img/hp/main/ico_guide2.png");
	}
	.menu3 {
		background-image: url("/img/hp/main/ico_guide3.png");
	}
	.menu4 {
		background-image: url("/img/hp/main/ico_guide4.png");
	}
}
.auction-calendar-popup {
	width: 359px;
	height: 441px;
	padding: 56px 16px;
	border-radius: 16px;
	box-sizing: border-box;

	.btn-close-layer{
		width: 24px !important;
		height: 24px !important;
		background-size: 10px !important;
		top: 16px !important;
		right: 16px !important;
	}
	.auction-calendar-top {
		position: relative;
		margin-bottom: 8px;

		.auction-calendar-title {
			text-align: center;
			font-size: 20px;
			font-weight: 600;
			color: #111;
		}

		.auction-calendar-prev {
			position: absolute;
			left: 12%;
			top: -0.3rem;

			a {
				display: inline-flex;
				align-items: center;
			}
			a:after {
				content: "";
				display: inline-block;
				width: 2rem;
				height: 2rem;
				transform: scaleX(-1);
				background: url("/img/hp/main/icon_arrow_black.png") no-repeat center / 10px;
			}
			a.active:after {
				background: url("/img/hp/main/icon_arrow_gray.png") no-repeat center / 10px;
			}
		}

		.auction-calendar-next {
			position: absolute;
			right: 12%;
			top: -0.3rem;

			a {
				display: inline-flex;
				align-items: center;
			}
			a:after {
				content: "";
				display: inline-block;
				width: 2rem;
				height: 2rem;
				background: url("/img/hp/main/icon_arrow_black.png") no-repeat center / 10px;
			}
			a.active:after {
				background: url("/img/hp/main/icon_arrow_gray.png") no-repeat center / 10px;
			}
		}
	}
	.auction-calendar-content {
		font-size: 16px;
		font-weight: 400;
		color: #71717A;

		ul {
			display: flex;
			text-align: center;

			li {
				height: 47px;
				width: calc(100% / 7);
				align-content: center;
			}
		}
		.weeks {
			margin-bottom: 8px;
		}
		.days {
			display: flex;
			flex-wrap: wrap;
			color: #09090B;

			.off {
				color: #A1A1AA;
			}
			.on {
				font-weight: 600;
				color: #E91B24;
				border-radius: 50%;
				background-color: #FEEAE9;
			}

			li {
				position: relative;

				span {
					font-size: 0.8rem !important;
					color: #E91B24;
					position: absolute;
					bottom: 0;
					left: 28%;
				}
			}
		}
	}
}
.login-popup {
	padding: 24px;
	width: 328px;
	border-radius: 16px;
	box-sizing: border-box;

	.login-popup-title {
		font-size: 24px;
		font-weight: 600;
	}
	.login-popup-button {
		margin-top: 32px;
		width: 279px;
		height: 56px;
		font-size: 16px;
		font-weight: 600;
		color: #FFF;
		border-radius: 8px;
		background: #E91B24;
		align-content: center;
		text-align: center;
	}
	.popup-content {
		padding: 20px;

		.subtit {
			font-size: 20px;
			font-weight: bold;
			color: #333;
		}
	}
	/*버튼*/
	.btn-area{
		margin-top:35px;
		text-align:center;

		button{
			min-width:130px;
			height:48px;
			padding:0 20px;
			background-color:#f04040;
			color:#fff;
			border-radius: 8px;
		}
		button + button{
			margin-left:10px;
		}
		.btn-gray{
			background:#747677;
		}
	}
	.btn-area.withPaging{
		margin-top:-33px
	}
	.btn-area:after{
		content:'';
		display:block;
		clear:both;
	}
}