.short-header-line {
    height: max-content;
    width: 100%;
    background-color: var(--btn-default-bgcolor);
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar-wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.105);
    width: 100%;
    height: 41px;
    max-width: 1320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.second-part-short {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    height: 100%;
}

.topbar-group, topbar-group-social {
    display: flex;
    align-items: center;
    height: 100%;

}

.topbar-group a:hover {
    color: var(--wd-link-color-hover);
}

.topbar-item,
.topbar-info,
.topbar-social {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    color: var(--wd-link-color);
    text-decoration: none;
    font-size: 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.105);
}

.topbar-social a {
    color: var(--wd-link-color);
}


.topbar-item.border-left {
    border-left: 1px solid rgba(0, 0, 0, 0.105);
}

.info-social-flex { 
    flex-grow: 1;
    justify-content: space-between;
}

.topbar-info {
    border-right: none;
    color: var(--wd-link-color);
}

.text-bold {
    font-weight: 700;
    color: #222;
    margin-left: 4px;
}

.topbar-social {
    gap: 10px;
}

.social-icon {
    color: var(--wd-link-color);
    font-size: 12px;
    transition: transform 0.2s ease;
}

@media (max-width: 1280px) {
    .topbar-wrapper {
        justify-content: center;
    }
    .topbar-social {
        border: none;
    }
   .topbar-group {
        display: none;
    }
}