.dim {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.dim .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.form-set input[type=text],
.form-set input[type=password],
.form-set input[type=email],
.form-set input[type=number],
.form-set input[type=tel],
.form-set input[type=time],
.form-set input[type=date],
.form-set input[type=week],
.form-set input[type=month],
.form-set input[type=range],
.form-set input[type=search],
.form-set input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-set input[type="checkbox"],
.form-set input[type="radio"] {
    cursor: pointer;
}
.form-set select:focus {
    outline: none;
}

.form-set input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
}
.form-set input[type="checkbox"].check-mark {
    background: url(https://cdn.ananti.kr/rimclub/ui/icon-check-mark-black-bold.svg) no-repeat center/cover;
}
.form-set input[type="checkbox"]:checked.check-mark {
    background: url(https://cdn.ananti.kr/rimclub/ui/icon-check-mark-mint-bold.svg) no-repeat center/cover;
}
.form-set input[type='text'],
.form-set input[type='password'] {
    padding: 0;
    margin: 0;
    height: 100%;
    background-color: #fff;
}
.form-set input[type="checkbox"].border-check-mark {
    border: 1px solid #ddd;
    background: url(https://cdn.ananti.kr/rimclub/ui/icon-check-mark-gray-bold.svg) no-repeat center / cover;
}
.form-set input[type="checkbox"].border-check-mark:checked {
    border: 1px solid #5ad3c0;
    background: url(https://cdn.ananti.kr/rimclub/ui/icon-check-mark-white-bold.svg) no-repeat center / cover;
    background-color: #5ad3c0;
}

.comp-tabs {
    display: flex;
}
.comp-tabs .tab {
    width: 100%;
    padding: 10px 0;
    color: #999;
    font-weight: 300;
    text-align: center;
    border-bottom: 2px solid #eee;
    cursor: pointer;
}
.comp-tabs .tab.active {
    color: #111;
    font-weight: bold;
    border-bottom: 2px solid #111;
}
.seq-num span {
    display: inline-flex;
    border-radius: 1000px;
    background-color: #5ad3c0;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.btn-terms-all {
    border: 1px solid #ddd;
}
.btn-terms-all .chk-y {
    display: none;
}
.btn-terms-all.active {
    background-color: #5ad3c0;
    color: #fff;
    border-color: #5ad3c0;
}
.btn-terms-all.active .chk-n {
    display: none;
}
.btn-terms-all.active .chk-y {
    display: block;
}

.recent-login::after {
    content: '최근 로그인';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 11px;
    font-size: 10px;
    font-weight: 500;
    color: #757575;
    padding: 0 6px ;
    height: 20px;
    background-color: rgba(237, 237, 237, 0.87);
    pointer-events: none;
}

.icon-required::before {
    content: '';
    display: inline-block;
    background: url(https://cdn.ananti.kr/rimclub/ui/icon-required-mint.svg) no-repeat center/cover;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.join-depth {
    display: flex;
    gap: 5px;
}
.join-depth li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
}
.join-depth li.active {
    width: 20px;
    background-color: #5ad3c0;
    border-radius: 1000px;
}

.icon-circle-black {
    position: relative;
    display: inline-flex;
    background-color: #111;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.disabled{
    position: relative;
    pointer-events: none;
}
.disabled::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.01);
}

.join-cont .input-wrap.focus{
    border:1px solid #000 !important;
}

.join-cont .select-wrapper{
    position: relative;
}
.join-cont .select-wrapper::before{
    content: "";
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-height: 48px !important;
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m14 5-6 6-6-6' stroke='%23111' stroke-miterlimit='10'/%3E%3C/svg%3E");
}
.join-cont .select-wrapper.on::before{
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m14 5-6 6-6-6' stroke='%23111' stroke-miterlimit='10' transform='rotate(180 8 8)'/%3E%3C/svg%3E");
}
.mobile-head{
    backdrop-filter: blur(50px) saturate(2);
}