/*!**************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/comp-navigation/comp-navigation.scss ***!
  \**************************************************************************************************************************************************************************/
:root {
  --bg-color: #ffffff;
  --text-color: #262626;
  --text-color-dim: #444444;
  --shade-10: rgba(0, 0, 0, 0.1);
  --theme-yellow: rgb(221, 161, 55);
}

html.yellow {
  --color-theme: rgb(221, 161, 55);
  --color-theme-raw: 221, 161, 55;
}

html.dark-mode {
  --bg-color: #15161A;
  --text-color: #E8E8E8;
  --text-color-dim: #b5b5b5;
  --shade-10: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.comp-navigation {
  transition: 0.3s;
}
.comp-navigation.horizontal {
  transform: rotate(-90deg);
}
.comp-navigation.horizontal .nav-item {
  transform: rotate(90deg);
}
.comp-navigation.horizontal .icon-rotate {
  transform: rotate(90deg);
}
.comp-navigation.horizontal .icon-grab {
  transform: rotate(0deg);
}
.comp-navigation .nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 54px;
  padding: 2px 0;
  border: 1px solid var(--shade-10);
  border-radius: 80px;
  background: linear-gradient(var(--bg-color) 0 0) padding-box, linear-gradient(rgba(var(--color-theme-raw), 0.2), rgba(255, 255, 255, 0)) border-box;
}
.comp-navigation .nav-container .indicator {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--shade-10);
  transition: 0.3s;
  margin-top: 2px;
}
.comp-navigation .nav-container .nav-item {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-navigation .nav-container .nav-item:hover:not(.selected):before {
  box-shadow: 0px 0px 19px 16px var(--shade-10);
  transition: 0.3s;
}
.comp-navigation .nav-container .nav-item:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
}
.comp-navigation .nav-container .nav-item:after {
  content: "";
  overflow: hidden;
  position: absolute;
  opacity: 0;
  bottom: -10px;
  width: 4px;
  height: 4px;
  background-color: var(-- rgba(0, 0, 0, 0.6));
  border-radius: 50%;
}
.comp-navigation .nav-container .nav-item.selected:after {
  display: block;
  transition: 0.3s;
  bottom: 8px;
  opacity: 1;
}
.comp-navigation .nav-container .nav-item.selected .icon {
  width: 26px;
  height: 26px;
  color: var(-- rgba(0, 0, 0, 0.6));
}
.comp-navigation .nav-container .nav-item .icon {
  width: 18px;
  height: 18px;
  color: var(--text-color-dim);
  transition: 0.3s;
}
.comp-navigation .nav-container .divider {
  width: 32px;
  margin: 12px 0;
  height: 1px;
  background-color: #656A7B;
}
.comp-navigation .nav-container .tools {
  display: flex;
  gap: 4px;
  margin-top: 2px;
}
.comp-navigation .nav-container .tools .icon-rotate {
  color: #656A7B;
  cursor: pointer;
  transition: 0.3s;
}
.comp-navigation .nav-container .tools .icon-grab {
  color: var(--text-color-dim);
  opacity: 0.6;
  transition: 0.3s;
  transform: rotate(90deg);
}
/*!******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/comp-theme-toggle/comp-theme-toggle.scss ***!
  \******************************************************************************************************************************************************************************/
:root {
  --bg-color: #ffffff;
  --text-color: #262626;
  --text-color-dim: #444444;
  --shade-10: rgba(0, 0, 0, 0.1);
  --theme-yellow: rgb(221, 161, 55);
}

html.yellow {
  --color-theme: rgb(221, 161, 55);
  --color-theme-raw: 221, 161, 55;
}

html.dark-mode {
  --bg-color: #15161A;
  --text-color: #E8E8E8;
  --text-color-dim: #b5b5b5;
  --shade-10: rgba(255, 255, 255, 0.1);
}

