/* GLOBAL SETTING */
:root{
    /* NAV */
    --tools-height: 2.8rem;
    --tools-nav-bg: #292929;
    /* ICON */
}

.tools_nav{
z-index: 0;
position: fixed;
display: flex;
width: 100%;
height: var(--tools-height);
justify-content: space-around;
}

.tools_bg{
    overflow: hidden;
    width: 18rem;
    height: calc(var(--tools-height) + 0.2rem);
    background: var(--tools-nav-bg);
    border: 1px solid var(--bm-box-shadow);
    border-radius: 8px;
    position: fixed;
    bottom: 18px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 11px;
}

.tools_bg i{
    cursor: pointer;
    /* font-size: 21px; */
    font-size: 24px;
    color: #c7c7c7;
}
.tools_bg i:hover{
    transform: scale(1.20);
}

/* .tools_time{
    overflow: hidden;
    cursor: alias;
    width: 5rem;
    height: 1.7rem;
    border: 1px solid var(--fine);
    border-radius: 4px;
    display: flex;
    align-items: center;
} */

.tools_time {
    overflow: hidden;
    /* cursor: alias; */
    width: 6.2rem;
    height: 1.7rem;
    border: 1px solid var(--fine);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.tools_time button{
    border: none;
    padding: unset;
    background: unset;
}

.tools_time form{
    position: absolute;
    right: 20px;
}

.tools_time_bg{
    background: #057feb47;
    width: 65%;
    border-right: 1px dashed #057feb4a;
    height: 100%;
}

.tools_time_text{
    color: white;
    position: absolute;
    font-family: monospace;
    margin: 0px 0px 0px 6px;
    font-size: 14px;
}

/* .tools_time i{
    position: absolute;
    right: 15px;
    color: #c7c7c7;
} */

.tools_time i {
    position: relative;
    /* top: 2px; */
    left: 7px;

    line-height: 5;
}

.tools_time i:hover{

    transform: scale(1.25);
}

.tools_separation{
    border-right: 0.1px solid #a1a1a17a;
    height: 80%;
    width: 0px;
}