@media only screen and (max-width: 1025px) {
    .inactiveMixin {
        content: "";
        position: absolute;
        display: block;
    }

    .beforeAnimation {
        transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    }

    .afterAnimation {
        box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
        transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    }

    .toggleWrapper {
        padding: 20px;
        width: 100%;
        margin-top: -20px;
        border-radius: 5px;
        background: white;
        text-align: center;
    }

    .toggleWrapper span {
        line-height: 30px;
        vertical-align: top;
    }

    .toggleWrapper input {
        margin-top: 5px;
    }

    .toggleWrapper input.mobileToggle {
        opacity: 0;
        position: absolute;
    }

    .toggleWrapper input.mobileToggle+label {
        position: relative;
        display: inline-block;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition: 0.4s ease;
        height: 30px;
        width: 50px;
        border: 1px solid #e4e4e4;
        border-radius: 60px;
        background-color: #647373;
    }

    .toggleWrapper input.mobileToggle+label:before {
        content: "";
        position: absolute;
        display: block;
        transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
        height: 30px;
        width: 51px;
        top: 0;
        left: 0;
        border-radius: 30px;
    }

    .toggleWrapper input.mobileToggle+label:after {
        content: "";
        position: absolute;
        display: block;
        box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
        transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
        background: whitesmoke;
        height: 22px;
        width: 22px;
        top: 3px;
        left: 3px;
        border-radius: 60px;
    }

    .toggleWrapper input.mobileToggle:checked+label:before {
        transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
    }

    .toggleWrapper input.mobileToggle:checked+label:after {
        left: 24px;
    }
}