filler {
    display: flex;
    flex: 1;
    width: var(--content-weight);
}

footer {
    display: flex;
    flex-direction: column;
    position: relative;
    /*bottom: 20px;*/
    /*width: var(--content-weight);*/
    width: 100%;
    bottom: 0px;
    padding: 10px var(--content-padding);
    padding-bottom: 0px;
    background-color: rgba(250, 250, 250, 0.8);
    box-shadow: var(--default-box-shadow);
}

footer column {
    background-color: transparent;
    gap: 2px;
}

footer block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: transparent;
    width: 100%;
    padding: 4px 10px;
}

footer block header i { 
    font-size: 12px; 
    opacity: 0.5; 
    line-height: 0px;
}

footer block header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    width: 100%;
    flex-shrink: 0;
    text-wrap: nowrap;
}

footer block header::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: blue;
    margin-top: 1px;
    opacity: 0.8;
    flex-shrink: 1;
}

footer block a {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    gap: 0px;
    font-size: 12px;
    line-height: 12px;
    color: black;
    text-decoration: none;
    padding: 5px 0px;
    opacity: 0.8;
    transition: all 0.2s linear;
    overflow: hidden;
}

footer block a i { line-height: 0px; font-size: 10px; min-width: 20px; text-align: left !important; }
footer block a[goto] i { color: blue; }
footer block a[goto] { cursor: pointer;}
footer block a[goto]:hover {
    opacity: 1;
    gap: 0px;
    padding-left: 5px;
}

footer block a[goto]:hover::after {
    width: 100%;
    left: 25px;
}

footer block a[goto]::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 20px;
    width: 0px;
    height: 1px;
    background-color: blue;
    opacity: 1;
    transition: all 0.2s linear;
}

footer bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    border-top: 1px solid rgba(200, 200, 200, 0.75);
    padding: var(--responsity-padding);
    color: rgba(150, 150, 150, 1);
    font-size: 10px;
    gap: 15px;
}

footer bottom a::before {
    content: "•";
    left: -10px;
    position: absolute
}
footer bottom a:hover { color: rgba(100, 100, 100, 1); text-decoration: underline; }
footer bottom a {
    position: relative;
    text-decoration: none;
    color: rgba(150, 150, 150, 1);
    cursor: pointer;
}

footer bottom copyright {
    margin-right: auto;
}