.mypage {
display: flex;
width: 100%;
padding: 15px 20px;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 25px;
text-align:left;
box-sizing: border-box;
}

.picture img {
  width: 109px;
height: 109px;
border-radius: 9px;
background: #D9D9D9;
}
.info_pos {
  display: flex;
  padding: 20px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 10px;
  background: var(--white, #FFF);
  /* contents_drop */
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
}

.info_pos div.line {
  display: flex;
  padding-left: 5px;
  align-items: center;
  gap: 30px;
}

.info_pos div.line span {
  width:60px;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.btn_pos {
  display: flex;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}
.btn_pos button {
  font-size: 14px;
  background-color: transparent;
}
.btn_pos button.member_out {
  color: var(--subtext_01);
  font-size: 12px;
}


/*로그인*/
.login {
  display: flex;
  width: 100%;
  padding: 18px 20px 16px;
  flex-direction: column;
  align-items: left;
  gap: 24px;
  flex-shrink: 0;
  text-align: center;
  box-sizing: border-box;
}
.login_form {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 16px;
  align-self: stretch;
}
.login_form h3 {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}
.login_form .login_brand {
  color: var(--yellow, #FFC000);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}
.login_form .id_save_option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: -2px 0 0;
}
.login_form .id_save_option input {
  display: none;
}
.login_form .id_save_option input + label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding-left: 26px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}
.login_form .id_save_option input + label:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--text, #090909);
  border-radius: 5px;
  box-sizing: border-box;
}
.login_form .id_save_option input:checked + label:before {
  border-color: var(--yellow, #FFC000);
  background: var(--yellow, #FFC000) url("/common/images/ic_check.svg") no-repeat 50% 50% / 12px auto;
}
.login_form .agree {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.login_form .sns_login {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.login_form .title {
  text-align:left;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.login_form .form {
  position: relative;
  display: flex;
  padding: 12px 14px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  background: var(--underline, #F5F7FA);
}
.login_form .photo {
  padding: 0;
  background: none;
}
.login_form .photo #photo {
  display: none;
}
.login_form .photo .image {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F7FA url("/common/images/my.svg")no-repeat 50% 50% / 40px;
  margin: 0 auto;
}
.login_form .photo .image img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login_form .photo .image .btn_delete {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.5) url("/common/images/ic_close.svg")no-repeat 50% 50%;
}

.login_form .form select {
  border:0;
  outline: none;
  background:none;
  color: var(--sub, #BDBDBD);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-align:left;
  text-transform: uppercase;
  width:100%;
  font-family: inherit;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/common/images/arrow-down.svg")no-repeat calc(100% - 10px) 50%;
  box-sizing: border-box;
}
.login_form .form select option {
  color: #000;
}
.login_form .form select.on {
  color: #000;
}

.login_form .form input[type='text'],
.login_form .form input[type='password'] {
  line-height:20px;
  color: var(--text);
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  width:100%;
  background:none;
}
.login_form .form input::-webkit-input-placeholder {
	color: var(--sub);
	font-weight: 400;
}
.login_form .form input:-moz-placeholder {
	color: var(--sub);
	font-weight: 400;
	opacity: 1;
}
.login_form .form input::-moz-placeholder {
	color: var(--sub);
	font-weight: 400;
	opacity: 1;
}
.login_form .form input:-ms-input-placeholder {
	color: var(--sub);
	font-weight: 400;
}
.login_form .agree_chk input {
  display: none;
}
.login_form .agree_chk input + label {
  position: relative;
  font-size: 16px;
  padding-left: 20px;
}
.login_form .agree_chk input + label:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  border: 1px solid var(--text);
  box-sizing: border-box;
}
.login_form .agree_chk input:checked + label:before {
  border: 1px solid var(--yellow);
  background: var(--yellow) url("/common/images/ic_check.svg")no-repeat 50% 50%;
}
.login_form .link a {
  color: #F00;
}
.login_form .form_radio {
  padding: 14px;
  gap: 10px;
  border-radius: 10px;
  background: var(--underline, #F5F7FA);
}
.login_form .form_radio > div {
  flex: 1;
}
.login_form .form_radio > div input {
  display: none;
}
.login_form .form_radio > div input + label {
  display: block;
  width: 100%;
  border-radius: 5px;
  background: var(--white);
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
}
.login_form .form_radio > div input:checked + label {
  background: var(--text);
  color: var(--white);
}
.login_form .change_pw {
  position: absolute;
  top: 8px;
  right: 15px;
  display: block;
  width: 86px;
  height: 32px;
  border-radius: 5px;
  border: 1px solid var(--sub2, #1C274C);
  background: var(--text, #090909);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}
.login_form .tab > div {
  position: relative;
  flex: 1;
  text-align: left;
}
.login_form .tab > div input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}
.login_form .tab > div input + label {
  position: relative;
  font-size: 20px;
  padding-left: 23px;
  font-weight: bold;
}
.login_form .tab > div input + label:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--text, #090909);
  box-sizing: border-box;
}
.login_form .tab > div input:checked + label:before {
  background-color: var(--yellow);
}
.login_form .id_form {
  flex-direction: column;
  gap: 10px;
}


.login_form .form_add input[type='text']  {
  padding:5px 8px;
  line-height:20px;
  color: var(--text);
  text-align: left;
  font-size: 16px;
  text-transform: uppercase;
  width:100%;
  padding: 10px;
  border-radius: 10px;
  background: var(--underline, #F5F7FA);
  box-sizing: border-box;
}
.login_form .form_add input[type='text']::-webkit-input-placeholder {
	color: var(--sub);
	font-weight: 400;
}
.login_form .form_add input[type='text']:-moz-placeholder {
	color: var(--sub);
	font-weight: 400;
	opacity: 1;
}
.login_form .form_add input[type='text']::-moz-placeholder {
	color: var(--sub);
	font-weight: 400;
	opacity: 1;
}
.login_form .form_add input[type='text']:-ms-input-placeholder {
	color: var(--sub);
	font-weight: 400;
}
.login > form > .login_form .sns_login_btn {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.login > form > .login_form .sns_login_btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 54px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
}
.login > form > .login_form .sns_login_btn button.naver {
  background: #329B3D;
  color: var(--white);
}
.login > form > .login_form .sns_login_btn button.naver:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  background: url("/common/images/ic_naver.svg") no-repeat 50% 50% / 100%;
  margin-right: 6px;
}
.login > form > .login_form .sns_login_btn button.apple {
  background: #000;
  color:#fff;
}

.login > form > .login_form .sns_login_btn button.apple:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  background:url("/common/images/Apple_logo_white.svg.png?v=1") no-repeat 50% 50% / 100%;
  margin-right: 6px;
}

.login > form > .login_form .sns_login_btn button.kakao {
  background: #F9DC01;
  color: #111;
}
.login > form > .login_form .sns_login_btn button.kakao:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  background: url("/common/images/ic_kakao.svg") no-repeat 50% 50% / 100%;
  margin-right: 6px;
}
.login_form .id_login_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  background: #fff;
  text-align: left;
}
.login_form .id_login_links {
  margin-top: 0;
  text-align: center;
}
.login_form .id_login_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  border: 1px solid #E6E9EF;
  border-radius: 10px;
  color: #D71920;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  box-sizing: border-box;
}
.login_form .form_add {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.login_form .form_add > div {
  display: flex;
  gap: 10px;
  width: 100%;
}
.login_form .form_add > div select {
  width: 100%;
  height: 47px;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--underline, #F5F7FA) url("/common/images/arrow-down.svg")no-repeat calc(100% - 14px) 50%;
  padding: 0 14px;
  font-family: inherit;
}
.login_form .form_add button {
  width: 44px;
  height: 44px;
  line-height:44px;
  border-radius: 10px;
  background: var(--text);
  color: var(--yellow);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
}

.login_btn button.yellowBtn {
  display: flex;
  height: 45px;
  padding: 10px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width:100%;
  border-radius: 10px;
border: 0px solid var(--purple, #6301EB);
background: var(--yellow, #FFC000);
}

.login_btn button.greenBtn {
  display: flex;
  height: 45px;
  padding: 10px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width:100%;
  color:#000;
  border-radius: 10px;
border: 0px solid #16af30;
background: #08eb6e;
}


.login_form .join {
  color: var(--black, #101010);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  text-transform: uppercase;
}
.login > form > .login_form > .join {
  padding-top: 4px;
}
.login > form > .login_form > .join a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border: 1px solid #111;
  border-radius: 10px;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  background: #fff;
  box-sizing: border-box;
}


.join {
  padding-top: 10px;
}
.join .login_form .link a {
  color: #3244E8;
}
.join .login_form .sns_login_btn button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.join .login_form .sns_login_btn button.kakao {
  margin-bottom: 10px;
}


/* 정보 찾기*/
.search_pop {
  display:none;
  display: flex;
  width: 350px;
  padding: 40px 20px 20px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  background: #FFF;
    /* -drop */
  box-shadow: 0px -4px 10px 0px rgba(0, 0, 0, 0.05);
  color: var(--subtext_02, var(--sub_text_02, #4B4B4B));
  text-align: center;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.search_pop span {
  color: var(--subtext_02, var(--sub_text_02, #4B4B4B));
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}


#pw_change .scroll {
  padding: 30px 20px 20px;
}
#pw_change .box {
  padding: 16px 0;
}
#pw_change .box .item {
  position: relative;
  border-radius: 5px;
  background: var(--underline);
  margin-top: 10px;
  overflow: hidden;
  padding: 0 10px;
  box-sizing: border-box;
}
#pw_change .box .item input {
  height: 36px;
  font-size: 16px;
  background: transparent;
  width: 100%;
  padding-right: 25px;
  box-sizing: border-box;
}
#pw_change .box .item input::-webkit-input-placeholder {
	color: #9c9c9c;
	font-weight: 400;
}
#pw_change .box .item input:-moz-placeholder {
	color: #9c9c9c;
	font-weight: 400;
	opacity: 1;
}
#pw_change .box .item input::-moz-placeholder {
	color: #9c9c9c;
	font-weight: 400;
	opacity: 1;
}
#pw_change .box .item input:-ms-input-placeholder {
	color: #9c9c9c;
	font-weight: 400;
}
#pw_change .box .item .view_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  background: url("/common/images/ic_view.svg")no-repeat 50% 50%;
}
#pw_change .box .item .view_btn.on {
  background: url("/common/images/ic_view_none.svg")no-repeat 50% 50%;
}
#pw_change .yellowBtn {
  margin-top: 20px;
}

.modal_myClub li {
  line-heght:30px;
  margin-bottom:10px;
  font-size:14px;
  border-radius: 8px;
  background:#EFECDC;
  color:#000;
  line-height:25px;
  padding:5px 10px;
  position:relative;
}

.modal_myClub li.none {
  background:none;
  color:#000;
}
.modal_myClub li.search {
  line-heght:30px;
  margin-bottom:10px;
  font-size:14px;
  border-radius: 8px;
  background:#FFC000;
  color:#000;
  line-height:25px;
  padding:5px 10px;
  position:relative;
}


.modal_myClub li > .delClub {
  position: absolute;
  right:10px;
  top:5px;
  width:20px;
  height:20px;
  line-height:20px;
  border-radius: 4px;
  text-align: center;
  background:#EFECDC;
  color:#000;
}

.modal_cont .searcx {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 10px;
    background: var(--text);
    color: var(--yellow);
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}
