.section.mobilenav-container{
    box-shadow: 0px -4px 36px 0px rgba(0, 0, 0, 0.12);

}

.mobilenav-wrapper{
    padding: 0!important;
}
.mobilenav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
    border-top: 1px solid #eee;
    z-index: 1000;
    box-shadow: 0px -4px 36px 0px rgba(0, 0, 0, 0.12);
}

/* Each nav item */
.mobilenav__item {
    flex: 1;
    text-align: center;
}

.mobilenav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111111 !important;
    font-size: 12px;
    font-weight: 500;
}

.mobilenav__icon img {
    /* width: 28px;
  height: 28px; */
    object-fit: contain;
}

/* Label */
.mobilenav__title {
    font-size: 12px;
    line-height: 16px;
    color: #111111;
    font-weight: 500;
}

.mobilenav__title p{
    margin: 0;
}

/* Highlight center button */
.mobilenav__item.is-active .mobilenav__link {
    position: relative;
    background: #fff;
    color: #fff;
    border-radius: 50%;
  width: 80px;
    height: 80px;
    margin-top: -40px;
    box-shadow: 0px -40px 36px 0px rgba(0, 0, 0, 0.12);

}

.mobilenav__item.is-active .mobilenav__title {
    margin-top: -20px;
}

/* Desktop: hide */
@media (min-width: 768px) {
    .mobilenav {
        display: none;
    }
    .section.mobilenav-container{
        display: none;
    }
}