.page {
    margin: 50px 0px;
    min-height: 50px;
}

.page button {
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    outline: 0;
}

.page .paginate {
    margin: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    position: absolute;
    margin-top: -20px;
    -webkit-filter: drop-shadow(0 2px 0px rgba(0, 0, 0, 0.2));
}

.page .paginate i {
    position: absolute;
    top: 40%;
    left: 0;
    width: 50px;
    height: 5px;
    border-radius: 2.5px;
    background: #009946;
    transition: all 0.15s ease;
}

.page .paginate.left {
    right: 68%;
}

.page .paginate.left i {
    transform-origin: 0% 50%;
}

.page .paginate.left i:first-child {
    transform: translate(0, -1px) rotate(40deg);
}

.page .paginate.left i:last-child {
    transform: translate(0, 1px) rotate(-40deg);
}

.page .paginate.left:hover i:first-child {
    transform: translate(0, -1px) rotate(30deg);
}

.page .paginate.left:hover i:last-child {
    transform: translate(0, 1px) rotate(-30deg);
}

.page .paginate.left:active i:first-child {
    transform: translate(1px, -1px) rotate(25deg);
}

.page .paginate.left:active i:last-child {
    transform: translate(1px, 1px) rotate(-25deg);
}

.page .paginate.left[data-state=disabled] i:first-child {
    transform: translate(-5px, 0) rotate(0deg);
}

.page .paginate.left[data-state=disabled] i:last-child {
    transform: translate(-5px, 0) rotate(0deg);
}

.page .paginate.left[data-state=disabled]:hover i:first-child {
    transform: translate(-5px, 0) rotate(0deg);
}

.page .paginate.left[data-state=disabled]:hover i:last-child {
    transform: translate(-5px, 0) rotate(0deg);
}

.page .paginate.right {
    left: 68%;
}

.page .paginate.right i {
    transform-origin: 100% 50%;
}

.page .paginate.right i:first-child {
    transform: translate(0, 1px) rotate(40deg);
}

.page .paginate.right i:last-child {
    transform: translate(0, -1px) rotate(-40deg);
}

.page .paginate.right:hover i:first-child {
    transform: translate(0, 1px) rotate(30deg);
}

.page .paginate.right:hover i:last-child {
    transform: translate(0, -1px) rotate(-30deg);
}

.page .paginate.right:active i:first-child {
    transform: translate(1px, 1px) rotate(25deg);
}

.page .paginate.right:active i:last-child {
    transform: translate(1px, -1px) rotate(-25deg);
}

.page .paginate.right[data-state=disabled] i:first-child {
    transform: translate(5px, 0) rotate(0deg);
}

.page .paginate.right[data-state=disabled] i:last-child {
    transform: translate(5px, 0) rotate(0deg);
}

.page .paginate.right[data-state=disabled]:hover i:first-child {
    transform: translate(5px, 0) rotate(0deg);
}

.page .paginate.right[data-state=disabled]:hover i:last-child {
    transform: translate(5px, 0) rotate(0deg);
}

.page .paginate[data-state=disabled] {
    opacity: 0.3;
    cursor: default;
}

.page .counter {
    text-align: center;
    position: absolute;
    width: 100%;
    margin-top: -15px;
    font-size: 30px;
    font-family: Helvetica, sans-serif;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
    color: #009946;
}

@media (max-width: 767px) {
    .page {
        margin: 30px 0px;
        min-height: 30px;
    }

    .page .counter {
        text-align: center;
        position: absolute;
        width: 100%;
        margin-top: 5px;
        font-size: 30px;
        font-family: Helvetica, sans-serif;
        text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
        color: #009946;
    }

    .page .paginate {
        margin: 10px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        transform: translate3d(0, 0, 0);
        position: absolute;
        -webkit-filter: drop-shadow(0 2px 0px rgba(0, 0, 0, 0.2));
    }

    .page .paginate i {
        position: absolute;
        top: 40%;
        left: 0;
        width: 30px;
        height: 3px;
        border-radius: 1.5px;
        background: #009946;
        transition: all 0.15s ease;
    }
}