.bottom-bar{
    height: 100px;
    overflow: hidden;
}

.bottom-bar span{
    flex: 1;
    overflow: hidden;
}


#record-button{
    flex: inherit;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    background: var(--base-color);
    border: 1px solid var(--border-color);
    scale: .8;
    transform: translateY(-0%);
    user-select: none;
}

#record-button span{
    user-select: none;
}

#camera-zone {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#camera-zone canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}


#switch-size{
    text-align: right;
}

.hidden{
    opacity: 0;
    pointer-events: none;
    scale:0;
    height: 0!important;
}


#filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 1rem;
    background-color: var(--light-base-color);
    border-top: 1px solid var(--border-color);
}

#filter-bar img {
    height: 100%;
    width: auto;
    cursor: pointer;
    border-radius: var(--border-radius);
    margin: 0.5rem 0.1rem;
}

#filter-bar img.active {
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary);
}