.hidden {
    display: none;
  }
  .left {
    text-align: left;
  }
  .center {
    text-align: center;
  }
  .right {
    text-align: right;
  }
  .m-pagination {
    margin: 4.25rem 0;
  }
  .m-pagination-wrap {
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.88);
    text-align: center; 
    }
.u-item {
    display: inline-block;
    min-width: 2rem;
    height: 2rem;
    line-height: 2rem;
    user-select: none;
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}
.u-item:hover{
    font-weight: 600;
    color: white;
    border: 1px solid #fff;
    background-color: #FF3741;
    border: 1px solid #FF3741;
}
.u-item:hover.u-arrow{fill: black;}
.active {
    font-weight: 600;
    color: white;
    border: 1px solid #fff;
    background-color: #FF3741;
    border: 1px solid #FF3741;
}
.active.u-arrow {fill: black;}
.u-item .u-arrow {
    display: inline-block;
    fill: rgba(0, 0, 0, 0.65);
    width: 0.75rem;
    height: 0.75rem;
    transition: all 0.3s;
}
.u-item:not(:last-child) {
    margin-right: 0.5rem;
}
.disabled {
    color: rgba(0, 0, 0, 0.25);
    background: #fff;
    border-color: #d9d9d9;
    cursor: not-allowed;
}
.disabled:hover{
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
    border-color: #d9d9d9;
}
.disabled .u-arrow {
    fill: rgba(0, 0, 0, 0.25);
}
.m-arrow {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 0.5rem;
    width: 2rem;
    height: 2rem;
    transition: all 0.3s;
    cursor: pointer;
}
.m-arrow:hover.u-ellipsis {
    opacity: 0;
    pointer-events: none;
    }
.m-arrow:hover.u-icon {
    opacity: 1;
    pointer-events: auto;
}
.u-ellipsis {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    margin: auto;
    color: rgba(0, 0, 0, 0.25);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 2rem;
    letter-spacing: 0.125rem;
    text-align: center;
    text-indent: 0.13em;
    opacity: 1;
    transition: all 0.2s;
}
.u-icon {
    display: inline-flex;
    align-items: center;
    text-align: center;
    vertical-align: -0.125em;
    fill: black;
    width: 0.75rem;
    height: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
}