@media (max-width: 1300px) {
    #primary-nav ul a {
        font-size: 14.5px !important;
        padding: 0 10px !important;
    }
}

rs-progress {
    background: #373C41 !important;
}
#myz-header {
    background:#eee;
    border-bottom:5px solid #d6d4d4;
}
.myz-header-container {
    display:flex;justify-content: space-between;gap:10px;padding:0 170px;height:66px;align-items:center;
}
.logged-in .myz-header-container {
    padding:0 100px;
}
#hpehf-header {
    box-shadow:none !important;
}
#profile-links {
    display: initial;
    float: none;
    position: static;
    top: auto;
    right: auto;
}

@media (max-width: 991px) {
    .solution-wrapper table {
        font-size: 0.8em;
        max-width: calc(90% - 50px);
    }

    .entry-content {
        word-wrap: break-word;
    }

    .entry-content ul, .entry-content ol {
        margin: 0;
    }
}

footer .ht-container {
    display:flex;
    align-items:center;
    justify-content:space-between;
}
@media screen and (max-width: 720px) {
    footer .ht-container {
        display:block !important;
    }
    footer #menu-footer-menu {
        text-align:center;
    }
    footer #menu-footer-menu li {
        float:none !important;
    }

}

ul#notification-list {
    width: 450px;
    max-height: 500px;
    overflow-y: auto;
}
@media (max-width: 686px) {
    ul#notification-list {
        position:relative;
        width:100%;
    }
}
ul#notification-list > .notification-item {
    margin-top: 25px;
    margin-bottom: 25px;
}

ul#notification-list > li.notification-item > a {
    white-space: normal;
    display: flex;
    gap: 25px;
}

ul#notification-list > li.notification-item > a[data-read-status="0"] strong::before {
    content: '\f111';
    margin-right: 10px;
    border-radius: 50%;
    font-family: 'FontAwesome';
    color: #ba0c25;
    animation: pulse-zerto-red 2s infinite;

}

#new-notification-counter {
    position: absolute;
    top: -10px;
    right: -20px;
    background-color: #ba0c25;
    color: #fff;
    padding: 5px;
    border-radius: 200px;
    width: 20px;
    height: 20px;
    z-index: 2000000;
    text-align: center;
    vertical-align: top;
    font-size: 10px;
    font-weight: bold;
    line-height: 10px;
}

@keyframes pulse-zerto-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(186, 12, 37, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(186, 12, 37, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(186, 12, 37, 0);
    }
}