#NavBarAllPage {
    display: block;
    margin: 10px 0 18px;
    padding: 20px 10px 15px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    background: #ffffff;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
}

#NavBarAllPage .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border: 3px solid #91cecd;
    border-radius: 50%;
    background: #d9eeee;
    color: #207c7a;
    text-decoration: none;
}

#NavBarAllPage .home-icon {
    float: left;
}

#NavBarAllPage .refresh-icon {
    float: right;
    transition: transform 0.4s ease;
}

#NavBarAllPage .refresh-icon:hover {
    transform: rotate(360deg);
}

#NavBarAllPage .home-svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: #207c7a;
}

#NavBarAllPage .refresh-icon .dashicons {
    width: 24px;
    height: 24px;
    color: #207c7a;
    font-size: 24px;
    line-height: 24px;
}

#NavBarAllPage .nav-title {
    min-height: 40px;
    margin: 0 52px;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 1px solid #afd4d3;
    border-radius: 5px;
    background: #d9ebeb;
    color: #227170;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
    text-shadow: 0 1px 0 #ffffff;
}

@media (max-width: 768px) {
    #NavBarAllPage {
        margin: 8px 0 14px;
        padding: 12px 8px;
    }

    #NavBarAllPage .nav-icon {
        width: 36px;
        height: 36px;
        border-width: 2px;
    }

    #NavBarAllPage .home-svg {
        width: 20px;
        height: 20px;
    }

    #NavBarAllPage .refresh-icon .dashicons {
        width: 22px;
        height: 22px;
        font-size: 22px;
        line-height: 22px;
    }

    #NavBarAllPage .nav-title {
        min-height: 36px;
        margin: 0 44px;
        padding: 9px 10px;
        font-size: 14px;
        line-height: 18px;
    }
}