{“version”:3,“sources”:,“names”:[],“mappings”:“AAAA;EACE,aAAa;ECGb,eAAe;EACf,gBAAgB;ECAd,kBCF6B;ACEjC;;AJCA;EACE,kBAAkB;EAClB,cAAc;EACd,iBKWsC;ELVtC,iBKiB2B;ELhB3B,iBKcsC;ELbtC,cMCqB;ENArB,sBMPU;ENQV,yBMVa;AFYf;;AJVA;EAWI,UAAU;EACV,cOQ0D;EPP1D,qBAAqB;EACrB,yBMhBW;ENiBX,qBMlBW;AFqBf;;AJlBA;EAmBI,UAAU;EACV,UKUwB;ELTxB,gCMZmB;AFevB;;AJCA;EAGM,cAAc;EEChB,2BChC6B;EDiC7B,8BCjC6B;ACiCjC;;AJLA;EEVI,4BClB6B;EDmB7B,+BCnB6B;ACsCjC;;AJVA;EAcI,UAAU;EACV,WMxCQ;ENyCR,yBMhCmB;ENiCnB,qBMjCmB;AFiCvB;;AJjBA;EAqBI,WMlDQ;ENmDR,oBAAoB;EAEpB,YAAY;EACZ,sBMlDQ;ENmDR,qBMrDW;AFoDf;;AIrDE;EACE,kBHoBoC;EIuGlC,kBAtCY;EDnFd,iBHyCiB;ADerB;;AInDM;ENwBF,6BC/B+B;EDgC/B,gCChC+B;AC+DnC;;AInDM;ENKF,8BCjB+B;EDkB/B,iCClB+B;ACoEnC;;AIrEE;EACE,gBHkBmC;EIyGjC,kBAtCY;EDnFd,mBDKwC;AHmE5C;;AInEM;ENwBF,6BC9B+B;ED+B/B,gCC/B+B;AC8EnC;;AInEM;ENKF,8BChB+B;EDiB/B,iCCjB+B;ACmFnC;;AMxFA;EACE,aAAa;EACb,8BAA8B;EAC9B,kBAAkB;AN2FpB;;AM9FA;EAMI,aAAa;EACb,mBAAmB;EACnB,UAAU;EACV,SAAS;AN4Fb;;AMrGA;EAYM,UAAU;EACV,SAAS;EACT,WJZM;EIaN,qBAAqB;AN6F3B;;AM5GA;EAiBQ,WAAW;EACX,YAAY;EACZ,eAAe;AN+FvB;;AM1FG;EAGK,iBAAiB;EACjB,WJ1BI;AFqHZ;;AM/FG;EAMO,eAAe;AN6FzB;;AMnGG;EASO,WAAW;EACX,gBAAgB;EAChB,iBAAiB;AN8F3B;;AMzFG;EAGK,eAAe;EACf,gBAAgB;EAChB,UAAU;EACV,eAAe;EACf,SAAS;AN0FjB;;AMjGG;EASO,qBAAqB;AN4F/B;;AMrGG;EAaK,WAAW;EACX,mBAAmB;AN4F3B;;AMvFE;EACE,aAAa;AN0FjB”,“file”:“mekari-ui-pagination.css”,“sourcesContent”:[“.#{$prefix}pagination {n display: flex;n @include list-unstyled;n @include border-radius;n}nn.#{$prefix}page-link {n position: relative;n display: block;n padding: $pagination-padding-y $pagination-padding-x;n margin-left: -$pagination-border-width;n line-height: $pagination-line-height;n color: $pagination-color;n background-color: $pagination-bg;n border: $pagination-border-width solid $pagination-border-color;nn &:hover {n z-index: 2;n color: $pagination-hover-color;n text-decoration: none;n background-color: $pagination-hover-bg;n border-color: $pagination-hover-border-color;n }nn &:focus {n z-index: 2;n outline: $pagination-focus-outline;n box-shadow: $pagination-focus-box-shadow;n }n}nn.#{$prefix}page-item {n &:first-child {n .#{$prefix}page-link {n margin-left: 0;n @include border-left-radius($border-radius);n }n }n &:last-child {n .#{$prefix}page-link {n @include border-right-radius($border-radius);n }n }nn &.active .#{$prefix}page-link {n z-index: 1;n color: $pagination-active-color;n background-color: $pagination-active-bg;n border-color: $pagination-active-border-color;n }nn &.disabled .#{$prefix}page-link {n color: $pagination-disabled-color;n pointer-events: none;n // Opinionated: remove the "hand" cursor set previously for .#{$prefix}page-linkn cursor: auto;n background-color: $pagination-disabled-bg;n border-color: $pagination-disabled-border-color;n }n}nnn//n// Sizingn//nn.#{$prefix}pagination-lg {n @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $border-radius-lg);n}nn.#{$prefix}pagination-sm {n @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $border-radius-sm);n}n”,“// Listsnn// Unstyled keeps list items block level, just removes default browser padding and list-stylen@mixin list-unstyled {n padding-left: 0;n list-style: none;n}n”,“// stylelint-disable property-blacklistn// Single side border-radiusnn@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {n @if $enable-rounded {n border-radius: $radius;n }n @else if $fallback-border-radius != false {n border-radius: $fallback-border-radius;n }n}nn@mixin border-top-radius($radius) {n @if $enable-rounded {n border-top-left-radius: $radius;n border-top-right-radius: $radius;n }n}nn@mixin border-right-radius($radius) {n @if $enable-rounded {n border-top-right-radius: $radius;n border-bottom-right-radius: $radius;n }n}nn@mixin border-bottom-radius($radius) {n @if $enable-rounded {n border-bottom-right-radius: $radius;n border-bottom-left-radius: $radius;n }n}nn@mixin border-left-radius($radius) {n @if $enable-rounded {n border-top-left-radius: $radius;n border-bottom-left-radius: $radius;n }n}nn@mixin border-top-left-radius($radius) {n @if $enable-rounded {n border-top-left-radius: $radius;n }n}nn@mixin border-top-right-radius($radius) {n @if $enable-rounded {n border-top-right-radius: $radius;n }n}nn@mixin border-bottom-right-radius($radius) {n @if $enable-rounded {n border-bottom-right-radius: $radius;n }n}nn@mixin border-bottom-left-radius($radius) {n @if $enable-rounded {n border-bottom-left-radius: $radius;n }n}n”,“$border-width: 1px;n$border-color: $smoke;nn$border-radius: 4px;n$border-radius-lg: 5.4px;n$border-radius-sm: 3.2px;nn$rounded-pill: 50rem !default;nn$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;nn$displays: none, inline, inline-block, block, table, table-row, table-cell, flex, inline-flex !default;n$overflows: auto, hidden !default;n$positions: static, relative, absolute, fixed, sticky !default;nn$embed-responsive-aspect-ratios: () !default;n// stylelint-disable-next-line scss/dollar-variable-defaultn$embed-responsive-aspect-ratios: join(n (n (21 9),n (16 9),n (4 3),n (1 1),n ),n $embed-responsive-aspect-ratiosn);n// This variable affects the `.h-*` and `.w-*` classes.n$sizes: () !default;n// stylelint-disable-next-line scss/dollar-variable-defaultn$sizes: map-merge(n (n 25: 25%,n 50: 50%,n 75: 75%,n 100: 100%,n auto: auton ),n $sizesn);nn$emphasized-link-hover-darken-percentage: 15% !default;n”,“.pagination {n display: flex;n padding-left: 0;n list-style: none;n border-radius: 4px;n}nn.page-link {n position: relative;n display: block;n padding: 8px 12px;n margin-left: -1px;n line-height: 20px;n color: #1357ff;n background-color: fff;n border: 1px solid e2e2e2;n}nn.page-hover {n z-index: 2;n color: #0039c6;n text-decoration: none;n background-color: e2e2e2;n border-color: b4b4b4;n}nn.page-focus {n z-index: 2;n outline: 0;n box-shadow: 0 0 0 0.2rem #005fbf;n}nn.page-item:first-child .page-link {n margin-left: 0;n border-top-left-radius: 4px;n border-bottom-left-radius: 4px;n}nn.page-item:last-child .page-link {n border-top-right-radius: 4px;n border-bottom-right-radius: 4px;n}nn.page-item.active .page-link {n z-index: 1;n color: fff;n background-color: #005fbf;n border-color: #005fbf;n}nn.page-item.disabled .page-link {n color: #777;n pointer-events: none;n cursor: auto;n background-color: fff;n border-color: e2e2e2;n}nn.pagination-lg .page-link {n padding: 12px 24px;n font-size: 1.25rem;n line-height: 32px;n}nn.pagination-lg .page-item:first-child .page-link {n border-top-left-radius: 5.4px;n border-bottom-left-radius: 5.4px;n}nn.pagination-lg .page-item:last-child .page-link {n border-top-right-radius: 5.4px;n border-bottom-right-radius: 5.4px;n}nn.pagination-sm .page-link {n padding: 4px 8px;n font-size: 0.75rem;n line-height: 1.4285;n}nn.pagination-sm .page-item:first-child .page-link {n border-top-left-radius: 3.2px;n border-bottom-left-radius: 3.2px;n}nn.pagination-sm .page-item:last-child .page-link {n border-top-right-radius: 3.2px;n border-bottom-right-radius: 3.2px;n}nn.pagination {n display: flex;n justify-content: space-between;n margin: 8px 0 16px;n}nn.pagination ul {n display: flex;n align-items: center;n padding: 0;n margin: 0;n}nn.pagination ul li {n padding: 0;n margin: 0;n color: #777;n list-style-type: none;n}nn.pagination ul li .ic {n width: 20px;n height: 20px;n font-size: 20px;n}nn.pagination_limit ul li {n margin-right: 6px;n color: #777;n}nn.pagination_limit ul li:last-child {n margin-right: 0;n}nn.pagination_limit ul li .custom-select {n width: 75px;n padding: 4px 8px;n margin: 0 4px 0 0;n}nn.pagination_pages li .btn {n max-width: 20px;n max-height: 20px;n padding: 0;n font-size: 20px;n border: 0;n}nn.pagination_pages li .btn:hover {n text-decoration: none;n}nn.pagination_pages li input {n width: 50px;n margin: 0 8px 0 4px;n}nn.pagination_total_pages {n margin: 0 6px;n}nn/*# sourceMappingURL=mekari-ui-pagination.css.map */”,“// Spacing for Mekari UIn$spacer: 1rem;n$spacers: (n 0: 0,n 1: ($spacer * .25), // tinyn 2: ($spacer * .5), // xmalln 3: $spacer, // smalln 4: ($spacer * 1.5), // normaln 5: ($spacer * 2), // mediumn 6: ($spacer * 2.5), // largen 7: ($spacer * 5) // xlargen);nn$headings-margin-bottom: $spacer / 2;n$paragraph-margin-bottom: $spacer;n$label-margin-bottom: 8px;nn//paginationnn$pagination-padding-y: 8px;n$pagination-padding-x: 12px;n$pagination-padding-y-sm: 4px;n$pagination-padding-x-sm: 8px;n$pagination-padding-y-lg: 12px;n$pagination-padding-x-lg: 24px;n$pagination-line-height: 20px;nn$pagination-border-width: 1px;n$pagination-border-color: $smoke;nn$pagination-hover-color: $link-hover-color;n$pagination-hover-bg: $smoke;n$pagination-hover-border-color: $muted;nn$pagination-color: $link-color;n$pagination-bg: $white;n$pagination-focus-outline: 0;n$pagination-focus-box-shadow: 0 0 0 .2rem $primary;nn$pagination-active-color: $white;n$pagination-active-bg: $primary;n$pagination-active-border-color: $pagination-active-bg;nn$pagination-disabled-color: $slate;n$pagination-disabled-bg: $white;n$pagination-disabled-border-color: $smoke;nn$line-height-lg: 32px;nn//imagesnn$thumbnail-padding: 4px;n$thumbnail-bg: $body-bg;nn$thumbnail-border-width: 1px;n$thumbnail-border-color: $smoke;n$thumbnail-border-radius: 4px;n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075);n$figure-caption-font-size: 90%;n$figure-caption-color: $slate;n”,“// Neutrals color variablesn$dark: #212121;n$slate: #777;n$muted: b4b4b4;n$smoke: e2e2e2;n$snow: fbfbfb;n$white: fff;n$cloud: f2f4f7;nn// UI color variablesn$red: d74022;n$green: #009f61;n$light-yellow: ffeb99;n$blue: #1357ff;n$orange: ffb700;n$sapphire: #005fbf;nn// Branding color variablesn$crimson: c02a34;n$azure: #009bde;n$salamander: f96d01;n$purple: #6d48e5;nn// Bootstrap dependencies colorn$black: #000 !default;n$gray-100: f8f9fa !default;n$gray-200: e9ecef !default;n$gray-300: dee2e6 !default;n$gray-400: ced4da !default;n$gray-500: adb5bd !default;n$gray-600: #6c757d !default;n$gray-700: #495057 !default;n$gray-800: #343a40 !default;n$gray-900: #212529 !default;nn// The yiq lightness value that determines when the lightness of color changes from "dark" to "light". Acceptable values are between 0 and 255.n$yiq-contrasted-threshold: 150 !default;nn// Customize the light and dark text colors for use in our YIQ color contrast function.n$yiq-text-dark: $gray-900 !default;n$yiq-text-light: $white !default;nnn$grays: () !default;n// stylelint-disable-next-line scss/dollar-variable-defaultn$grays: map-merge(n (n "100": $gray-100,n "200": $gray-200,n "300": $gray-300,n "400": $gray-400,n "500": $gray-500,n "600": $gray-600,n "700": $gray-700,n "800": $gray-800,n "900": $gray-900n ),n $graysn);nn// register mekari color variables too bootstrapn$colors: ();n$colors: map-merge(n (n "noir" : $dark, // going to deprecatedn "dark" : $dark,n "slate" : $slate,n "muted" : $muted,n "smoke" : $smoke,n "snow" : $snow,n "cloud" : $cloud,n "crimson" : $crimson,n "azure" : $azure,n "salamander" : $salamander,n "purple" : $purple,n "sapphire" : $sapphire,n "white" : $white,n "red" : $red,n "orange" : $orange,n "green" : $green,n "blue" : $blue,n "light-yellow" : $light-yellown ),n $colorsn);nn//extend bootstrap classn$danger: $red;n$success: $green;n$info: $light-yellow;n$warning: $orange;n$primary: $sapphire;n$jurnal: $azure;n$talenta: $crimson;n$klikpajak: $salamander;n$mekari: $purple;nn$link: $blue;nn$text-muted: $muted;n$body-color: $dark;n$dark: $dark;n$secondary: $slate;n$light: $snow;nn// Add more theme color variablesn$theme-colors: ();n$theme-colors: map-merge(n (n "danger" : $danger,n "success" : $success,n "info" : $info,n "warning" : $warning,n "primary" : $primary,n "jurnal" : $jurnal,n "talenta" : $talenta,n "klikpajak" : $klikpajak,n "mekari" : $mekari,n "dark" : $dark,n "slate" : $slate,n "muted" : $muted,n "smoke" : $smoke,n "light" : $light,n "cloud" : $cloud,n "link" : $blue,n "white" : $whiten ),n $theme-colorsn);nn$card-border-color: $smoke;n$body-bg: $white;n”,“$font-family-roboto: "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;n$font-family-base: $font-family-roboto;n$font-family-monospace: monospace;nn// 1 rem = 16pxn$font-size-base: .875rem; // 14pxn$font-size-lg: 1.25rem; // 20pxn$font-size-sm: .75rem; // 12pxnn$line-height-base: 1.4285; // The closest value to Mekari designn$line-height-lg: 1.4285;n$line-height-sm: 1.4285;n$letter-spacing: .2px;nn$font-weight-lighter: 400;n$font-weight-light: 400;n$font-weight-normal: 400;n$font-weight-base: 400;n$font-weight-bold: 500;n$font-weight-bolder: 500;nn$dt-font-weight: $font-weight-bold;nn// Text colorn$body-color: $dark;n$link-color: $blue;n$link-hover-color: darken($link-color, 15%);n$link-decoration: none;n$link-hover-decoration: underline;n$h5-font-size: 16px;nn$input-placeholder-color: $text-muted;n$custom-select-disabled-color: $text-muted;n$custom-control-label-disabled-color: $text-muted;n”,“// Paginationnn@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {n .#{$prefix}page-link {n padding: $padding-y $padding-x;n @include font-size($font-size);n line-height: $line-height;n }nn .#{$prefix}page-item {n &:first-child {n .#{$prefix}page-link {n @include border-left-radius($border-radius);n }n }n &:last-child {n .#{$prefix}page-link {n @include border-right-radius($border-radius);n }n }n }n}n”,“// stylelint-disable property-blacklist, scss/dollar-variable-defaultnn// SCSS RFS mixinn//n// Automated font-resizingn//n// See github.com/twbs/rfsnn// Configurationnn// Base font sizen$rfs-base-font-size: 1.25rem !default;n$rfs-font-size-unit: rem !default;nn// Breakpoint at where font-size starts decreasing if screen width is smallern$rfs-breakpoint: 1200px !default;n$rfs-breakpoint-unit: px !default;nn// Resize font-size based on screen height and widthn$rfs-two-dimensional: false !default;nn// Factor of decreasen$rfs-factor: 10 !default;nn@if type-of($rfs-factor) != "number" or $rfs-factor <= 1 {n @error "`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.";n}nn// Generate enable or disable classes. Possibilities: false, "enable" or "disable"n$rfs-class: false !default;nn// 1 rem = $rfs-rem-value pxn$rfs-rem-value: 16 !default;nn// Safari iframe resize bug: github.com/twbs/rfs/issues/14n$rfs-safari-iframe-resize-bug-fix: false !default;nn// Disable RFS by setting $enable-responsive-font-sizes to falsen$enable-responsive-font-sizes: true !default;nn// Cache $rfs-base-font-size unitn$rfs-base-font-size-unit: unit($rfs-base-font-size);nn// Remove px-unit from $rfs-base-font-size for calculationsn@if $rfs-base-font-size-unit == "px" {n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1);n}n@else if $rfs-base-font-size-unit == "rem" {n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1 / $rfs-rem-value);n}nn// Cache $rfs-breakpoint unit to prevent multiple callsn$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);nn// Remove unit from $rfs-breakpoint for calculationsn@if $rfs-breakpoint-unit-cache == "px" {n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1);n}n@else if $rfs-breakpoint-unit-cache == "rem" or $rfs-breakpoint-unit-cache == "em" {n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1 / $rfs-rem-value);n}nn// Responsive font-size mixinn@mixin rfs($fs, $important: false) {n // Cache $fs unitn $fs-unit: if(type-of($fs) == "number", unit($fs), false);nn // Add !important suffix if neededn $rfs-suffix: if($important, " !important", "");nn // If $fs isn't a number (like inherit) or $fs has a unit (not px or rem, like 1.5em) or $ is 0, just print the valuen @if not $fs-unit or $fs-unit != "" and $fs-unit != "px" and $fs-unit != "rem" or $fs == 0 {n font-size: #{$fs}#{$rfs-suffix};n }n @else {n // Variables for storing static and fluid rescalingn $rfs-static: null;n $rfs-fluid: null;nn // Remove px-unit from $fs for calculationsn @if $fs-unit == "px" {n $fs: $fs / ($fs * 0 + 1);n }n @else if $fs-unit == "rem" {n $fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);n }nn // Set default font-sizen @if $rfs-font-size-unit == rem {n $rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};n }n @else if $rfs-font-size-unit == px {n $rfs-static: #{$fs}px#{$rfs-suffix};n }n @else {n @error "`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.";n }nn // Only add media query if font-size is bigger as the minimum font-sizen // If $rfs-factor == 1, no rescaling will take placen @if $fs > $rfs-base-font-size and $enable-responsive-font-sizes {n $min-width: null;n $variable-unit: null;nn // Calculate minimum font-size for given font-sizen $fs-min: $rfs-base-font-size + ($fs - $rfs-base-font-size) / $rfs-factor;nn // Calculate difference between given font-size and minimum font-size for given font-sizen $fs-diff: $fs - $fs-min;nn // Base font-size formattingn // No need to check if the unit is valid, because we did that beforen $min-width: if($rfs-font-size-unit == rem, #{$fs-min / $rfs-rem-value}rem, #{$fs-min}px);nn // If two-dimensional, use smallest of screen width and heightn $variable-unit: if($rfs-two-dimensional, vmin, vw);nn // Calculate the variable width between 0 and $rfs-breakpointn $variable-width: #{$fs-diff * 100 / $rfs-breakpoint}#{$variable-unit};nn // Set the calculated font-size.n $rfs-fluid: calc(#{$min-width} + #{$variable-width}) #{$rfs-suffix};n }nn // Renderingn @if $rfs-fluid == null {n // Only render static font-size if no fluid font-size is availablen font-size: $rfs-static;n }n @else {n $mq-value: null;nn // RFS breakpoint formattingn @if $rfs-breakpoint-unit == em or $rfs-breakpoint-unit == rem {n $mq-value: #{$rfs-breakpoint / $rfs-rem-value}#{$rfs-breakpoint-unit};n }n @else if $rfs-breakpoint-unit == px {n $mq-value: #{$rfs-breakpoint}px;n }n @else {n @error "`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.";n }nn @if $rfs-class == "disable" {n // Adding an extra class increases specificity,n // which prevents the media query to override the font sizen &,n .disable-responsive-font-size &,n &.disable-responsive-font-size {n font-size: $rfs-static;n }n }n @else {n font-size: $rfs-static;n }nn @if $rfs-two-dimensional {n @media (max-width: #{$mq-value}), (max-height: #{$mq-value}) {n @if $rfs-class == "enable" {n .enable-responsive-font-size &,n &.enable-responsive-font-size {n font-size: $rfs-fluid;n }n }n @else {n font-size: $rfs-fluid;n }nn @if $rfs-safari-iframe-resize-bug-fix {n // stylelint-disable-next-line length-zero-no-unitn min-width: 0vw;n }n }n }n @else {n @media (max-width: #{$mq-value}) {n @if $rfs-class == "enable" {n .enable-responsive-font-size &,n &.enable-responsive-font-size {n font-size: $rfs-fluid;n }n }n @else {n font-size: $rfs-fluid;n }nn @if $rfs-safari-iframe-resize-bug-fix {n // stylelint-disable-next-line length-zero-no-unitn min-width: 0vw;n }n }n }n }n }n}nn// The font-size & responsive-font-size mixin uses RFS to rescale font sizesn@mixin font-size($fs, $important: false) {n @include rfs($fs, $important);n}nn@mixin responsive-font-size($fs, $important: false) {n @include rfs($fs, $important);n}n”,“.#{$prefix}pagination {n display: flex;n justify-content: space-between;n margin: 8px 0 16px;nn ul {n display: flex;n align-items: center;n padding: 0;n margin: 0;nn li {n padding: 0;n margin: 0;n color: $slate;n list-style-type: none;n .ic {n width: 20px;n height: 20px;n font-size: 20px;n }n }n }nn &_limit {n ul {n li {n margin-right: 6px;n color: $slate;n &:last-child {n margin-right: 0;n }n .custom-select {n width: 75px;n padding: 4px 8px;n margin: 0 4px 0 0;n }n }n }n }n &_pages {n li {n .#{$prefix}btn {n max-width: 20px;n max-height: 20px;n padding: 0;n font-size: 20px;n border: 0;n &:hover {n text-decoration: none;n }n }n input {n width: 50px;n margin: 0 8px 0 4px;n }n }n }nn &_total_pages {n margin: 0 6px;n }n}n”]}