.top-nav-wrap[data-v-43392bbe]{width:100%;display:flex;align-items:center;position:fixed;height:65px;left:50%;top:0;max-width:var(--main-width);transform:translateX(-50%);background:var(--main_bg_color);z-index:999;padding:16px;border-bottom:solid 1px var(--text_bg_color)}.top-nav-wrap .logo[data-v-43392bbe]{font-size:24px;font-weight:800;letter-spacing:.5px;cursor:pointer;display:flex;align-items:center}.top-nav-wrap .logo img[data-v-43392bbe]{width:32px;border-radius:50%;border:solid 1px var(--text_bg_color);margin-right:8px}.top-nav-wrap ul[data-v-43392bbe]{margin-left:auto;display:flex;align-items:center;gap:24px}.top-nav-wrap ul li[data-v-43392bbe]{height:32px;line-height:32px;user-select:none;cursor:pointer}.top-nav-wrap ul li.active[data-v-43392bbe]{color:var(--purple_text_color)}@media screen and (max-width: 450px){.top-nav-wrap[data-v-43392bbe]{justify-content:center;padding:8px 16px;height:50px}.top-nav-wrap .logo[data-v-43392bbe]{display:none}.top-nav-wrap ul[data-v-43392bbe]{margin-left:0}}
.footer[data-v-654112e0]{background:var(--main_bg_color);width:100%;padding:8px 0;border-top:1px solid var(--text_bg_color);text-align:center;font-size:12px}.footer .copyright[data-v-654112e0]{margin-bottom:4px}
/**
 * One Light theme for prism.js
 * Based on Atom's One Light theme: https://github.com/atom/atom/tree/master/packages/one-light-syntax
 */

/**
 * One Light colours (accurate as of commit eb064bf on 19 Feb 2021)
 * From colors.less
 * --mono-1: hsl(230, 8%, 24%);
 * --mono-2: hsl(230, 6%, 44%);
 * --mono-3: hsl(230, 4%, 64%)
 * --hue-1: hsl(198, 99%, 37%);
 * --hue-2: hsl(221, 87%, 60%);
 * --hue-3: hsl(301, 63%, 40%);
 * --hue-4: hsl(119, 34%, 47%);
 * --hue-5: hsl(5, 74%, 59%);
 * --hue-5-2: hsl(344, 84%, 43%);
 * --hue-6: hsl(35, 99%, 36%);
 * --hue-6-2: hsl(35, 99%, 40%);
 * --syntax-fg: hsl(230, 8%, 24%);
 * --syntax-bg: hsl(230, 1%, 98%);
 * --syntax-gutter: hsl(230, 1%, 62%);
 * --syntax-guide: hsla(230, 8%, 24%, 0.2);
 * --syntax-accent: hsl(230, 100%, 66%);
 * From syntax-variables.less
 * --syntax-selection-color: hsl(230, 1%, 90%);
 * --syntax-gutter-background-color-selected: hsl(230, 1%, 90%);
 * --syntax-cursor-line: hsla(230, 8%, 24%, 0.05);
 */

code[class*="language-"],
pre[class*="language-"] {
  background: hsl(230, 1%, 98%);
  color: hsl(230, 8%, 24%);
  font-family: "Fira Code", "Fira Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  line-height: 1.5;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-size: 12px;
}

/* Selection */
code[class*="language-"]::-moz-selection,
code[class*="language-"] *::-moz-selection,
pre[class*="language-"] *::-moz-selection {
  background: hsl(230, 1%, 90%);
  color: inherit;
}

code[class*="language-"]::selection,
code[class*="language-"] *::selection,
pre[class*="language-"] *::selection {
  background: hsl(230, 1%, 90%);
  color: inherit;
}

/* Code blocks */
pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
  padding: 0.2em 0.3em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.cdata {
  color: hsl(230, 4%, 64%);
}

.token.doctype,
.token.punctuation,
.token.entity {
  color: hsl(230, 8%, 24%);
}

.token.attr-name,
.token.class-name,
.token.boolean,
.token.constant,
.token.number,
.token.atrule {
  color: hsl(35, 99%, 36%);
}

.token.keyword {
  color: hsl(301, 63%, 40%);
}

.token.property,
.token.tag,
.token.symbol,
.token.deleted,
.token.important {
  color: hsl(5, 74%, 59%);
}

