.col-menu-top{
    display: flex;

}
.col-choose{
    width: 50%;
    background: linear-gradient(180deg,var(--switch-knob-color)  0%,rgba(255,255,255,0) 50%);
}
.col-choose ul{
    display: flex;
}
.col-choose ul li{
    width: 100%;
}
.col-choose ul li  a{
    display: block;
    padding: var(--space2) var(--space2) var(--space) var(--space2);

    text-transform: uppercase;
    border-top-left-radius: var(--r);
    border-top-right-radius: var(--r);
}
.col-choose ul li  a.active{
    background: linear-gradient(180deg,var(--color5) 0%,var(--switch-knob-color)90%);
}
.col-menu{
    display: flex;
    position: relative;
    z-index: 2;
    width: 50%;
    background: linear-gradient(180deg,var(--switch-knob-color)  0%,rgba(255,255,255,0) 50%);
}
.col-menu>ul{
    width: 100%;
}
.col-menu>ul>li{
    position: relative;

}
.col-menu>ul>li>a{
    display: flex;
    justify-content: space-between;
    padding: var(--space2);
    text-transform: uppercase;
}

.col-menu>ul>li.active a span:before{
    content: "\e92c";
}
.col-menu>ul>li.active{
    background: linear-gradient(180deg,var(--bgcolor)  0%,var(--switch-knob-color)  50%,var(--bgcolor) 100%);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.col-menu>ul>li>ul{
    position: absolute;
    width: 100%;
    padding: var(--space2);
    display: none;
    background: linear-gradient(180deg,var(--bgcolor)  0%,var(--switch-knob-color)  50%,var(--bgcolor) 100%);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);

}
.col-menu>ul>li>ul>li>a{
    display: flex;
    justify-content: space-between;
}
.col-menu>ul>li>ul>li{
    padding: 0.25rem 0;
}
.col-menu>ul>li>ul>li>a:after{
    width: 8px;
    height: 8px;
    border-radius: 100%;
    border: var(--color) solid 1px;
    content: '';
}
.artist-list{
    display: none;
}
.list-grid .artist-list{
    display: block;
}
.artist-list ul{
    display: flex;
    padding: var(--space2);
    justify-content: space-between;
}

.artist-list ul li a{
    padding: var(--space2);
    display: block;
    font-weight: 500;
}
.artist-list ul li a[data-count="0"]{
    opacity: 0.3;
    pointer-events: none;
}

.col-un{
    width: 100%;
    height: calc(100vh - var(--mid) - var(--space));
    padding: var(--space2);
}
.fullscreen .col-un{
    position: fixed;
    height: 100vh;
    left: 0;
    top:0;
    z-index: 99999;
    background-color: var(--bgcolor);
}

.col-un-content{
    width: 100%;
    height: 100%;
    border-radius: var(--r);
    overflow: hidden;

    position: relative;
    background-color: var(--switch-knob-color);
}
.col-un-content:before{
    box-shadow: inset 0 0 30px var(--color4);
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    pointer-events: none;
    content: '';
}
.col-un-content-bg{
    background: radial-gradient(ellipse at center,var(--color_t) 0%,var(--switch-knob-color) 50%,var(--color4) 100%);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;

}
.col-un-content video{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    opacity: 0.2;
}
#col-un{
    width: 100%;
    height: 100%;
    z-index: 4;
    position: relative;
}
.col-un-gallery{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}
.show-gallery .col-un-gallery{
    pointer-events: auto;
}
.col-gallery-swiper{
    height: 100%;

}
.col-gallery-swiper .swiper-slide{
    position: relative;
    height: 100%;
    pointer-events: none;
}
.show-gallery .col-gallery-swiper .swiper-slide.swiper-slide-active{
    pointer-events: auto;
}
.col-gallery-swiper .swiper-slide img{
    max-width: 50%;
    max-height: 70%;
    width: auto;
    height: auto;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.col-un-tool{
    position: absolute;
    top:0;
    left: 0;
    z-index: 6;
    padding: var(--space2);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    width: 100%;

}
.full-screen{
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}
.full-screen.active span:before{
    content: "\e93d";
}

.col-un-tool-more ul{
    display: flex;
    background-color: rgba(255,255,255,0.5);
    border-radius: var(--r);
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}
.col-un-tool-more ul li{
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    display: flex;
    pointer-events: auto;
    cursor: pointer;
}
.is-play.active span:before{
    content: "\e90b";
}
.close-gallery{
    position: absolute;
    bottom:var(--space2);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}
.go-grid{
    position: absolute;
    bottom:var(--space2);
    left: var(--space2);
    z-index: 999;
    text-transform: uppercase;
}
.show-gallery .close-gallery{
    display: flex;
}
.hover{
    cursor: pointer;
 }
.fitter{
    display: none;
}
.close-col-menu{
    display: none;
}
