@media screen and (pointer: fine),screen and (pointer: coarse) and (min-device-width: 601px) {
    .cycler {
        display: flex;
        align-items: stretch;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 12px rgba(0, 0, 0, 0.3);
        width: calc(100% - 12px);
        text-align: center;
        position: relative;
        margin: 13px 0px;
        cursor: pointer;
    }

    .cycler-prev{
        width: 20px;
        border: none;
        border-right: 2px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        color: white;
        font-size: 16px;
        background: none;
        transition: 0.15s;
    }

    .cycler-next{
        width: 20px;
        border: none;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        color: white;
        font-size: 16px;
        background: none;
        transition: 0.15s;
    }

    .cycler-prev:hover,
    .cycler-next:hover {
        background: #ffffff60;
    }

    .cycler-prev:active,
    .cycler-next:active {
        transform: scale(.98);
    }

    .cycler-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 1px;
        text-align: end;
        position: absolute;
        top: -20px;
        left: 0;
        font-family: 'ZNDefault';
    }

    .cycler-value {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 25px;
        font-size: 14px;
        letter-spacing: 2px;
        text-shadow: 0 0 6px rgba(255,255,255,.1);
        color: #fff;
        user-select: none;
        font-family: 'ZNDefault';
    }

    .cycler-counter {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.2);
        letter-spacing: 1px;
        text-align: end;
        position: absolute;
        bottom: -17px;
        right: 0;
    }
}

@media screen and (pointer: coarse) and (max-device-width: 600px) {
    .cycler {
        display: flex;
        align-items: stretch;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 12px rgba(0, 0, 0, 0.3);
        width: calc(100% - 12px);
        text-align: center;
        position: relative;
        margin: 30px 0px;
        cursor: pointer;
    }

    .cycler-prev{
        width: 60px;
        border: none;
        border-right: 2px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        color: white;
        font-size: 45px;
        background: none;
        transition: 0.15s;
    }

    .cycler-next{
        width: 60px;
        border: none;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        color: white;
        font-size: 45px;
        background: none;
        transition: 0.15s;
    }

    .cycler-prev:hover,
    .cycler-next:hover {
        background: #ffffff60;
    }

    .cycler-prev:active,
    .cycler-next:active {
        transform: scale(.98);
    }

    .cycler-label {
        font-size: 36px;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 1px;
        text-align: end;
        position: absolute;
        top: -36px;
        left: 0;
        font-family: 'ZNDefault';
    }

    .cycler-value {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60px;
        font-size: 38px;
        letter-spacing: 2px;
        text-shadow: 0 0 6px rgba(255,255,255,.1);
        color: #fff;
        user-select: none;
        font-family: 'ZNDefault';
    }

    .cycler-counter {
        font-size: 32px;
        color: rgba(255, 255, 255, 0.2);
        letter-spacing: 1px;
        text-align: end;
        position: absolute;
        bottom: -40px;
        right: 0;
    }
}