{“version”:3,“sources”:,“names”:[],“mappings”:“AAOA,WCIE,UAAA,KAGA,OAAA,KDDF,eACE,QAAA,IACA,iBAAA,KACA,OAAA,IAAA,MAAA,QEXE,cAAA,IDMF,UAAA,KAGA,OAAA,KDcF,QAEE,QAAA,aAGF,YACE,cAAA,MACA,YAAA,EAGF,gBGkCI,UAAA,IHhCF,MAAA,KIvCA,QACE,MAAA,KACA,OAAA,KAEF,QACE,MAAA,KACA,OAAA,KAEF,QACE,MAAA,KACA,OAAA,KAEF,QACE,MAAA,MACA,OAAA,MAEF,gBACE,QAAA,aACA,eAAA,OACA,iBAAA,gpDACA,kBAAA,UACA,oBAAA,OACA,gBAAA”,“sourcesContent”:[“// Responsive images (ensure images don't scale beyond their parents)n//n// This is purposefully opt-in via an explicit class rather than being the default for all `<img>`s.n// We previously tried the "images are responsive by default" approach in Bootstrap v2,n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)n// which weren't expecting the images within themselves to be involuntarily resized.n// See also github.com/twbs/bootstrap/issues/18178n.#{$prefix}img-fluid {n @include img-fluid;n}nnn// Image thumbnailsn.#{$prefix}img-thumbnail {n padding: $thumbnail-padding;n background-color: $thumbnail-bg;n border: $thumbnail-border-width solid $thumbnail-border-color;n @include border-radius($thumbnail-border-radius);n @include box-shadow($thumbnail-box-shadow);nn // Keep them at most 100% widen @include img-fluid;n}nn//n// Figuresn//nn.#{$prefix}figure {n // Ensures the caption's text aligns with the image.n display: inline-block;n}nn.#{$prefix}figure-img {n margin-bottom: $spacer / 2;n line-height: 1;n}nn.#{$prefix}figure-caption {n @include font-size($figure-caption-font-size);n color: $figure-caption-color;n}n”,“// Image Mixinsn// - Responsive imagen// - Retina imagennn// Responsive imagen//n// Keep images from scaling beyond the width of their parents.nn@mixin img-fluid {n // Part 1: Set a maximum relative to the parentn max-width: 100%;n // Part 2: Override the height to auto, otherwise images will be stretchedn // when setting a width and height attribute on the img element.n height: auto;n}nnn// Retina imagen//n// Short retina mixin for setting background-image and -size.nn@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {n background-image: url($file-1x);nn // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,n // but doesn't convert dppx=>dpi.n // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.n // Compatibility info: caniuse.com/#feat=css-media-resolutionn @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppxn only screen and (min-resolution: 2dppx) { // Standardizedn background-image: url($file-2x);n background-size: $width-1x $height-1x;n }n @include deprecate("`img-retina()`", "v4.3.0", "v5");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”,“// 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}img {n &-xs {n width: 24px;n height: 24px;n }n &-sm {n width: 40px;n height: 40px;n }n &-md {n width: 60px;n height: 60px;n }n &-lg {n width: 120px;n height: 120px;n }n &-blank-user {n display: inline-block;n vertical-align: middle;n background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTIwcHgiIGhlaWdodD0iMTIwcHgiIHZpZXdCb3g9IjAgMCAxMjAgMTIwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPCEtLSBHZW5lcmF0b3I6IFNrZXRjaCA1Ni4zICg4MTcxNikgLSBodHRwczovL3NrZXRjaC5jb20gLS0+CiAgICA8dGl0bGU+IEF2YXRhci8gUGhvdG8gLyAxMjA8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iLi8tQXZhdGFyLy1QaG90byIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPGcgaWQ9IlBlb3BsZXMvLUJsYW5rLVBob3RvIj4KICAgICAgICAgICAgICAgIDxyZWN0IGlkPSJCYXNlIiBmaWxsPSIjRTJFMkUyIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTIwIiBoZWlnaHQ9IjEyMCI+PC9yZWN0PgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTYxLjA1ODgyMzUsNzAuNTg4MjM1MyBDNDkuMzYzMzgxOCw3MC41ODgyMzUzIDM5Ljg4MjM1MjksNjEuMTA3MjA2NSAzOS44ODIzNTI5LDQ5LjQxMTc2NDcgQzM5Ljg4MjM1MjksMzcuNzE2MzIyOSA0OS4zNjMzODE4LDI4LjIzNTI5NDEgNjEuMDU4ODIzNSwyOC4yMzUyOTQxIEM3Mi43NTQyNjUzLDI4LjIzNTI5NDEgODIuMjM1Mjk0MSwzNy43MTYzMjI5IDgyLjIzNTI5NDEsNDkuNDExNzY0NyBDODIuMjM1Mjk0MSw2MS4xMDcyMDY1IDcyLjc1NDI2NTMsNzAuNTg4MjM1MyA2MS4wNTg4MjM1LDcwLjU4ODIzNTMgWiBNNTYuNDcwNTg4Miw3Ny42NDcwNTg4IEw2My41Mjk0MTE4LDc3LjY0NzA1ODggQzgzLjAyMTgxNDcsNzcuNjQ3MDU4OCA5OC44MjM1Mjk0LDkzLjQ0ODc3MzUgOTguODIzNTI5NCwxMTIuOTQxMTc2IEw5OC44MjM1Mjk0LDEyMCBMMjEuMTc2NDcwNiwxMjAgTDIxLjE3NjQ3MDYsMTEyLjk0MTE3NiBDMjEuMTc2NDcwNiw5My40NDg3NzM1IDM2Ljk3ODE4NTMsNzcuNjQ3MDU4OCA1Ni40NzA1ODgyLDc3LjY0NzA1ODggWiIgaWQ9IlBhdGgiIGZpbGw9IiNCNEI0QjQiPjwvcGF0aD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+");n background-repeat: no-repeat;n background-position: center;n background-size: contain;n }n}nnn”]}