.whl-wrp{
    visibility: hidden;
    opacity: 0;
    position: fixed;
    display: flex;
    transition: 0.3s;
    background-color: rgba(102, 102, 102, 0.2);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    align-items: center;
    justify-content: center;
}
.whl-wrp.show{
    visibility: visible;
    opacity: 1;
}
.whl-content{
    background-color: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    width: 480px;
    position: relative;
}
.whl-title{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}
.whl-content .ui-btn-icon-close{
    position: absolute;
    right: 15px;
    top: 15px;
}
.whl-sections{
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow: auto;
}
.whl-section{
    display: flex;
    align-items: center;
    padding: 9px 20px;
    border-radius: 10px;
    border: 1px solid #ECEDF0;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
    height: 60px;
    flex: 1 0 60px;
}
.whl-section:hover{
    background-color: #F4F4F4;
    border: 1px solid #E4E4E4;
}
.whl-section-name{
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 2px;
}
.whl-section-cnt{
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
    color: var(--text-color-silver);
}
.whl-new-section{
    margin-top: 5px;
}
.whl-checked{
    margin-left: auto;
    opacity: 0;
}
.in-product .whl-checked{
    opacity: 1;
}
.action_fovarite.ui-btn-default{
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}