/* Add here all your CSS customizations */

.content-mobile {
    display: none;
}

.float-dekstop {
    float: left;
}

@media only screen and (max-width: 767px) {

    .button-tab-link li{
        width: 100%;
        margin-bottom: 5px;
    }

    .float-dekstop {
        float: unset !important;
    }

    .button-tab-link li a{
        width: 100% !important;
    }

    .content-mobile {
        display: block;
    }

    .content-dekstop {
        display: none;
    }

    

}