.bar{
    background: linear-gradient(to right, rgb(206, 52, 37) 0%, rgb(234, 80, 72) 100%);
    padding: 0 15px;
    display: flex;
    justify-content: flex-end;
}
.bar-nav-options{
    display: flex;
}
.bar-nav-options a{
    font-size: 14px;
    color: white;
    transition: all 100ms ease-in-out;
    padding: 10px 15px 12px;
    display: block;
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.05em;
}
.bar-nav-options a:hover{
    color: #cacaca;
}
.panel-width-custom{
    width: calc(50% - 24px);
}
.custom-software-by-text div{
    color: #e1e1e1 !important;
    a{
        color: #c4c4c4;
    }
}

:is(.sp-theme-dark){
    .custom-software-by-text div{
        color: #49606b!important;
        a{
            color: #5e6b72;
        }
    }
}

@media screen and (max-width: 1024px) {
    .panel-width-custom{
        width: calc(100% - 24px);
    }
}