.mainC{
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: start;
}
.ucontent{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.usidebar{
    position: fixed;
    right: -100%;
    top: 0;
    padding: 3px 10px;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: #fff;
    transition: .2s;
}
.sbLinkCont{
    margin-top: 50px;
}
.sbLinkCont a{
    display: block;
    padding: 20px;
    margin-bottom: 3px;
    background-color: #f8f8f8;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-right: 3px solid #ffb700;
    font-size: 13px;
}
#closeSB{
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #525252;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}
#closeSB:hover{
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #525252;
}
#closeSB:active{
    transform: translateX(-50%) scale(.94);
}
#showSB{
    background-color: #3700ff;
    color: #fff;
    font-size: 18px;
    width: 38px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
    cursor: pointer;
    transition: .2s;
}
#showSB:hover{
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #ff3c3c;
}
#showSB:active{
    transform: translateX(-5%) scale(.94);
}
@media only screen and (min-width: 900px){
    .mainC{
        grid-template-columns: 1fr 300px;
    }
    .usidebar{
        position: initial !important;
        background-color: transparent;
    }
    .sbLinkCont{
        margin-top: 0;
    }
    #closeSB,#showSB{
        display: none;
    }
}
.gCont{
    max-width: calc(100vw - 40px);
    overflow-x: auto;
    margin: 0 auto;
}
.mainCont{
    position: relative;
    min-width: 800px;
    width: 800px;
    min-height: 400px;
    padding: 10px 0;
    margin: 0 auto;
}
.memCont{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    text-align: center;
    margin: 0 auto;
}
.lv1{
    padding-bottom: 10px;
}
.lv2{
    padding: 10px 0;
}
.lv3{
    padding-top: 10px;
}
.lv1 .fa{
    font-size: 56px;
}
.lv2 .fa{
    font-size: 44px;
}
.lv3 .fa{
    font-size: 36px;
}
.member{
    position: relative;
    overflow: initial;
    cursor: pointer;
    width: 100%;
}
.member[data-status="1"] i.fa{
    color: #0f0;
}
.member[data-status="0"] i.fa{
    color: #00f;
}
.member[data-status="e"] i.fa{
    color: #f00;
}
.lv2 .member::before, .lv3 .member::before{
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ccc;
}
.lv1 .member::after, .lv2 .member::after{
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ccc;
}
.tableLine{
    position: absolute;
    top: 0;
    left: 50%;
}
.tableLine::before{
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: -10px;
    left: 0;
    background-color: #ccc;
}
.lv3 .member .tableLine::before{
    width: 205px;
}
.lv2 .member .tableLine::before{
    width: 410px;
}
#loading{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(0,0,0,.1);
    color: #fff;
    text-shadow: 1px 1px 0 #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
#panP{
    padding: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 22px;
}
#panP small{
    color: #ff3c3c;
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    font-weight: bold;
}
.storeList{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}
.indivStore{
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 14px -12px #000;
    border: 1px solid #999;
}
.indivStore a{
    display: inline-block;
    margin-top: 10px;
    border: 1px solid #ffb700;
    color: #ffb700;
    padding: 7px 18px;
    border-radius: 10px;
}
.shopname{
    color: #555;
    font-weight: initial;
    margin-bottom: 15px;
}
.shopname .fa{
    font-size: 36px;
    margin-right: 12px;
}