.comp-theme-toggle label {
  width: 45px;
  height: 25px;
  position: relative;
  display: block;
  background: #e1e9f1;
  border-radius: 32px;
  cursor: pointer;
  transition: 0.3s;
}
.comp-theme-toggle label:after {
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 3px;
  background: linear-gradient(180deg, #ffcc89, #d8860b);
  border-radius: 50%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.comp-theme-toggle input {
  display: none;
}
.comp-theme-toggle input:checked + label {
  background: #242424;
}
.comp-theme-toggle input:checked + label:after {
  left: calc(100% - 3px);
  transform: translate(-100%, -50%);
  background: linear-gradient(180deg, #777, #3a3a3a);
}
.comp-theme-toggle input:checked + label + .background {
  background: #242424;
}
/*!**************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/comp-icon/comp-icon.scss ***!
  \**************************************************************************************************************************************************************/
.comp-icon {
  display: flex;
}
.comp-icon svg {
  width: inherit;
  height: inherit;
  fill: currentColor;
}
/*!******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/components/comp-theme-picker/comp-theme-picker.scss ***!
  \******************************************************************************************************************************************************************************/
:root {
  --bg-color: #ffffff;
  --text-color: #262626;
  --text-color-dim: #444444;
  --shade-10: rgba(0, 0, 0, 0.1);
  --theme-yellow: rgb(221, 161, 55);
}

html.yellow {
  --color-theme: rgb(221, 161, 55);
  --color-theme-raw: 221, 161, 55;
}

html.dark-mode {
  --bg-color: #15161A;
  --text-color: #E8E8E8;
  --text-color-dim: #b5b5b5;
  --shade-10: rgba(255, 255, 255, 0.1);
}
/*!*********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/styles/global.scss ***!
  \*********************************************************************************************************************************************/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling  user zoom.
 * 3. Box-sizing for all elements.
 * 4. Font size for REM use.
 */
html {
  font-family: sans-serif; /* 1 */
  font-size: 62.5%; /* 4 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-box-sizing: border-box; /* 3 Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* 3 Firefox, other Gecko */
  box-sizing: border-box; /* 3 Opera/IE 8+ */
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  height: 100%;
}

router-view, compose, dynamic-view {
  display: block;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 0;
  -ms-scroll-chaining: chained;
  overscroll-behavior: none;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

figure {
  margin: 0;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Removes margins on all headers. */
h1, h2, h3, h4 {
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: 700;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  margin: 0;
  overflow: unset;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  -webkit-text-fill-color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
  padding: 0;
}

form {
  margin: 0;
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input {
  line-height: normal;
  -webkit-overflow-scrolling: auto;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: 600;
}

/* Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

:root {
  --bg-color: #ffffff;
  --text-color: #262626;
  --text-color-dim: #444444;
  --shade-10: rgba(0, 0, 0, 0.1);
  --theme-yellow: rgb(221, 161, 55);
}

html.yellow {
  --color-theme: rgb(221, 161, 55);
  --color-theme-raw: 221, 161, 55;
}

html.dark-mode {
  --bg-color: #15161A;
  --text-color: #E8E8E8;
  --text-color-dim: #b5b5b5;
  --shade-10: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
body {
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.3s;
}

html {
  font-family: "Libre Franklin", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1 {
  font-size: 3.6rem;
}

h4 {
  font-size: 2rem;
}

p {
  font-size: 1.4rem;
}

div {
  font-size: 1.4rem;
}

.m-top-2 {
  margin-top: 2px;
}

.p-top-2 {
  padding-top: 2px;
}

.m-right-2 {
  margin-right: 2px;
}

.p-right-2 {
  padding-right: 2px;
}

.m-bottom-2 {
  margin-bottom: 2px;
}

.p-bottom-2 {
  padding-bottom: 2px;
}

.m-left-2 {
  margin-left: 2px;
}

.p-left-2 {
  padding-left: 2px;
}

.m-top-4 {
  margin-top: 4px;
}

.p-top-4 {
  padding-top: 4px;
}

.m-right-4 {
  margin-right: 4px;
}

.p-right-4 {
  padding-right: 4px;
}

.m-bottom-4 {
  margin-bottom: 4px;
}

.p-bottom-4 {
  padding-bottom: 4px;
}

.m-left-4 {
  margin-left: 4px;
}

.p-left-4 {
  padding-left: 4px;
}

.m-top-6 {
  margin-top: 6px;
}

.p-top-6 {
  padding-top: 6px;
}

.m-right-6 {
  margin-right: 6px;
}

.p-right-6 {
  padding-right: 6px;
}

.m-bottom-6 {
  margin-bottom: 6px;
}

.p-bottom-6 {
  padding-bottom: 6px;
}

.m-left-6 {
  margin-left: 6px;
}

.p-left-6 {
  padding-left: 6px;
}

.m-top-8 {
  margin-top: 8px;
}

.p-top-8 {
  padding-top: 8px;
}

.m-right-8 {
  margin-right: 8px;
}

.p-right-8 {
  padding-right: 8px;
}

.m-bottom-8 {
  margin-bottom: 8px;
}

.p-bottom-8 {
  padding-bottom: 8px;
}

.m-left-8 {
  margin-left: 8px;
}

.p-left-8 {
  padding-left: 8px;
}

.m-top-10 {
  margin-top: 10px;
}

.p-top-10 {
  padding-top: 10px;
}

.m-right-10 {
  margin-right: 10px;
}

.p-right-10 {
  padding-right: 10px;
}

.m-bottom-10 {
  margin-bottom: 10px;
}

.p-bottom-10 {
  padding-bottom: 10px;
}

.m-left-10 {
  margin-left: 10px;
}

.p-left-10 {
  padding-left: 10px;
}

.m-top-12 {
  margin-top: 12px;
}

.p-top-12 {
  padding-top: 12px;
}

.m-right-12 {
  margin-right: 12px;
}

.p-right-12 {
  padding-right: 12px;
}

.m-bottom-12 {
  margin-bottom: 12px;
}

.p-bottom-12 {
  padding-bottom: 12px;
}

.m-left-12 {
  margin-left: 12px;
}

.p-left-12 {
  padding-left: 12px;
}

.m-top-16 {
  margin-top: 16px;
}

.p-top-16 {
  padding-top: 16px;
}

.m-right-16 {
  margin-right: 16px;
}

.p-right-16 {
  padding-right: 16px;
}

.m-bottom-16 {
  margin-bottom: 16px;
}

.p-bottom-16 {
  padding-bottom: 16px;
}

.m-left-16 {
  margin-left: 16px;
}

.p-left-16 {
  padding-left: 16px;
}

.m-top-20 {
  margin-top: 20px;
}

.p-top-20 {
  padding-top: 20px;
}

.m-right-20 {
  margin-right: 20px;
}

.p-right-20 {
  padding-right: 20px;
}

.m-bottom-20 {
  margin-bottom: 20px;
}

.p-bottom-20 {
  padding-bottom: 20px;
}

.m-left-20 {
  margin-left: 20px;
}

.p-left-20 {
  padding-left: 20px;
}

.m-top-24 {
  margin-top: 24px;
}

.p-top-24 {
  padding-top: 24px;
}

.m-right-24 {
  margin-right: 24px;
}

.p-right-24 {
  padding-right: 24px;
}

.m-bottom-24 {
  margin-bottom: 24px;
}

.p-bottom-24 {
  padding-bottom: 24px;
}

.m-left-24 {
  margin-left: 24px;
}

.p-left-24 {
  padding-left: 24px;
}

.m-top-32 {
  margin-top: 32px;
}

.p-top-32 {
  padding-top: 32px;
}

.m-right-32 {
  margin-right: 32px;
}

.p-right-32 {
  padding-right: 32px;
}

.m-bottom-32 {
  margin-bottom: 32px;
}

.p-bottom-32 {
  padding-bottom: 32px;
}

.m-left-32 {
  margin-left: 32px;
}

.p-left-32 {
  padding-left: 32px;
}

.m-top-40 {
  margin-top: 40px;
}

.p-top-40 {
  padding-top: 40px;
}

.m-right-40 {
  margin-right: 40px;
}

.p-right-40 {
  padding-right: 40px;
}

.m-bottom-40 {
  margin-bottom: 40px;
}

.p-bottom-40 {
  padding-bottom: 40px;
}

.m-left-40 {
  margin-left: 40px;
}

.p-left-40 {
  padding-left: 40px;
}

.m-top-48 {
  margin-top: 48px;
}

.p-top-48 {
  padding-top: 48px;
}

.m-right-48 {
  margin-right: 48px;
}

.p-right-48 {
  padding-right: 48px;
}

.m-bottom-48 {
  margin-bottom: 48px;
}

.p-bottom-48 {
  padding-bottom: 48px;
}

.m-left-48 {
  margin-left: 48px;
}

.p-left-48 {
  padding-left: 48px;
}

.m-top-56 {
  margin-top: 56px;
}

.p-top-56 {
  padding-top: 56px;
}

.m-right-56 {
  margin-right: 56px;
}

.p-right-56 {
  padding-right: 56px;
}

.m-bottom-56 {
  margin-bottom: 56px;
}

.p-bottom-56 {
  padding-bottom: 56px;
}

.m-left-56 {
  margin-left: 56px;
}

.p-left-56 {
  padding-left: 56px;
}

.m-top-64 {
  margin-top: 64px;
}

.p-top-64 {
  padding-top: 64px;
}

.m-right-64 {
  margin-right: 64px;
}

.p-right-64 {
  padding-right: 64px;
}

.m-bottom-64 {
  margin-bottom: 64px;
}

.p-bottom-64 {
  padding-bottom: 64px;
}

.m-left-64 {
  margin-left: 64px;
}

.p-left-64 {
  padding-left: 64px;
}

.m-top-132 {
  margin-top: 132px;
}

.p-top-132 {
  padding-top: 132px;
}

.m-right-132 {
  margin-right: 132px;
}

.p-right-132 {
  padding-right: 132px;
}

.m-bottom-132 {
  margin-bottom: 132px;
}

.p-bottom-132 {
  padding-bottom: 132px;
}

.m-left-132 {
  margin-left: 132px;
}

.p-left-132 {
  padding-left: 132px;
}

@media only screen and (min-width: 30em) {
  .m-top-xs-2 {
    margin-top: 2px;
  }
  .p-top-xs-2 {
    padding-top: 2px;
  }
  .m-right-xs-2 {
    margin-right: 2px;
  }
  .p-right-xs-2 {
    padding-right: 2px;
  }
  .m-bottom-xs-2 {
    margin-bottom: 2px;
  }
  .p-bottom-xs-2 {
    padding-bottom: 2px;
  }
  .m-left-xs-2 {
    margin-left: 2px;
  }
  .p-left-xs-2 {
    padding-left: 2px;
  }
  .m-top-xs-4 {
    margin-top: 4px;
  }
  .p-top-xs-4 {
    padding-top: 4px;
  }
  .m-right-xs-4 {
    margin-right: 4px;
  }
  .p-right-xs-4 {
    padding-right: 4px;
  }
  .m-bottom-xs-4 {
    margin-bottom: 4px;
  }
  .p-bottom-xs-4 {
    padding-bottom: 4px;
  }
  .m-left-xs-4 {
    margin-left: 4px;
  }
  .p-left-xs-4 {
    padding-left: 4px;
  }
  .m-top-xs-6 {
    margin-top: 6px;
  }
  .p-top-xs-6 {
    padding-top: 6px;
  }
  .m-right-xs-6 {
    margin-right: 6px;
  }
  .p-right-xs-6 {
    padding-right: 6px;
  }
  .m-bottom-xs-6 {
    margin-bottom: 6px;
  }
  .p-bottom-xs-6 {
    padding-bottom: 6px;
  }
  .m-left-xs-6 {
    margin-left: 6px;
  }
  .p-left-xs-6 {
    padding-left: 6px;
  }
  .m-top-xs-8 {
    margin-top: 8px;
  }
  .p-top-xs-8 {
    padding-top: 8px;
  }
  .m-right-xs-8 {
    margin-right: 8px;
  }
  .p-right-xs-8 {
    padding-right: 8px;
  }
  .m-bottom-xs-8 {
    margin-bottom: 8px;
  }
  .p-bottom-xs-8 {
    padding-bottom: 8px;
  }
  .m-left-xs-8 {
    margin-left: 8px;
  }
  .p-left-xs-8 {
    padding-left: 8px;
  }
  .m-top-xs-10 {
    margin-top: 10px;
  }
  .p-top-xs-10 {
    padding-top: 10px;
  }
  .m-right-xs-10 {
    margin-right: 10px;
  }
  .p-right-xs-10 {
    padding-right: 10px;
  }
  .m-bottom-xs-10 {
    margin-bottom: 10px;
  }
  .p-bottom-xs-10 {
    padding-bottom: 10px;
  }
  .m-left-xs-10 {
    margin-left: 10px;
  }
  .p-left-xs-10 {
    padding-left: 10px;
  }
  .m-top-xs-12 {
    margin-top: 12px;
  }
  .p-top-xs-12 {
    padding-top: 12px;
  }
  .m-right-xs-12 {
    margin-right: 12px;
  }
  .p-right-xs-12 {
    padding-right: 12px;
  }
  .m-bottom-xs-12 {
    margin-bottom: 12px;
  }
  .p-bottom-xs-12 {
    padding-bottom: 12px;
  }
  .m-left-xs-12 {
    margin-left: 12px;
  }
  .p-left-xs-12 {
    padding-left: 12px;
  }
  .m-top-xs-16 {
    margin-top: 16px;
  }
  .p-top-xs-16 {
    padding-top: 16px;
  }
  .m-right-xs-16 {
    margin-right: 16px;
  }
  .p-right-xs-16 {
    padding-right: 16px;
  }
  .m-bottom-xs-16 {
    margin-bottom: 16px;
  }
  .p-bottom-xs-16 {
    padding-bottom: 16px;
  }
  .m-left-xs-16 {
    margin-left: 16px;
  }
  .p-left-xs-16 {
    padding-left: 16px;
  }
  .m-top-xs-20 {
    margin-top: 20px;
  }
  .p-top-xs-20 {
    padding-top: 20px;
  }
  .m-right-xs-20 {
    margin-right: 20px;
  }
  .p-right-xs-20 {
    padding-right: 20px;
  }
  .m-bottom-xs-20 {
    margin-bottom: 20px;
  }
  .p-bottom-xs-20 {
    padding-bottom: 20px;
  }
  .m-left-xs-20 {
    margin-left: 20px;
  }
  .p-left-xs-20 {
    padding-left: 20px;
  }
  .m-top-xs-24 {
    margin-top: 24px;
  }
  .p-top-xs-24 {
    padding-top: 24px;
  }
  .m-right-xs-24 {
    margin-right: 24px;
  }
  .p-right-xs-24 {
    padding-right: 24px;
  }
  .m-bottom-xs-24 {
    margin-bottom: 24px;
  }
  .p-bottom-xs-24 {
    padding-bottom: 24px;
  }
  .m-left-xs-24 {
    margin-left: 24px;
  }
  .p-left-xs-24 {
    padding-left: 24px;
  }
  .m-top-xs-32 {
    margin-top: 32px;
  }
  .p-top-xs-32 {
    padding-top: 32px;
  }
  .m-right-xs-32 {
    margin-right: 32px;
  }
  .p-right-xs-32 {
    padding-right: 32px;
  }
  .m-bottom-xs-32 {
    margin-bottom: 32px;
  }
  .p-bottom-xs-32 {
    padding-bottom: 32px;
  }
  .m-left-xs-32 {
    margin-left: 32px;
  }
  .p-left-xs-32 {
    padding-left: 32px;
  }
  .m-top-xs-40 {
    margin-top: 40px;
  }
  .p-top-xs-40 {
    padding-top: 40px;
  }
  .m-right-xs-40 {
    margin-right: 40px;
  }
  .p-right-xs-40 {
    padding-right: 40px;
  }
  .m-bottom-xs-40 {
    margin-bottom: 40px;
  }
  .p-bottom-xs-40 {
    padding-bottom: 40px;
  }
  .m-left-xs-40 {
    margin-left: 40px;
  }
  .p-left-xs-40 {
    padding-left: 40px;
  }
  .m-top-xs-48 {
    margin-top: 48px;
  }
  .p-top-xs-48 {
    padding-top: 48px;
  }
  .m-right-xs-48 {
    margin-right: 48px;
  }
  .p-right-xs-48 {
    padding-right: 48px;
  }
  .m-bottom-xs-48 {
    margin-bottom: 48px;
  }
  .p-bottom-xs-48 {
    padding-bottom: 48px;
  }
  .m-left-xs-48 {
    margin-left: 48px;
  }
  .p-left-xs-48 {
    padding-left: 48px;
  }
  .m-top-xs-56 {
    margin-top: 56px;
  }
  .p-top-xs-56 {
    padding-top: 56px;
  }
  .m-right-xs-56 {
    margin-right: 56px;
  }
  .p-right-xs-56 {
    padding-right: 56px;
  }
  .m-bottom-xs-56 {
    margin-bottom: 56px;
  }
  .p-bottom-xs-56 {
    padding-bottom: 56px;
  }
  .m-left-xs-56 {
    margin-left: 56px;
  }
  .p-left-xs-56 {
    padding-left: 56px;
  }
  .m-top-xs-64 {
    margin-top: 64px;
  }
  .p-top-xs-64 {
    padding-top: 64px;
  }
  .m-right-xs-64 {
    margin-right: 64px;
  }
  .p-right-xs-64 {
    padding-right: 64px;
  }
  .m-bottom-xs-64 {
    margin-bottom: 64px;
  }
  .p-bottom-xs-64 {
    padding-bottom: 64px;
  }
  .m-left-xs-64 {
    margin-left: 64px;
  }
  .p-left-xs-64 {
    padding-left: 64px;
  }
  .m-top-xs-132 {
    margin-top: 132px;
  }
  .p-top-xs-132 {
    padding-top: 132px;
  }
  .m-right-xs-132 {
    margin-right: 132px;
  }
  .p-right-xs-132 {
    padding-right: 132px;
  }
  .m-bottom-xs-132 {
    margin-bottom: 132px;
  }
  .p-bottom-xs-132 {
    padding-bottom: 132px;
  }
  .m-left-xs-132 {
    margin-left: 132px;
  }
  .p-left-xs-132 {
    padding-left: 132px;
  }
}
@media only screen and (min-width: 48em) {
  .m-top-sm-2 {
    margin-top: 2px;
  }
  .p-top-sm-2 {
    padding-top: 2px;
  }
  .m-right-sm-2 {
    margin-right: 2px;
  }
  .p-right-sm-2 {
    padding-right: 2px;
  }
  .m-bottom-sm-2 {
    margin-bottom: 2px;
  }
  .p-bottom-sm-2 {
    padding-bottom: 2px;
  }
  .m-left-sm-2 {
    margin-left: 2px;
  }
  .p-left-sm-2 {
    padding-left: 2px;
  }
  .m-top-sm-4 {
    margin-top: 4px;
  }
  .p-top-sm-4 {
    padding-top: 4px;
  }
  .m-right-sm-4 {
    margin-right: 4px;
  }
  .p-right-sm-4 {
    padding-right: 4px;
  }
  .m-bottom-sm-4 {
    margin-bottom: 4px;
  }
  .p-bottom-sm-4 {
    padding-bottom: 4px;
  }
  .m-left-sm-4 {
    margin-left: 4px;
  }
  .p-left-sm-4 {
    padding-left: 4px;
  }
  .m-top-sm-6 {
    margin-top: 6px;
  }
  .p-top-sm-6 {
    padding-top: 6px;
  }
  .m-right-sm-6 {
    margin-right: 6px;
  }
  .p-right-sm-6 {
    padding-right: 6px;
  }
  .m-bottom-sm-6 {
    margin-bottom: 6px;
  }
  .p-bottom-sm-6 {
    padding-bottom: 6px;
  }
  .m-left-sm-6 {
    margin-left: 6px;
  }
  .p-left-sm-6 {
    padding-left: 6px;
  }
  .m-top-sm-8 {
    margin-top: 8px;
  }
  .p-top-sm-8 {
    padding-top: 8px;
  }
  .m-right-sm-8 {
    margin-right: 8px;
  }
  .p-right-sm-8 {
    padding-right: 8px;
  }
  .m-bottom-sm-8 {
    margin-bottom: 8px;
  }
  .p-bottom-sm-8 {
    padding-bottom: 8px;
  }
  .m-left-sm-8 {
    margin-left: 8px;
  }
  .p-left-sm-8 {
    padding-left: 8px;
  }
  .m-top-sm-10 {
    margin-top: 10px;
  }
  .p-top-sm-10 {
    padding-top: 10px;
  }
  .m-right-sm-10 {
    margin-right: 10px;
  }
  .p-right-sm-10 {
    padding-right: 10px;
  }
  .m-bottom-sm-10 {
    margin-bottom: 10px;
  }
  .p-bottom-sm-10 {
    padding-bottom: 10px;
  }
  .m-left-sm-10 {
    margin-left: 10px;
  }
  .p-left-sm-10 {
    padding-left: 10px;
  }
  .m-top-sm-12 {
    margin-top: 12px;
  }
  .p-top-sm-12 {
    padding-top: 12px;
  }
  .m-right-sm-12 {
    margin-right: 12px;
  }
  .p-right-sm-12 {
    padding-right: 12px;
  }
  .m-bottom-sm-12 {
    margin-bottom: 12px;
  }
  .p-bottom-sm-12 {
    padding-bottom: 12px;
  }
  .m-left-sm-12 {
    margin-left: 12px;
  }
  .p-left-sm-12 {
    padding-left: 12px;
  }
  .m-top-sm-16 {
    margin-top: 16px;
  }
  .p-top-sm-16 {
    padding-top: 16px;
  }
  .m-right-sm-16 {
    margin-right: 16px;
  }
  .p-right-sm-16 {
    padding-right: 16px;
  }
  .m-bottom-sm-16 {
    margin-bottom: 16px;
  }
  .p-bottom-sm-16 {
    padding-bottom: 16px;
  }
  .m-left-sm-16 {
    margin-left: 16px;
  }
  .p-left-sm-16 {
    padding-left: 16px;
  }
  .m-top-sm-20 {
    margin-top: 20px;
  }
  .p-top-sm-20 {
    padding-top: 20px;
  }
  .m-right-sm-20 {
    margin-right: 20px;
  }
  .p-right-sm-20 {
    padding-right: 20px;
  }
  .m-bottom-sm-20 {
    margin-bottom: 20px;
  }
  .p-bottom-sm-20 {
    padding-bottom: 20px;
  }
  .m-left-sm-20 {
    margin-left: 20px;
  }
  .p-left-sm-20 {
    padding-left: 20px;
  }
  .m-top-sm-24 {
    margin-top: 24px;
  }
  .p-top-sm-24 {
    padding-top: 24px;
  }
  .m-right-sm-24 {
    margin-right: 24px;
  }
  .p-right-sm-24 {
    padding-right: 24px;
  }
  .m-bottom-sm-24 {
    margin-bottom: 24px;
  }
  .p-bottom-sm-24 {
    padding-bottom: 24px;
  }
  .m-left-sm-24 {
    margin-left: 24px;
  }
  .p-left-sm-24 {
    padding-left: 24px;
  }
  .m-top-sm-32 {
    margin-top: 32px;
  }
  .p-top-sm-32 {
    padding-top: 32px;
  }
  .m-right-sm-32 {
    margin-right: 32px;
  }
  .p-right-sm-32 {
    padding-right: 32px;
  }
  .m-bottom-sm-32 {
    margin-bottom: 32px;
  }
  .p-bottom-sm-32 {
    padding-bottom: 32px;
  }
  .m-left-sm-32 {
    margin-left: 32px;
  }
  .p-left-sm-32 {
    padding-left: 32px;
  }
  .m-top-sm-40 {
    margin-top: 40px;
  }
  .p-top-sm-40 {
    padding-top: 40px;
  }
  .m-right-sm-40 {
    margin-right: 40px;
  }
  .p-right-sm-40 {
    padding-right: 40px;
  }
  .m-bottom-sm-40 {
    margin-bottom: 40px;
  }
  .p-bottom-sm-40 {
    padding-bottom: 40px;
  }
  .m-left-sm-40 {
    margin-left: 40px;
  }
  .p-left-sm-40 {
    padding-left: 40px;
  }
  .m-top-sm-48 {
    margin-top: 48px;
  }
  .p-top-sm-48 {
    padding-top: 48px;
  }
  .m-right-sm-48 {
    margin-right: 48px;
  }
  .p-right-sm-48 {
    padding-right: 48px;
  }
  .m-bottom-sm-48 {
    margin-bottom: 48px;
  }
  .p-bottom-sm-48 {
    padding-bottom: 48px;
  }
  .m-left-sm-48 {
    margin-left: 48px;
  }
  .p-left-sm-48 {
    padding-left: 48px;
  }
  .m-top-sm-56 {
    margin-top: 56px;
  }
  .p-top-sm-56 {
    padding-top: 56px;
  }
  .m-right-sm-56 {
    margin-right: 56px;
  }
  .p-right-sm-56 {
    padding-right: 56px;
  }
  .m-bottom-sm-56 {
    margin-bottom: 56px;
  }
  .p-bottom-sm-56 {
    padding-bottom: 56px;
  }
  .m-left-sm-56 {
    margin-left: 56px;
  }
  .p-left-sm-56 {
    padding-left: 56px;
  }
  .m-top-sm-64 {
    margin-top: 64px;
  }
  .p-top-sm-64 {
    padding-top: 64px;
  }
  .m-right-sm-64 {
    margin-right: 64px;
  }
  .p-right-sm-64 {
    padding-right: 64px;
  }
  .m-bottom-sm-64 {
    margin-bottom: 64px;
  }
  .p-bottom-sm-64 {
    padding-bottom: 64px;
  }
  .m-left-sm-64 {
    margin-left: 64px;
  }
  .p-left-sm-64 {
    padding-left: 64px;
  }
  .m-top-sm-132 {
    margin-top: 132px;
  }
  .p-top-sm-132 {
    padding-top: 132px;
  }
  .m-right-sm-132 {
    margin-right: 132px;
  }
  .p-right-sm-132 {
    padding-right: 132px;
  }
  .m-bottom-sm-132 {
    margin-bottom: 132px;
  }
  .p-bottom-sm-132 {
    padding-bottom: 132px;
  }
  .m-left-sm-132 {
    margin-left: 132px;
  }
  .p-left-sm-132 {
    padding-left: 132px;
  }
}
@media only screen and (min-width: 64em) {
  .m-top-md-2 {
    margin-top: 2px;
  }
  .p-top-md-2 {
    padding-top: 2px;
  }
  .m-right-md-2 {
    margin-right: 2px;
  }
  .p-right-md-2 {
    padding-right: 2px;
  }
  .m-bottom-md-2 {
    margin-bottom: 2px;
  }
  .p-bottom-md-2 {
    padding-bottom: 2px;
  }
  .m-left-md-2 {
    margin-left: 2px;
  }
  .p-left-md-2 {
    padding-left: 2px;
  }
  .m-top-md-4 {
    margin-top: 4px;
  }
  .p-top-md-4 {
    padding-top: 4px;
  }
  .m-right-md-4 {
    margin-right: 4px;
  }
  .p-right-md-4 {
    padding-right: 4px;
  }
  .m-bottom-md-4 {
    margin-bottom: 4px;
  }
  .p-bottom-md-4 {
    padding-bottom: 4px;
  }
  .m-left-md-4 {
    margin-left: 4px;
  }
  .p-left-md-4 {
    padding-left: 4px;
  }
  .m-top-md-6 {
    margin-top: 6px;
  }
  .p-top-md-6 {
    padding-top: 6px;
  }
  .m-right-md-6 {
    margin-right: 6px;
  }
  .p-right-md-6 {
    padding-right: 6px;
  }
  .m-bottom-md-6 {
    margin-bottom: 6px;
  }
  .p-bottom-md-6 {
    padding-bottom: 6px;
  }
  .m-left-md-6 {
    margin-left: 6px;
  }
  .p-left-md-6 {
    padding-left: 6px;
  }
  .m-top-md-8 {
    margin-top: 8px;
  }
  .p-top-md-8 {
    padding-top: 8px;
  }
  .m-right-md-8 {
    margin-right: 8px;
  }
  .p-right-md-8 {
    padding-right: 8px;
  }
  .m-bottom-md-8 {
    margin-bottom: 8px;
  }
  .p-bottom-md-8 {
    padding-bottom: 8px;
  }
  .m-left-md-8 {
    margin-left: 8px;
  }
  .p-left-md-8 {
    padding-left: 8px;
  }
  .m-top-md-10 {
    margin-top: 10px;
  }
  .p-top-md-10 {
    padding-top: 10px;
  }
  .m-right-md-10 {
    margin-right: 10px;
  }
  .p-right-md-10 {
    padding-right: 10px;
  }
  .m-bottom-md-10 {
    margin-bottom: 10px;
  }
  .p-bottom-md-10 {
    padding-bottom: 10px;
  }
  .m-left-md-10 {
    margin-left: 10px;
  }
  .p-left-md-10 {
    padding-left: 10px;
  }
  .m-top-md-12 {
    margin-top: 12px;
  }
  .p-top-md-12 {
    padding-top: 12px;
  }
  .m-right-md-12 {
    margin-right: 12px;
  }
  .p-right-md-12 {
    padding-right: 12px;
  }
  .m-bottom-md-12 {
    margin-bottom: 12px;
  }
  .p-bottom-md-12 {
    padding-bottom: 12px;
  }
  .m-left-md-12 {
    margin-left: 12px;
  }
  .p-left-md-12 {
    padding-left: 12px;
  }
  .m-top-md-16 {
    margin-top: 16px;
  }
  .p-top-md-16 {
    padding-top: 16px;
  }
  .m-right-md-16 {
    margin-right: 16px;
  }
  .p-right-md-16 {
    padding-right: 16px;
  }
  .m-bottom-md-16 {
    margin-bottom: 16px;
  }
  .p-bottom-md-16 {
    padding-bottom: 16px;
  }
  .m-left-md-16 {
    margin-left: 16px;
  }
  .p-left-md-16 {
    padding-left: 16px;
  }
  .m-top-md-20 {
    margin-top: 20px;
  }
  .p-top-md-20 {
    padding-top: 20px;
  }
  .m-right-md-20 {
    margin-right: 20px;
  }
  .p-right-md-20 {
    padding-right: 20px;
  }
  .m-bottom-md-20 {
    margin-bottom: 20px;
  }
  .p-bottom-md-20 {
    padding-bottom: 20px;
  }
  .m-left-md-20 {
    margin-left: 20px;
  }
  .p-left-md-20 {
    padding-left: 20px;
  }
  .m-top-md-24 {
    margin-top: 24px;
  }
  .p-top-md-24 {
    padding-top: 24px;
  }
  .m-right-md-24 {
    margin-right: 24px;
  }
  .p-right-md-24 {
    padding-right: 24px;
  }
  .m-bottom-md-24 {
    margin-bottom: 24px;
  }
  .p-bottom-md-24 {
    padding-bottom: 24px;
  }
  .m-left-md-24 {
    margin-left: 24px;
  }
  .p-left-md-24 {
    padding-left: 24px;
  }
  .m-top-md-32 {
    margin-top: 32px;
  }
  .p-top-md-32 {
    padding-top: 32px;
  }
  .m-right-md-32 {
    margin-right: 32px;
  }
  .p-right-md-32 {
    padding-right: 32px;
  }
  .m-bottom-md-32 {
    margin-bottom: 32px;
  }
  .p-bottom-md-32 {
    padding-bottom: 32px;
  }
  .m-left-md-32 {
    margin-left: 32px;
  }
  .p-left-md-32 {
    padding-left: 32px;
  }
  .m-top-md-40 {
    margin-top: 40px;
  }
  .p-top-md-40 {
    padding-top: 40px;
  }
  .m-right-md-40 {
    margin-right: 40px;
  }
  .p-right-md-40 {
    padding-right: 40px;
  }
  .m-bottom-md-40 {
    margin-bottom: 40px;
  }
  .p-bottom-md-40 {
    padding-bottom: 40px;
  }
  .m-left-md-40 {
    margin-left: 40px;
  }
  .p-left-md-40 {
    padding-left: 40px;
  }
  .m-top-md-48 {
    margin-top: 48px;
  }
  .p-top-md-48 {
    padding-top: 48px;
  }
  .m-right-md-48 {
    margin-right: 48px;
  }
  .p-right-md-48 {
    padding-right: 48px;
  }
  .m-bottom-md-48 {
    margin-bottom: 48px;
  }
  .p-bottom-md-48 {
    padding-bottom: 48px;
  }
  .m-left-md-48 {
    margin-left: 48px;
  }
  .p-left-md-48 {
    padding-left: 48px;
  }
  .m-top-md-56 {
    margin-top: 56px;
  }
  .p-top-md-56 {
    padding-top: 56px;
  }
  .m-right-md-56 {
    margin-right: 56px;
  }
  .p-right-md-56 {
    padding-right: 56px;
  }
  .m-bottom-md-56 {
    margin-bottom: 56px;
  }
  .p-bottom-md-56 {
    padding-bottom: 56px;
  }
  .m-left-md-56 {
    margin-left: 56px;
  }
  .p-left-md-56 {
    padding-left: 56px;
  }
  .m-top-md-64 {
    margin-top: 64px;
  }
  .p-top-md-64 {
    padding-top: 64px;
  }
  .m-right-md-64 {
    margin-right: 64px;
  }
  .p-right-md-64 {
    padding-right: 64px;
  }
  .m-bottom-md-64 {
    margin-bottom: 64px;
  }
  .p-bottom-md-64 {
    padding-bottom: 64px;
  }
  .m-left-md-64 {
    margin-left: 64px;
  }
  .p-left-md-64 {
    padding-left: 64px;
  }
  .m-top-md-132 {
    margin-top: 132px;
  }
  .p-top-md-132 {
    padding-top: 132px;
  }
  .m-right-md-132 {
    margin-right: 132px;
  }
  .p-right-md-132 {
    padding-right: 132px;
  }
  .m-bottom-md-132 {
    margin-bottom: 132px;
  }
  .p-bottom-md-132 {
    padding-bottom: 132px;
  }
  .m-left-md-132 {
    margin-left: 132px;
  }
  .p-left-md-132 {
    padding-left: 132px;
  }
}
@media only screen and (min-width: 75em) {
  .m-top-lg-2 {
    margin-top: 2px;
  }
  .p-top-lg-2 {
    padding-top: 2px;
  }
  .m-right-lg-2 {
    margin-right: 2px;
  }
  .p-right-lg-2 {
    padding-right: 2px;
  }
  .m-bottom-lg-2 {
    margin-bottom: 2px;
  }
  .p-bottom-lg-2 {
    padding-bottom: 2px;
  }
  .m-left-lg-2 {
    margin-left: 2px;
  }
  .p-left-lg-2 {
    padding-left: 2px;
  }
  .m-top-lg-4 {
    margin-top: 4px;
  }
  .p-top-lg-4 {
    padding-top: 4px;
  }
  .m-right-lg-4 {
    margin-right: 4px;
  }
  .p-right-lg-4 {
    padding-right: 4px;
  }
  .m-bottom-lg-4 {
    margin-bottom: 4px;
  }
  .p-bottom-lg-4 {
    padding-bottom: 4px;
  }
  .m-left-lg-4 {
    margin-left: 4px;
  }
  .p-left-lg-4 {
    padding-left: 4px;
  }
  .m-top-lg-6 {
    margin-top: 6px;
  }
  .p-top-lg-6 {
    padding-top: 6px;
  }
  .m-right-lg-6 {
    margin-right: 6px;
  }
  .p-right-lg-6 {
    padding-right: 6px;
  }
  .m-bottom-lg-6 {
    margin-bottom: 6px;
  }
  .p-bottom-lg-6 {
    padding-bottom: 6px;
  }
  .m-left-lg-6 {
    margin-left: 6px;
  }
  .p-left-lg-6 {
    padding-left: 6px;
  }
  .m-top-lg-8 {
    margin-top: 8px;
  }
  .p-top-lg-8 {
    padding-top: 8px;
  }
  .m-right-lg-8 {
    margin-right: 8px;
  }
  .p-right-lg-8 {
    padding-right: 8px;
  }
  .m-bottom-lg-8 {
    margin-bottom: 8px;
  }
  .p-bottom-lg-8 {
    padding-bottom: 8px;
  }
  .m-left-lg-8 {
    margin-left: 8px;
  }
  .p-left-lg-8 {
    padding-left: 8px;
  }
  .m-top-lg-10 {
    margin-top: 10px;
  }
  .p-top-lg-10 {
    padding-top: 10px;
  }
  .m-right-lg-10 {
    margin-right: 10px;
  }
  .p-right-lg-10 {
    padding-right: 10px;
  }
  .m-bottom-lg-10 {
    margin-bottom: 10px;
  }
  .p-bottom-lg-10 {
    padding-bottom: 10px;
  }
  .m-left-lg-10 {
    margin-left: 10px;
  }
  .p-left-lg-10 {
    padding-left: 10px;
  }
  .m-top-lg-12 {
    margin-top: 12px;
  }
  .p-top-lg-12 {
    padding-top: 12px;
  }
  .m-right-lg-12 {
    margin-right: 12px;
  }
  .p-right-lg-12 {
    padding-right: 12px;
  }
  .m-bottom-lg-12 {
    margin-bottom: 12px;
  }
  .p-bottom-lg-12 {
    padding-bottom: 12px;
  }
  .m-left-lg-12 {
    margin-left: 12px;
  }
  .p-left-lg-12 {
    padding-left: 12px;
  }
  .m-top-lg-16 {
    margin-top: 16px;
  }
  .p-top-lg-16 {
    padding-top: 16px;
  }
  .m-right-lg-16 {
    margin-right: 16px;
  }
  .p-right-lg-16 {
    padding-right: 16px;
  }
  .m-bottom-lg-16 {
    margin-bottom: 16px;
  }
  .p-bottom-lg-16 {
    padding-bottom: 16px;
  }
  .m-left-lg-16 {
    margin-left: 16px;
  }
  .p-left-lg-16 {
    padding-left: 16px;
  }
  .m-top-lg-20 {
    margin-top: 20px;
  }
  .p-top-lg-20 {
    padding-top: 20px;
  }
  .m-right-lg-20 {
    margin-right: 20px;
  }
  .p-right-lg-20 {
    padding-right: 20px;
  }
  .m-bottom-lg-20 {
    margin-bottom: 20px;
  }
  .p-bottom-lg-20 {
    padding-bottom: 20px;
  }
  .m-left-lg-20 {
    margin-left: 20px;
  }
  .p-left-lg-20 {
    padding-left: 20px;
  }
  .m-top-lg-24 {
    margin-top: 24px;
  }
  .p-top-lg-24 {
    padding-top: 24px;
  }
  .m-right-lg-24 {
    margin-right: 24px;
  }
  .p-right-lg-24 {
    padding-right: 24px;
  }
  .m-bottom-lg-24 {
    margin-bottom: 24px;
  }
  .p-bottom-lg-24 {
    padding-bottom: 24px;
  }
  .m-left-lg-24 {
    margin-left: 24px;
  }
  .p-left-lg-24 {
    padding-left: 24px;
  }
  .m-top-lg-32 {
    margin-top: 32px;
  }
  .p-top-lg-32 {
    padding-top: 32px;
  }
  .m-right-lg-32 {
    margin-right: 32px;
  }
  .p-right-lg-32 {
    padding-right: 32px;
  }
  .m-bottom-lg-32 {
    margin-bottom: 32px;
  }
  .p-bottom-lg-32 {
    padding-bottom: 32px;
  }
  .m-left-lg-32 {
    margin-left: 32px;
  }
  .p-left-lg-32 {
    padding-left: 32px;
  }
  .m-top-lg-40 {
    margin-top: 40px;
  }
  .p-top-lg-40 {
    padding-top: 40px;
  }
  .m-right-lg-40 {
    margin-right: 40px;
  }
  .p-right-lg-40 {
    padding-right: 40px;
  }
  .m-bottom-lg-40 {
    margin-bottom: 40px;
  }
  .p-bottom-lg-40 {
    padding-bottom: 40px;
  }
  .m-left-lg-40 {
    margin-left: 40px;
  }
  .p-left-lg-40 {
    padding-left: 40px;
  }
  .m-top-lg-48 {
    margin-top: 48px;
  }
  .p-top-lg-48 {
    padding-top: 48px;
  }
  .m-right-lg-48 {
    margin-right: 48px;
  }
  .p-right-lg-48 {
    padding-right: 48px;
  }
  .m-bottom-lg-48 {
    margin-bottom: 48px;
  }
  .p-bottom-lg-48 {
    padding-bottom: 48px;
  }
  .m-left-lg-48 {
    margin-left: 48px;
  }
  .p-left-lg-48 {
    padding-left: 48px;
  }
  .m-top-lg-56 {
    margin-top: 56px;
  }
  .p-top-lg-56 {
    padding-top: 56px;
  }
  .m-right-lg-56 {
    margin-right: 56px;
  }
  .p-right-lg-56 {
    padding-right: 56px;
  }
  .m-bottom-lg-56 {
    margin-bottom: 56px;
  }
  .p-bottom-lg-56 {
    padding-bottom: 56px;
  }
  .m-left-lg-56 {
    margin-left: 56px;
  }
  .p-left-lg-56 {
    padding-left: 56px;
  }
  .m-top-lg-64 {
    margin-top: 64px;
  }
  .p-top-lg-64 {
    padding-top: 64px;
  }
  .m-right-lg-64 {
    margin-right: 64px;
  }
  .p-right-lg-64 {
    padding-right: 64px;
  }
  .m-bottom-lg-64 {
    margin-bottom: 64px;
  }
  .p-bottom-lg-64 {
    padding-bottom: 64px;
  }
  .m-left-lg-64 {
    margin-left: 64px;
  }
  .p-left-lg-64 {
    padding-left: 64px;
  }
  .m-top-lg-132 {
    margin-top: 132px;
  }
  .p-top-lg-132 {
    padding-top: 132px;
  }
  .m-right-lg-132 {
    margin-right: 132px;
  }
  .p-right-lg-132 {
    padding-right: 132px;
  }
  .m-bottom-lg-132 {
    margin-bottom: 132px;
  }
  .p-bottom-lg-132 {
    padding-bottom: 132px;
  }
  .m-left-lg-132 {
    margin-left: 132px;
  }
  .p-left-lg-132 {
    padding-left: 132px;
  }
}
@media only screen and (min-width: 90em) {
  .m-top-xl-2 {
    margin-top: 2px;
  }
  .p-top-xl-2 {
    padding-top: 2px;
  }
  .m-right-xl-2 {
    margin-right: 2px;
  }
  .p-right-xl-2 {
    padding-right: 2px;
  }
  .m-bottom-xl-2 {
    margin-bottom: 2px;
  }
  .p-bottom-xl-2 {
    padding-bottom: 2px;
  }
  .m-left-xl-2 {
    margin-left: 2px;
  }
  .p-left-xl-2 {
    padding-left: 2px;
  }
  .m-top-xl-4 {
    margin-top: 4px;
  }
  .p-top-xl-4 {
    padding-top: 4px;
  }
  .m-right-xl-4 {
    margin-right: 4px;
  }
  .p-right-xl-4 {
    padding-right: 4px;
  }
  .m-bottom-xl-4 {
    margin-bottom: 4px;
  }
  .p-bottom-xl-4 {
    padding-bottom: 4px;
  }
  .m-left-xl-4 {
    margin-left: 4px;
  }
  .p-left-xl-4 {
    padding-left: 4px;
  }
  .m-top-xl-6 {
    margin-top: 6px;
  }
  .p-top-xl-6 {
    padding-top: 6px;
  }
  .m-right-xl-6 {
    margin-right: 6px;
  }
  .p-right-xl-6 {
    padding-right: 6px;
  }
  .m-bottom-xl-6 {
    margin-bottom: 6px;
  }
  .p-bottom-xl-6 {
    padding-bottom: 6px;
  }
  .m-left-xl-6 {
    margin-left: 6px;
  }
  .p-left-xl-6 {
    padding-left: 6px;
  }
  .m-top-xl-8 {
    margin-top: 8px;
  }
  .p-top-xl-8 {
    padding-top: 8px;
  }
  .m-right-xl-8 {
    margin-right: 8px;
  }
  .p-right-xl-8 {
    padding-right: 8px;
  }
  .m-bottom-xl-8 {
    margin-bottom: 8px;
  }
  .p-bottom-xl-8 {
    padding-bottom: 8px;
  }
  .m-left-xl-8 {
    margin-left: 8px;
  }
  .p-left-xl-8 {
    padding-left: 8px;
  }
  .m-top-xl-10 {
    margin-top: 10px;
  }
  .p-top-xl-10 {
    padding-top: 10px;
  }
  .m-right-xl-10 {
    margin-right: 10px;
  }
  .p-right-xl-10 {
    padding-right: 10px;
  }
  .m-bottom-xl-10 {
    margin-bottom: 10px;
  }
  .p-bottom-xl-10 {
    padding-bottom: 10px;
  }
  .m-left-xl-10 {
    margin-left: 10px;
  }
  .p-left-xl-10 {
    padding-left: 10px;
  }
  .m-top-xl-12 {
    margin-top: 12px;
  }
  .p-top-xl-12 {
    padding-top: 12px;
  }
  .m-right-xl-12 {
    margin-right: 12px;
  }
  .p-right-xl-12 {
    padding-right: 12px;
  }
  .m-bottom-xl-12 {
    margin-bottom: 12px;
  }
  .p-bottom-xl-12 {
    padding-bottom: 12px;
  }
  .m-left-xl-12 {
    margin-left: 12px;
  }
  .p-left-xl-12 {
    padding-left: 12px;
  }
  .m-top-xl-16 {
    margin-top: 16px;
  }
  .p-top-xl-16 {
    padding-top: 16px;
  }
  .m-right-xl-16 {
    margin-right: 16px;
  }
  .p-right-xl-16 {
    padding-right: 16px;
  }
  .m-bottom-xl-16 {
    margin-bottom: 16px;
  }
  .p-bottom-xl-16 {
    padding-bottom: 16px;
  }
  .m-left-xl-16 {
    margin-left: 16px;
  }
  .p-left-xl-16 {
    padding-left: 16px;
  }
  .m-top-xl-20 {
    margin-top: 20px;
  }
  .p-top-xl-20 {
    padding-top: 20px;
  }
  .m-right-xl-20 {
    margin-right: 20px;
  }
  .p-right-xl-20 {
    padding-right: 20px;
  }
  .m-bottom-xl-20 {
    margin-bottom: 20px;
  }
  .p-bottom-xl-20 {
    padding-bottom: 20px;
  }
  .m-left-xl-20 {
    margin-left: 20px;
  }
  .p-left-xl-20 {
    padding-left: 20px;
  }
  .m-top-xl-24 {
    margin-top: 24px;
  }
  .p-top-xl-24 {
    padding-top: 24px;
  }
  .m-right-xl-24 {
    margin-right: 24px;
  }
  .p-right-xl-24 {
    padding-right: 24px;
  }
  .m-bottom-xl-24 {
    margin-bottom: 24px;
  }
  .p-bottom-xl-24 {
    padding-bottom: 24px;
  }
  .m-left-xl-24 {
    margin-left: 24px;
  }
  .p-left-xl-24 {
    padding-left: 24px;
  }
  .m-top-xl-32 {
    margin-top: 32px;
  }
  .p-top-xl-32 {
    padding-top: 32px;
  }
  .m-right-xl-32 {
    margin-right: 32px;
  }
  .p-right-xl-32 {
    padding-right: 32px;
  }
  .m-bottom-xl-32 {
    margin-bottom: 32px;
  }
  .p-bottom-xl-32 {
    padding-bottom: 32px;
  }
  .m-left-xl-32 {
    margin-left: 32px;
  }
  .p-left-xl-32 {
    padding-left: 32px;
  }
  .m-top-xl-40 {
    margin-top: 40px;
  }
  .p-top-xl-40 {
    padding-top: 40px;
  }
  .m-right-xl-40 {
    margin-right: 40px;
  }
  .p-right-xl-40 {
    padding-right: 40px;
  }
  .m-bottom-xl-40 {
    margin-bottom: 40px;
  }
  .p-bottom-xl-40 {
    padding-bottom: 40px;
  }
  .m-left-xl-40 {
    margin-left: 40px;
  }
  .p-left-xl-40 {
    padding-left: 40px;
  }
  .m-top-xl-48 {
    margin-top: 48px;
  }
  .p-top-xl-48 {
    padding-top: 48px;
  }
  .m-right-xl-48 {
    margin-right: 48px;
  }
  .p-right-xl-48 {
    padding-right: 48px;
  }
  .m-bottom-xl-48 {
    margin-bottom: 48px;
  }
  .p-bottom-xl-48 {
    padding-bottom: 48px;
  }
  .m-left-xl-48 {
    margin-left: 48px;
  }
  .p-left-xl-48 {
    padding-left: 48px;
  }
  .m-top-xl-56 {
    margin-top: 56px;
  }
  .p-top-xl-56 {
    padding-top: 56px;
  }
  .m-right-xl-56 {
    margin-right: 56px;
  }
  .p-right-xl-56 {
    padding-right: 56px;
  }
  .m-bottom-xl-56 {
    margin-bottom: 56px;
  }
  .p-bottom-xl-56 {
    padding-bottom: 56px;
  }
  .m-left-xl-56 {
    margin-left: 56px;
  }
  .p-left-xl-56 {
    padding-left: 56px;
  }
  .m-top-xl-64 {
    margin-top: 64px;
  }
  .p-top-xl-64 {
    padding-top: 64px;
  }
  .m-right-xl-64 {
    margin-right: 64px;
  }
  .p-right-xl-64 {
    padding-right: 64px;
  }
  .m-bottom-xl-64 {
    margin-bottom: 64px;
  }
  .p-bottom-xl-64 {
    padding-bottom: 64px;
  }
  .m-left-xl-64 {
    margin-left: 64px;
  }
  .p-left-xl-64 {
    padding-left: 64px;
  }
  .m-top-xl-132 {
    margin-top: 132px;
  }
  .p-top-xl-132 {
    padding-top: 132px;
  }
  .m-right-xl-132 {
    margin-right: 132px;
  }
  .p-right-xl-132 {
    padding-right: 132px;
  }
  .m-bottom-xl-132 {
    margin-bottom: 132px;
  }
  .p-bottom-xl-132 {
    padding-bottom: 132px;
  }
  .m-left-xl-132 {
    margin-left: 132px;
  }
  .p-left-xl-132 {
    padding-left: 132px;
  }
}
@media only screen and (min-width: 120em) {
  .m-top-xxl-2 {
    margin-top: 2px;
  }
  .p-top-xxl-2 {
    padding-top: 2px;
  }
  .m-right-xxl-2 {
    margin-right: 2px;
  }
  .p-right-xxl-2 {
    padding-right: 2px;
  }
  .m-bottom-xxl-2 {
    margin-bottom: 2px;
  }
  .p-bottom-xxl-2 {
    padding-bottom: 2px;
  }
  .m-left-xxl-2 {
    margin-left: 2px;
  }
  .p-left-xxl-2 {
    padding-left: 2px;
  }
  .m-top-xxl-4 {
    margin-top: 4px;
  }
  .p-top-xxl-4 {
    padding-top: 4px;
  }
  .m-right-xxl-4 {
    margin-right: 4px;
  }
  .p-right-xxl-4 {
    padding-right: 4px;
  }
  .m-bottom-xxl-4 {
    margin-bottom: 4px;
  }
  .p-bottom-xxl-4 {
    padding-bottom: 4px;
  }
  .m-left-xxl-4 {
    margin-left: 4px;
  }
  .p-left-xxl-4 {
    padding-left: 4px;
  }
  .m-top-xxl-6 {
    margin-top: 6px;
  }
  .p-top-xxl-6 {
    padding-top: 6px;
  }
  .m-right-xxl-6 {
    margin-right: 6px;
  }
  .p-right-xxl-6 {
    padding-right: 6px;
  }
  .m-bottom-xxl-6 {
    margin-bottom: 6px;
  }
  .p-bottom-xxl-6 {
    padding-bottom: 6px;
  }
  .m-left-xxl-6 {
    margin-left: 6px;
  }
  .p-left-xxl-6 {
    padding-left: 6px;
  }
  .m-top-xxl-8 {
    margin-top: 8px;
  }
  .p-top-xxl-8 {
    padding-top: 8px;
  }
  .m-right-xxl-8 {
    margin-right: 8px;
  }
  .p-right-xxl-8 {
    padding-right: 8px;
  }
  .m-bottom-xxl-8 {
    margin-bottom: 8px;
  }
  .p-bottom-xxl-8 {
    padding-bottom: 8px;
  }
  .m-left-xxl-8 {
    margin-left: 8px;
  }
  .p-left-xxl-8 {
    padding-left: 8px;
  }
  .m-top-xxl-10 {
    margin-top: 10px;
  }
  .p-top-xxl-10 {
    padding-top: 10px;
  }
  .m-right-xxl-10 {
    margin-right: 10px;
  }
  .p-right-xxl-10 {
    padding-right: 10px;
  }
  .m-bottom-xxl-10 {
    margin-bottom: 10px;
  }
  .p-bottom-xxl-10 {
    padding-bottom: 10px;
  }
  .m-left-xxl-10 {
    margin-left: 10px;
  }
  .p-left-xxl-10 {
    padding-left: 10px;
  }
  .m-top-xxl-12 {
    margin-top: 12px;
  }
  .p-top-xxl-12 {
    padding-top: 12px;
  }
  .m-right-xxl-12 {
    margin-right: 12px;
  }
  .p-right-xxl-12 {
    padding-right: 12px;
  }
  .m-bottom-xxl-12 {
    margin-bottom: 12px;
  }
  .p-bottom-xxl-12 {
    padding-bottom: 12px;
  }
  .m-left-xxl-12 {
    margin-left: 12px;
  }
  .p-left-xxl-12 {
    padding-left: 12px;
  }
  .m-top-xxl-16 {
    margin-top: 16px;
  }
  .p-top-xxl-16 {
    padding-top: 16px;
  }
  .m-right-xxl-16 {
    margin-right: 16px;
  }
  .p-right-xxl-16 {
    padding-right: 16px;
  }
  .m-bottom-xxl-16 {
    margin-bottom: 16px;
  }
  .p-bottom-xxl-16 {
    padding-bottom: 16px;
  }
  .m-left-xxl-16 {
    margin-left: 16px;
  }
  .p-left-xxl-16 {
    padding-left: 16px;
  }
  .m-top-xxl-20 {
    margin-top: 20px;
  }
  .p-top-xxl-20 {
    padding-top: 20px;
  }
  .m-right-xxl-20 {
    margin-right: 20px;
  }
  .p-right-xxl-20 {
    padding-right: 20px;
  }
  .m-bottom-xxl-20 {
    margin-bottom: 20px;
  }
  .p-bottom-xxl-20 {
    padding-bottom: 20px;
  }
  .m-left-xxl-20 {
    margin-left: 20px;
  }
  .p-left-xxl-20 {
    padding-left: 20px;
  }
  .m-top-xxl-24 {
    margin-top: 24px;
  }
  .p-top-xxl-24 {
    padding-top: 24px;
  }
  .m-right-xxl-24 {
    margin-right: 24px;
  }
  .p-right-xxl-24 {
    padding-right: 24px;
  }
  .m-bottom-xxl-24 {
    margin-bottom: 24px;
  }
  .p-bottom-xxl-24 {
    padding-bottom: 24px;
  }
  .m-left-xxl-24 {
    margin-left: 24px;
  }
  .p-left-xxl-24 {
    padding-left: 24px;
  }
  .m-top-xxl-32 {
    margin-top: 32px;
  }
  .p-top-xxl-32 {
    padding-top: 32px;
  }
  .m-right-xxl-32 {
    margin-right: 32px;
  }
  .p-right-xxl-32 {
    padding-right: 32px;
  }
  .m-bottom-xxl-32 {
    margin-bottom: 32px;
  }
  .p-bottom-xxl-32 {
    padding-bottom: 32px;
  }
  .m-left-xxl-32 {
    margin-left: 32px;
  }
  .p-left-xxl-32 {
    padding-left: 32px;
  }
  .m-top-xxl-40 {
    margin-top: 40px;
  }
  .p-top-xxl-40 {
    padding-top: 40px;
  }
  .m-right-xxl-40 {
    margin-right: 40px;
  }
  .p-right-xxl-40 {
    padding-right: 40px;
  }
  .m-bottom-xxl-40 {
    margin-bottom: 40px;
  }
  .p-bottom-xxl-40 {
    padding-bottom: 40px;
  }
  .m-left-xxl-40 {
    margin-left: 40px;
  }
  .p-left-xxl-40 {
    padding-left: 40px;
  }
  .m-top-xxl-48 {
    margin-top: 48px;
  }
  .p-top-xxl-48 {
    padding-top: 48px;
  }
  .m-right-xxl-48 {
    margin-right: 48px;
  }
  .p-right-xxl-48 {
    padding-right: 48px;
  }
  .m-bottom-xxl-48 {
    margin-bottom: 48px;
  }
  .p-bottom-xxl-48 {
    padding-bottom: 48px;
  }
  .m-left-xxl-48 {
    margin-left: 48px;
  }
  .p-left-xxl-48 {
    padding-left: 48px;
  }
  .m-top-xxl-56 {
    margin-top: 56px;
  }
  .p-top-xxl-56 {
    padding-top: 56px;
  }
  .m-right-xxl-56 {
    margin-right: 56px;
  }
  .p-right-xxl-56 {
    padding-right: 56px;
  }
  .m-bottom-xxl-56 {
    margin-bottom: 56px;
  }
  .p-bottom-xxl-56 {
    padding-bottom: 56px;
  }
  .m-left-xxl-56 {
    margin-left: 56px;
  }
  .p-left-xxl-56 {
    padding-left: 56px;
  }
  .m-top-xxl-64 {
    margin-top: 64px;
  }
  .p-top-xxl-64 {
    padding-top: 64px;
  }
  .m-right-xxl-64 {
    margin-right: 64px;
  }
  .p-right-xxl-64 {
    padding-right: 64px;
  }
  .m-bottom-xxl-64 {
    margin-bottom: 64px;
  }
  .p-bottom-xxl-64 {
    padding-bottom: 64px;
  }
  .m-left-xxl-64 {
    margin-left: 64px;
  }
  .p-left-xxl-64 {
    padding-left: 64px;
  }
  .m-top-xxl-132 {
    margin-top: 132px;
  }
  .p-top-xxl-132 {
    padding-top: 132px;
  }
  .m-right-xxl-132 {
    margin-right: 132px;
  }
  .p-right-xxl-132 {
    padding-right: 132px;
  }
  .m-bottom-xxl-132 {
    margin-bottom: 132px;
  }
  .p-bottom-xxl-132 {
    padding-bottom: 132px;
  }
  .m-left-xxl-132 {
    margin-left: 132px;
  }
  .p-left-xxl-132 {
    padding-left: 132px;
  }
}
@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*!***********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/app.scss ***!
  \***********************************************************************************************************************************/
:root {
  --bg-color: #ffffff;
  --text-color: #262626;
  --text-color-dim: #444444;
  --shade-10: rgba(0, 0, 0, 0.1);
  --theme-yellow: rgb(221, 161, 55);
}

html.yellow {
  --color-theme: rgb(221, 161, 55);
  --color-theme-raw: 221, 161, 55;
}

html.dark-mode {
  --bg-color: #15161A;
  --text-color: #E8E8E8;
  --text-color-dim: #b5b5b5;
  --shade-10: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.page-app {
  max-height: 100vh;
  overflow: auto;
  padding-bottom: 56px;
}
.page-app comp-theme-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10;
}
.page-app comp-navigation {
  position: fixed;
  bottom: 52px;
  left: 40px;
  z-index: 10;
  display: none;
}
@media only screen and (min-width: 64em) {
  .page-app comp-navigation {
    display: block;
  }
}
.page-app .main-content .bg-grid {
  height: 400px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgba(var(--color-theme-raw), 0.08) 1px, transparent 0), linear-gradient(180deg, rgba(var(--color-theme-raw), 0.08) 1px, transparent 0);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 0, var(--color-theme) 75%, transparent 129%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 0, var(--color-theme) 75%, transparent 129%);
}
.page-app .main-content .section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (min-width: 75em) {
  .page-app .main-content .section {
    max-width: 600px;
  }
}
@media only screen and (min-width: 90em) {
  .page-app .main-content .section {
    max-width: 800px;
  }
}
.page-app .main-content .section.hero {
  margin-bottom: 80px;
  padding-top: 112px;
}
.page-app .main-content .section.hero .profile {
  display: flex;
  flex-direction: column;
  gap: 8px 42px;
}
@media only screen and (min-width: 48em) {
  .page-app .main-content .section.hero .profile {
    flex-direction: row;
  }
}
.page-app .main-content .section.hero .profile .profile-image {
  border-radius: 16px;
  overflow: hidden;
  max-width: 120px;
  min-width: 120px;
  height: 120px;
  background: linear-gradient(0deg, rgba(199, 199, 199, 0.2901960784), rgba(43, 43, 43, 0.7098039216));
}
.page-app .main-content .section.hero .profile .profile-image img {
  width: 100%;
  object-fit: cover;
}
.page-app .main-content .section.hero .profile .sub-title {
  color: var(--text-color-dim);
}
.page-app .main-content .section.hero .profile .contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (min-width: 48em) {
  .page-app .main-content .section.hero .profile .contacts {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (min-width: 90em) {
  .page-app .main-content .section.hero .profile .contacts {
    gap: 28px;
  }
}
.page-app .main-content .section.hero .profile .contacts .item {
  position: relative;
  cursor: pointer;
  width: fit-content;
}
.page-app .main-content .section.hero .profile .contacts .item .link {
  display: flex;
  align-items: center;
}
.page-app .main-content .section.hero .profile .contacts .item .link:hover .icon {
  color: var(--color-theme);
}
.page-app .main-content .section.hero .profile .contacts .item .link:hover .item-text {
  color: var(--color-theme);
}
.page-app .main-content .section.hero .profile .contacts .item .link:hover .item-text:after {
  transform: scaleX(1);
  transform-origin: left;
}
.page-app .main-content .section.hero .profile .contacts .item .link .item-text {
  position: relative;
  font-size: 1.3rem;
  transition: 0.3s;
}
.page-app .main-content .section.hero .profile .contacts .item .link .item-text:after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background-color: var(--color-theme);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.page-app .main-content .section.hero .profile .contacts .item .link .icon {
  margin-right: 4px;
  color: var(--color-text);
  transition: 0.3s;
}
.page-app .main-content .section.hero .profile .contacts .item .copy {
  position: absolute;
  width: 54px;
  right: -54px;
  top: -8px;
  display: flex;
}
.page-app .main-content .section.hero .profile .contacts .item .copy .icon-copy {
  color: var(--color-theme-dim);
  transition: 0.3s;
}
.page-app .main-content .section.hero .profile .contacts .item .copy .icon-copy.copied {
  color: var(--color-theme);
}
.page-app .main-content .section.hero .profile .contacts .item .copy .icon-copy:hover {
  color: var(--color-theme);
}
.page-app .main-content .section.hero .profile .contacts .item .copy .copy-text {
  transition: 0.3s;
  line-height: 12px;
  display: block;
  margin-left: 2px;
  font-size: 1.2rem;
  color: var(--color-theme);
  animation: fadeInFromLeft 0.3s ease-out;
}
.page-app .main-content .section.hero .title .highlight {
  color: var(--color-theme);
}
.page-app .main-content .section.about {
  margin-bottom: 80px;
}
.page-app .main-content .section.about .text {
  color: var(--text-color-dim);
}
.page-app .main-content .section.about .text .highlight {
  color: var(--color-theme);
  opacity: 0.8;
}
.page-app .main-content .section.about .spotify-playlist {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 50%);
  width: 80%;
}
.page-app .main-content .section.about .spotify-playlist::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--shade-10);
  z-index: -1;
}
.page-app .main-content .section.experience {
  margin-bottom: 80px;
}
.page-app .main-content .section.experience .job {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  margin-bottom: 36px;
}
@media only screen and (min-width: 48em) {
  .page-app .main-content .section.experience .job {
    flex-direction: row;
  }
}
.page-app .main-content .section.experience .job .date {
  min-width: 180px;
  width: 180px;
  font-size: 1.2rem;
  color: var(--text-color-dim);
}
.page-app .main-content .section.experience .job .details .company {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 600;
}
.page-app .main-content .section.experience .job .details .job-info {
  color: var(--text-color);
  font-size: 1.3rem;
}
.page-app .main-content .section.skills .others-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color-dim);
}
.page-app .main-content .section.skills .skills-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-app .main-content .section.skills .skills-container .card {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  transition: 0.3s;
  border: 1px solid var(--shade-10);
  border-radius: 8px;
  background: linear-gradient(var(--bg-color) 0 0) padding-box, linear-gradient(rgba(var(--color-theme-raw), 0.2), rgba(255, 255, 255, 0)) border-box;
}
.page-app .main-content .section.skills .skills-container .card:hover {
  cursor: pointer;
  background-color: var(--shade-10);
  transform: scale(1.1);
}
.page-app .main-content .section.skills .skills-container .card:hover .icon {
  transform: rotate(2deg) scale(1.2);
}
.page-app .main-content .section.skills .skills-container .card:hover .skill-name {
  color: var(--text-color);
}
.page-app .main-content .section.skills .skills-container .card .icon {
  transition: 0.3s;
}
.page-app .main-content .section.skills .skills-container .card .skill-name {
  min-width: 50px;
  font-size: 1.3rem;
  color: var(--text-color-dim);
  transition: 0.3s;
}
.page-app::-webkit-scrollbar {
  width: 6px;
}
.page-app::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: var(--bg-color);
}
.page-app::-webkit-scrollbar-thumb {
  -webkit-box-shadow: none;
  border-radius: 4px;
  background-color: var(--text-color);
}

/*# sourceMappingURL=app.91be8c6527bf1220d74f.bundle.css.map*/