.token.selector,
.token.string,
.token.char,
.token.builtin,
.token.inserted,
.token.regex,
.token.attr-value,
.token.attr-value > .token.punctuation {
  color: hsl(119, 34%, 47%);
}

.token.variable,
.token.operator,
.token.function {
  color: hsl(221, 87%, 60%);
}

.token.url {
  color: hsl(198, 99%, 37%);
}

/* HTML overrides */
.token.attr-value > .token.punctuation.attr-equals,
.token.special-attr > .token.attr-value > .token.value.css {
  color: hsl(230, 8%, 24%);
}

/* CSS overrides */
.language-css .token.selector {
  color: hsl(5, 74%, 59%);
}

.language-css .token.property {
  color: hsl(230, 8%, 24%);
}

.language-css .token.function,
.language-css .token.url > .token.function {
  color: hsl(198, 99%, 37%);
}

.language-css .token.url > .token.string.url {
  color: hsl(119, 34%, 47%);
}

.language-css .token.important,
.language-css .token.atrule .token.rule {
  color: hsl(301, 63%, 40%);
}

/* JS overrides */
.language-javascript .token.operator {
  color: hsl(301, 63%, 40%);
}

.language-javascript .token.template-string > .token.interpolation > .token.interpolation-punctuation.punctuation {
  color: hsl(344, 84%, 43%);
}

/* JSON overrides */
.language-json .token.operator {
  color: hsl(230, 8%, 24%);
}

.language-json .token.null.keyword {
  color: hsl(35, 99%, 36%);
}

/* MD overrides */
.language-markdown .token.url,
.language-markdown .token.url > .token.operator,
.language-markdown .token.url-reference.url > .token.string {
  color: hsl(230, 8%, 24%);
}

.language-markdown .token.url > .token.content {
  color: hsl(221, 87%, 60%);
}

.language-markdown .token.url > .token.url,
.language-markdown .token.url-reference.url {
  color: hsl(198, 99%, 37%);
}

.language-markdown .token.blockquote.punctuation,
.language-markdown .token.hr.punctuation {
  color: hsl(230, 4%, 64%);
  font-style: italic;
}

.language-markdown .token.code-snippet {
  color: hsl(119, 34%, 47%);
}

.language-markdown .token.bold .token.content {
  color: hsl(35, 99%, 36%);
}

.language-markdown .token.italic .token.content {
  color: hsl(301, 63%, 40%);
}

.language-markdown .token.strike .token.content,
.language-markdown .token.strike .token.punctuation,
.language-markdown .token.list.punctuation,
.language-markdown .token.title.important > .token.punctuation {
  color: hsl(5, 74%, 59%);
}

/* General */
.token.bold {
  font-weight: bold;
}

.token.comment,
.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.namespace {
  opacity: 0.8;
}

/* Plugin overrides */
/* Selectors should have higher specificity than those in the plugins' default stylesheets */

/* Show Invisibles plugin overrides */
.token.token.tab:not(:empty):before,
.token.token.cr:before,
.token.token.lf:before,
.token.token.space:before {
  color: hsla(230, 8%, 24%, 0.2);
}

/* Toolbar plugin overrides */
/* Space out all buttons and move them away from the right edge of the code block */
div.code-toolbar > .toolbar.toolbar > .toolbar-item {
  margin-right: 0.4em;
}

/* Styling the buttons */
div.code-toolbar > .toolbar.toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span {
  background: hsl(230, 1%, 90%);
  color: hsl(230, 6%, 44%);
  padding: 0.1em 0.4em;
  border-radius: 0.3em;
}

div.code-toolbar > .toolbar.toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar.toolbar > .toolbar-item > span:focus {
  background: hsl(230, 1%, 78%); /* custom: darken(--syntax-bg, 20%) */
  color: hsl(230, 8%, 24%);
}

/* Line Highlight plugin overrides */
/* The highlighted line itself */
.line-highlight.line-highlight {
  background: hsla(230, 8%, 24%, 0.05);
}

/* Default line numbers in Line Highlight plugin */
.line-highlight.line-highlight:before,
.line-highlight.line-highlight[data-end]:after {
  background: hsl(230, 1%, 90%);
  color: hsl(230, 8%, 24%);
  padding: 0.1em 0.6em;
  border-radius: 0.3em;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2); /* same as Toolbar plugin default */
}

