#template-tab {
    /* display: flex; */
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: white;
    max-width: 500px;
    margin: 0px auto;
    border-top: 1px solid lightgrey;
    z-index: 999999;
    display: block;
    height: 60px;
}

@media only screen and (min-width: 500px) {
    #template-tab {
        border-left: 1px solid lightgrey;
        border-right: 1px solid lightgrey;
        display: none;
    }
}

#template-tab-list {
    display: flex;
    width: 100%;
}

@media only screen and (min-width: 500px) {
    #template-tab-list {
        padding-bottom: 0px;
    }
}

.template-tab-block {
    width: 100%;
    padding: 10px;
    cursor: pointer;
}

/* .template-tab-block.active .template-tab-block-icon svg path {
    fill: var(--primary-color);
}

.template-tab-block.active .template-tab-block-label {
    color: black;
    font-weight: 500;
} */
.template-tab-block.active .template-tab-block-icon svg path {
    fill: var(--primary-color);
}

.template-tab-block.active .template-tab-block-label {
    color: var(--primary-color);
    font-weight: 500;
}

.template-tab-block-icon {
    width: 20px;
    margin: 0px auto;
}

.template-tab-block-icon svg path {
    fill: #9b9b9b;
}

.template-tab-block-label {
    color: #9b9b9b;
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
    line-height: 10px;
}