
/*231010 수정본 hh*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
body {
	color: #eee;
	background-color: #171717;
}

a {
	color: inherit;
}

@keyframes ani--opacity {
	0% {
		opacity: .5;
	}
	49.5% {
		opacity: .8;
	}
	100% {
		opacity: .5;
	}
}

@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes updown {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes heartbeat {
	from {
		transform: scale(1);
		transform-origin: center center;
		animation-timing-function: ease-out;
	}
	10% {
		transform: scale(.91);
		animation-timing-function: ease-in;
	}
	17% {
		transform: scale(.98);
		animation-timing-function: ease-out;
	}
	33% {
		transform: scale(.87);
		animation-timing-function: ease-in;
	}
	45% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

@keyframes heartbeat {
	from {
		transform: scale(1);
		transform-origin: center center;
		animation-timing-function: ease-out;
	}
	10% {
		transform: scale(.91);
		animation-timing-function: ease-in;
	}
	17% {
		transform: scale(.98);
		animation-timing-function: ease-out;
	}
	33% {
		transform: scale(.87);
		animation-timing-function: ease-in;
	}
	45% {
		transform: scale(1);
		animation-timing-function: ease-out;
	}
}

.t_red {
	color: #f30;
}

.t_primary {
	color: #48ffde;
}

.t_secondary {
	color: #d48dff;
}

.btn--primary {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #181818;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: var(--linear, linear-gradient(161deg, #05ffd2 0%, #d48dff 100%));
}

.btn--primary:hover {
	color: #1a655f;
	box-shadow: 0 0 17px #48ffde, 0 0 100px #fff inset;
}

.btn--secondary {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #181818;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: #d48dff;
}

.btn--secondary:hover {
	color: #4f007e;
	box-shadow: 0 0 17px #d48dff, 0 0 100px #fff inset;
}

.btn--gray {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #fff;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: var(--linear, linear-gradient(161deg, #666 0%, #333 100%));
}

.btn--gray:hover {
	color: #222;
	box-shadow: 0 0 17px #fff, 0 0 100px #eee inset;
}

.btn--blue {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #fff;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: #0074ff;
}

.btn--blue:hover {
	color: #002047;
	box-shadow: 0 0 17px #0074ff, 0 0 100px #fff inset;
}

.btn--green {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #181818;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: #50c267;
}

.btn--green:hover {
	color: #16361d;
	box-shadow: 0 0 17px #50c267, 0 0 100px #fff inset;
}

.btn--orange {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #181818;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: #ff9800;
}

.btn--orange:hover {
	color: #472a00;
	box-shadow: 0 0 17px #ff9800, 0 0 100px #fff inset;
}

.btn--purple {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #fff;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: #9700ff;
}

.btn--purple:hover {
	color: #2a0047;
	box-shadow: 0 0 17px #9700ff, 0 0 100px #fff inset;
}

.btn--red {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #fff;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: #ff5353;
}

.btn--red:hover {
	color: #471717;
	box-shadow: 0 0 17px #ff5353, 0 0 100px #fff inset;
}

.btn--teal {
	padding: 0 2.4rem;
	border-radius: 50px;
	transition: all .3s ease;
	color: #181818;
	font-size: 1.4rem;
	line-height: 3.8rem;
	background: #64ffe5;
}

.btn--teal:hover {
	color: #1c4740;
	box-shadow: 0 0 17px #64ffe5, 0 0 100px #fff inset;
}

.btn--ghost {
	padding: 0 2.4rem;
	border: 2px solid rgba(255, 255, 255, .6);
	border-radius: 50px;
	transition: all .3s ease;
	color: rgba(255, 255, 255, .6);
	font-size: 1.4rem;
	line-height: 3.8rem;
	background-color: transparent;
}

.btn--ghost:hover {
	border-color: #fff;
	color: #fff;
	box-shadow: 0 0 17px rgba(255, 255, 255, .9);
}

.btn--full {
	width: 100%;
}

.btn--l {
	padding: 0 5rem;
	border-radius: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 5rem;
}

.btn--s {
	padding: 0 1.4rem;
	font-size: 1.2rem;
	line-height: 3rem;
}

.ic--login {
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	background: url('../../img/venom/ic-sprite.png?v=1') -34px 0 no-repeat;
	background-size: 400px 200px;
}

.ic--logout {
	display: inline-block;
	width: 24px;
	height: 24px;
	vertical-align: middle;
	background: url('../../img/venom/ic-sprite.png?v=1') -68px 0 no-repeat;
	background-size: 400px 200px;
}

.input-text-box {
	position: relative;
	padding-top: 3.1rem;
	text-align: left;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0 .8rem;
}

/* 모바일(화면 너비 768px 이하)에서 width를 320px로 설정 */
@media (max-width: 768px) {
	.input-text-box {
		width: 320px;
	}
}

