/* =========================================================
   MOBILE HEADER - nazwa serwisu
   ========================================================= */

.site-header .plde-mobile-site-title {
    display: none !important;
}


@media (max-width: 700px) {

    .site-header .header-navbar {
        position: relative;
    }

    .site-header .plde-mobile-site-title {
        position: absolute;

        display: block !important;

        left: 50%;
        top: 50%;

        transform: translate(-50%, -50%);

        max-width: calc(100% - 180px);

        color: #333;

        font-size: 15px;
        font-weight: 600;
        line-height: 1.2;

        text-align: center;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;

        pointer-events: none;

        z-index: 2;
    }

}