.p-mobNav {
    position: fixed;
    display: block;
    width: 100%;
    height: 56px;
    left: 0;
    bottom: -56px;
    background-color: #202020;
    z-index: 333;
    transition: all .5s;
}
.p-mobNav.visible {
    bottom: 0;
}
.p-mobNav__inner{
    display: grid;
    grid-template-columns: repeat(2,1fr) 56px;
    align-items: center;
    width: 100%;
    height: 56px;
    gap: 1px;
    padding: 0;
}
.p-mobNav__list{
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-size: auto 24px;
    color: #202020;
    list-style: none;
    transition: all .3s;
}
.p-mobNav__list:first-child{
    background-image: url('../../../svg/icon_radiko.svg');
    background-position: 25px center;
}
.p-mobNav__list:nth-child(2){
    background-image: url('../../../svg/icon_request.svg');
    background-position: 20px center;
}
.p-mobNav__title{
    text-align: center;
    width: 100%;
    margin: 0;
    font-family: din-2014, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}
.p-mobNav__about{
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 10px;
    font-weight: 400;
    transform: scale(0.8);
}




@media screen and (min-width: 769px){
    .p-mobNav{
        display: none;
    }
    
}