.input-text-box label {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 1.6rem;
	line-height: 3rem;
}

.input-text-box input[type=text],
.input-text-box input[type=password] {
	width: 100%;
	height: 4.8rem;
	padding: 8px;
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 8px;
	transition: all .3s ease;
	color: rgba(255, 255, 255, .9);
	font-size: 1.5rem;
	background-color: #333;
	flex: 1;
}

.input-text-box textarea::placeholder,
.input-text-box input[type=text]::placeholder,
.input-text-box input[type=password]::placeholder {
	color: rgba(255, 255, 255, .6);
	font-weight: normal;
}

.input-text-box input[type=text]:disabled {
	border: 2px solid rgba(255, 255, 255, .2);
	cursor: not-allowed;
	background-color: rgba(0, 0, 0, 1.0);
}

.input-text-box textarea {
	width: 100%;
	padding: 8px;
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 8px;
	resize: none;
	transition: all .3s ease;
	color: rgba(255, 255, 255, .9);
	font-size: 1.5rem;
	background-color: #333;
}

.input-text-box input[type=text]:focus,
.input-text-box input[type=password]:focus,
.input-text-box textarea:focus {
	border-color: rgba(255, 255, 255, 1.0);
	outline: 0;
	color: #000;
	background-color: rgba(255, 255, 255, .8);
	box-shadow: 0 0 17px #64ffe5;
}

.input-text-box input[type=text]:focus::placeholder,
.input-text-box input[type=password]:focus::placeholder,
.input-text-box textarea:focus::placeholder {
	color: #333;
}

.input-text-box input[readonly=readonly] {
	cursor: not-allowed;
}

.input-text-box input[type=text].error,
.input-text-box input[type=password].error,
.input-text-box textarea.error {
	border-color: #ef4444;
	background-color: rgb(239 68 68 / 24%);
}

.input-text-box input[type=text].error:focus,
.input-text-box input[type=password].error:focus,
.input-text-box textarea.error:focus {
	border-color: rgb(255 140 140) !important;
	outline: 0;
	box-shadow: 0 0 17px #ef4444 !important;
	color:#fff;
}

.input-text-box input[type=text].error:focus::placeholder,
.input-text-box input[type=password].error:focus::placeholder,
.input-text-box textarea.error:focus::placeholder {
	color: #ff8b8b;
}

.input-text-box--icon input[type=text],
.input-text-box--icon input[type=password] {
	padding-left: 3.8rem;
}

.input-text-box--no-label {
	padding-top: 0;
}

.input-text-box .input-text-box__help {
	flex: 100%;
}

.input-text-box__icon svg {
	display: inline-block;
	position: absolute;
	top: -1rem;
	left: 12px;
	width: 2rem;
	height: 2rem;
	margin-top: 5.4rem;
}

.input-text-box__icon svg path {
	fill: rgba(255, 255, 255, .8);
}

.input-text-box__help {
	display: block;
	position: relative;
	top: auto;
	left:auto;
	width: auto;
	padding-top: .4rem;
	color: #666;
	font-size: 1.3rem;
	line-height: 1.5rem;
	flex:100%;
}