/* Hovering over a linkable line number (in the gutter area) */
/* Requires Line Numbers plugin as well */
pre[id].linkable-line-numbers.linkable-line-numbers span.line-numbers-rows > span:hover:before {
  background-color: hsla(230, 8%, 24%, 0.05);
}

/* Line Numbers and Command Line plugins overrides */
/* Line separating gutter from coding area */
.line-numbers.line-numbers .line-numbers-rows,
.command-line .command-line-prompt {
  border-right-color: hsla(230, 8%, 24%, 0.2);
}

/* Stuff in the gutter */
.line-numbers .line-numbers-rows > span:before,
.command-line .command-line-prompt > span:before {
  color: hsl(230, 1%, 62%);
}

/* Match Braces plugin overrides */
/* Note: Outline colour is inherited from the braces */
.rainbow-braces .token.token.punctuation.brace-level-1,
.rainbow-braces .token.token.punctuation.brace-level-5,
.rainbow-braces .token.token.punctuation.brace-level-9 {
  color: hsl(5, 74%, 59%);
}

.rainbow-braces .token.token.punctuation.brace-level-2,
.rainbow-braces .token.token.punctuation.brace-level-6,
.rainbow-braces .token.token.punctuation.brace-level-10 {
  color: hsl(119, 34%, 47%);
}

.rainbow-braces .token.token.punctuation.brace-level-3,
.rainbow-braces .token.token.punctuation.brace-level-7,
.rainbow-braces .token.token.punctuation.brace-level-11 {
  color: hsl(221, 87%, 60%);
}

.rainbow-braces .token.token.punctuation.brace-level-4,
.rainbow-braces .token.token.punctuation.brace-level-8,
.rainbow-braces .token.token.punctuation.brace-level-12 {
  color: hsl(301, 63%, 40%);
}

/* Diff Highlight plugin overrides */
/* Taken from https://github.com/atom/github/blob/master/styles/variables.less */
pre.diff-highlight > code .token.token.deleted:not(.prefix),
pre > code.diff-highlight .token.token.deleted:not(.prefix) {
  background-color: hsla(353, 100%, 66%, 0.15);
}

pre.diff-highlight > code .token.token.deleted:not(.prefix)::-moz-selection,
pre.diff-highlight > code .token.token.deleted:not(.prefix) *::-moz-selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix)::-moz-selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix) *::-moz-selection {
  background-color: hsla(353, 95%, 66%, 0.25);
}

pre.diff-highlight > code .token.token.deleted:not(.prefix)::selection,
pre.diff-highlight > code .token.token.deleted:not(.prefix) *::selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix)::selection,
pre > code.diff-highlight .token.token.deleted:not(.prefix) *::selection {
  background-color: hsla(353, 95%, 66%, 0.25);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix),
pre > code.diff-highlight .token.token.inserted:not(.prefix) {
  background-color: hsla(137, 100%, 55%, 0.15);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix)::-moz-selection,
pre.diff-highlight > code .token.token.inserted:not(.prefix) *::-moz-selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix)::-moz-selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix) *::-moz-selection {
  background-color: hsla(135, 73%, 55%, 0.25);
}

pre.diff-highlight > code .token.token.inserted:not(.prefix)::selection,
pre.diff-highlight > code .token.token.inserted:not(.prefix) *::selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix)::selection,
pre > code.diff-highlight .token.token.inserted:not(.prefix) *::selection {
  background-color: hsla(135, 73%, 55%, 0.25);
}

/* Previewers plugin overrides */
/* Based on https://github.com/atom-community/atom-ide-datatip/blob/master/styles/atom-ide-datatips.less and https://github.com/atom/atom/blob/master/packages/one-light-ui */
/* Border around popup */
.prism-previewer.prism-previewer:before,
.prism-previewer-gradient.prism-previewer-gradient div {
  border-color: hsl(0, 0, 95%);
}

/* Angle and time should remain as circles and are hence not included */
.prism-previewer-color.prism-previewer-color:before,
.prism-previewer-gradient.prism-previewer-gradient div,
.prism-previewer-easing.prism-previewer-easing:before {
  border-radius: 0.3em;
}

