#footer-tools{
    right: 0px;
    bottom: 0px;
    position: fixed;
    z-index: 1;
    pointer-events: all;
    padding: 20px;
}

#left-footer-tools{
    left: 0px;
    bottom: 0px;
    position: fixed;
    z-index: 1;
    pointer-events: all;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border-radius: 3px;
    gap:20px;
}

#footer-tools > *{
    display: inline-flex;
    flex-wrap: wrap;
}


.footer-tools-text{
    background-color: transparent;
    border: none;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    text-align: center;
    width: 3em;
    outline: none;
}


.footer-tools-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 34px;
    height: 34px;
}


.footer-icon {
    width: 17px;
    height: 17px;
}

.big-footer-icon {
    width: 20px;
    height: 17px;
}

.footer-tools-button:hover {
    background-color: #EBEBEB;
    transition: 0.3s;
    border-radius: 3px;
}
.footer-tools-button img {
    transition: 0.2s opacity;
}
.footer-icon-active img,
.footer-tools-button:active img {
    opacity: 58%;
}

.footer-icon-active {
    background-color: #EBEBEB;
    transition: 0.3s;
    border-radius: 3px;
}