.input-text-box label.error {
	display: block;
	position: relative;
	top: auto;
	left:auto;
	width: auto;
	padding-top: .4rem;
	color: #666;
	font-size: 1.3rem;
	line-height: 1.5rem;
	color: #ff6060;
	flex:100%;
	order:1;
}

.sub {
	display: flex;
	position: relative;
	min-height: 600px;
	justify-content: center;
	align-items: center;
}

.sub:before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: '';
}

.sub__title {
	position: relative;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	text-align: center;
}

.sub__title h2 {
	color: #8cffea;
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.5;
	line-height: 1.3;
	text-shadow: 0 0 13px #05ffd2;
}

.sub__title b {
	color: rgba(255, 255, 255, .8);
	font-size: 2rem;
	font-weight: normal;
}

.sub .info--column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.sub .info--table {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	font-size: 1.4rem;
	gap: 1rem;
	align-items: flex-start;
}

.sub .info--table b {
	margin-left: .8rem;
	color: #05ffd2;
}

.sub .info svg {
	vertical-align: -.6rem;
}

.form_money {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 auto;
	border: 1px solid rgb(255 255 255 / 23%);
	border-radius: 10px;
	background-color: rgb(255 255 255 / 8%);
	gap: 2rem;
}

.form_money .input-text-box {
	text-align: center;
}

.form_money .input-text-box input {
	height: 6rem;
	text-align: center;
	font-size: 3rem;
}

.form_money dl {
	display: flex;
	margin: 2rem auto;
	border: 1px solid rgba(255, 255, 255, .6);
	border-radius: 8px;
	font-size: 1.4rem;
	flex-wrap: wrap;
	align-items: stretch;
}

.form_money dt {
	position: relative;
	width: 50%;
	padding: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .6);
	border-right: 1px solid rgba(255, 255, 255, .6);
}

.form_money dd {
	width: 50%;
	padding: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .6);
	word-break: break-all;
}

.form_money dt:first-child {
	border-top: 0;
}

.form_money dd:nth-child(2) {
	border-top: 0;
}

.btn_set {
	display: flex;
	gap: .8rem;
	justify-content: center;
	flex-wrap: wrap;
}

.sub__flex-content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.sub__tab {
	display: flex;
	margin: 0 auto;
	justify-content: center;
	gap: 1px;
}

.sub__tab li {
	position: relative;
	width: 30%;
	cursor: pointer;
	transition: all .3s ease;
	color: rgba(255, 255, 255, .8);
	font-size: 1.5rem;
	font-weight: normal;
	background-color: rgba(255, 255, 255, .2);
}

.sub__tab li .svg--dropdown {
	width: 16px;
	height: 16px;
	margin-top: -1px;
	vertical-align: middle;
}

.sub__tab li:before {
	display: inline-block;
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	content: '';
	transition: all .3s ease;
	transform: translate(-50%);
	background-color: #45ffd2;
}

.sub__tab li:hover {
	color: #45ffd2;
	background: radial-gradient(88.63% 49.61% at 50.39% 100.00%, rgba(5, 255, 210, .31) 0%, rgba(5, 255, 210, .17) 42.71%, rgba(5, 255, 210, .04) 78.13%, rgba(5, 255, 210, .00) 100%);
}

.sub__tab li.on:before,
.sub__tab li:hover:before {
	opacity: 1;
	width: 100%;
}

.sub__tab li.on {
	color: #222;
	font-weight: bold;
	background-color: rgba(5, 255, 210, .9);
}

.table {
	table-layout: inherit;
	color: rgba(255, 255, 255, .9);
}

.table tbody {
	background-color: rgba(255, 255, 255, .2);
}

.table thead th {
	border-bottom: 2px solid #000;
	color: #000;
	font-size: 1.4rem;
	background: #fff;
}

.table td {
	border-bottom: 1px solid #000;
	transition: all .3s ease;
	font-size: 1.3rem;
}

.table tr td{
	padding: .6rem .2rem;
}

.table tbody tr:hover td {
	background-color: rgba(255, 255, 255, .08);
}