/* Triangles pointing to the code */
.prism-previewer.prism-previewer:after {
  border-top-color: hsl(0, 0, 95%);
}

.prism-previewer-flipped.prism-previewer-flipped.after {
  border-bottom-color: hsl(0, 0, 95%);
}

/* Background colour within the popup */
.prism-previewer-angle.prism-previewer-angle:before,
.prism-previewer-time.prism-previewer-time:before,
.prism-previewer-easing.prism-previewer-easing {
  background: hsl(0, 0%, 100%);
}

/* For angle, this is the positive area (eg. 90deg will display one quadrant in this colour) */
/* For time, this is the alternate colour */
.prism-previewer-angle.prism-previewer-angle circle,
.prism-previewer-time.prism-previewer-time circle {
  stroke: hsl(230, 8%, 24%);
  stroke-opacity: 1;
}

/* Stroke colours of the handle, direction point, and vector itself */
.prism-previewer-easing.prism-previewer-easing circle,
.prism-previewer-easing.prism-previewer-easing path,
.prism-previewer-easing.prism-previewer-easing line {
  stroke: hsl(230, 8%, 24%);
}

/* Fill colour of the handle */
.prism-previewer-easing.prism-previewer-easing circle {
  fill: transparent;
}
@font-face{font-family:"b";src:url(/aboutme-static/fonts/regular.04b7837.otf);font-display:swap}html{--main_bg_color: #ffffff;--main_text_color: #323232;--gradient: linear-gradient(120deg, #bd34fe, #7e33ff 30%, #33f8ff 60%);--purple_text_color: #7e33ff;--primary: #3370ff;--tag_color_1: #3370ff;--tag_color_2: #ff33f8;--tag_color_3: #4c1f99;--tag_color_4: #e93030;--text_bg_color: rgb(240 243 247);--item_bg_color: rgb(247 247 247);--item_hover_color: rgba(244, 245, 246, 0.5);--item_left_title_color: #323232;--item_left_text_color: #494949;--footer_text_color: #222222;--left_tag_item: #ffffff;--card_filter: 0px;--back_filter: 0px;--back_filter_color: #00000000;--fill: #323232;--border-color: #e4e2e2;--text-grey: #b4b4b4;--main-width: 900px;--negative-color: #e93030;--positive-color: #38a251;--white-color: #ffffff}*{margin:0;padding:0;box-sizing:border-box;transition:background-color .2s ease;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:hover,a:link,a:visited,a:active,a:focus{text-decoration:none;outline:none;border:none;color:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{height:100%;min-height:100vh;width:100%;max-width:var(--main-width);margin:0 auto;position:relative;font-family:"b","a",sans-serif;background:var(--main_bg_color);background-repeat:no-repeat;background-size:cover;background-position:center;background-attachment:fixed;transition:color .1s ease;color:var(--main_text_color)}html{width:100%;height:100%}ul,ol{list-style:none}li{list-style:none}.olaf-main{width:100%;margin:0 auto;transition:transform .5s ease;position:relative;display:flex;flex-direction:row;padding-top:66px}.olaf-container{width:100%;display:flex;position:relative;padding:16px 16px 50px;flex-direction:column;overflow:hidden}.hidden{display:none !important}@media screen and (max-width: 450px){.olaf-main{padding-top:50px}}
.custom-toast[data-v-a38f90dc]{position:fixed;left:50%;transform:translateX(-50%);padding:10px 16px;background-color:rgba(0,0,0,.7);color:var(--white-color);border-radius:4px;text-align:center;z-index:9999;box-shadow:0 2px 8px rgba(0,0,0,.15);min-width:120px;max-width:80%;display:flex;align-items:center;justify-content:center}.toast-position-top[data-v-a38f90dc]{top:50px}.toast-position-middle[data-v-a38f90dc]{top:50%;transform:translate(-50%, -50%)}.toast-position-bottom[data-v-a38f90dc]{bottom:50px}.toast-content[data-v-a38f90dc]{display:flex;align-items:center}.toast-icon[data-v-a38f90dc]{font-size:16px;margin-right:8px;line-height:1}.toast-message[data-v-a38f90dc]{font-size:14px;word-break:break-word}.toast-fade-enter-active[data-v-a38f90dc],.toast-fade-leave-active[data-v-a38f90dc]{transition:opacity .3s ease,transform .3s ease}.toast-fade-enter[data-v-a38f90dc],.toast-fade-leave-to[data-v-a38f90dc]{opacity:0;transform:translateX(-50%) translateY(-20px)}
@keyframes spin-71b45dcf{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.vt-toast[data-v-71b45dcf]{position:fixed;left:50%;transform:translateX(-50%);background-color:rgba(0,0,0,.7);color:var(--white-color);border-radius:4px;text-align:center;z-index:9999;box-shadow:0 2px 8px rgba(0,0,0,.15);width:120px;height:120px;max-width:80%;box-sizing:border-box;display:flex;align-items:center;justify-content:center;flex-direction:column;padding:12px}.vt-toast--position-top[data-v-71b45dcf]{top:50px}.vt-toast--position-middle[data-v-71b45dcf]{top:50%;transform:translate(-50%, -50%)}.vt-toast--position-bottom[data-v-71b45dcf]{bottom:50px}.vt-toast__content[data-v-71b45dcf]{display:flex;flex-direction:column;align-items:center;justify-content:center}.vt-toast__message[data-v-71b45dcf]{font-size:14px;line-height:1.5;word-break:break-word;white-space:pre-wrap;text-align:center;margin-top:5px}.vt-toast__loading-spin[data-v-71b45dcf]{display:inline-block;width:32px;height:32px;border:2px solid rgba(255,255,255,.3);border-top-color:var(--white-color);border-radius:50%;animation:spin-71b45dcf 1s linear infinite;margin-bottom:5px}.vt-toast__icon[data-v-71b45dcf]{width:24px;height:24px;line-height:1;display:flex;align-items:center;justify-content:center;font-size:18px;margin-bottom:5px}.vt-toast__icon svg[data-v-71b45dcf]{width:100%;height:100%}.vt-toast__icon--success[data-v-71b45dcf]{color:var(--white-color)}.vt-toast__icon--fail[data-v-71b45dcf]{color:var(--white-color)}.toast-fade-enter-active[data-v-71b45dcf],.toast-fade-leave-active[data-v-71b45dcf]{transition:opacity .3s ease,transform .3s ease}.toast-fade-enter[data-v-71b45dcf],.toast-fade-leave-to[data-v-71b45dcf]{opacity:.2;transform:translateX(-50%) translateY(-20px)}.vt-toast--position-bottom.toast-fade-enter[data-v-71b45dcf],.vt-toast--position-bottom.toast-fade-leave-to[data-v-71b45dcf]{transform:translateX(-50%) translateY(20px)}
.vt-dialog-overlay[data-v-59ee0e30]{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.4);display:flex;align-items:center;justify-content:center;z-index:10000}.vt-dialog[data-v-59ee0e30]{background-color:var(--white-color, #fff);border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.15);width:90%;max-width:380px;box-sizing:border-box;position:relative;display:flex;flex-direction:column;overflow:hidden}.vt-dialog__header[data-v-59ee0e30]{padding:18px 20px 10px;font-size:16px;font-weight:600;color:var(--main_text_color);text-align:center;position:relative}.vt-dialog__header .vt-dialog__close-btn[data-v-59ee0e30]{position:absolute;top:10px;right:10px;font-size:24px;color:#969799;background:none;border:none;cursor:pointer;line-height:1}.vt-dialog__content[data-v-59ee0e30]{padding:8px 20px 20px;font-size:14px;line-height:22px;color:#646566;text-align:center;word-wrap:break-word;word-break:break-word;overflow:auto;max-height:50vh}.vt-dialog__footer[data-v-59ee0e30]{display:flex;border-top:1px solid #ebedf0}.vt-dialog__footer.is-single-btn .vt-dialog__button[data-v-59ee0e30]{width:100%;border-bottom-left-radius:8px;border-bottom-right-radius:8px}.vt-dialog__footer.is-single-btn .vt-dialog__button[data-v-59ee0e30]:not(:last-child){border-right:none}.vt-dialog__button[data-v-59ee0e30]{flex:1;height:48px;border:none;background-color:rgba(0,0,0,0);font-size:16px;cursor:pointer;outline:none;transition:background-color .2s}.vt-dialog__button[data-v-59ee0e30]:not(:last-child){border-right:1px solid #ebedf0}.vt-dialog__button[data-v-59ee0e30]:active{background-color:#f2f3f5}.vt-dialog__button--cancel[data-v-59ee0e30]{color:#646566;border-bottom-left-radius:8px}.vt-dialog__button--confirm[data-v-59ee0e30]{color:var(--purple_text_color);border-bottom-right-radius:8px}.dialog-fade-enter-active[data-v-59ee0e30],.dialog-fade-leave-active[data-v-59ee0e30]{transition:opacity .3s ease}.dialog-fade-enter-active .vt-dialog[data-v-59ee0e30],.dialog-fade-leave-active .vt-dialog[data-v-59ee0e30]{transition:transform .3s cubic-bezier(0.175, 0.885, 0.32, 1.275),opacity .3s ease}.dialog-fade-enter[data-v-59ee0e30],.dialog-fade-leave-to[data-v-59ee0e30]{opacity:0}.dialog-fade-enter .vt-dialog[data-v-59ee0e30],.dialog-fade-leave-to .vt-dialog[data-v-59ee0e30]{transform:scale(0.7);opacity:0}.vt-dialog-overlay .vt-dialog[data-v-59ee0e30]{transform-origin:center center;transform:scale(1);opacity:1}
.vt-popup-overlay[data-v-d84b34b8]{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.4);display:flex;align-items:center;justify-content:center;z-index:9999}.vt-popup[data-v-d84b34b8]{background-color:var(--white-color, #fff);border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.15);box-sizing:border-box;display:flex;flex-direction:column;position:absolute;transition:transform .3s ease-out;max-height:90%;overflow:hidden}.vt-popup--position-top[data-v-d84b34b8],.vt-popup--position-bottom[data-v-d84b34b8]{left:50%;transform:translateX(-50%);width:var(--main-width);max-width:100%}.vt-popup--position-top[data-v-d84b34b8]{top:0;border-top-left-radius:0;border-top-right-radius:0}.vt-popup--position-bottom[data-v-d84b34b8]{bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.vt-popup__header[data-v-d84b34b8]{padding:12px 15px;font-size:16px;font-weight:600;color:var(--main_text_color);text-align:center;border-bottom:1px solid #ebedf0;position:relative;display:flex;align-items:center;justify-content:center}.vt-popup__title[data-v-d84b34b8]{flex:1;text-align:center;padding:0 20px}.vt-popup__close[data-v-d84b34b8]{position:absolute;right:15px;top:50%;transform:translateY(-50%);cursor:pointer;color:#969799;padding:5px;display:flex;align-items:center;justify-content:center}.vt-popup__close[data-v-d84b34b8]:hover{color:var(--main_text_color)}.vt-popup__close svg[data-v-d84b34b8]{display:block}.vt-popup__content[data-v-d84b34b8]{padding:15px 20px;font-size:14px;line-height:1.5;color:#646566;flex-grow:1;overflow-y:auto;box-sizing:border-box}.popup-slide-top-enter-active[data-v-d84b34b8],.popup-slide-top-leave-active[data-v-d84b34b8]{transition:opacity .3s ease}.popup-slide-top-enter-active .vt-popup[data-v-d84b34b8],.popup-slide-top-leave-active .vt-popup[data-v-d84b34b8]{transition:transform .3s ease-out}.popup-slide-top-enter[data-v-d84b34b8],.popup-slide-top-leave-to[data-v-d84b34b8]{opacity:0}.popup-slide-top-enter .vt-popup[data-v-d84b34b8],.popup-slide-top-leave-to .vt-popup[data-v-d84b34b8]{transform:translateX(-50%) translateY(-100%)}.popup-slide-bottom-enter-active[data-v-d84b34b8],.popup-slide-bottom-leave-active[data-v-d84b34b8]{transition:opacity .3s ease}.popup-slide-bottom-enter-active .vt-popup[data-v-d84b34b8],.popup-slide-bottom-leave-active .vt-popup[data-v-d84b34b8]{transition:transform .3s ease-out}.popup-slide-bottom-enter[data-v-d84b34b8],.popup-slide-bottom-leave-to[data-v-d84b34b8]{opacity:0}.popup-slide-bottom-enter .vt-popup[data-v-d84b34b8],.popup-slide-bottom-leave-to .vt-popup[data-v-d84b34b8]{transform:translateX(-50%) translateY(100%)}
