.join {
	padding: 10px 30px;
	max-width: 1125px;
    margin: 0 auto;
}
.input-form {
	margin: 20px 0;
}
.input-form input {
	width: 100%;
    height: 35px;
    border: 0;
    border-bottom: 1px solid #dbdbdb;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
    padding: 0 10px;
}
.input-form input[type=password] {
	font-family: "gulim";
}
.input-form input::-webkit-input-placeholder {
	color:#999999;
	font-family: 'NanumSquare';
}
.input-form input:-moz-placeholder {
	color:#999999;
	opacity:1;
	font-family: 'NanumSquare';
}
.input-form input::-moz-placeholder {
	color:#999999;
	opacity:1;
	font-family: 'NanumSquare';
}
.input-form input:-ms-input-placeholder {
	color:#999999;
	font-family: 'NanumSquare';
}
.input-form input:focus {
	box-shadow: 0 2px 0 #000;
}
.input-form input:focus::-webkit-input-placeholder {
	color: #000;
}
.input-form.w80 input {
	width: calc(80% - 10px);
}
.input-form.w80 button {
	border: 0;
    background: #999;
    color: #fff;
    border-radius: 5px;
    padding: 0;
    font-size: 13px;
    display: inline-block;
    vertical-align: bottom;
    width: 18%;
    height: 35px;
    margin-left: 2%;
}
.country {
	text-align: center;
}
.country .select {
	position: relative;
	background: #999;
	color: #fff;
	font-size: 23px;
	height: 70px;
	line-height: 70px;
}
.country .select:after {
	content: '▼';
	position: absolute;
	top: 0;
	right: 20px;
}
.country .items {
	display: none;
}
.country.active .items {
	display: block;
}
.country.active .select:after {
	content: '▲';
}

table td {
	padding: 10px 0;
}
table td input[type=checkbox] {
	display: none;
}
table td label:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: url("../../images/check-bg.svg")no-repeat 50% 50% / 18px;
}
table td label span {
	display: inline-block;
    vertical-align: 7px;
    margin-left: 5px;
    font-size: 13px;
    cursor: pointer;
}
table td input[type=checkbox]:checked + label:before {
	background: url("../../images/check-bg-on.svg")no-repeat 50% 50% / 18px;
}
table td label span a {
	display: inline-block;
    border-bottom: 1px solid #999;
    color: #999;
    margin-left: 20px;
}
.join-btn {
	font-size: 0;
	text-align: center;
	margin-top: 20px;
}
.join-btn a {
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	width: 48.5%;
	padding: 12px 0 9px;
}
.join-btn a.complete-btn {
	margin-right: 3%;
}

#modal {
	display: none;
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9;
}
#modal .modal-content {
	background: #fff;
    position: fixed;
    width: 90%;
    max-height: 85%;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    padding: 30px;
}
#modal .modal-content .close {
	position: absolute;
	top: 30px;
	right: 30px;
}
#modal .modal-content h2 {
	text-align: center;
	margin-bottom: 20px;
}
#modal .modal-content strong {
    display: block;
    margin: 50px 0 15px;
    font-size: 30px;
}
#modal .modal-content .box {
    height: 255px;
    overflow-y: scroll;
    border: 1px solid #dbdbdb;
    font-size: 26px;
    margin-bottom: 45px;
    line-height: 1.5;
    padding: 20px;
    box-sizing: border-box;
}

.search-id {
	margin-top: 40px;
}
.complete-btn {
    background: #000;
    color: #fff;
    border-radius: 5px;
}
.cancel-btn {
    background: #999;
    color: #fff;
    border-radius: 5px;
}
a.member-out {
    border: 1px solid #dbdbdb;
    font-size: 25px;
    background: #fff;
    display: block;
    margin: 40px 0;
    width: 145px;
    text-align: center;
    height: 60px;
    line-height: 58px;
}