.table .paging a {
	display: inline-block;
	width: 4rem;
	margin: 1rem .2rem 0 .2rem;
	border: 2px solid rgba(0, 0, 0, 0);
	border-radius: 4px;
	cursor: pointer;
	transition: all .3s ease;
	font-size: 1.4rem;
	line-height: 3rem;
	background-color: rgba(255, 255, 255, .1);
}

.table .paging a:hover {
	border-color: rgba(255, 255, 255, .7);
	box-shadow: 0 0 17px #fff;
}

.table .paging a.on {
	border-color: rgba(5, 255, 210, .9);
}

.table .subject {
	text-align: left;
	word-break: break-all;
}

.table .subject a{
	word-break: break-all;
}

.table-box {
	position: relative;
}

.table-box table {
	width: 100%;
}

.sub__tab-cont .btn_set {
	margin-top: 2rem;
}

.board_view {
	position: relative;
	border-top: 2px solid rgba(255, 255, 255, .2);
	text-align: left;
	color: rgba(255, 255, 255, .8);
	word-break: break-all;
}

.board_view li {
	padding: 1rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	word-break: break-all;
}

.board_view li:last-child {
	border-bottom: 0;
}

.board_view .content {
	border-block-width: 2px;
}

.board_view .info {
	padding-bottom: 0;
	border-bottom: 0;
}

.board_view .info span {
	position: relative;
	font-size: 1.4rem;
}

.board_view .info span:after {
	display: inline-block;
	position: relative;
	width: 1px;
	height: 14px;
	margin-top: -.1rem;
	margin-right: .2rem;
	margin-left: .8rem;
	content: '';
	vertical-align: middle;
	background-color: rgba(255, 255, 255, .2);
}

.board_view .info span:last-child:after {
	display: none;
}

.sub.login {
	height: 100vh;
}

.sub.login .sub__container {
	animation: fadein 1s ease both;
}

.sub.join .sub__container {
	animation: fadein 1s ease both;
}

.row-box__item .btn_set {
	margin-top: 2rem;
}

.sub__logo {
	position: relative;
	height: 15rem;
	margin: -8rem auto 0 auto;
	animation: fadein 1.5s ease both .2s;
	background: url(../../img/venom/logo2_venom.png) center no-repeat;
	background-size: contain;
}

.popup {
	overflow: hidden;
	position: absolute;
	top: 200px;
	left: 30%;
	z-index: 9999;
	max-width: 500px;
	border-radius: 20px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	animation: fadein 1s ease both;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 1px 1px 10px #000;
}

.popup:hover {
	box-shadow: 0 0 20px 0 #45ffd2;
}

.popup__title {
	position: relative;
	padding: 1rem 2rem;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	background-color: rgba(0, 0, 0, .8);
}

.popup__content {
	overflow-x: hidden;
	overflow-y: auto;
	min-width: 200px;
	max-width: 500px;
	padding: 1rem;
	color: #333;
	font-size: 1.4rem;
}

.popup__content img {
	max-width: 100%;
}

.popup__bottom {
	display: flex;
	width: 100%;
	padding: .4rem 1rem;
	color: rgba(255, 255, 255, .5);
	font-size: 1.3rem;
	line-height: 40px;
	background-color: rgba(0, 0, 0, .8);
	justify-content: space-between;
	align-items: center;
}

.popup__bottom label {
	cursor: pointer;
	vertical-align: middle;
	line-height: 2rem;
}

.popup__bottom input {
	position: relative;
	margin-top: -2px;
	margin-right: 7px;
	vertical-align: middle;
}

.popup__bottom__close {
	width: 60px;
	height: 3rem;
	margin: 5px 10px;
	padding: 0 1em;
	border-radius: .3rem;
	transition: all .3s ease;
	color: #292929;
	font-size: 1.4rem;
	font-weight: bold;
	background: #999;
}

.popup:hover .popup__bottom__close {
	background-color: #45ffd2;
}

.layer-popup {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	animation: fadein 1s ease both;
	background-color: rgba(0, 0, 0, .3);
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(1px);
}

