@media only screen and (min-width: 768px) {
    /**** HEADER MENU ****/
    #btn-library {
        display: block;
    }

    /**** MAIN MENU ****/
    .main-menu li {
        width: 50%;
        float: left;
    }

    .main-menu li a {
        border-right: solid 1px #ccc;
    }

    /**** CREATE ACCOUNT ****/
    .form-row {
        width: 300px;
    }

    /**** BUTTONS ****/
    .login-cta {

    }

    .login-cta .pointer {
        background: 0 !important;
    }

    .btn-login {
        width: 100px !important;
        margin-left: 0 !important;
    }

    .btn-checkout {
        width: 200px !important;
        margin-left: 0 !important;
    }

    .btn-continue-shopping {
        width: 160px !important;
        margin-left: 0 !important;
    }

    .btn-auto-width-tablet-only {
        display: inline-block;
        height: 40px;
        line-height: 40px;
        width: auto !important;
    }

    .btn-auto-width-tablet-only a {
        padding: 0 5px !important;
    }

    /**** SHOW / HIDE ****/
    .tablet-show {
        display: block;
    }

    .tablet-hide {
        display: none;
    }

    .max-width-512 {
        max-width: 512px;
    }

    /**** BUNDLES ****/

    .bundle-items img {
        max-width: 100px !important;
    }

    .bundle-items .bundle-image {
        height: 165px !important;
    }
}

@media screen and (max-width: 767px) {
    .tablet-show {
        display: none;
    }

    .tablet-hide {
        display: block;
    }
}