
.trace-wrap{
    --row-col: 5;
    --gap: 0.5em;
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    width: 100%;
    /* max-width: 960px; */
    /* max-width: min-content; */
    box-shadow: 0px -6px 20px -10px rgba(0, 0, 0, .4);
    /* border-top: 1px solid #aaaaaa21; */
    border-bottom: 0;
    background: #333;
}

.trace{
    padding: 1em calc(1em - 10px) 1em 1em;
    overflow: hidden;
}
.trace>.list {
    width:min-content;
    max-height: 67px;
    margin: var(--gap) auto;
}
.trace>.list>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 65px;
    font-size: 10px;
    /* background: rgb(var(--bs-body-bg-rgb), 0.5); */
    /* color: rgb(var(--bs-body-color-rgb), .7); */
    
    margin-right: 10px;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
}

.trace>.list>a>span{display:block;padding:5px}
.trace>.list>a>span>i{font-size:18px}

.trace .more-btn {
    position:absolute;
    top:0;
    left:50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width:45px;
    height:45px;
    background: #555;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 0.5em;
    border-radius: 50%;
    border: 1px solid #aaa;
}
.trace .more-btn i{transition: all 0.3s ease-in-out;}

.trace-cog {
    position: absolute;
    top: 0;
    right: 5px;
    transform: translate(0, -100%);
    border: 1px solid #aaa;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #333;
}


.trace .swiper-pagination{top:-4px;height:fit-content;}


