{"version":3,"sources":["webpack:///src/components/v-input-auth-code/v-input-auth-code.vue","webpack:///node_modules/bootstrap/scss/mixins/_breakpoints.scss"],"names":[],"mappings":"AAGA,oCACE,YAAA,CACA,cAAA,CACA,SAAA,CCsDE,wBDzDJ,oCAMI,SAAA,CAAA,CAGF,2CACE,iBAAA,CACA,UAAA,CACA,WAAA,CC6CA,wBDhDF,2CAMI,UAAA,CACA,WAAA,CAAA,CAGF,iDACE,qBAAA,CACA,SAAA,CACA,sBAAA,CACA,UAAA,CACA,WAAA,CACA,iBAAA,CACA,aAAA,CACA,qDAAA,CACA,cAAA,CACA,eAAA,CAEA,4DACE,4BAAA,CAGF,8DACE,qBAAA,CACA,iBAAA,CAIJ,oDACE,iBAAA,CACA,YAAA,CACA,KAAA,CACA,OAAA,CACA,MAAA,CACA,UAAA,CACA,cAAA,CACA,WAAA,CACA,wBAAA,CACA,iBAAA,CACA,mBAAA,CACA,2BAAA,CAGF,gEACE,oBAAA,CACA,gBAAA,CAIJ,2CACE,UAAA,CACA,gBAAA,CACA,aAAA","file":"847be9fd0a05c570.css","sourcesContent":["\n@import \"../../sass/component.scss\";\n\n.v-input-auth-code {\n  display: flex;\n  flex-wrap: wrap;\n  gap: $spacer * 0.4;\n\n  @include media-breakpoint-up(sm) {\n    gap: $spacer * 0.5;\n  }\n\n  &__input {\n    position: relative;\n    width: 40px;\n    height: 45px;\n\n    @include media-breakpoint-up(sm) {\n      width: 45px;\n      height: 50px;\n    }\n\n    input {\n      border: none !important;\n      outline: 0;\n      background: transparent;\n      width: 100%;\n      height: 100%;\n      text-align: center;\n      color: theme-color(\"dark\");\n      font-family: \"Lota Grotesque\", Arial, Helvetica, sans-serif;\n      font-size: 24px;\n      font-weight: bold;\n\n      &::selection {\n        background-color: transparent;\n      }\n\n      &:user-invalid {\n        outline: red 1px solid;\n        border-radius: 5px;\n      }\n    }\n\n    &__outline {\n      position: absolute;\n      display: flex;\n      top: 0;\n      right: 0;\n      left: 0;\n      width: 100%;\n      max-width: 100%;\n      height: 100%;\n      border: 1px solid theme-color(\"border\");\n      border-radius: 5px;\n      pointer-events: none;\n      transition: all 100ms ease-out;\n    }\n\n    input:focus ~ &__outline {\n      border-color: theme-color(\"focus\");\n      border-width: 2px;\n    }\n  }\n\n  &__error {\n    width: 100%;\n    margin-top: $spacer * 0.1;\n    color: theme-color(\"danger\");\n  }\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n//    (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n//    >> breakpoint-next(sm)\n//    md\n//    >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    md\n//    >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n//    md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n  $n: index($breakpoint-names, $name);\n  @return if($n != null and $n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n//    >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n  $min: map-get($breakpoints, $name);\n  @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.02px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n//    >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n  $next: breakpoint-next($name, $breakpoints);\n  @return if($next, breakpoint-min($next, $breakpoints) - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n//    >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    \"\"  (Returns a blank string)\n//    >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n  @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n  $min: breakpoint-min($name, $breakpoints);\n  @if $min {\n    @media (min-width: $min) {\n      @content;\n    }\n  } @else {\n    @content;\n  }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n  $max: breakpoint-max($name, $breakpoints);\n  @if $max {\n    @media (max-width: $max) {\n      @content;\n    }\n  } @else {\n    @content;\n  }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n  $min: breakpoint-min($lower, $breakpoints);\n  $max: breakpoint-max($upper, $breakpoints);\n\n  @if $min != null and $max != null {\n    @media (min-width: $min) and (max-width: $max) {\n      @content;\n    }\n  } @else if $max == null {\n    @include media-breakpoint-up($lower, $breakpoints) {\n      @content;\n    }\n  } @else if $min == null {\n    @include media-breakpoint-down($upper, $breakpoints) {\n      @content;\n    }\n  }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n  $min: breakpoint-min($name, $breakpoints);\n  $max: breakpoint-max($name, $breakpoints);\n\n  @if $min != null and $max != null {\n    @media (min-width: $min) and (max-width: $max) {\n      @content;\n    }\n  } @else if $max == null {\n    @include media-breakpoint-up($name, $breakpoints) {\n      @content;\n    }\n  } @else if $min == null {\n    @include media-breakpoint-down($name, $breakpoints) {\n      @content;\n    }\n  }\n}\n"]}