.layer-popup__inner {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	max-width: 500px;
	padding: 2rem;
	border: 2px solid #05ffd2;
	border-right-color: #d48dff;
	border-bottom-color: #d48dff;
	border-radius: 1.5rem;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	animation: fadein 1s ease both;
	background-color: rgba(0, 0, 0, .6);
	box-shadow: 1px 1px 10px #000;
	backdrop-filter: blur(4px);
	gap: 1rem;
}

.layer-popup__title {
	text-align: center;
	font-size: 1.7rem;
}

.layer-popup__content {
	text-align: center;
	font-size: 1.4rem;
}

.layer-popup__inner:hover {
	box-shadow: 0 0 20px 0 #45ffd2;
}

.layer-popup__bottom {
	display: flex;
	margin-top: 1rem;
	gap: .8rem;
	flex-wrap: wrap;
	justify-content: center;
}

.input-text-box__help--red {
	color: #ff6060;
}
section.sub .sub__flex-content .info p:before {
	position: relative;
	top: 3px;
	width: 17px;
	height: 17px;
	margin-right:10px;
	content: "";
	background: url(../../img/hs/img_point.png) center center no-repeat;
	background-size: cover;
	display: inline-block;
}


section.sub .sub__flex-content .info p {
	display:block;
}
section.sub .sub__flex-content .info p {
	padding:3px 0;
	font-size:1.3rem;
	font-weight: bold;
}
section.sub .sub__flex-content .info {
	text-align: left;
}
.help h2 {
	margin:30px 0 10px 0;
	font-size:15px;
	color:#f9ffa1;
}
.help img {
	margin:30px auto 10px auto;
}
.help .type1 li {
	margin: 5px 0;
	line-height: 16px;
	padding-left: 10px;
	font-size: 12px;
	color: #fff;
	background: url(../../img/hs/bul.gif) 0 8px no-repeat;
}
.help .type2 p {
	margin: 10px 0;
	line-height: 20px;
	padding:0 20px 0 10px;
	font-size: 12px;
	color: #fff;
	background: url(../../img/hs/bul.gif) 0 8px no-repeat;
}
.help .rule {
	margin:30px 0;
	border-top:2px #ccc solid;
}
.help .rule dl {
	padding:20px 0;
	border-bottom:1px #ccc dashed;
}
.help .rule dl dt {
	margin-bottom:10px;
	color:#cbc6b2;
	font-size:14px;
	font-weight:bold;
}
.help .rule table {
	width: 100%;
	background:#fff;
}
.help .rule table th , .help .rule table td {
	padding: 10px 0;
	line-height:20px;
	font-size: 13px;
	color: #4a4a4a;
	text-align: center;
	border: 1px solid #cbc6b2
}
.help .rule table th {
	background: #f3f1ec;
	color: #232323;
}

@media (max-width: 1000px) {
	.table-box {
		overflow: auto;
	}
	.main__bottom__board li{
		padding: 8px 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 1.3rem;
	}
	.main__bottom__board li:nth-child(even){
		background-color: #292929;
	}
	.main__bottom__board li span{
		font-size: 1rem;
		text-align: center;
		display: block;
	}
}

table.table--mobile thead {
	display: table-row-group;
}

.table--mobile thead th{
	border:1px solid #00000033;
}

.table--mobile tbody .t_red {
	color:#ff5c33;
}

table.table--mobile tbody td {
	border:1px solid #ffffff5c;
	display: table-cell;
	float:none;
	text-align: center;
}

table.table--mobile .number {
	position: relative;
	opacity: 1;
	left:auto;
	font-size: 1.3rem;
}

table.table--mobile .subject {
	width: 60%;
	padding-left: .4rem;
	
}

.table--mobile .subject a {
	display: block;
	position: relative;
	z-index: 1;
	font-size: 1.4rem;
}

table.table--mobile .subject~td {
	display: table-cell;
	padding: 0;
	user-select: inherit;
	font-size: 1.2rem;
}

table.table--mobile .subject+td {
	padding: 0;
}

table.table--mobile .subject~td:after {
	display: none;
}