.my-cclist-wrap{
    width: 90%;
   margin: 0 auto;
    /*min-height: 100vh;*/
    /*min-height: webkit-fill-available;*/
    overflow: hidden;
}
.my-cclist-wrap .nav-menu-header{
    position: fixed;
    top: calc(constant(safe-area-inset-top) + 7vh);
    top: calc(env(safe-area-inset-top) + 7vh);
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    z-index: 2;
    border-bottom: none;
    margin-top: 0;
    border-bottom: 2px solid var(--main-color);
}
.my-cclist-wrap .caution-word{
    position: fixed;
    top: calc(constant(safe-area-inset-top) + 17vh);
    top: calc(env(safe-area-inset-top) + 17vh);
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    color : red;
    text-align: center;
    font-size: 1.5rem;
    padding: 10px 0;
    background-color: #fff;
    z-index: 1;
}
.my-cclist-wrap .nav-menu-header h1{
    display: flex;
    align-items: center;
    justify-content: center;

}
.my-cclist-wrap .nav-menu-header h1 img{
    width: 35px;
    height: 40px;
    margin-left: 10px;
}

.my-cclist-wrap .nav-menu-body{
    width: 100%;
    margin-top:  calc(constant(safe-area-inset-top) + 22vh);
    margin-top:  calc(env(safe-area-inset-top) + 22vh);
    margin-right: auto;
    margin-bottom: 23vh;
    margin-left: auto;
    min-height: 0;
    overflow: hidden;
}

.my-cc-list-ul{
    overflow-y: auto;
    z-index: 99;
}
.my-cc-list-ul li{
    width: 95%;
    border: 1px solid #bbbaba;
    margin: 0 auto 10px;
    display: flex;
    flex-wrap: nowrap;
    height: 70px;
}
.nav-menu-body p.no-mylist{
    padding: 20px 0;
    text-align: center;
    font-size: 2rem;
}
.my-cc-list-ul li .list-left{
    height: 100px;
}
.my-cclist-wrap .list-right>img.cc-selct-img{
    right: 10px;
}
.my-cclist-wrap .nav-menu-footer{
    position: fixed;
    left:0;
    bottom: calc(5vh + constant(safe-area-inset-bottom));
    bottom: calc(5vh + env(safe-area-inset-bottom));
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-top:1px solid #707070;
}
.nav-menu-footer .btn-group.my-cclist-btn button{
    margin-bottom: 0;
    background-color: dimgray;
    transition: all 0.5s;
    border-radius: 60px;
}
.my-cc-list-ul li.select-bg{
    border: 2px solid var(--main-color);
}
.my-cc-list-ul .list-right img{
    display: none;
}
.my-cc-list-ul .list-right img.chk-img{
    display: block;
}
.info-label.club-login.person-icon img{
    width: 25px;
    height: 25px;
}
.nav-menu-footer .btn-group.my-cclist-btn button.on-btn{
    background-color: var(--main-color);
    transition: all 0.5s;
}

/*아이폰 12max, 13max*/
@media all and (min-height:841px) {
    .my-cclist-wrap .nav-menu-body{
        margin-top:  calc(constant(safe-area-inset-top) + 22vh);
        margin-top:  calc(env(safe-area-inset-top) + 22vh);
    }
}
/*아이폰 8, mini*/
@media all and (max-width:380px) {
    .my-cclist-wrap .nav-menu-body{
        margin-top:  calc(constant(safe-area-inset-top) + 23vh);
        margin-top:  calc(env(safe-area-inset-top) + 23vh);
    }
}