@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap);
* {
  /* color: inherit; */
  /* font-size: inherit; */
  font-family: "Nunito Sans", sans-serif;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
}

:root {
  /* Primary palette */
  --md-primary: #03A14A;
  --md-primary-variant: #ccda00;
  --md-secondary: #03dac6;
	--md-brand: #FECF4C;
  /* Surfaces & backgrounds */
  --md-background: #DFF4E8;
  --md-surface: #ffffff;
  /* Text / icons */
  --md-on-primary: #ffffff;
  --md-on-surface: #000000;
	--md-score-good: #03A14A;
	--md-score-normal: #20C997;
	--md-score-bad: #FA5252;
  /* Shadows (elevations) */
  --md-elevation-1: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --md-elevation-2: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

html {
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

body {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
    'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}

h2 {
	font-size: 30px;
	margin-top: 0;
	margin-bottom: 20px;
}

h3 {
	font-size: 19px;
	margin-top: 0;
	margin-bottom: 20px;
}

p, a {
	font-size: 18px;
}

a {
	color: inherit;
}

input {
	-webkit-appearance: none;
	appearance:         none;
	display: inline-block;
  width: 100%;
  padding: 15px 12px 14px 12px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
}
input::placeholder {
	color: #B0B0B0;
}

select {
	-webkit-appearance: none;
	appearance:         none;
	
}
textarea {
	-webkit-appearance: none;
	appearance:         none;
	display: inline-block;
  width: 100%;
  padding: 15px 12px 14px 12px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
	font-family: "Nunito Sans", sans-serif;
  resize: vertical;
}

button {
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */ /* Konqueror HTML */ /* Old versions of Firefox */ /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
	-webkit-appearance: none;
	appearance:         none;
	display: inline-block;
	width: auto;
	padding: .5em 1.2em;
	color: #FFF;
	font-size: 16px;
	background-color: #00A43D;
	border: none;
	border-radius: 15px;
	cursor: pointer;
}
button.load {
	color: rgba(0, 0, 0, 0) !important;
	background-image: url(/static/media/load.77d19fdb173316407067.gif);
	background-size: auto 16px;
	background-position: center;
	background-repeat: no-repeat;
  cursor: not-allowed;
}
button.secondary {
	color: #03A14A !important;
	color: var(--md-primary) !important;
	background-color: #FFF !important;
	border: 1px solid #03A14A !important;
	border: 1px solid var(--md-primary) !important;
}
button.yellow {
	color: #333;
	background-color: #FECF4C;
	background-color: var(--md-brand);
}
button.red {
	color: #FFF;
	background-color: #F8928A;
}
button:disabled {
	color: #DDD;
	opacity: 0.6;
	cursor: not-allowed;
}

.modal {
  display: inline-flex;
	flex-direction: column;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  overflow: scroll;
	-ms-overflow-style: none;
	visibility: hidden;
	opacity: 0;
  z-index: 100;
	transition: all ease-in-out .2s;
}
.modal.open {
	visibility: visible;
	opacity: 1;
}
.modal::-webkit-scrollbar {
	display: none;
}
.modal .form {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  max-width: 90%;
  max-height: 80%;
  padding: 30px 30px;
  padding-top: 45px;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.modal .form .title {
	width: 100%;
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}
.modal .form .row {
	display: inline-flex;
	flex-direction: row;
  flex-shrink: 0;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	max-width: 480px;
	padding-top: 18px;
	padding-bottom: 15px;
	border-bottom: 1px solid #00A43D;
  overflow: hidden;
}
.modal .form .row .form-title {
	width: 135px;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
}
.modal .form .row input,
.modal .form .row select {
	display: inline-flex;
	flex: 1 1;
	width: auto;
	height: auto;
	padding: 0;
	font-size: 18px;
	border: none;
}
.modal .form .row input:focus,
.modal .form .row select:focus {
	outline: none;
}
.modal .form .row input::placeholder {
	color: #B0B0B0;
}
.modal .form button {
	margin-top: 30px;
	padding: .8em 1.8em;
	color: #00A43D;
	background-color: #FFF;
	border: 2px solid #00A43D;
}
.modal .close {
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABfCAYAAACOTBv1AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAASJSURBVHhe7d3JitRAHAbwaVwGQd9BGEEfQNSboN5FRMWrCwgeFFQUPAruqMhcBJ2ry0HEszdRcTnpQQ/iW+hhPLRfSXcb05Wkkn8tXy2BQidJVZnfV11Jt53JaKEswQRGwXouHS/M4Y/H491wuYWyhLIW5QfKzdFo9Lh4dQvAbw/2uo6yBWUdynf1M/ye1mvP8FFJ/f0SyhWUNZpu7mHdRTSy2v1PyHMPGJ7Fkd9tOPqrsLtc3VbF344NbydpNemtYMMJNDLOk7f5qAF/BlvVAG1bDsLu+XSHKv4TrDxigFoCqCEZwqtaH4C/U4f/DSu3GuCrXUoAE6ge8KrGKvAXpfglAAj0hFdmv1EWp9P2kGmn+uLI9hUwAF65fQT8Dt3IVytfo6w3nHqmu2UXwEB45XUA+C/m8NUKNKouNa/1xM9qCoLRORzw7QFG9wGvrohmi+5Nlsklk67v5F8BghG/AvjjdTTtxwuSTtBBku8DJCY6eBVE42c7ks5SC0Bi0QTfij85B2Q/BbmC78TPPQCX8Eb4uQbgGt4YP7cAfMD3ws8lAF/wvfFTD8An/CD8VAPwDT8YP7UAQsCL8FMJIBS8GD/2AELCW8GPNYDQ8NbwYwuAAd4qfiwBsMBbx2cPgAneCT5rAGzwzvDZAmCEd4rPEgArvHP80AEww3vBDxUAO7w3fN8BxADvFd9XALHAe8d3HUBM8EHwXQUQG3wwfNsBxAgfFN9WALHCB8e3EMAXtNF0D5RqvmnRfneyrYKLbRS3ggpG7xATCniKkT/V8xQADTwVvnAKMnkFUMHT4TsMgA6eEt9BAJTwtPgWA6CFp8a3EAA1fPL4OEDqW5QorvN1lyqWLj2pb9KjxLcEP82UNgA6fMvw1AFQ4TuCpw2ABt8xPGUAFPie4OkCCI4vgFcn0s8oXb/dSXcxRXESDoovgZ/e2S1pI/T7gGD4ErT6LfWStkIGEARfgtX0uwwkbYYKwDu+BKntl0gIPwsKcg7wiu8S3sL/iHkPwBu+D/jYAvCC7xM+pgCc44eAjyUAp/gh4WMIwBk+Azx7AE7wmeCZA7COzwjPGoBVfGZ4xgCs4ccAzxaAFfyY4JkCEOPHCM8SgAg/ZniGAAbjpwAfOoBB+CnBhwygN36K8KEC6IWfMnyIAIzxc4D3HYARfk7wPgPoxM8R3lcArfg5w/sIoBG/wP/7opvEou1rKVp8SWddX+/QfXcvhnUSk6YA5vAlnaQK72oK+g8f8KfR0fKAkfgQ8CcH1IuuimRw1l8BM3w0qp6H+w5FPf25z0J/11+fgzHZVxDAUQxS9ejbv0sV/xl+PmTSeWWf7OCFU9B74O/S4fd5Hq6qny28IICfqLtJ90jWr9iwzXDkZw8/MIBfqLdRh6+eTn/YAL/A15B6nAMapx31PNw3HSfcAt8wOg0D2I9R/3Juzlcr0MAx/PGoof0bqKiel1uWYQE8gN+palXdm6zN2OECyl41P6G8QrmDiurms7J0CGAAL2GX8yj7UDZM/Jbh96letfNTzaLtTqDgu7PtbLngdxK52+EPTYSIjevcebcAAAAASUVORK5CYII=);
	background-color: #00A43D;
	background-size: auto 14px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
	z-index: 20;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}




/* Tailwind */
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: Inter, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;

    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;

    --primary: 123 88% 33%;
    --primary-foreground: 0 0% 98%;

    --secondary: 123 30% 92%;
    --secondary-foreground: 123 88% 20%;

    --accent: 51 100% 50%;
    --accent-foreground: 0 0% 0%;

    --success: 123 88% 33%;
    --success-foreground: 0 0% 98%;

    --warning: 51 100% 50%;
    --warning-foreground: 0 0% 0%;

    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 123 88% 33%;

    --radius: 0.75rem;

    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 123 88% 33%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 123 30% 92%;
    --sidebar-accent-foreground: 123 88% 20%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 123 88% 33%;

    /* Custom theme colors */
    --brand-green: 123 88% 33%;
    --brand-yellow: 51 100% 50%;
    --brand-light-green: 123 30% 92%;
    --brand-dark-green: 123 88% 20%;
  }
.dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 123 88% 40%;
    --primary-foreground: 222.2 47.4% 11.2%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 51 100% 60%;
    --accent-foreground: 0 0% 0%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 123 88% 40%;
  }
*{
  border-color: hsl(214.3 31.8% 91.4%);
  border-color: hsl(var(--border));
}
body{
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--background));
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--foreground));
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
  }
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 1400px){

  .container{
    max-width: 1400px;
  }
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none{
  pointer-events: none;
}
.pointer-events-auto{
  pointer-events: auto;
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.\!collapse{
  visibility: collapse !important;
}
.collapse{
  visibility: collapse;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.-bottom-1{
  bottom: -0.25rem;
}
.-bottom-12{
  bottom: -3rem;
}
.-left-1{
  left: -0.25rem;
}
.-left-12{
  left: -3rem;
}
.-left-2{
  left: -0.5rem;
}
.-right-1{
  right: -0.25rem;
}
.-right-12{
  right: -3rem;
}
.-top-1{
  top: -0.25rem;
}
.-top-12{
  top: -3rem;
}
.bottom-0{
  bottom: 0px;
}
.bottom-1{
  bottom: 0.25rem;
}
.bottom-10{
  bottom: 2.5rem;
}
.bottom-20{
  bottom: 5rem;
}
.left-0{
  left: 0px;
}
.left-1{
  left: 0.25rem;
}
.left-1\/2{
  left: 50%;
}
.left-10{
  left: 2.5rem;
}
.left-2{
  left: 0.5rem;
}
.left-4{
  left: 1rem;
}
.left-\[50\%\]{
  left: 50%;
}
.right-0{
  right: 0px;
}
.right-1{
  right: 0.25rem;
}
.right-10{
  right: 2.5rem;
}
.right-2{
  right: 0.5rem;
}
.right-3{
  right: 0.75rem;
}
.right-4{
  right: 1rem;
}
.top-0{
  top: 0px;
}
.top-1\.5{
  top: 0.375rem;
}
.top-1\/2{
  top: 50%;
}
.top-10{
  top: 2.5rem;
}
.top-2{
  top: 0.5rem;
}
.top-20{
  top: 5rem;
}
.top-3\.5{
  top: 0.875rem;
}
.top-4{
  top: 1rem;
}
.top-\[1px\]{
  top: 1px;
}
.top-\[50\%\]{
  top: 50%;
}
.top-\[60\%\]{
  top: 60%;
}
.top-full{
  top: 100%;
}
.-z-10{
  z-index: -10;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-50{
  z-index: 50;
}
.z-\[100\]{
  z-index: 100;
}
.z-\[1\]{
  z-index: 1;
}
.order-1{
  order: 1;
}
.order-2{
  order: 2;
}
.-mx-1{
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-3\.5{
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-0\.5{
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.-ml-4{
  margin-left: -1rem;
}
.-mt-4{
  margin-top: -1rem;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-auto{
  margin-left: auto;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-1\.5{
  margin-top: 0.375rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-24{
  margin-top: 6rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-auto{
  margin-top: auto;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.table-row{
  display: table-row;
}
.grid{
  display: grid;
}
.list-item{
  display: list-item;
}
.hidden{
  display: none;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.aspect-video{
  aspect-ratio: 16 / 9;
}
.size-4{
  width: 1rem;
  height: 1rem;
}
.h-1\.5{
  height: 0.375rem;
}
.h-10{
  height: 2.5rem;
}
.h-11{
  height: 2.75rem;
}
.h-12{
  height: 3rem;
}
.h-16{
  height: 4rem;
}
.h-2{
  height: 0.5rem;
}
.h-2\.5{
  height: 0.625rem;
}
.h-20{
  height: 5rem;
}
.h-3{
  height: 0.75rem;
}
.h-3\.5{
  height: 0.875rem;
}
.h-32{
  height: 8rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-7{
  height: 1.75rem;
}
.h-8{
  height: 2rem;
}
.h-9{
  height: 2.25rem;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[var\(--radix-navigation-menu-viewport-height\)\]{
  height: var(--radix-navigation-menu-viewport-height);
}
.h-\[var\(--radix-select-trigger-height\)\]{
  height: var(--radix-select-trigger-height);
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-px{
  height: 1px;
}
.h-svh{
  height: 100svh;
}
.max-h-96{
  max-height: 24rem;
}
.max-h-\[300px\]{
  max-height: 300px;
}
.max-h-screen{
  max-height: 100vh;
}
.min-h-0{
  min-height: 0px;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[400px\]{
  min-height: 400px;
}
.min-h-\[80px\]{
  min-height: 80px;
}
.min-h-svh{
  min-height: 100svh;
}
.w-0{
  width: 0px;
}
.w-1{
  width: 0.25rem;
}
.w-1\.5{
  width: 0.375rem;
}
.w-10{
  width: 2.5rem;
}
.w-11{
  width: 2.75rem;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-2\.5{
  width: 0.625rem;
}
.w-20{
  width: 5rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\.5{
  width: 0.875rem;
}
.w-3\/4{
  width: 75%;
}
.w-32{
  width: 8rem;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-64{
  width: 16rem;
}
.w-7{
  width: 1.75rem;
}
.w-72{
  width: 18rem;
}
.w-8{
  width: 2rem;
}
.w-9{
  width: 2.25rem;
}
.w-\[--sidebar-width\]{
  width: var(--sidebar-width);
}
.w-\[100px\]{
  width: 100px;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[45\%\]{
  width: 45%;
}
.w-\[65\%\]{
  width: 65%;
}
.w-\[70\%\]{
  width: 70%;
}
.w-\[80\%\]{
  width: 80%;
}
.w-\[87\%\]{
  width: 87%;
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.w-max{
  width: max-content;
}
.w-px{
  width: 1px;
}
.min-w-0{
  min-width: 0px;
}
.min-w-5{
  min-width: 1.25rem;
}
.min-w-\[12rem\]{
  min-width: 12rem;
}
.min-w-\[8rem\]{
  min-width: 8rem;
}
.min-w-\[var\(--radix-select-trigger-width\)\]{
  min-width: var(--radix-select-trigger-width);
}
.max-w-3xl{
  max-width: 48rem;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[--skeleton-width\]{
  max-width: var(--skeleton-width);
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-max{
  max-width: max-content;
}
.max-w-sm{
  max-width: 24rem;
}
.flex-1{
  flex: 1 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.grow{
  flex-grow: 1;
}
.grow-0{
  flex-grow: 0;
}
.basis-full{
  flex-basis: 100%;
}
.caption-bottom{
  caption-side: bottom;
}
.border-collapse{
  border-collapse: collapse;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-px{
  --tw-translate-x: -1px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-50\%\]{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-px{
  --tw-translate-x: 1px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\]{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90{
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45{
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes bounce-slow{

  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50%{
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.animate-bounce-slow{
  animation: bounce-slow 2s infinite;
}
@keyframes float{

  0%, 100%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-20px);
  }
}
.animate-float{
  animation: float 3s ease-in-out infinite;
}
@keyframes pulse{

  50%{
    opacity: .5;
  }
}
.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-default{
  cursor: default;
}
.cursor-pointer{
  cursor: pointer;
}
.touch-none{
  touch-action: none;
}
.select-none{
  -webkit-user-select: none;
          user-select: none;
}
.resize-none{
  resize: none;
}
.list-none{
  list-style-type: none;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-stretch{
  align-items: stretch;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-12{
  gap: 3rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.break-words{
  overflow-wrap: break-word;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-\[2px\]{
  border-radius: 2px;
}
.rounded-\[inherit\]{
  border-radius: inherit;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.75rem;
  border-radius: var(--radius);
}
.rounded-md{
  border-radius: calc(0.75rem - 2px);
  border-radius: calc(var(--radius) - 2px);
}
.rounded-sm{
  border-radius: calc(0.75rem - 4px);
  border-radius: calc(var(--radius) - 4px);
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-t-\[10px\]{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.rounded-tl-sm{
  border-top-left-radius: calc(0.75rem - 4px);
  border-top-left-radius: calc(var(--radius) - 4px);
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-\[1\.5px\]{
  border-width: 1.5px;
}
.border-y{
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-l{
  border-left-width: 1px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-r{
  border-right-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-dashed{
  border-style: dashed;
}
.border-\[--color-border\]{
  border-color: var(--color-border);
}
.border-blue-600{
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / 1);
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-border\/50{
  border-color: hsl(214.3 31.8% 91.4% / 0.5);
  border-color: hsl(var(--border) / 0.5);
}
.border-brand-green{
  border-color: hsl(123 88% 33%);
  border-color: hsl(var(--brand-green));
}
.border-brand-green\/20{
  border-color: hsl(123 88% 33% / 0.2);
  border-color: hsl(var(--brand-green) / 0.2);
}
.border-brand-green\/30{
  border-color: hsl(123 88% 33% / 0.3);
  border-color: hsl(var(--brand-green) / 0.3);
}
.border-brand-light-green{
  border-color: hsl(123 30% 92%);
  border-color: hsl(var(--brand-light-green));
}
.border-brand-yellow\/30{
  border-color: hsl(51 100% 50% / 0.3);
  border-color: hsl(var(--brand-yellow) / 0.3);
}
.border-destructive{
  border-color: hsl(0 84.2% 60.2%);
  border-color: hsl(var(--destructive));
}
.border-destructive\/50{
  border-color: hsl(0 84.2% 60.2% / 0.5);
  border-color: hsl(var(--destructive) / 0.5);
}
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / 1);
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-input{
  border-color: hsl(214.3 31.8% 91.4%);
  border-color: hsl(var(--input));
}
.border-orange-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / 1);
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}
.border-primary{
  border-color: hsl(123 88% 33%);
  border-color: hsl(var(--primary));
}
.border-purple-500{
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / 1);
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.border-sidebar-border{
  border-color: hsl(220 13% 91%);
  border-color: hsl(var(--sidebar-border));
}
.border-transparent{
  border-color: transparent;
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-l-transparent{
  border-left-color: transparent;
}
.border-t-transparent{
  border-top-color: transparent;
}
.bg-\[--color-bg\]{
  background-color: var(--color-bg);
}
.bg-accent{
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--accent));
}
.bg-background{
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--background));
}
.bg-black\/80{
  background-color: rgb(0 0 0 / 0.8);
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / 1);
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / 1);
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / 1);
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / 1);
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-border{
  background-color: hsl(214.3 31.8% 91.4%);
  background-color: hsl(var(--border));
}
.bg-brand-green{
  background-color: hsl(123 88% 33%);
  background-color: hsl(var(--brand-green));
}
.bg-brand-light-green{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--brand-light-green));
}
.bg-brand-yellow{
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--brand-yellow));
}
.bg-card{
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--card));
}
.bg-destructive{
  background-color: hsl(0 84.2% 60.2%);
  background-color: hsl(var(--destructive));
}
.bg-foreground{
  background-color: hsl(222.2 84% 4.9%);
  background-color: hsl(var(--foreground));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / 1);
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / 1);
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / 1);
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / 1);
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / 1);
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-muted{
  background-color: hsl(210 40% 96.1%);
  background-color: hsl(var(--muted));
}
.bg-muted\/50{
  background-color: hsl(210 40% 96.1% / 0.5);
  background-color: hsl(var(--muted) / 0.5);
}
.bg-orange-100{
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / 1);
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
.bg-orange-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / 1);
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.bg-orange-600{
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / 1);
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.bg-popover{
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--popover));
}
.bg-primary{
  background-color: hsl(123 88% 33%);
  background-color: hsl(var(--primary));
}
.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / 1);
  background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-200{
  --tw-bg-opacity: 1;
  background-color: rgb(233 213 255 / 1);
  background-color: rgb(233 213 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / 1);
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-600{
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / 1);
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / 1);
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / 1);
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / 1);
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-secondary{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--secondary));
}
.bg-sidebar{
  background-color: hsl(0 0% 98%);
  background-color: hsl(var(--sidebar-background));
}
.bg-sidebar-border{
  background-color: hsl(220 13% 91%);
  background-color: hsl(var(--sidebar-border));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}
.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-yellow-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / 1);
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-yellow-500{
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / 1);
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-blue-50{
  --tw-gradient-from: #eff6ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 246 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500{
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600{
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-50{
  --tw-gradient-from: #fff7ed var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 247 237 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-50{
  --tw-gradient-from: #faf5ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(250 245 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500{
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue-600{
  --tw-gradient-to: #2563eb var(--tw-gradient-to-position);
}
.to-indigo-50{
  --tw-gradient-to: #eef2ff var(--tw-gradient-to-position);
}
.to-pink-50{
  --tw-gradient-to: #fdf2f8 var(--tw-gradient-to-position);
}
.to-pink-500{
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-pink-600{
  --tw-gradient-to: #db2777 var(--tw-gradient-to-position);
}
.to-purple-600{
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.to-red-50{
  --tw-gradient-to: #fef2f2 var(--tw-gradient-to-position);
}
.bg-clip-text{
  -webkit-background-clip: text;
          background-clip: text;
}
.bg-top{
  background-position: top;
}
.fill-current{
  fill: currentColor;
}
.p-0{
  padding: 0px;
}
.p-1{
  padding: 0.25rem;
}
.p-1\.5{
  padding: 0.375rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.p-\[1px\]{
  padding: 1px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pl-2\.5{
  padding-left: 0.625rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-8{
  padding-left: 2rem;
}
.pr-2{
  padding-right: 0.5rem;
}
.pr-2\.5{
  padding-right: 0.625rem;
}
.pr-8{
  padding-right: 2rem;
}
.pt-0{
  padding-top: 0px;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-8{
  padding-top: 2rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-middle{
  vertical-align: middle;
}
.font-heading{
  font-family: Poppins, sans-serif;
}
.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[0\.8rem\]{
  font-size: 0.8rem;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.tabular-nums{
  --tw-numeric-spacing: tabular-nums;
  font-feature-settings: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-none{
  line-height: 1;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-tight{
  letter-spacing: -0.025em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.text-accent{
  color: hsl(51 100% 50%);
  color: hsl(var(--accent));
}
.text-accent-foreground{
  color: hsl(0 0% 0%);
  color: hsl(var(--accent-foreground));
}
.text-blue-300{
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / 1);
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / 1);
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / 1);
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-800{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / 1);
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-blue-900{
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / 1);
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.text-brand-green{
  color: hsl(123 88% 33%);
  color: hsl(var(--brand-green));
}
.text-brand-light-green{
  color: hsl(123 30% 92%);
  color: hsl(var(--brand-light-green));
}
.text-brand-yellow{
  color: hsl(51 100% 50%);
  color: hsl(var(--brand-yellow));
}
.text-card-foreground{
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--card-foreground));
}
.text-current{
  color: currentColor;
}
.text-destructive{
  color: hsl(0 84.2% 60.2%);
  color: hsl(var(--destructive));
}
.text-destructive-foreground{
  color: hsl(210 40% 98%);
  color: hsl(var(--destructive-foreground));
}
.text-foreground{
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--foreground));
}
.text-foreground\/50{
  color: hsl(222.2 84% 4.9% / 0.5);
  color: hsl(var(--foreground) / 0.5);
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / 1);
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-800{
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / 1);
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-green-900{
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / 1);
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}
.text-indigo-300{
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / 1);
  color: rgb(165 180 252 / var(--tw-text-opacity, 1));
}
.text-muted-foreground{
  color: hsl(215.4 16.3% 46.9%);
  color: hsl(var(--muted-foreground));
}
.text-orange-600{
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / 1);
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-orange-700{
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / 1);
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.text-orange-900{
  --tw-text-opacity: 1;
  color: rgb(124 45 18 / 1);
  color: rgb(124 45 18 / var(--tw-text-opacity, 1));
}
.text-popover-foreground{
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--popover-foreground));
}
.text-primary{
  color: hsl(123 88% 33%);
  color: hsl(var(--primary));
}
.text-primary-foreground{
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}
.text-purple-600{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / 1);
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-purple-700{
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / 1);
  color: rgb(126 34 206 / var(--tw-text-opacity, 1));
}
.text-purple-800{
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / 1);
  color: rgb(107 33 168 / var(--tw-text-opacity, 1));
}
.text-purple-900{
  --tw-text-opacity: 1;
  color: rgb(88 28 135 / 1);
  color: rgb(88 28 135 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-800{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / 1);
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-secondary-foreground{
  color: hsl(123 88% 20%);
  color: hsl(var(--secondary-foreground));
}
.text-sidebar-foreground{
  color: hsl(240 5.3% 26.1%);
  color: hsl(var(--sidebar-foreground));
}
.text-sidebar-foreground\/70{
  color: hsl(240 5.3% 26.1% / 0.7);
  color: hsl(var(--sidebar-foreground) / 0.7);
}
.text-transparent{
  color: transparent;
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/20{
  color: rgb(255 255 255 / 0.2);
}
.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / 1);
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / 1);
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.text-yellow-800{
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.underline-offset-4{
  text-underline-offset: 4px;
}
.opacity-0{
  opacity: 0;
}
.opacity-20{
  opacity: 0.2;
}
.opacity-30{
  opacity: 0.3;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-70{
  opacity: 0.7;
}
.opacity-75{
  opacity: 0.75;
}
.opacity-90{
  opacity: 0.9;
}
.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\]{
  --tw-shadow: 0 0 0 1px hsl(var(--sidebar-border));
  --tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline{
  outline-style: solid;
}
.ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-ring{
  --tw-ring-color: hsl(var(--ring));
}
.ring-sidebar-ring{
  --tw-ring-color: hsl(var(--sidebar-ring));
}
.ring-offset-background{
  --tw-ring-offset-color: hsl(var(--background));
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[left\2c right\2c width\]{
  transition-property: left,right,width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[margin\2c opa\]{
  transition-property: margin,opa;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\2c height\2c padding\]{
  transition-property: width,height,padding;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\]{
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-1000{
  transition-duration: 1000ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-linear{
  transition-timing-function: linear;
}
@keyframes enter{

  from{
    opacity: 1;
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit{

  to{
    opacity: 1;
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.animate-in{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.fade-in-0{
  --tw-enter-opacity: 0;
}
.fade-in-80{
  --tw-enter-opacity: 0.8;
}
.zoom-in-95{
  --tw-enter-scale: .95;
}
.duration-1000{
  animation-duration: 1000ms;
}
.duration-200{
  animation-duration: 200ms;
}
.duration-300{
  animation-duration: 300ms;
}
.ease-in-out{
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-linear{
  animation-timing-function: linear;
}
.text-brand-green {
    color: hsl(123 88% 33%);
    color: hsl(var(--brand-green));
  }
.text-brand-yellow {
    color: hsl(51 100% 50%);
    color: hsl(var(--brand-yellow));
  }
.bg-brand-green {
    background-color: hsl(123 88% 33%);
    background-color: hsl(var(--brand-green));
  }
.bg-brand-yellow {
    background-color: hsl(51 100% 50%);
    background-color: hsl(var(--brand-yellow));
  }
.bg-brand-light-green {
    background-color: hsl(123 30% 92%);
    background-color: hsl(var(--brand-light-green));
  }
.border-brand-green {
    border-color: hsl(123 88% 33%);
    border-color: hsl(var(--brand-green));
  }
.gradient-brand {
    background: linear-gradient(135deg, hsl(123 88% 33%) 0%, hsl(51 100% 50%) 100%);
    background: linear-gradient(135deg, hsl(var(--brand-green)) 0%, hsl(var(--brand-yellow)) 100%);
  }
.gradient-brand-soft {
    background: linear-gradient(135deg, hsl(123 30% 92%) 0%, hsl(123 50% 95%) 100%);
    background: linear-gradient(135deg, hsl(var(--brand-light-green)) 0%, hsl(123 50% 95%) 100%);
  }

/* Definition of the design system. All colors, gradients, fonts, etc should be defined here. */

/* Custom utility classes */

.file\:border-0::file-selector-button{
  border-width: 0px;
}

.file\:bg-transparent::file-selector-button{
  background-color: transparent;
}

.file\:text-sm::file-selector-button{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.file\:font-medium::file-selector-button{
  font-weight: 500;
}

.file\:text-foreground::file-selector-button{
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--foreground));
}

.placeholder\:text-muted-foreground::placeholder{
  color: hsl(215.4 16.3% 46.9%);
  color: hsl(var(--muted-foreground));
}

.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}

.after\:-inset-2::after{
  content: var(--tw-content);
  inset: -0.5rem;
}

.after\:inset-y-0::after{
  content: var(--tw-content);
  top: 0px;
  bottom: 0px;
}

.after\:left-1\/2::after{
  content: var(--tw-content);
  left: 50%;
}

.after\:w-1::after{
  content: var(--tw-content);
  width: 0.25rem;
}

.after\:w-\[2px\]::after{
  content: var(--tw-content);
  width: 2px;
}

.after\:-translate-x-1\/2::after{
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.first\:rounded-l-md:first-child{
  border-top-left-radius: calc(0.75rem - 2px);
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(0.75rem - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}

.first\:border-l:first-child{
  border-left-width: 1px;
}

.last\:rounded-r-md:last-child{
  border-top-right-radius: calc(0.75rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.75rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

.focus-within\:relative:focus-within{
  position: relative;
}

.focus-within\:z-20:focus-within{
  z-index: 20;
}

.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-blue-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / 1);
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.hover\:border-purple-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(216 180 254 / 1);
  border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}

.hover\:bg-accent:hover{
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--accent));
}

.hover\:bg-blue-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / 1);
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / 1);
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-brand-dark-green:hover{
  background-color: hsl(123 88% 20%);
  background-color: hsl(var(--brand-dark-green));
}

.hover\:bg-brand-light-green:hover{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--brand-light-green));
}

.hover\:bg-destructive\/80:hover{
  background-color: hsl(0 84.2% 60.2% / 0.8);
  background-color: hsl(var(--destructive) / 0.8);
}

.hover\:bg-destructive\/90:hover{
  background-color: hsl(0 84.2% 60.2% / 0.9);
  background-color: hsl(var(--destructive) / 0.9);
}

.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / 1);
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}

.hover\:bg-muted:hover{
  background-color: hsl(210 40% 96.1%);
  background-color: hsl(var(--muted));
}

.hover\:bg-muted\/50:hover{
  background-color: hsl(210 40% 96.1% / 0.5);
  background-color: hsl(var(--muted) / 0.5);
}

.hover\:bg-orange-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(194 65 12 / 1);
  background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary:hover{
  background-color: hsl(123 88% 33%);
  background-color: hsl(var(--primary));
}

.hover\:bg-primary\/80:hover{
  background-color: hsl(123 88% 33% / 0.8);
  background-color: hsl(var(--primary) / 0.8);
}

.hover\:bg-primary\/90:hover{
  background-color: hsl(123 88% 33% / 0.9);
  background-color: hsl(var(--primary) / 0.9);
}

.hover\:bg-purple-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / 1);
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / 1);
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.hover\:bg-secondary:hover{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--secondary));
}

.hover\:bg-secondary\/80:hover{
  background-color: hsl(123 30% 92% / 0.8);
  background-color: hsl(var(--secondary) / 0.8);
}

.hover\:bg-sidebar-accent:hover{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--sidebar-accent));
}

.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:text-accent-foreground:hover{
  color: hsl(0 0% 0%);
  color: hsl(var(--accent-foreground));
}

.hover\:text-blue-400:hover{
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / 1);
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.hover\:text-blue-600:hover{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / 1);
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.hover\:text-brand-green:hover{
  color: hsl(123 88% 33%);
  color: hsl(var(--brand-green));
}

.hover\:text-foreground:hover{
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--foreground));
}

.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.hover\:text-muted-foreground:hover{
  color: hsl(215.4 16.3% 46.9%);
  color: hsl(var(--muted-foreground));
}

.hover\:text-primary-foreground:hover{
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}

.hover\:text-purple-600:hover{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / 1);
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}

.hover\:text-sidebar-accent-foreground:hover{
  color: hsl(123 88% 20%);
  color: hsl(var(--sidebar-accent-foreground));
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover{
  text-decoration-line: underline;
}

.hover\:opacity-100:hover{
  opacity: 1;
}

.hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\]:hover{
  --tw-shadow: 0 0 0 1px hsl(var(--sidebar-accent));
  --tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:text-brand-green:hover {
    color: hsl(123 88% 33%);
    color: hsl(var(--brand-green));
  }

.hover\:bg-brand-light-green:hover {
    background-color: hsl(123 30% 92%);
    background-color: hsl(var(--brand-light-green));
  }

.hover\:after\:bg-sidebar-border:hover::after{
  content: var(--tw-content);
  background-color: hsl(220 13% 91%);
  background-color: hsl(var(--sidebar-border));
}

.focus\:bg-accent:focus{
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--accent));
}

.focus\:bg-primary:focus{
  background-color: hsl(123 88% 33%);
  background-color: hsl(var(--primary));
}

.focus\:text-accent-foreground:focus{
  color: hsl(0 0% 0%);
  color: hsl(var(--accent-foreground));
}

.focus\:text-primary-foreground:focus{
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}

.focus\:opacity-100:focus{
  opacity: 1;
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-ring:focus{
  --tw-ring-color: hsl(var(--ring));
}

.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}

.focus-visible\:outline-none:focus-visible{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus-visible\:ring-1:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-2:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-ring:focus-visible{
  --tw-ring-color: hsl(var(--ring));
}

.focus-visible\:ring-sidebar-ring:focus-visible{
  --tw-ring-color: hsl(var(--sidebar-ring));
}

.focus-visible\:ring-offset-1:focus-visible{
  --tw-ring-offset-width: 1px;
}

.focus-visible\:ring-offset-2:focus-visible{
  --tw-ring-offset-width: 2px;
}

.focus-visible\:ring-offset-background:focus-visible{
  --tw-ring-offset-color: hsl(var(--background));
}

.active\:bg-sidebar-accent:active{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--sidebar-accent));
}

.active\:text-sidebar-accent-foreground:active{
  color: hsl(123 88% 20%);
  color: hsl(var(--sidebar-accent-foreground));
}

.disabled\:pointer-events-none:disabled{
  pointer-events: none;
}

.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled{
  opacity: 0.5;
}

.group\/menu-item:focus-within .group-focus-within\/menu-item\:opacity-100{
  opacity: 1;
}

.group\/menu-item:hover .group-hover\/menu-item\:opacity-100{
  opacity: 1;
}

.group:hover .group-hover\:opacity-100{
  opacity: 1;
}

.group.destructive .group-\[\.destructive\]\:border-muted\/40{
  border-color: hsl(210 40% 96.1% / 0.4);
  border-color: hsl(var(--muted) / 0.4);
}

.group.toaster .group-\[\.toaster\]\:border-border{
  border-color: hsl(214.3 31.8% 91.4%);
  border-color: hsl(var(--border));
}

.group.toast .group-\[\.toast\]\:bg-muted{
  background-color: hsl(210 40% 96.1%);
  background-color: hsl(var(--muted));
}

.group.toast .group-\[\.toast\]\:bg-primary{
  background-color: hsl(123 88% 33%);
  background-color: hsl(var(--primary));
}

.group.toaster .group-\[\.toaster\]\:bg-background{
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--background));
}

.group.destructive .group-\[\.destructive\]\:text-red-300{
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / 1);
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}

.group.toast .group-\[\.toast\]\:text-muted-foreground{
  color: hsl(215.4 16.3% 46.9%);
  color: hsl(var(--muted-foreground));
}

.group.toast .group-\[\.toast\]\:text-primary-foreground{
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}

.group.toaster .group-\[\.toaster\]\:text-foreground{
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--foreground));
}

.group.toaster .group-\[\.toaster\]\:shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group.destructive .group-\[\.destructive\]\:hover\:border-destructive\/30:hover{
  border-color: hsl(0 84.2% 60.2% / 0.3);
  border-color: hsl(var(--destructive) / 0.3);
}

.group.destructive .group-\[\.destructive\]\:hover\:bg-destructive:hover{
  background-color: hsl(0 84.2% 60.2%);
  background-color: hsl(var(--destructive));
}

.group.destructive .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover{
  color: hsl(210 40% 98%);
  color: hsl(var(--destructive-foreground));
}

.group.destructive .group-\[\.destructive\]\:hover\:text-red-50:hover{
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / 1);
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus{
  --tw-ring-color: hsl(var(--destructive));
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus{
  --tw-ring-offset-color: #dc2626;
}

.peer\/menu-button:hover ~ .peer-hover\/menu-button\:text-sidebar-accent-foreground{
  color: hsl(123 88% 20%);
  color: hsl(var(--sidebar-accent-foreground));
}

.peer:disabled ~ .peer-disabled\:cursor-not-allowed{
  cursor: not-allowed;
}

.peer:disabled ~ .peer-disabled\:opacity-70{
  opacity: 0.7;
}

.has-\[\[data-variant\=inset\]\]\:bg-sidebar:has([data-variant=inset]){
  background-color: hsl(0 0% 98%);
  background-color: hsl(var(--sidebar-background));
}

.has-\[\:disabled\]\:opacity-50:has(:disabled){
  opacity: 0.5;
}

.group\/menu-item:has([data-sidebar=menu-action]) .group-has-\[\[data-sidebar\=menu-action\]\]\/menu-item\:pr-8{
  padding-right: 2rem;
}

.aria-disabled\:pointer-events-none[aria-disabled="true"]{
  pointer-events: none;
}

.aria-disabled\:opacity-50[aria-disabled="true"]{
  opacity: 0.5;
}

.aria-selected\:bg-accent[aria-selected="true"]{
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--accent));
}

.aria-selected\:bg-accent\/50[aria-selected="true"]{
  background-color: hsl(51 100% 50% / 0.5);
  background-color: hsl(var(--accent) / 0.5);
}

.aria-selected\:text-accent-foreground[aria-selected="true"]{
  color: hsl(0 0% 0%);
  color: hsl(var(--accent-foreground));
}

.aria-selected\:text-muted-foreground[aria-selected="true"]{
  color: hsl(215.4 16.3% 46.9%);
  color: hsl(var(--muted-foreground));
}

.aria-selected\:opacity-100[aria-selected="true"]{
  opacity: 1;
}

.aria-selected\:opacity-30[aria-selected="true"]{
  opacity: 0.3;
}

.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"]{
  pointer-events: none;
}

.data-\[disabled\]\:pointer-events-none[data-disabled]{
  pointer-events: none;
}

.data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction="vertical"]{
  height: 1px;
}

.data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction="vertical"]{
  width: 100%;
}

.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"]{
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[side\=left\]\:-translate-x-1[data-side="left"]{
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[side\=right\]\:translate-x-1[data-side="right"]{
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[side\=top\]\:-translate-y-1[data-side="top"]{
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[state\=checked\]\:translate-x-5[data-state="checked"]{
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"]{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[swipe\=cancel\]\:translate-x-0[data-swipe="cancel"]{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe="end"]{
  --tw-translate-x: var(--radix-toast-swipe-end-x);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe="move"]{
  --tw-translate-x: var(--radix-toast-swipe-move-x);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes accordion-up{

  from{
    height: var(--radix-accordion-content-height);
  }

  to{
    height: 0;
  }
}

.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"]{
  animation: accordion-up 0.2s ease-out;
}

@keyframes accordion-down{

  from{
    height: 0;
  }

  to{
    height: var(--radix-accordion-content-height);
  }
}

.data-\[state\=open\]\:animate-accordion-down[data-state="open"]{
  animation: accordion-down 0.2s ease-out;
}

.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction="vertical"]{
  flex-direction: column;
}

.data-\[active\=true\]\:bg-sidebar-accent[data-active="true"]{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--sidebar-accent));
}

.data-\[active\]\:bg-accent\/50[data-active]{
  background-color: hsl(51 100% 50% / 0.5);
  background-color: hsl(var(--accent) / 0.5);
}

.data-\[selected\=\'true\'\]\:bg-accent[data-selected='true']{
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--accent));
}

.data-\[state\=active\]\:bg-background[data-state="active"]{
  background-color: hsl(0 0% 100%);
  background-color: hsl(var(--background));
}

.data-\[state\=checked\]\:bg-primary[data-state="checked"]{
  background-color: hsl(123 88% 33%);
  background-color: hsl(var(--primary));
}

.data-\[state\=on\]\:bg-accent[data-state="on"]{
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--accent));
}

.data-\[state\=open\]\:bg-accent[data-state="open"]{
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--accent));
}

.data-\[state\=open\]\:bg-accent\/50[data-state="open"]{
  background-color: hsl(51 100% 50% / 0.5);
  background-color: hsl(var(--accent) / 0.5);
}

.data-\[state\=open\]\:bg-secondary[data-state="open"]{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--secondary));
}

.data-\[state\=selected\]\:bg-muted[data-state="selected"]{
  background-color: hsl(210 40% 96.1%);
  background-color: hsl(var(--muted));
}

.data-\[state\=unchecked\]\:bg-input[data-state="unchecked"]{
  background-color: hsl(214.3 31.8% 91.4%);
  background-color: hsl(var(--input));
}

.data-\[active\=true\]\:font-medium[data-active="true"]{
  font-weight: 500;
}

.data-\[active\=true\]\:text-sidebar-accent-foreground[data-active="true"]{
  color: hsl(123 88% 20%);
  color: hsl(var(--sidebar-accent-foreground));
}

.data-\[selected\=true\]\:text-accent-foreground[data-selected="true"]{
  color: hsl(0 0% 0%);
  color: hsl(var(--accent-foreground));
}

.data-\[state\=active\]\:text-foreground[data-state="active"]{
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--foreground));
}

.data-\[state\=checked\]\:text-primary-foreground[data-state="checked"]{
  color: hsl(0 0% 98%);
  color: hsl(var(--primary-foreground));
}

.data-\[state\=on\]\:text-accent-foreground[data-state="on"]{
  color: hsl(0 0% 0%);
  color: hsl(var(--accent-foreground));
}

.data-\[state\=open\]\:text-accent-foreground[data-state="open"]{
  color: hsl(0 0% 0%);
  color: hsl(var(--accent-foreground));
}

.data-\[state\=open\]\:text-muted-foreground[data-state="open"]{
  color: hsl(215.4 16.3% 46.9%);
  color: hsl(var(--muted-foreground));
}

.data-\[disabled\=true\]\:opacity-50[data-disabled="true"]{
  opacity: 0.5;
}

.data-\[disabled\]\:opacity-50[data-disabled]{
  opacity: 0.5;
}

.data-\[state\=open\]\:opacity-100[data-state="open"]{
  opacity: 1;
}

.data-\[state\=active\]\:shadow-sm[data-state="active"]{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.data-\[swipe\=move\]\:transition-none[data-swipe="move"]{
  transition-property: none;
}

.data-\[state\=closed\]\:duration-300[data-state="closed"]{
  transition-duration: 300ms;
}

.data-\[state\=open\]\:duration-500[data-state="open"]{
  transition-duration: 500ms;
}

.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}

.data-\[state\=open\]\:animate-in[data-state="open"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}

.data-\[state\=visible\]\:animate-in[data-state="visible"]{
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}

.data-\[motion\^\=to-\]\:animate-out[data-motion^="to-"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}

.data-\[state\=closed\]\:animate-out[data-state="closed"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}

.data-\[state\=hidden\]\:animate-out[data-state="hidden"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}

.data-\[swipe\=end\]\:animate-out[data-swipe="end"]{
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}

.data-\[motion\^\=from-\]\:fade-in[data-motion^="from-"]{
  --tw-enter-opacity: 0;
}

.data-\[motion\^\=to-\]\:fade-out[data-motion^="to-"]{
  --tw-exit-opacity: 0;
}

.data-\[state\=closed\]\:fade-out-0[data-state="closed"]{
  --tw-exit-opacity: 0;
}

.data-\[state\=closed\]\:fade-out-80[data-state="closed"]{
  --tw-exit-opacity: 0.8;
}

.data-\[state\=hidden\]\:fade-out[data-state="hidden"]{
  --tw-exit-opacity: 0;
}

.data-\[state\=open\]\:fade-in-0[data-state="open"]{
  --tw-enter-opacity: 0;
}

.data-\[state\=visible\]\:fade-in[data-state="visible"]{
  --tw-enter-opacity: 0;
}

.data-\[state\=closed\]\:zoom-out-95[data-state="closed"]{
  --tw-exit-scale: .95;
}

.data-\[state\=open\]\:zoom-in-90[data-state="open"]{
  --tw-enter-scale: .9;
}

.data-\[state\=open\]\:zoom-in-95[data-state="open"]{
  --tw-enter-scale: .95;
}

.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion="from-end"]{
  --tw-enter-translate-x: 13rem;
}

.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion="from-start"]{
  --tw-enter-translate-x: -13rem;
}

.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion="to-end"]{
  --tw-exit-translate-x: 13rem;
}

.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion="to-start"]{
  --tw-exit-translate-x: -13rem;
}

.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"]{
  --tw-enter-translate-y: -0.5rem;
}

.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"]{
  --tw-enter-translate-x: 0.5rem;
}

.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"]{
  --tw-enter-translate-x: -0.5rem;
}

.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"]{
  --tw-enter-translate-y: 0.5rem;
}

.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"]{
  --tw-exit-translate-y: 100%;
}

.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"]{
  --tw-exit-translate-x: -100%;
}

.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"]{
  --tw-exit-translate-x: -50%;
}

.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"]{
  --tw-exit-translate-x: 100%;
}

.data-\[state\=closed\]\:slide-out-to-right-full[data-state="closed"]{
  --tw-exit-translate-x: 100%;
}

.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"]{
  --tw-exit-translate-y: -100%;
}

.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state="closed"]{
  --tw-exit-translate-y: -48%;
}

.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"]{
  --tw-enter-translate-y: 100%;
}

.data-\[state\=open\]\:slide-in-from-left[data-state="open"]{
  --tw-enter-translate-x: -100%;
}

.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"]{
  --tw-enter-translate-x: -50%;
}

.data-\[state\=open\]\:slide-in-from-right[data-state="open"]{
  --tw-enter-translate-x: 100%;
}

.data-\[state\=open\]\:slide-in-from-top[data-state="open"]{
  --tw-enter-translate-y: -100%;
}

.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state="open"]{
  --tw-enter-translate-y: -48%;
}

.data-\[state\=open\]\:slide-in-from-top-full[data-state="open"]{
  --tw-enter-translate-y: -100%;
}

.data-\[state\=closed\]\:duration-300[data-state="closed"]{
  animation-duration: 300ms;
}

.data-\[state\=open\]\:duration-500[data-state="open"]{
  animation-duration: 500ms;
}

.data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  left: 0px;
}

.data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  height: 0.25rem;
}

.data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  width: 100%;
}

.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction="vertical"]::after{
  content: var(--tw-content);
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.data-\[state\=open\]\:hover\:bg-sidebar-accent:hover[data-state="open"]{
  background-color: hsl(123 30% 92%);
  background-color: hsl(var(--sidebar-accent));
}

.data-\[state\=open\]\:hover\:text-sidebar-accent-foreground:hover[data-state="open"]{
  color: hsl(123 88% 20%);
  color: hsl(var(--sidebar-accent-foreground));
}

.group[data-collapsible="offcanvas"] .group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\]{
  left: calc(var(--sidebar-width) * -1);
}

.group[data-collapsible="offcanvas"] .group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\]{
  right: calc(var(--sidebar-width) * -1);
}

.group[data-side="left"] .group-data-\[side\=left\]\:-right-4{
  right: -1rem;
}

.group[data-side="right"] .group-data-\[side\=right\]\:left-0{
  left: 0px;
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:-mt-8{
  margin-top: -2rem;
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:hidden{
  display: none;
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:\!size-8{
  width: 2rem !important;
  height: 2rem !important;
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:w-\[--sidebar-width-icon\]{
  width: var(--sidebar-width-icon);
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)\)\]{
  width: calc(var(--sidebar-width-icon) + 1rem);
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)_\+2px\)\]{
  width: calc(var(--sidebar-width-icon) + 1rem + 2px);
}

.group[data-collapsible="offcanvas"] .group-data-\[collapsible\=offcanvas\]\:w-0{
  width: 0px;
}

.group[data-collapsible="offcanvas"] .group-data-\[collapsible\=offcanvas\]\:translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group[data-side="right"] .group-data-\[side\=right\]\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group[data-state="open"] .group-data-\[state\=open\]\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:overflow-hidden{
  overflow: hidden;
}

.group[data-variant="floating"] .group-data-\[variant\=floating\]\:rounded-lg{
  border-radius: 0.75rem;
  border-radius: var(--radius);
}

.group[data-variant="floating"] .group-data-\[variant\=floating\]\:border{
  border-width: 1px;
}

.group[data-side="left"] .group-data-\[side\=left\]\:border-r{
  border-right-width: 1px;
}

.group[data-side="right"] .group-data-\[side\=right\]\:border-l{
  border-left-width: 1px;
}

.group[data-variant="floating"] .group-data-\[variant\=floating\]\:border-sidebar-border{
  border-color: hsl(220 13% 91%);
  border-color: hsl(var(--sidebar-border));
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:\!p-0{
  padding: 0px !important;
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:\!p-2{
  padding: 0.5rem !important;
}

.group[data-collapsible="icon"] .group-data-\[collapsible\=icon\]\:opacity-0{
  opacity: 0;
}

.group[data-variant="floating"] .group-data-\[variant\=floating\]\:shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group[data-collapsible="offcanvas"] .group-data-\[collapsible\=offcanvas\]\:after\:left-full::after{
  content: var(--tw-content);
  left: 100%;
}

.group[data-collapsible="offcanvas"] .group-data-\[collapsible\=offcanvas\]\:hover\:bg-sidebar:hover{
  background-color: hsl(0 0% 98%);
  background-color: hsl(var(--sidebar-background));
}

.peer\/menu-button[data-size="default"] ~ .peer-data-\[size\=default\]\/menu-button\:top-1\.5{
  top: 0.375rem;
}

.peer\/menu-button[data-size="lg"] ~ .peer-data-\[size\=lg\]\/menu-button\:top-2\.5{
  top: 0.625rem;
}

.peer\/menu-button[data-size="sm"] ~ .peer-data-\[size\=sm\]\/menu-button\:top-1{
  top: 0.25rem;
}

.peer[data-variant="inset"] ~ .peer-data-\[variant\=inset\]\:min-h-\[calc\(100svh-theme\(spacing\.4\)\)\]{
  min-height: calc(100svh - 1rem);
}

.peer\/menu-button[data-active="true"] ~ .peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground{
  color: hsl(123 88% 20%);
  color: hsl(var(--sidebar-accent-foreground));
}

.dark\:border-destructive:is(.dark *){
  border-color: hsl(0 84.2% 60.2%);
  border-color: hsl(var(--destructive));
}

@media (min-width: 640px){

  .sm\:bottom-0{
    bottom: 0px;
  }

  .sm\:right-0{
    right: 0px;
  }

  .sm\:top-auto{
    top: auto;
  }

  .sm\:mt-0{
    margin-top: 0px;
  }

  .sm\:flex{
    display: flex;
  }

  .sm\:w-auto{
    width: auto;
  }

  .sm\:max-w-md{
    max-width: 28rem;
  }

  .sm\:max-w-sm{
    max-width: 24rem;
  }

  .sm\:flex-row{
    flex-direction: row;
  }

  .sm\:flex-col{
    flex-direction: column;
  }

  .sm\:justify-end{
    justify-content: flex-end;
  }

  .sm\:gap-2\.5{
    gap: 0.625rem;
  }

  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .sm\:rounded-lg{
    border-radius: 0.75rem;
    border-radius: var(--radius);
  }

  .sm\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:text-left{
    text-align: left;
  }

  .sm\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state="open"]{
    --tw-enter-translate-y: 100%;
  }
}

@media (min-width: 768px){

  .md\:absolute{
    position: absolute;
  }

  .md\:-bottom-2{
    bottom: -0.5rem;
  }

  .md\:-left-2{
    left: -0.5rem;
  }

  .md\:-left-3{
    left: -0.75rem;
  }

  .md\:-right-2{
    right: -0.5rem;
  }

  .md\:-top-2{
    top: -0.5rem;
  }

  .md\:bottom-2{
    bottom: 0.5rem;
  }

  .md\:bottom-20{
    bottom: 5rem;
  }

  .md\:bottom-40{
    bottom: 10rem;
  }

  .md\:left-10{
    left: 2.5rem;
  }

  .md\:left-20{
    left: 5rem;
  }

  .md\:right-10{
    right: 2.5rem;
  }

  .md\:right-20{
    right: 5rem;
  }

  .md\:top-20{
    top: 5rem;
  }

  .md\:top-40{
    top: 10rem;
  }

  .md\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .md\:mb-12{
    margin-bottom: 3rem;
  }

  .md\:mb-3{
    margin-bottom: 0.75rem;
  }

  .md\:mb-6{
    margin-bottom: 1.5rem;
  }

  .md\:mb-8{
    margin-bottom: 2rem;
  }

  .md\:mr-2{
    margin-right: 0.5rem;
  }

  .md\:mt-0{
    margin-top: 0px;
  }

  .md\:block{
    display: block;
  }

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }

  .md\:h-10{
    height: 2.5rem;
  }

  .md\:h-12{
    height: 3rem;
  }

  .md\:h-14{
    height: 3.5rem;
  }

  .md\:h-16{
    height: 4rem;
  }

  .md\:h-2{
    height: 0.5rem;
  }

  .md\:h-3{
    height: 0.75rem;
  }

  .md\:h-4{
    height: 1rem;
  }

  .md\:h-5{
    height: 1.25rem;
  }

  .md\:h-6{
    height: 1.5rem;
  }

  .md\:w-10{
    width: 2.5rem;
  }

  .md\:w-12{
    width: 3rem;
  }

  .md\:w-14{
    width: 3.5rem;
  }

  .md\:w-16{
    width: 4rem;
  }

  .md\:w-2{
    width: 0.5rem;
  }

  .md\:w-3{
    width: 0.75rem;
  }

  .md\:w-4{
    width: 1rem;
  }

  .md\:w-5{
    width: 1.25rem;
  }

  .md\:w-6{
    width: 1.5rem;
  }

  .md\:w-8{
    width: 2rem;
  }

  .md\:w-\[var\(--radix-navigation-menu-viewport-width\)\]{
    width: var(--radix-navigation-menu-viewport-width);
  }

  .md\:w-auto{
    width: auto;
  }

  .md\:max-w-\[420px\]{
    max-width: 420px;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:gap-2{
    gap: 0.5rem;
  }

  .md\:gap-3{
    gap: 0.75rem;
  }

  .md\:gap-4{
    gap: 1rem;
  }

  .md\:gap-8{
    gap: 2rem;
  }

  .md\:space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }

  .md\:space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }

  .md\:space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .md\:rounded-2xl{
    border-radius: 1rem;
  }

  .md\:rounded-xl{
    border-radius: 0.75rem;
  }

  .md\:p-2{
    padding: 0.5rem;
  }

  .md\:p-3{
    padding: 0.75rem;
  }

  .md\:p-4{
    padding: 1rem;
  }

  .md\:p-6{
    padding: 1.5rem;
  }

  .md\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:pb-3{
    padding-bottom: 0.75rem;
  }

  .md\:pt-4{
    padding-top: 1rem;
  }

  .md\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:opacity-0{
    opacity: 0;
  }

  .after\:md\:hidden::after{
    content: var(--tw-content);
    display: none;
  }

  .peer[data-variant="inset"] ~ .md\:peer-data-\[variant\=inset\]\:m-2{
    margin: 0.5rem;
  }

  .peer[data-state="collapsed"][data-variant="inset"] ~ .md\:peer-data-\[state\=collapsed\]\:peer-data-\[variant\=inset\]\:ml-2{
    margin-left: 0.5rem;
  }

  .peer[data-variant="inset"] ~ .md\:peer-data-\[variant\=inset\]\:ml-0{
    margin-left: 0px;
  }

  .peer[data-variant="inset"] ~ .md\:peer-data-\[variant\=inset\]\:rounded-xl{
    border-radius: 0.75rem;
  }

  .peer[data-variant="inset"] ~ .md\:peer-data-\[variant\=inset\]\:shadow{
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media (min-width: 1024px){

  .lg\:-bottom-4{
    bottom: -1rem;
  }

  .lg\:-left-4{
    left: -1rem;
  }

  .lg\:-left-6{
    left: -1.5rem;
  }

  .lg\:-right-4{
    right: -1rem;
  }

  .lg\:-top-4{
    top: -1rem;
  }

  .lg\:order-1{
    order: 1;
  }

  .lg\:order-2{
    order: 2;
  }

  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .lg\:mb-16{
    margin-bottom: 4rem;
  }

  .lg\:mt-0{
    margin-top: 0px;
  }

  .lg\:h-4{
    height: 1rem;
  }

  .lg\:h-5{
    height: 1.25rem;
  }

  .lg\:h-6{
    height: 1.5rem;
  }

  .lg\:w-12{
    width: 3rem;
  }

  .lg\:w-16{
    width: 4rem;
  }

  .lg\:w-4{
    width: 1rem;
  }

  .lg\:w-5{
    width: 1.25rem;
  }

  .lg\:w-6{
    width: 1.5rem;
  }

  .lg\:max-w-none{
    max-width: none;
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:justify-start{
    justify-content: flex-start;
  }

  .lg\:gap-12{
    gap: 3rem;
  }

  .lg\:gap-4{
    gap: 1rem;
  }

  .lg\:gap-6{
    gap: 1.5rem;
  }

  .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));
  }

  .lg\:rounded-2xl{
    border-radius: 1rem;
  }

  .lg\:rounded-3xl{
    border-radius: 1.5rem;
  }

  .lg\:p-3{
    padding: 0.75rem;
  }

  .lg\:p-4{
    padding: 1rem;
  }

  .lg\:p-8{
    padding: 2rem;
  }

  .lg\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:pb-4{
    padding-bottom: 1rem;
  }

  .lg\:text-left{
    text-align: left;
  }

  .lg\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .lg\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1280px){

  .xl\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .xl\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }
}

.\[\&\:has\(\[aria-selected\]\)\]\:bg-accent:has([aria-selected]){
  background-color: hsl(51 100% 50%);
  background-color: hsl(var(--accent));
}

.first\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-l-md:has([aria-selected]):first-child{
  border-top-left-radius: calc(0.75rem - 2px);
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(0.75rem - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}

.last\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-r-md:has([aria-selected]):last-child{
  border-top-right-radius: calc(0.75rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.75rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

.\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:bg-accent\/50:has([aria-selected].day-outside){
  background-color: hsl(51 100% 50% / 0.5);
  background-color: hsl(var(--accent) / 0.5);
}

.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:rounded-r-md:has([aria-selected].day-range-end){
  border-top-right-radius: calc(0.75rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.75rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){
  padding-right: 0px;
}

.\[\&\>button\]\:hidden>button{
  display: none;
}

.\[\&\>span\:last-child\]\:truncate>span:last-child{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.\[\&\>span\]\:line-clamp-1>span{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div{
  --tw-translate-y: -3px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\[\&\>svg\]\:absolute>svg{
  position: absolute;
}

.\[\&\>svg\]\:left-4>svg{
  left: 1rem;
}

.\[\&\>svg\]\:top-4>svg{
  top: 1rem;
}

.\[\&\>svg\]\:size-3\.5>svg{
  width: 0.875rem;
  height: 0.875rem;
}

.\[\&\>svg\]\:size-4>svg{
  width: 1rem;
  height: 1rem;
}

.\[\&\>svg\]\:h-2\.5>svg{
  height: 0.625rem;
}

.\[\&\>svg\]\:h-3>svg{
  height: 0.75rem;
}

.\[\&\>svg\]\:w-2\.5>svg{
  width: 0.625rem;
}

.\[\&\>svg\]\:w-3>svg{
  width: 0.75rem;
}

.\[\&\>svg\]\:shrink-0>svg{
  flex-shrink: 0;
}

.\[\&\>svg\]\:text-destructive>svg{
  color: hsl(0 84.2% 60.2%);
  color: hsl(var(--destructive));
}

.\[\&\>svg\]\:text-foreground>svg{
  color: hsl(222.2 84% 4.9%);
  color: hsl(var(--foreground));
}

.\[\&\>svg\]\:text-muted-foreground>svg{
  color: hsl(215.4 16.3% 46.9%);
  color: hsl(var(--muted-foreground));
}

.\[\&\>svg\]\:text-sidebar-accent-foreground>svg{
  color: hsl(123 88% 20%);
  color: hsl(var(--sidebar-accent-foreground));
}

.\[\&\>svg\~\*\]\:pl-7>svg~*{
  padding-left: 1.75rem;
}

.\[\&\>tr\]\:last\:border-b-0:last-child>tr{
  border-bottom-width: 0px;
}

.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction=vertical]>div{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text{
  fill: hsl(215.4 16.3% 46.9%);
  fill: hsl(var(--muted-foreground));
}

.\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke='#ccc']{
  stroke: hsl(214.3 31.8% 91.4% / 0.5);
  stroke: hsl(var(--border) / 0.5);
}

.\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border .recharts-curve.recharts-tooltip-cursor{
  stroke: hsl(214.3 31.8% 91.4%);
  stroke: hsl(var(--border));
}

.\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke='#fff']{
  stroke: transparent;
}

.\[\&_\.recharts-layer\]\:outline-none .recharts-layer{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-polar-grid [stroke='#ccc']{
  stroke: hsl(214.3 31.8% 91.4%);
  stroke: hsl(var(--border));
}

.\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted .recharts-radial-bar-background-sector{
  fill: hsl(210 40% 96.1%);
  fill: hsl(var(--muted));
}

.\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted .recharts-rectangle.recharts-tooltip-cursor{
  fill: hsl(210 40% 96.1%);
  fill: hsl(var(--muted));
}

.\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-reference-line [stroke='#ccc']{
  stroke: hsl(214.3 31.8% 91.4%);
  stroke: hsl(var(--border));
}

.\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-sector[stroke='#fff']{
  stroke: transparent;
}

.\[\&_\.recharts-sector\]\:outline-none .recharts-sector{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.\[\&_\.recharts-surface\]\:outline-none .recharts-surface{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading]{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading]{
  font-size: 0.75rem;
  line-height: 1rem;
}

.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading]{
  font-weight: 500;
}

.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading]{
  color: hsl(215.4 16.3% 46.9%);
  color: hsl(var(--muted-foreground));
}

.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group]{
  padding-top: 0px;
}

.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg{
  height: 1.25rem;
}

.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg{
  width: 1.25rem;
}

.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input]{
  height: 3rem;
}

.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item]{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg{
  height: 1.25rem;
}

.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg{
  width: 1.25rem;
}

.\[\&_p\]\:leading-relaxed p{
  line-height: 1.625;
}

.\[\&_svg\]\:pointer-events-none svg{
  pointer-events: none;
}

.\[\&_svg\]\:size-4 svg{
  width: 1rem;
  height: 1rem;
}

.\[\&_svg\]\:shrink-0 svg{
  flex-shrink: 0;
}

.\[\&_tr\:last-child\]\:border-0 tr:last-child{
  border-width: 0px;
}

.\[\&_tr\]\:border-b tr{
  border-bottom-width: 1px;
}

[data-side=left][data-collapsible=offcanvas] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2{
  right: -0.5rem;
}

[data-side=left][data-state=collapsed] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize{
  cursor: e-resize;
}

[data-side=left] .\[\[data-side\=left\]_\&\]\:cursor-w-resize{
  cursor: w-resize;
}

[data-side=right][data-collapsible=offcanvas] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2{
  left: -0.5rem;
}

[data-side=right][data-state=collapsed] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize{
  cursor: w-resize;
}

[data-side=right] .\[\[data-side\=right\]_\&\]\:cursor-e-resize{
  cursor: e-resize;
}


header {
	display: inline-flex;
	justify-content: center;
	text-align: center;
	width: 100%;
}
header .container {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	padding: 15px 20px;
}
header .logo {
	width: 240px;
	height: 90px;
	object-fit: contain;
}
header .menu {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-left: auto;
}
header .menu a {
	text-decoration: none;
}
header .menu-item {
	margin-left: 60px;
	color: #707070;
	font-size: 22px;
	text-align: center;
	cursor: pointer;
}
header .menu-item[name=try] {
	padding: .5em 1em;
	color: #FFF;
	background-color: #00A43D;
	border-radius: 12px;
}



@media only screen and (max-width: 800px) {
	header .container {
		padding: 8px 12px;
	}
	header .logo {
		width: 200px;
		height: 75px;
	}
	header .menu-item {
		display: none;
	}
	header .menu-item[name=try] {
		display: inline-block;
		margin-left: 0;
	}
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
footer {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: #00A43D;
}
footer .container {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0;
}
footer .copyright {
	color: #FFF;
	font-size: 12px;
	text-align: left;
}
footer .tnc-list {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	gap: 16px;
}
footer .tnc-item {
	color: #FFF;
	font-size: 12px;
	text-align: center;
}



@media only screen and (max-width: 800px) {
	footer .copyright {
		font-size: 11px;
	}
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.modal[name=login] .form {
	width: 480px;
}
.modal[name=login] button {
	margin-top: 20px;
}
.modal[name=login] .signup {
	align-self: center;
	margin-top: 30px;
	color: #4e4e4e;
	font-size: 16px;
	text-align: center;
	text-decoration: underline;
	cursor: pointer;
}
.modal[name=login] .forget {
	align-self: center;
	margin-top: 30px;
	color: #4e4e4e;
	font-size: 14px;
	text-align: center;
	text-decoration: underline;
	cursor: pointer;
}


@media only screen and (max-width: 800px) {
	.modal[name=login] .form .row {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding-top: 15px;
		padding-bottom: 12px;
	}
	.modal[name=login] .form .row .form-title {
		margin-bottom: 3px;
		font-size: 14px;
	}
	.modal[name=login] .form .row input,
	.modal[name=login] .form .row select {
		flex: none;
		width: 100%;
		font-size: 15px;
	}

}

@media only screen and (min-width: 481px) and (max-width: 800px) {
	
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.modal[name=login-otp] .form {
	width: 480px;
}
.modal[name=login-otp] button {
	margin-top: 20px;
}


@media only screen and (max-width: 800px) {
	.modal[name=login-otp] .form .row {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding-top: 15px;
		padding-bottom: 12px;
	}
	.modal[name=login-otp] .form .row .form-title {
		margin-bottom: 3px;
		font-size: 14px;
	}
	.modal[name=login-otp] .form .row input,
	.modal[name=login-otp] .form .row select {
		flex: none;
		width: 100%;
		font-size: 15px;
	}

}
.modal[name=signup] .form {
	width: 640px;
}
.modal[name=signup] .form .row {
	max-width: none;
}
.modal[name=signup] .form-title {
	flex-shrink: 0;
}
.modal[name=signup] .logo-row {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.modal[name=signup] .logo-row img {
	width: 160px;
	height: auto;
	margin: 0 15px;
	margin-bottom: 15px;
}
.modal[name=signup] .form .row select {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAY5aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA5LjEtYzAwMiA3OS5kYmEzZGEzYjUsIDIwMjMvMTIvMTUtMTA6NDI6MzcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyNS42IChNYWNpbnRvc2gpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0wNS0xN1QxMTo0NzozMCswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjM5MmJkZGE0LWMzMjctNDAyNC1hMTg3LTQyN2ExNGM5ZDU2YSIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjc1MjI1Mjc4LTAyNzEtNmM0MS1iODE1LWViZjY2Yzk3Y2VkYyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjU0ZDgxNTM3LWQxYTgtNDQ3MS05MzUxLTQ5ODI4OGYzYTNmOSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NTRkODE1MzctZDFhOC00NDcxLTkzNTEtNDk4Mjg4ZjNhM2Y5IiBzdEV2dDp3aGVuPSIyMDI0LTA1LTE3VDExOjQ3OjMwKzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjUuNiAoTWFjaW50b3NoKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY29udmVydGVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJmcm9tIGFwcGxpY2F0aW9uL3ZuZC5hZG9iZS5waG90b3Nob3AgdG8gaW1hZ2UvcG5nIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDozOTJiZGRhNC1jMzI3LTQwMjQtYTE4Ny00MjdhMTRjOWQ1NmEiIHN0RXZ0OndoZW49IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNS42IChNYWNpbnRvc2gpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrH56NoAAAIVSURBVHhe7ZpBTgMxDEU73AuJLtpLsOdQLCshFlyCi6GSV34kE1mdTieZLuwvPbm4Ged/Uzao0/l83kXWk2pY5QJUwyoXoBpWuQDVsMoFqIZVLkA1rHIBqmGVC1ANq1yAaljlAlTDKheguljTNB0Kn4WPwrPam4k7dTceDmovF/8VXkrRkUcNP4VX7+wIuEt3Wg9H7+wcbnOOoi9zcWWTJXCH7mrv//LOz3Hvn8DFSSNmncrHEYNDpNmngufb8zQvbytzFO0L3m8BhnwSmKnZ7X1Af+89N4fbvIWiOUPdlsAszWzvgVV3uc1b4WIZsIYqXZbADM1q58PqO9zmEjAgI9ZYZZVBntWMdi6sDg9ucykYkSFrsHKXUZ7Rs+086BIe3OY9YEjGrNHKIsOc1TPtHOgWHtzmvWBMBq3hyk3GOaOz7fPQNTy4zTVgUEat8crVALynM+1z0D08uM21YFSGbYCKG4Se3mvPw5Dw4DZ7gGEZt0Eq/wLxWr32HAwLD26zFxhXABuocgkmHhIe3GZPCKAgNliF/sPCg9vsDUEUyAa8xibhwW2OgEAKZoN6bBYe3OYoCKaANrBl0/DgNkdCQAW1wWHz8OA2R0NQBX5oeHjYN0WnaXop5e3vp9178fGt15sqvyqrGla5ANWwygWohlUuQDWscgGqYZULUA2rXIBqWOUCVMMqF6AaVrkA1bAKvoDd7hecvN10dGrBHgAAAABJRU5ErkJggg==);
	background-size: auto 15px;
	background-position: calc(100% - 5px) center;
	background-repeat: no-repeat;
}
.modal[name=signup] button {
	margin-top: 20px;
}
.modal[name=signup] .uicheckbox {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  cursor: pointer;
}
.modal[name=signup] .uicheckbox .box {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #FFF;
  background-image: none;
  background-size: auto 90%;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid #999;
  border-radius: 2px;
  transition: all ease-in-out .2s;
}
.modal[name=signup] .uicheckbox .label {
	flex: 1 1;
  vertical-align: middle;
  width: calc(100% - 16px);
  padding-left: 12px;
  padding-top: 0px;
  color: #5d5d5d;
  font-size: 14px;
  text-align: left;
  transition: all ease-in-out .2s;
  -webkit-user-select: none; /* Safari 3.1+ */ /* Firefox 2+ */ /* IE 10+ */
  user-select: none; /* Standard syntax */
}
.modal[name=signup] .uicheckbox .label a {
	font-size: inherit;
	color: #00A43E;
	text-decoration: underline;
}
.modal[name=signup] .uicheckbox.checked .box {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAA1VJREFUeNrsmz1oFEEUx0cTY4jfRFFBQQVNoYim0BR+NNFC9FcoCiIWIhYqCIpooyAIgk0EGwsRBQvFDxQEEb9ALPwCU4QIBpIInhoxISExQUSzNm/hWO92b97t3e3ubfHguMvMm99/ZmfevLcxjuOYajaTCpAKkAqQCpAKUM0CAEm3OmAvcBSY4f096fCtwADgiA0B66pFgPXAaBa8ayPZIiQVfi0wnAP+PxGSCL8aGPSBzxZhZdLgVwD9BcC7djNJ8MuAPgt4B+hJCvxiIGMJ7wAnkwC/EOhVwD8F6uMOPw/oUsC/BBrifgrMAToV8G+AaXGPA2YB7Qr4dmkb60hwOvBWAd8JzI77XWCKPL+28F2yX5g4C1APPFPA98pJYeIsQB3wUAGfAZb49R0H+FrgngK+D2gK6j/q8BOBGwr4frkXmDgLMAG4qoAfApoL9ZPvhwZZepUU4JICfgRosfGTa6dtExUzwLEKwV9QwI8BG219eeEf5ej4bJnhzyngfwGbNf6C4F0r10o4rYD/DWzT+iwE3gHGgX0lhj+ugP8D7CzGrwFOWDjbXiL4wwr4v5LvN8UK0G35rLWGDL9fVpgN/DhwIAz/Brhj6fynpJ3DgN8jM2k7+0fCmgADrFHMwEChkZaP7ZDHyjqPF+YKdD+cUgzka9BFw8e2yu5t6/NM2PtPscFHNzDf0ukm2UtsfZ0vxQbsjb2vKQbW4U0z+diGPPW6ILtYquPX+0UNcF8xwFeSrfFz1hJQr8tnl2VyyiKAASYDzxUDfSKJi1x9NhdYr/PadbkSm3IKYCRt/E4x4Luyioqp17l2O0dfZRPASAb1g2LgV7KWbJOiXucAD4BJ5bh/BP3BAuCTAuAWcBD4omj7WB5DEwUBDLAU+K4A0dgLt2QVJQEMsEqSJKWEf51dsoqaAO47N2Mlgn8PzKxE9sm2wRZlCBsUSDVWKveoabRbeYPLZR+BuZVMvmobHgoBvkdOGRNHAbQ3SNc+A4uiUH8otoM2Bfw3OVpNEgSwrd78AJZHqQIVRic1BRYvB+UlRpM0AdwbpF/tfjjEPGIkBTDA1DyvroxKEGWSLoCRgKbDA98aVfhSlcdrgV1ScGmMMjyQ/stMKkAqQCpAKkAqQDXbvwEAnJcnTWi70soAAAAASUVORK5CYII=);
}
.modal[name=signup] .uicheckbox.checked .label {
  
}


@media only screen and (max-width: 800px) {
	.modal[name=signup] .logo-row img {
		width: 120px;
	}
	.modal[name=signup] .form .row {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding-top: 15px;
		padding-bottom: 12px;
	}
	.modal[name=signup] .form .row .form-title {
		margin-bottom: 3px;
		font-size: 14px;
	}
	.modal[name=signup] .form .row input,
	.modal[name=signup] .form .row select {
		flex: none;
		width: 100%;
		font-size: 15px;
	}

}

@media only screen and (min-width: 481px) and (max-width: 800px) {
	
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {
	
}
.modal[name=forget-password] .form {
	width: 480px;
}
.modal[name=forget-password] .title {
	margin-bottom: 15px;
}
.modal[name=forget-password] .description {
	margin-bottom: 30px;
}
.modal[name=forget-password] button {
	margin-top: 20px;
}
.modal[name=subscription] .form {
	width: 560px;
}
.modal[name=subscription] .form .row {
	align-items: center;
}
.modal[name=subscription] .form .row .form-title {
	flex-shrink: 0;
	width: 150px;
	margin-right: 16px;
}
.modal[name=subscription] .signup {
	align-self: center;
	margin-top: 30px;
	color: #4e4e4e;
	font-size: 16px;
	text-align: center;
	text-decoration: underline;
	cursor: pointer;
}
.modal[name=subscription] .forget {
	align-self: center;
	margin-top: 30px;
	color: #4e4e4e;
	font-size: 14px;
	text-align: center;
	text-decoration: underline;
	cursor: pointer;
}
.modal[name=subscription] .plan-list {
	display: inline-flex;
	flex: 1 1;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	gap: 8px;
}
.modal[name=subscription] .plan-item {
	padding: .4em 1.2em;
	font-size: 16px;
	text-align: center;
	color: #00A43D;
	background-color: transparent;
	border: 1px solid #00A43D;
	border-radius: 8px;
	cursor: pointer;
	transition: all ease-in-out .2s;
}
.modal[name=subscription] .plan-item.selected {
	color: #FFF;
	background-color: #00A43D;
}
.modal[name=subscription] .subrow {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.modal[name=subscription] button {
	margin: 0;
	padding: .5em 0;
	width: 75px;
}
.modal[name=subscription] button.submit {
	align-self: center;
	width: 240px;
	margin-top: 16px;
}


@media only screen and (max-width: 800px) {
	.modal[name=subscription] .form .row {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding-top: 15px;
		padding-bottom: 12px;
	}
	.modal[name=subscription] .form .row .form-title {
		margin-bottom: 3px;
		font-size: 14px;
	}
	.modal[name=subscription] .form .row input,
	.modal[name=subscription] .form .row select {
		flex: none;
		width: 100%;
		font-size: 15px;
	}

}

@media only screen and (min-width: 481px) and (max-width: 800px) {
	
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.page-container {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.page-content {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

section {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
section .container {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	max-width: 1200px;
	padding: 45px 0;
}

h2 {
	font-size: 30px;
	margin-top: 0;
	margin-bottom: 20px;
}

h3 {
	font-size: 19px;
	margin-top: 0;
	margin-bottom: 20px;
}

p {
	font-size: 18px;
}

a {
	color: inherit;
	font-size: inherit;
}

input {
	-webkit-appearance: none;
	appearance:         none;
	display: inline-block;
  width: 100%;
  padding: 15px 12px 14px 12px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
	font-family: "Nunito Sans", sans-serif;
}

select {
	-webkit-appearance: none;
	appearance:         none;
	
}
textarea {
	-webkit-appearance: none;
	appearance:         none;
	display: inline-block;
  width: 100%;
  padding: 15px 12px 14px 12px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 14px;
	font-family: "Nunito Sans", sans-serif;
  resize: vertical;
}

button {
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */ /* Konqueror HTML */ /* Old versions of Firefox */ /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
	-webkit-appearance: none;
	appearance:         none;
	display: inline-block;
	width: auto;
	padding: .5em 1.2em;
	color: #FFF;
	font-size: 16px;
	background-color: #00A43D;
	border: none;
	border-radius: 15px;
	cursor: pointer;
}
button.load {
	color: rgba(0, 0, 0, 0) !important;
	background-image: url(/static/media/load.77d19fdb173316407067.gif);
	background-size: auto 16px;
	background-position: center;
	background-repeat: no-repeat;
  cursor: not-allowed;
}



@media only screen and (max-width: 800px) {

}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.home-screen {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.home-screen .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.home-screen .title {
	color: #707070;
	font-family: "Nunito Sans", sans-serif;
}

.home-screen section[name=top] {
	background-color: #EAF4D4;
}
.home-screen section[name=top] .container {
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
}
.home-screen section[name=top] .video {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 720px;
	height: 400px;
	border-radius: 12px;
	overflow: hidden;
}
.home-screen section[name=top] .video video {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-screen section[name=top] .video .play {
	display: inline-block;
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	width: 80px;
	height: 80px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACgCAYAAACLz2ctAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAvWSURBVHhe7Z2NmdQ2EIa5CggVZKkgUEH2KgAqyFIBUEGOCoAKsldB7irIXgWBCnIdBCog8znjw/b6R7IlW9J8eh4/vr2VZWv07oxm9OOLR0wtCXz//v2Z/OOxHHv9Ap9/0r93csYxlu7lSxxIX+X43Dh/u7i4wGcmlcCFVUkIaIDqVzkAGA6AhfMaCRACUpxPcnwRMAGruWQGQAXuhbTwvgFdSg1ewwgg76wAWTSAak4B3csVtVsoqAHkjRzXAiO0ZZGpOAAFOphSQHfIELohyADjUY7b0mAsBkAB7zeFDia25AQTfRQQr0uoZNYAqrZ7o+DVnmoJ7eJSBzgt0IqfctaKWQKofbsaPJfGKj1PDWJ2IZ6sAFTwPghNpZvZuT8YmOfXOWnELABUU/u7mtq5jWPpOmjE9zmAmDSAGrsDeG8t0ROwrh8VxGSD3MkCKPChj3clhzXnIiB/VVGA70q04afQBYcoLzkA1dz+wX5eiOZtlZFk/zApAAU+mFtoPaZ4EoA2fB+veL+SkwBQtd6f8uhrTQbwk1J5uRGueZWCk7I5gALfQYSB0Ar7euuCjr7hO4HwuO5t23fbDED1cAEeAGTaTgIY1nu91e03AZAmd6vmHrzvZiZ5dQB1NOMvmtzkIIRJvlx7xvaqAGp/DyEWpnQlgKG81fqFqwGogWVE5pnSl8DbtQLXqwAo8EHr0dlIH7zmE67inEQHkPDlRV3naaNDGBVAwpc1fPXDR4UwGoCErwj4okMYBUDCVxR8USEMDqDAh7l7GOFgKk8CGLoLGskICiDjfOUR11OjoHHCYADqCMffJprAdiWDjpgEAVDHdgEfZ7TYgBMQPg8xnWsxgDqrBWO7nMtnA766lp8FwOdLqxwCQI5yLG2FfK9fHCNcBCCdjnzJCfjki5yS2QCy3xewCfMualF/cAmAcDrY78sbnlBPf5L+4OWcwmYBKNrvSm6GFWxMlEAtAezEAC68kjeAanr/8boLM1uRwFPf0MwcABFy2VuRKOvpJQFvU+wFIMd5vRrDamYvr9gZQA04w/RytMMqWm71hlcMU+y0IZIPgJgFgQ2DmCiBKQlg11anHc2cAKTjMSVvft8jASeHxBXAo9wAm4AzUQKuErgWLXiYyjwJIKdZTYmQ349IYFILugDIsAsZmyuBG9GCr8YuHgWQ2m+u3HldQwKYNzi4e/8UgOz7kaWlEhjtCw4CSM93qdx5fUMCg33BMQAZ9yNDoSQwGBccA/BfuTtHPUI1ge1yvko/8EmfCHoBNDLT+VYEginlNzrMuJfPiN7jJdZM4SXQO0Y8BGDpoZfBuWv640P343H4NjBdYu9MmTMADTgfd6L1oO0Gk8rgRjL8YhqZ8JU/c0b6ACx9aw28ngBwTSbO/J4UkW+Gs609+gAseq2HwDc5+tOUqkAIbXmU42dfaTP/mQTO1hK3GsPCyIcvgBChOimA8AWhWiyBlhnuAnglxRe92GgOgLXI6aAshg8FtMxwF8CizS9qvwRA1YY7OdNBmc9iywl8AFDNDILPRaelADa0YfHWIiIIT+op+00AD3LD4t/hEQpA1YZ7OaNvSAfFj9aHSEQTQAiy+FnPIQFUCDFcCdnRQXGH8GFsuAlg8f2/EH3AIRnTQXGnT3I+hGMqAK30/2ICqHLcyZkOihuLVT+wBvClXIMXRhefQpvgPoFxBMUJo0tpi1MN4JVcUnT8rxbJGgCqNtxr35AOSj+P1YSQGkCYDROd6LUApIMyqQVvpS1e1gCacEBi9wHpoExC18xQOSI1gN+9Ls0485oasCkmTvE6hwZtcWFhAkKz6lsBWD8DHZQWiM8BIDrLmAFtIm0NIB2UFmaXANCMB7xVH7Dvl80pXpVU3hHAjfW+8RGU9wDQTAgmJQ1IB6WSwC0APMkfZpYiptAHHAnXmOoOiRzuCODGJrh7e2NrUCoAse/zLrF2iPY4KWvAutKGHJTPANBMEDrVPuCISS59iewjAhhN14YpuHQnkQCG4SRaKQJg0VPlCGA0dMIVXHI3iQCG4yRaSQQwmmjXLzgHL7gTpKYJXh+TeHfMEEAslQCERSaa4ISbVUwvlklgdKTYBADvpXZm1i3koAE1EI1NAorVfPqL+sKhuMR0iw7FAb5dYo8W43E4FhxDqnPLtGByO7KpAOR0rLnEBLpO14vA2XgWqMhcirnmhNSNm0onpH6Qx7D4SoxqQiq8LBOL0sFaKk6IIUdj7CdeTcnfSw4uSlpRExpzNMYkWy1KQr8DC9NNpK01oEFHY4wrLkxf61dn2NEYFHG1MB3finDwPlcTL2XZQgMadzSGAPwibfGMmxNFVIF0NEaF29qcyIwnvJYGpKMx+ctubc9mxhNeA0A6GpPwIUNrg0oEQYt/RUPsOCAdDSfw6kw/tui15IjE0oB0NLzgqxyQSiHUl4kAj/I3X9PgJceHDd4tTJ3ylMxo9t7XNBzkEr6oxkPMdDQ8hNXO2vuiGhP9wFAmmI7GbPhw4fmruqz0A5cCSEdjEXi4+E7aAFGXKvF1rR7ypKPhIazhrKOva93JddisqNg0RwNyRCMoDk+lDe57NaAFM+wLIB2NoPA9hF/GACx9R6YHD2xKtHQ0piTk/X3L/J71AVUDlm6GT6IFL8dER0fDGyzXC1rmtxdAhfAk55K37b0SCN/3SY2OhitL3vla3u+gCVYAD3IuPSiN1YBHAfFWnQz84ND92HuLlhe4SOC1yPrYzdgKwzS/lEb5Kp8fu5TMPJTAhAS+CXy9q/7GAPwohb6haCmBABJ4GPv10YA7yVx0TDCAYFmEmwTOnI/RPmD9pZUZMm4yZK6ZErgW8wufojcNmmDktrZkc6aAedm4BJ4LgFj05g+gQniSc8khGQIUTwLVwqOx4kc1ILVgvJYxUvJg38+pD8i+oBFM4lRztO/nC+BOLqBHHKehSi11Uvuh4pMmuKEFGRcsFZXw9arW/LoU6wMgItn3cnB0xEWydvN8k6rvBECMpE0mZwDVISl9qtakwJhhUgK9Y75DV3kBqBCe5MywzGQ7mMzQO+NlTBJzAKRDYpItp0o7OR7NkrwBVC2IDqaZbX2dRM9Mzo7HYgAVQjN7CpKtSQl4m966xFkaUAGEKQaE9Ion26foDPB6nzVXuvnUdjaACuFBzqXPnPaRp8W8Xl5vV0CLAFQIj3IuflMji2Q51NlpuG2snMUAsj/o0ExlZjlb4zunmqEAZH9wjvTzvWZRvy+IF9yVHSev5kuT55MDvv3YJFOf8oJowPqGuqaWTolPC+SXd5HTEdwJ6dGEHC/ODyrXJz7bWsP1wqF8QTVgQxPSM17aMuldv9jj7atSFADVMyaE6UE094miwIeHiQYgIZzb1sldFw2+6AASwuRg8n2gqPCtAiAh9G3zZPJHh281ABVCesfJsDX5IEFDLWN3i9oH7AnRHOR/WNzEGTSTDGySAUHmt33bqMV6mlUBVE2IVzSdCGGsJp1dbtARDtenWB1AhXAnZ2wQaeIl2a6NsWG+L3JvDK85rWQL+ZybAFhXgLtvhWzK2WWt4mwMPd2mAKo2ZL9wNjuLLoTJPYjWgyXaLG0OYMMkH+VvLvdcB4U7he9+ndsN3yUJABsm+Ur+5mq7uFTMWr0W65GSApDaMFYzV+Umo/WatUwOwIY2ZN8wDI+rx/Z8HjtZAFUbYkMkmGXu1u/Tqj/y4mU8H7cIr7g+btIANrThTkHk6ju3lr2GvOau1XW7RZhcWQDYAfEon+kt97f/rfwbQ2n3YfCIX0pWADZAxHAeJjdQI/4vFGg8mNrB3ejjozTvDlkC2NGIAPEgh7UJDnAuMLED77vLRuN1Mc0awGZldEUeQCzdPCOcAujQFck+FQNgRyvi3RSAsZTJDpgsAOBuctZ2fb+W4gDsaMWdfAaMOHLTjNB0GKctDrpmGxUNYAdGxBT3jSM17Qgtd6qPlGN3Ie2+GQC7QtOXVMObBpQ4Q1uuBSVgu5cDXiug+2wFuG47mAVw6Fese9xAWwJKnAEmDiR8noIUcNUTOwEZDnwGbF9zDJUMySrE//8DOwlOPFIoxmwAAAAASUVORK5CYII=);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	cursor: pointer;
	transition: all ease-in-out .2s;
}
.home-screen section[name=top] .video .play.hidden {
	opacity: 0;
	visibility: hidden;
}
.home-screen section[name=top] .detail {
	display: inline-flex;
	flex: 1 1;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	width: auto;
	margin-left: 30px;
	padding: 60px 45px;
	background-color: #FFF;
	border-radius: 12px;
}
.home-screen section[name=top] .title {
	width: 100%;
	font-size: 30px;
	font-weight: 700;
	text-align: left;
}
.home-screen section[name=top] .title img {
  width: 80px;
  height: auto;
  margin-left: 10px;
}
.home-screen section[name=top] .desc {
	width: 100%;
	margin-top: 20px;
	font-size: 20px;
	font-weight: 400;
	text-align: left;
}
.home-screen section[name=top] button {
	margin-top: 45px;
	padding: .5em 1.8em;
	font-size: 20px;
}

.home-screen section[name=how] .title {
	width: 100%;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}
.home-screen section[name=how] .block-list {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	margin-top: 45px;
}
.home-screen section[name=how] .block-item {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 300px;
	margin: 0 45px;
}
.home-screen section[name=how] .block-item img {
	width: 120px;
	height: 120px;
	object-fit: contain;
}
.home-screen section[name=how] .block-item .desc {
	width: 100%;
	margin-top: 15px;
	color: #707070;
	font-size: 16px;
	text-align: left;
}

.home-screen section[name=about] {
	background-color: #EAF4D4;
}
.home-screen section[name=about] .container {
	padding: 45px 120px;
	background-color: #FFF;
	background-image: url(/static/media/section-bg.64a50424180fe0b4b604.png);
	background-size: 100% auto;
	background-position: center top;
	background-repeat: repeat-y;
}
.home-screen section[name=about] .title {
	width: 100%;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}
.home-screen section[name=about] .paragraph {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	margin-top: 45px;
}
.home-screen section[name=about] .paragraph .text {
	flex: 1 1;
	line-height: 1.6em;
	font-size: 18px;
	text-align: left;
}
.home-screen section[name=about] .paragraph img {
	width: 480px;
	height: auto;
	margin-left: 45px;
}

.home-screen section[name=contact] {
	background-color: #EAF4D4;
}
.home-screen section[name=contact] .paragraph {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	margin-top: 45px;
}
.home-screen section[name=contact] .paragraph img {
	width: 420px;
	height: auto;
}
.home-screen section[name=contact] .detail {
	display: inline-flex;
	flex: 1 1;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	width: auto;
	margin-left: 60px;
	border-radius: 12px;
}
.home-screen section[name=contact] .title {
	width: 100%;
	font-size: 30px;
	font-weight: 700;
	text-align: left;
}
.home-screen section[name=contact] .title img {
  width: 80px;
  height: auto;
  margin-left: 10px;
}
.home-screen section[name=contact] .desc {
	width: 100%;
	margin-top: 20px;
	font-size: 20px;
	font-weight: 400;
	text-align: left;
}
.home-screen section[name=contact] .form {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	margin-top: 30px;
}
.home-screen section[name=contact] .form input {
	flex: 1 1;
	width: auto;
	height: 50px;
	font-size: 16px;
	border: 2px solid #00A43D;
	border-radius: 15px;
}
.home-screen section[name=contact] .form button {
	height: 50px;
	margin-left: 10px;
	color: #00A43D;
	background-color: #FFF;
	border: 2px solid #00A43D;
}

.home-screen button[name=title] {
	align-self: center;
	margin-bottom: 30px;
	padding: .8em 2.4em;
	font-size: 18px;
	border-radius: 20px;
}


@media only screen and (max-width: 800px) {
	.home-screen section .container {
		padding: 30px 12px;
	}
	.home-screen section[name=top] .container {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.home-screen section[name=top] .video {
		width: 100%;
		height: 240px;
	}
	.home-screen section[name=top] .detail {
		flex: none;
		width: 100%;
		margin-left: 0;
		margin-top: 30px;
		padding: 15px 20px;
	}
	.home-screen section[name=top] .title {
		text-align: center;
	}
	.home-screen section[name=top] .desc {
		font-size: 18px;
		text-align: center;
	}
	.home-screen section[name=how] .title {
		font-size: 24px;
	}
	.home-screen section[name=how] .block-list {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-top: 30px;
	}
	.home-screen section[name=how] .block-item {
		margin-bottom: 10px;
	}
	.home-screen section[name=how] .block-item img {
		width: 75px;
		height: 75px;
	}
	.home-screen section[name=how] .block-item .desc {
		text-align: center;
	}
	.home-screen section[name=about] .container {
		padding: 30px 15px;
	}
	.home-screen section[name=about] .title {
		font-size: 24px;
	}
	.home-screen section[name=about] .paragraph {
		flex-direction: column-reverse;
	}
	.home-screen section[name=about] .paragraph img {
		width: 100%;
		margin-left: 0;
		margin-bottom: 30px;
	}
	.home-screen section[name=contact] .paragraph {
		flex-direction: column;
		margin-top: 0;
	}
	.home-screen section[name=contact] .paragraph img {
		width: 100%;
	}
	.home-screen section[name=contact] .detail {
		flex: none;
		width: 100%;
		margin-left: 0;
		margin-top: 30px;
		padding: 0 10px;
	}
	.home-screen section[name=contact] .title {
		text-align: center;
	}
	.home-screen section[name=contact] .title img {
		width: 80px;
	}
	.home-screen section[name=contact] .desc {
		text-align: center;
	}
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.modal[name=restore-password] .form {
	width: 480px;
}
.modal[name=restore-password] .title {
	margin-bottom: 15px;
}
.modal[name=restore-password] .description {
	margin-bottom: 30px;
}
.modal[name=restore-password] button {
	margin-top: 20px;
}
.modal[name=subscription-payment] .form {
	width: 480px;
	align-items: center;
}
.modal[name=subscription-payment] .status {
	margin-top: 20px;
	color: var(--md-primary);
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}


@media only screen and (max-width: 800px) {
	.modal[name=subscription-payment] .form .row {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding-top: 15px;
		padding-bottom: 12px;
	}
	.modal[name=subscription-payment] .form .row .form-title {
		margin-bottom: 3px;
		font-size: 14px;
	}
	.modal[name=subscription-payment] .form .row input,
	.modal[name=subscription-payment] .form .row select {
		flex: none;
		width: 100%;
		font-size: 15px;
	}

}
.top-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 32px 32px 88px;
  width: 100%;
  background-color: #eaf4d4;
  z-index: 0;
  overflow: hidden;
}
.top-section .top-section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1228px;
  width: 100%;
}
.top-section .left-right-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 36px;
  width: 100%;
}
.top-section .left-container {
  display: flex;
  flex: 0 1 500px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 0;
}

/* heart-icon */
.top-section .heart-icon {
  position: absolute;
  right: -44px;
  top: 69px;
  width: 44px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}

.top-section .small-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  padding: 10px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  border-radius: 16px;
  background-color: #ffd926;
}
.top-section .big-title {
  margin-bottom: 8px;
  line-height: 65px;
  color: #1a1a1a;
  font-size: 48px;
  font-weight: 750;
}
.top-section .highlighted-text {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-left: -12px;
  padding: 3px 0px 3px 12px;
  max-width: 428px;
  width: 100%;
  line-height: 65px;
  color: #ffffff;
  font-size: 48px;
  font-weight: 750;
  background: linear-gradient(135deg, #00a43d 23%, #ccda00 100%);
  z-index: 0;
}
.top-section .highlighted-text .ellipse {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  border-radius: 9999px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .description {
  margin-bottom: 24px;
  max-width: 470px;
  line-height: 28px;
  color: #1a1a1a;
  font-size: 16px;
}
.top-section .button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.top-section .button-start-free-trial {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 59px;
  line-height: 27px;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 16px;
  background-color: #00a43d;
  cursor: pointer;
}
.top-section .button-start-free-trial:hover {
  background-color: #217942;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.top-section .button-watch-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 59px;
  line-height: 27px;
  color: #00a43d;
  font-size: 18px;
  font-weight: bold;
  border-radius: 16px;
  background-color: #ffffff;
  cursor: pointer;
}
.top-section .button-watch-demo:hover {
  background-color: #eaf4d4;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.top-section .right-container {
  display: flex;
  flex: 0 1 578px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  position: relative;
  margin-bottom: 56px;
  padding: 32px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.top-section .right-container .ellipse {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 9999px;
  z-index: -1;
}
.top-section .right-container .ellipse.bg-1 {
  top: -200px;
  left: -200px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .right-container .ellipse.bg-2 {
  top: -200px;
  left: -70px;
  background: radial-gradient(
    closest-side,
    rgba(255, 217, 38, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .right-container .ellipse.bg-3 {
  top: -200px;
  left: 24px;
  background: radial-gradient(
    closest-side,
    rgba(255, 217, 38, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .right-container .ellipse.bg-4 {
  top: -200px;
  right: -200px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .right-container .ellipse.bg-5 {
  top: calc(50% - 200px);
  left: -200px;
  background: radial-gradient(
    closest-side,
    rgba(0, 164, 61, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .right-container .ellipse.bg-6 {
  top: calc(50% - 200px);
  right: -200px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .right-container .ellipse.bg-7 {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(
    closest-side,
    rgba(255, 217, 38, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .right-container .ellipse.bg-8 {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(
    closest-side,
    rgba(255, 217, 38, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.top-section .title {
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
}
.top-section .tell-me-box {
  margin: 0px 8px;
  padding: 16px;
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.top-section .line {
  margin: 0px 8px;
  height: 1px;
  background-color: #f0f0f0;
}
.top-section .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0px 8px;
}
.top-section .resume-match-box {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  justify-content: center;
  align-items: center;
  padding: 24px;
  min-width: 180px;
  min-height: 118px;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.top-section .resume-match-box .score {
  line-height: 36px;
  color: #00a43d;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.top-section .resume-match-box .resume-match {
  line-height: 18px;
  color: #1a1a1a;
  font-size: 12px;
  text-align: center;
}
.top-section .application-box {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  justify-content: center;
  align-items: center;
  padding: 24px;
  min-height: 118px;
  min-width: 180px;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.top-section .application-box .number {
  line-height: 36px;
  color: #00a43d;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.top-section .application-box .application {
  line-height: 18px;
  color: #1a1a1a;
  font-size: 12px;
  text-align: center;
}
.top-section .percentage-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.top-section .interview-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-section .percentage {
  line-height: 24px;
  color: #00a43d;
  font-size: 16px;
  font-weight: bold;
}
.top-section .level-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background-color: #f0f0f0;
  overflow: hidden;
}
.top-section .level-percentage {
  width: 87%;
  height: 100%;
  border-radius: 999px;
  background: #00a43d;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 1s ease;
}
.top-section .lower-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.top-section .lower-box .box-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.top-section .lower-box .box-item svg {
  width: 25px;
  height: 23px;
  color: #00a43d;
}

/* lightning-icon */
.top-section .lightning-icon {
  position: absolute;
  right: 57px;
  top: 52px;
  width: 39px;
  height: auto;
  object-fit: contain;
  object-position: center;
  animation: bounce-slow 2s infinite;
}

/* star-icon */
.top-section .star-icon {
  position: absolute;
  right: 108px;
  bottom: 83px;
  width: 39px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}

/* hand-green-badge */
.top-section .hand-green-badge {
  position: absolute;
  left: -53px;
  top: -26px;
  width: 69px;
  height: auto;
  object-fit: contain;
  object-position: center;
  animation: bounce-slow 2s infinite;
}

/* hand-yellow-badge */
.top-section .hand-yellow-badge {
  position: absolute;
  right: -41px;
  bottom: -48px;
  width: 82.5px;
  height: auto;
  object-fit: contain;
  object-position: center;
  animation: bounce-slow 2s infinite;
}

/* Bounce animation */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* check-icon-badge */
.top-section .check-icon-badge {
  position: absolute;
  top: -16px; /* adjust as needed */
  right: -16px; /* adjust as needed */
  background-color: #0a9e12; /* or #4ade80 if hardcoded */
  color: white;
  padding: 12px;
  border-radius: 999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: bounce-slow 2s infinite;
}
.top-section .check-icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  display: block;
}
.top-section .animate-bounce-slow {
  animation: bounce-slow 2s infinite;
}
/* Optional animation */
@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* target-icon-badge */
.top-section .target-icon-badge {
  position: absolute;
  bottom: 16px;
  left: -32px;
  background-color: #facc15;
  color: #111827;
  padding: 12px;
  border-radius: 999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}
.top-section .target-icon-svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  display: block;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* sparkle-icon-badge */
.top-section .sparkle-icon-badge {
  position: absolute;
  left: -12px;
  bottom: calc(50% - 12px);
  background-color: #fff;
  color: #28a745;
  padding: 1.5px;
  border-radius: 999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.top-section .sparkle-icon-svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .top-section .left-right-container {
    flex-direction: column;
    margin-bottom: 48px;
  }
  .top-section .left-container {
    flex: none;
    width: 100%;
  }
  .top-section .right-container {
    flex: none;
    margin-bottom: 0px;
    width: 100%;
  }
  .top-section .description {
    max-width: none;
  }
  .top-section .lower-box {
    gap: 8px;
  }
  .top-section .lower-box .box-item {
    flex: 1 1 auto;
  }

  /* heart-icon */
  .top-section .heart-icon {
    top: 119px;
    right: 0px;
  }
  /* star-icon */
  .top-section .star-icon {
    bottom: 33px;
  }
  /* hand-green-badge */
  .top-section .hand-green-badge {
    left: -10px;
  }
  /* hand-yellow-badge */
  .top-section .hand-yellow-badge {
    right: -10px;
    bottom: -35px;
  }
  /* target-icon-badge */
  .top-section .target-icon-badge {
    bottom: -16px;
    left: -16px;
  }
}

@media (max-width: 768px) {
  .top-section {
    padding: 32px 16px;
  }
  .top-section .left-container {
    align-items: center;
  }
  .top-section .big-title {
    line-height: 54px;
    font-size: 40px;
    text-align: center;
  }
  .top-section .highlighted-text {
    justify-content: center;
    margin-left: 0px;
    padding-left: 0px;
    line-height: 54px;
    font-size: 40px;
  }
  .top-section .description {
    text-align: center;
  }
  .top-section .button {
    align-items: stretch;
  }
  .top-section .lower-box {
    flex-direction: column;
    gap: 6px;
  }
  .top-section .lower-box .box-item {
    width: 100%;
    justify-content: center;
  }
  /* Reduce decorative icon intrusion on small screens */
  .top-section .lightning-icon {
    top: 12px;
    right: 17px;
    width: calc(0.6 * 39px);
  }
  .top-section .heart-icon {
    top: 12px;
    left: 17px;
    width: calc(0.6 * 44px);
  }
  .top-section .check-icon-badge {
    top: -10px;
    right: -10px;
  }
}

.feature-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 80px 20px 111px;
  width: 100%;
  background-color: #ffffff;
  z-index: 0;
}
.feature-section .lightbulb-icon {
  position: absolute;
  top: 69px;
  left: 41px;
  width: 62px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce 2s infinite;
}
.feature-section .bag-icon {
  position: absolute;
  top: 160px;
  left: 123px;
  width: 42px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce 2s infinite;
}
.feature-section .heart-icon {
  position: absolute;
  top: 307px;
  right: 24px;
  width: 44px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce 2s infinite;
}
.feature-section .star-icon {
  position: absolute;
  bottom: 134px;
  left: 28px;
  width: 44px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce 2s infinite;
}
.feature-section .feature-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1188px;
  width: 100%;
}
.feature-section .small-f-title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  padding: 8px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background-color: #ffd926;
}
.feature-section .title-sparkle-icon {
  width: 14px;
  height: 14px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.feature-section .big-f-title {
  margin-bottom: 16px;
  line-height: 54px;
  color: #1a1a1a;
  font-size: 36px;
  font-weight: bold;
}
.feature-section .title-f-description {
  margin: 0px 115px 36px;
  max-width: 768px;
  line-height: 30px;
  color: #1a1a1a;
  font-size: 20px;
  text-align: center;
}
.feature-section .box-outer-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 36px;
  width: 100%;
}
.feature-section .left-f-container {
  flex: 0 1 576px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.feature-section .mock-f-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  width: 100%;
  min-height: 277px;
  border-radius: 16px;
  border: 2px solid #eaf4d4;
  background: #ffffff;
}
.feature-section .row-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.feature-section .mock-f-title {
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
}
.feature-section .question-f {
  background-color: #e4f1e5;
  color: #6b7280;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
}
.feature-section .row-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 24px 28px;
  width: 100%;
  border-left: 4px solid #00a43d;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.feature-section .row-2 .left-f {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.feature-section .message-icon-svg {
  width: 36px;
  height: 36px;
  stroke: #00a43d;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.feature-section .row-2 .right-f {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
.feature-section .ai-f {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}
.feature-section .tell-me-f {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  text-align: center;
}
.feature-section .row-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.feature-section .recording-button-f {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  min-width: 166px;
  line-height: 21px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px;
  background-color: #00a43d;
  cursor: pointer;
  transition: all 0.3s ease;
}
.feature-section .recording-button-f:hover {
  transform: scale(1.05);
  background-color: #217942;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.feature-section .mic-icon-f {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.feature-section .practice-button-f {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  min-width: 166px;
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #eaf4d4;
  border-radius: 16px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.feature-section .practice-button-f:hover {
  transform: scale(1.05);
  background-color: #eaf4d4;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.feature-section .play-icon-f {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.feature-section .row-4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-section .previous-button-f {
  background: #fff;
  color: #aaa;
  opacity: 0.5;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.feature-section .next-button-f {
  background: #0a9e12;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.feature-section .next-button-f:hover {
  background-color: #057a0e;
}
.feature-section .real-time-container-f {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  padding: 30px 26px;
  width: 100%;
  border-radius: 16px;
  border: 2px solid #eaf4d4;
  background: #ffffff;
}
.feature-section .real-f-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
}
.feature-section .real-f-title svg {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.feature-section .percentage-f-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}
.feature-section .score-f-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.feature-section .title-real {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
}
.feature-section .percentage-f {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
}
.feature-section .percentage-f-box .top-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.feature-section .level-bar-f {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #f0f0f0;
  overflow: hidden;
}
.feature-section .level-percentage-f {
  height: 100%;
  border-radius: 999px;
  transition: width 1s ease-in-out;
}
.feature-section .level-percentage-f.w-85 {
  width: 85%;
}
.feature-section .level-percentage-f.w-92 {
  width: 92%;
}
.feature-section .level-percentage-f.w-78 {
  width: 78%;
}
.feature-section .level-percentage-green {
  background-color: #00a43d;
}
.feature-section .level-percentage-yellow {
  background-color: #ffd926;
}
.feature-section .right-f-container {
  flex: 0 1 576px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.feature-section .four-box-f-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1;
  gap: 24px;
}
.feature-section .four-box-f-container .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.feature-section .row .title-box {
  line-height: 28.5px;
  color: #1a1a1a;
  font-size: 19px;
  font-weight: bold;
}
.feature-section .row .detail-f {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.feature-section .four-box-f-container .box {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 8px;
  padding: 16px;
  min-width: 280px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #eaf4d4;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform: scale(1);
}
.feature-section .four-box-f-container .box:hover {
  border: 2px solid #ccda00;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.feature-section .box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.feature-section .box-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.feature-section .ready-f-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  gap: 16px;
  padding: 32px;
  width: 100%;
  min-height: 267px;
  border-radius: 16px;
  background: #00a43d;
}
.feature-section .sparkle-icon {
  position: absolute;
  top: 20px;
  right: 17px;
}
.feature-section .sparkle-icon .sparkle-svg {
  width: 36px;
  height: 36px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.feature-section .title-f {
  margin-right: 40px;
  line-height: 36px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.feature-section .details-f {
  line-height: 24px;
  color: #ffffff;
  font-size: 16px;
  opacity: 0.9;
}
.feature-section .start-button-f {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px;
  background: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.feature-section .start-button-f:hover {
  background-color: #eaf4d4;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1024px) {
  .feature-section {
    padding: 60px 16px;
  }
  .feature-section .lightbulb-icon {
    top: 39px;
    left: 11px;
    width: calc(62px * 0.7);
  }
  .feature-section .bag-icon {
    top: 130px;
    left: 93px;
    width: calc(42px * 0.7);
  }
  .feature-section .heart-icon {
    width: calc(44px * 0.7);
  }
  .feature-section .star-icon {
    width: calc(44px * 0.7);
  }
  .feature-section .big-f-title {
    font-size: 32px;
  }
  .feature-section .title-f-description {
    margin: 0px 0px 36px;
    width: 100%;
    font-size: 18px;
    padding: 0 8px;
  }
  .feature-section .box-outer-container {
    flex-direction: column;
    gap: 32px;
  }
  .feature-section .left-f-container,
  .feature-section .right-f-container,
  .feature-section .four-box-f-container {
    width: 100%;
  }
  .feature-section .row-1,
  .feature-section .row-2,
  .feature-section .row-3,
  .feature-section .row-4 {
    flex-wrap: wrap;
    gap: 12px;
  }
  .feature-section .recording-button-f,
  .feature-section .practice-button-f {
    width: 100%;
    justify-content: center;
  }
  .feature-section .real-time-container-f {
    padding: 20px;
  }
  .feature-section .ready-f-container {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .feature-section {
    padding: 40px 12px;
    padding: 60px 16px;
  }
  .feature-section .lightbulb-icon {
    top: 39px;
    left: 11px;
    width: calc(62px * 0.5);
  }
  .feature-section .bag-icon {
    top: 69px;
    left: auto;
    left: initial;
    right: 11px;
    width: calc(42px * 0.5);
  }
  .feature-section .heart-icon {
    width: calc(44px * 0.5);
  }
  .feature-section .star-icon {
    width: calc(44px * 0.5);
  }
  .feature-section .big-f-title {
    font-size: 28px;
    text-align: center;
  }
  .feature-section .title-f-description {
    width: 100%;
    padding: 0 6px;
    font-size: 16px;
  }
  .feature-section .box-outer-container {
    flex-direction: column;
    gap: 24px;
  }
  .feature-section .left-f-container,
  .feature-section .right-f-container,
  .feature-section .four-box-f-container {
    width: 100%;
  }
  .feature-section .four-box-f-container {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .feature-section .four-box-f-container .row {
    flex-wrap: wrap;
  }
  .feature-section .row-1-f,
  .feature-section .row-2-f {
    flex-direction: column;
    gap: 16px;
  }
  .feature-section .row-2 .right-f {
    align-items: center;
  }
  .feature-section .row-1,
  .feature-section .row-2,
  .feature-section .row-3,
  .feature-section .row-4 {
    flex-direction: column;

    align-items: center;
    gap: 16px;
  }
  .feature-section .recording-button-f,
  .feature-section .practice-button-f {
    width: 100%;
    font-size: 13px;
    padding: 10px 14px;
  }
  .feature-section .previous-button-f,
  .feature-section .next-button-f {
    width: 100%;
    margin-bottom: 8px;
  }
  .feature-section .real-time-container-f {
    padding: 16px;
  }
  .feature-section .ready-f-container {
    padding: 20px;
    align-items: center;
  }
  .feature-section .details-f {
    text-align: center;
  }
  .feature-section .zap-f-icon {
    display: none;
  }
}

.resume-builder-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 80px 40px 169px;
  width: 100%;
  background-color: #eaf4d4;
  z-index: 0;
}
.resume-builder-section .heart-icon {
  position: absolute;
  top: 175px;
  left: 73px;
  width: 44px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.resume-builder-section .lightning-icon {
  position: absolute;
  top: 88px;
  right: 39px;
  width: 39px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.resume-builder-section .star-icon {
  position: absolute;
  bottom: 93px;
  right: 90px;
  width: 52px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.resume-builder-section .resume-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1206px;
  width: 100%;
}
.resume-builder-section .small-title-r {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #00a43d;
  margin-bottom: 16px;
  padding: 8px;
  line-height: 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
}
.resume-builder-section .small-title-r .file-icon {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-builder-section .big-title-r {
  margin-bottom: 16px;
  line-height: 54px;
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.resume-builder-section .description-title-r {
  margin-bottom: 36px;
  max-width: 732px;
  line-height: 28px;
  color: #1a1a1a;
  font-size: 20px;
  text-align: center;
}
.resume-builder-section .box-container-r {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  width: 100%;
}
.resume-builder-section .left-builder-container {
  flex: 0 1 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  padding: 49px 33px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background-color: #ffffff;
}
.resume-builder-section .builder-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.resume-builder-section .builder-title {
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
}
.resume-builder-section .ats {
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
  font-weight: 500;
}
.resume-builder-section .builder-row-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px;
  width: 100%;
  border-radius: 16px;
  background-color: #f0f0f0;
}
.resume-builder-section .user-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.resume-builder-section .user-header {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: bold;
}
.resume-builder-section .user-text {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
}
.resume-builder-section .ats-score {
  padding: 8px;
  line-height: 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 16px;
  background-color: #00a43d;
}
.resume-builder-section .builder-row-3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  width: 100%;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.resume-builder-section .summary-title-r {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: bold;
}
.resume-builder-section .summary-description-r {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.resume-builder-section .builder-row-4 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  width: 100%;
  border-radius: 16px;
  background-color: #fef9c3;
}
.resume-builder-section .key-title-r {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: bold;
}
.resume-builder-section .key-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.resume-builder-section .skill-item {
  padding: 6px 12px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  border-radius: 999px;
  background-color: #ffffff;
}
.resume-builder-section .builder-row-5 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.resume-builder-section .download-resume-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  min-width: 175px;
  min-height: 56px;
  line-height: 20px;
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
  border-radius: 16px;
  background-color: #00a43d;
  cursor: pointer;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.resume-builder-section .download-resume-button:hover {
  background-color: #217942;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.resume-builder-section .view-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  min-width: 189px;
  min-height: 56px;
  line-height: 24px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background-color: #ffffff;
  cursor: pointer;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.resume-builder-section .view-button:hover {
  background-color: #eaf4d4;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.resume-builder-section .right-resume-container {
  flex: 0 1 570px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  gap: 34px;
}
.resume-builder-section .right-resume-container .row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 21px;
  width: 100%;
}
.resume-builder-section .right-resume-container .column-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.resume-builder-section .right-resume-container .header {
  line-height: 30px;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: bold;
}
.resume-builder-section .right-resume-container .desc {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.resume-builder-section .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: #ffffff;
}
.resume-builder-section .icon-container svg {
  width: 24px;
  height: 24px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-builder-section .start-building-resume-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  min-width: 224px;
  min-height: 56px;
  line-height: 20px;
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
  border-radius: 16px;
  background-color: #00a43d;
  cursor: pointer;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.resume-builder-section .start-building-resume-button:hover {
  background-color: #217942;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.resume-builder-section .start-building-resume-button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .resume-builder-section .heart-icon {
    width: calc(44px * 0.8);
  }
  .resume-builder-section .lightning-icon {
    width: calc(39px * 0.8);
  }
  .resume-builder-section .star-icon {
    width: calc(52px * 0.8);
  }
  .resume-builder-section .big-title-r {
    font-size: 32px;
    margin-bottom: 48px;
  }
  .resume-builder-section .description-title-r {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 48px;
    padding: 0 8px;
    font-size: 18px;
    line-height: 1.4;
  }
  .resume-builder-section .box-container-r {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .resume-builder-section .left-builder-container {
    max-width: 100%;
    padding: 24px;
  }
  .resume-builder-section .builder-row-1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .resume-builder-section .builder-row-5 {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .resume-builder-section .view-button,
  .resume-builder-section .download-resume-button,
  .resume-builder-section .start-building-resume-button {
    width: 100%;
    justify-content: center;
    cursor: pointer;
  }
  .resume-builder-section .right-resume-container .row {
    flex-direction: column;
    gap: 16px;
  }
  .resume-builder-section .small-title-r {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .resume-builder-section {
    padding: 80px 20px 100px;
  }
  .resume-builder-section .heart-icon {
    top: 60px;
    left: 43px;
    width: calc(44px * 0.6);
  }
  .resume-builder-section .lightning-icon {
    top: 88px;
    right: 9px;
    width: calc(39px * 0.6);
  }
  .resume-builder-section .star-icon {
    bottom: 53px;
    right: 60px;
    width: calc(52px * 0.6);
  }
  .resume-builder-section .big-title-r {
    font-size: 28px;
    margin-bottom: 32px;
    line-height: 1.1;
  }
  .resume-builder-section .description-title-r {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 32px;
    padding: 0 6px;
  }
  .resume-builder-section .box-container-r {
    flex-direction: column;
    gap: 24px;
  }
  .resume-builder-section .left-builder-container {
    padding: 16px;
  }
  .resume-builder-section .builder-row-1 {
    align-items: flex-start;
    gap: 6px;
  }
  .resume-builder-section .ats-score {
    align-self: flex-start;
  }
  .resume-builder-section .builder-title {
    font-size: 16px;
  }
  .resume-builder-section .ats {
    font-size: 12px;
    top: 2px;
  }
  .resume-builder-section .summary-title-r,
  .resume-builder-section .key-title-r {
    font-size: 14px;
  }
  .resume-builder-section .summary-description-r {
    font-size: 13px;
  }
  .resume-builder-section .key-container {
    gap: 6px;
  }
  .resume-builder-section .skill-item {
    font-size: 12px;
    padding: 4px 10px;
  }
  .resume-builder-section .builder-row-5 {
    flex-direction: column;
    gap: 10px;
  }
  .resume-builder-section .view-button,
  .resume-builder-section .start-building-resume-button {
    font-size: 14px;
    padding: 10px 16px;
    height: auto;
  }
  .resume-builder-section .right-resume-container .row {
    flex-direction: column;
    gap: 12px;
  }
  .resume-builder-section .right-resume-container .header {
    font-size: 18px;
  }
  .resume-builder-section .right-resume-container .desc {
    font-size: 13px;
  }
  .resume-builder-section .small-title-r {
    font-size: 12px;
    padding: 6px 14px;
  }
}

.resume-jobfit-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 80px 20px 184.5px;
  width: 100%;
  background-color: #ffffff;
  z-index: 0;
}
.resume-jobfit-section .heart-icon {
  position: absolute;
  top: 96px;
  left: 111px;
  width: 54px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.resume-jobfit-section .mail-icon {
  position: absolute;
  top: 101px;
  right: 88px;
  width: 54px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.resume-jobfit-section .lightbulb-pink-icon {
  position: absolute;
  top: 221px;
  right: 35px;
  width: 65px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.resume-jobfit-section .bag-icon {
  position: absolute;
  bottom: 571px;
  left: 40px;
  width: 45px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.resume-jobfit-section .lightning-icon {
  position: absolute;
  bottom: 72.5px;
  right: 44px;
  width: 45px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.resume-jobfit-section .resume-container-j {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1204px;
  width: 100%;
}
.resume-jobfit-section .title-j {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px;
  line-height: 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
  background-color: #ffd926;
}
.resume-jobfit-section .icon-target {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .big-title-j {
  margin-bottom: 16px;
  line-height: 54px;
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}
.resume-jobfit-section .description-j {
  margin: 0px 90px 36px;
  max-width: 895px;
  line-height: 28px;
  color: #1a1a1a;
  font-size: 20px;
  text-align: center;
}
.resume-jobfit-section .step-container-j {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 37px;
  width: 100%;
}
.resume-jobfit-section .step-item {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.resume-jobfit-section .step-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.resume-jobfit-section .step-image svg {
  width: 24px;
  height: 24px;
  color: #00a43d;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .step-title {
  line-height: 28.5px;
  color: #1a1a1a;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
}
.resume-jobfit-section .step-details {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  text-align: center;
}
.resume-jobfit-section .box-container-j {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 24.5px;
  width: 100%;
}
.resume-jobfit-section .left-container-j {
  flex: 0 1 601px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  padding: 22px 17px;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
  background-color: #ffffff;
}
.resume-jobfit-section .job-role-title-j {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
}
.resume-jobfit-section .icon-brain {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .first-step-j {
  margin-bottom: 32px;
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
}
.resume-jobfit-section .job-textarea {
  margin-bottom: 24px;
  padding: 16px 30px;
  min-height: 112px;
  width: 100%;
  line-height: 20px;
  color: #1a1a1a;
  font-size: 14px;
  border: 2px dashed #f0f0f0;
  border-radius: 12px;
}
.resume-jobfit-section .analyze-j-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  width: 100%;
  height: 56px;
  line-height: 21px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 16px;
  background-color: #00a43d;
  cursor: pointer;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.resume-jobfit-section .analyze-j-button:hover {
  background-color: #217942;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.resume-jobfit-section .analyze-j-button .brain-icon-r {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .job-summary-container-j {
  margin-bottom: 24px;
  padding: 16px;
  width: 100%;
  border-radius: 12px;
  background-color: #eaf4d4;
}
.resume-jobfit-section .summary-j {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}
.resume-jobfit-section .summary-j .check-icon {
  width: 16px;
  height: 16px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .summary-j-text {
  margin-bottom: 2px;
  line-height: 20px;
  color: #00a43d;
  font-size: 18px;
}
.resume-jobfit-section .second-step-container-j {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  width: 100%;
  min-height: 203px;
  border: 2px dashed #f0f0f0;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.resume-jobfit-section .second-step-container-j:hover {
  border-color: #00a43d;
}
.resume-jobfit-section .second-step-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #eaf4d4;
  transition: all 0.3s ease;
}
.resume-jobfit-section .second-step-container-j:hover .second-step-image {
  background-color: #00a43d;
}
.resume-jobfit-section .upload-icon-j {
  width: 24px;
  height: 24px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: all 0.3s ease;
}
.resume-jobfit-section .second-step-container-j:hover .upload-icon-j {
  stroke: #ffffff;
}
.resume-jobfit-section .second-step-j {
  margin-bottom: 8px;
  line-height: 24px;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
}
.resume-jobfit-section .pdf-j {
  line-height: 21px;
  font-size: 14px;
  color: #00a43d;
}
.resume-jobfit-section .generate-j-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  width: 100%;
  height: 56px;
  line-height: 21px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 16px;
  background-color: #00a43d;
  cursor: pointer;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.resume-jobfit-section .generate-j-button:hover {
  background-color: #217942;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.resume-jobfit-section .generate-j-button .zap-icon-j {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .right-container-j {
  display: flex;
  flex-direction: column;
  flex: 0 1 567px;
}
.resume-jobfit-section .overall-container-j {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px;
  width: 100%;
  min-height: 258px;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
  background-color: #ffffff;
}
.resume-jobfit-section .overall-title-j {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  line-height: 28px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
}
.resume-jobfit-section .target-icon {
  width: 16px;
  height: 16px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .percentage-circle-j {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 12px;
  width: 128px;
  height: 128px;
  line-height: 42px;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: bold;
}
.resume-jobfit-section .circle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.resume-jobfit-section .circle-progress {
  stroke: #00a43d;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke-dasharray 1s ease-in-out;
}
.resume-jobfit-section .match-j {
  line-height: 24px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 500;
}
.resume-jobfit-section .skills-container-j {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 25px 16px 41px;
  width: 100%;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
  background-color: #ffffff;
}
.resume-jobfit-section .skills-title-j {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}
.resume-jobfit-section .trending-icon {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .skill-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.resume-jobfit-section .left-group {
  flex: 1 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.resume-jobfit-section .skill-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  width: 100%;
}
.resume-jobfit-section .lang-name {
  line-height: 21px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.resume-jobfit-section .required-j {
  padding: 4px 8px;
  line-height: 18px;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 500;
  border-radius: 9999px;
  background-color: #ffd926;
}
.resume-jobfit-section .percentage-j {
  line-height: 21px;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}
.resume-jobfit-section .percentage-bar {
  width: 100%;
  height: 8px;
  border-radius: 9999px;
  background-color: #f0f0f0;
  overflow: hidden;
}
.resume-jobfit-section .level-percentage-1 {
  height: 100%;
  background-color: #00a43d;
  border-radius: 9999px;
  transition: width 1s ease-in-out;
}
.resume-jobfit-section .level-percentage-1.react {
  width: 95%;
}
.resume-jobfit-section .level-percentage-1.javascript {
  width: 90%;
}
.resume-jobfit-section .level-percentage-1.node {
  width: 85%;
}
.resume-jobfit-section .level-percentage-1.typescript {
  width: 80%;
}
.resume-jobfit-section .experience-container-j {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 25px;
  width: 100%;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
  background-color: #ffffff;
}
.resume-jobfit-section .experince-title-j {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}
.resume-jobfit-section .alert-icon-j {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .experience-gaps {
  margin-bottom: 20px;
  line-height: 21px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.resume-jobfit-section .enhancement-title-j {
  margin-bottom: 12px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
}
.resume-jobfit-section .exp-gap-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px;
  width: 100%;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.resume-jobfit-section .exp-gap-item .left-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
}
.resume-jobfit-section .exp-name {
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
  font-weight: 600;
}
.resume-jobfit-section .exp-desc {
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
}
.resume-jobfit-section .gap-status {
  padding: 4px 10px;
  line-height: 18px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 9999px;
}
.resume-jobfit-section .gap-status.high {
  color: #ffffff;
  background-color: #00a43d;
}
.resume-jobfit-section .gap-status.medium {
  color: #1a1a1a;
  background-color: #ffd926;
}
.resume-jobfit-section .enhancement-container-j {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.resume-jobfit-section .enhancement-ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.resume-jobfit-section .enhancement-li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.resume-jobfit-section .check-icon-j {
  width: 16px;
  height: 16px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.resume-jobfit-section .generate-container-j {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 33px 24px 28px;
  width: 100%;
  height: auto;
  color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: linear-gradient(109deg, #00a43d 42%, #ccda00 100%);
}
.resume-jobfit-section .header-j {
  margin-bottom: 16px;
  line-height: 36px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.resume-jobfit-section .desc-j {
  margin-bottom: 24px;
  max-width: 800px;
  line-height: 27px;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  opacity: 0.9;
}
.resume-jobfit-section .button-row-j {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.resume-jobfit-section .discover-button-j {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 16px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.resume-jobfit-section .discover-button-j:hover {
  background-color: #eaf4d4;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
}
.resume-jobfit-section .lightbulb-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 1024px) {
  .resume-jobfit-section {
    padding-bottom: 122px;
  }
  .resume-jobfit-section .heart-icon {
    top: 96px;
    left: 91px;
    width: calc(54px * 0.7);
  }
  .resume-jobfit-section .mail-icon {
    top: 101px;
    right: 68px;
    width: calc(54px * 0.7);
  }
  .resume-jobfit-section .lightbulb-pink-icon {
    top: 21px;
    right: 15px;
    width: calc(65px * 0.7);
  }
  .resume-jobfit-section .bag-icon {
    bottom: 571px;
    left: 20px;
    width: calc(45px * 0.7);
  }
  .resume-jobfit-section .lightning-icon {
    bottom: 52.5px;
    right: 24px;
    width: calc(45px * 0.7);
  }
  .resume-jobfit-section .resume-jobfit-section {
    padding: 60px 16px 0;
  }
  .resume-jobfit-section .big-title-j {
    font-size: 32px;
    margin-top: 12px;
  }
  .resume-jobfit-section .description-j {
    width: 100%;
    max-width: 100%;
    height: auto;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 48px;
    padding: 0 8px;
  }
  .resume-jobfit-section .step-container-j {
    flex-wrap: wrap;
    gap: 16px;
  }
  .resume-jobfit-section .step-item {
    flex: 1 1 45%;
  }
  .resume-jobfit-section .box-container-j {
    flex-direction: column;
    gap: 24px;
  }
  .resume-jobfit-section .left-container-j,
  .resume-jobfit-section .right-container-j {
    width: 100%;
  }
  .resume-jobfit-section .header-j {
    font-size: 22px;
  }
  .resume-jobfit-section .desc-j {
    font-size: 16px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .resume-jobfit-section {
    padding-bottom: 92px;
  }
  .resume-jobfit-section .heart-icon {
    top: 41px;
    left: 31px;
    width: calc(54px * 0.4);
  }
  .resume-jobfit-section .mail-icon {
    top: 15px;
    right: 150px;
    width: calc(54px * 0.4);
  }
  .resume-jobfit-section .lightbulb-pink-icon {
    top: 51px;
    right: 10px;
    width: calc(65px * 0.4);
  }
  .resume-jobfit-section .bag-icon {
    bottom: 571px;
    left: 20px;
    width: calc(45px * 0.4);
  }
  .resume-jobfit-section .lightning-icon {
    bottom: 52.5px;
    right: 24px;
    width: calc(45px * 0.4);
  }
  .resume-jobfit-section .resume-jobfit-section {
    padding: 40px 12px 0;
  }
  .resume-jobfit-section .big-title-j {
    font-size: 28px;
    line-height: 1.1;
  }
  .resume-jobfit-section .description-j {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 32px;
    padding: 0 6px;
  }
  .resume-jobfit-section .step-container-j {
    flex-direction: column;
    gap: 12px;
  }
  .resume-jobfit-section .step-item {
    width: 100%;
  }
  .resume-jobfit-section .box-container-j {
    flex-direction: column;
    gap: 20px;
  }
  .resume-jobfit-section .left-container-j,
  .resume-jobfit-section .right-container-j {
    width: 100%;
  }
  .resume-jobfit-section .job-role-title-j {
    font-size: 16px;
    gap: 6px;
  }
  .resume-jobfit-section .summary-j-text {
    font-size: 16px;
  }
  .resume-jobfit-section .overall-container-j {
    padding: 16px;
  }
  .resume-jobfit-section .header-j {
    font-size: 20px;
  }
  .resume-jobfit-section .desc-j {
    font-size: 14px;
    max-width: 100%;
  }
}

.career-path-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
  width: 100%;
  background-color: #eaf4d4;
  z-index: 0;
}
.career-path-section .lightbulb-icon {
  position: absolute;
  top: 278px;
  left: 51px;
  width: 61px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.career-path-section .trophy-icon {
  position: absolute;
  top: 103px;
  right: 55px;
  width: 57px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.career-path-section .career-path-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 82px auto 118px;
  max-width: 1216px;
  width: 100%;
}
.career-path-section .small-title-c {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  padding: 8px;
  line-height: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 16px;
  background-color: #00a43d;
}
.career-path-section .recommended-career-path {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
}
.career-path-section .recommended-career-path svg {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .small-title-c svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .big-title-c {
  margin-bottom: 17px;
  line-height: 54px;
  color: #1a1a1a;
  font-size: 36px;
  font-weight: bold;
}
.career-path-section .description-c {
  margin: 0px 90px 16px;
  max-width: 940px;
  line-height: 30px;
  color: #1a1a1a;
  font-size: 20px;
  text-align: center;
}
.career-path-section .steps-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 33px;
}
.career-path-section .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 174px;
  text-align: center;
}
.career-path-section .step-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: #ffffff;
}
.career-path-section .step-icon {
  width: 24px;
  height: 24px;
  stroke: #00a43d;
}
.career-path-section .path-title-c {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
}
.career-path-section .path-title-c svg {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .icon-circle {
  width: 48px;
  height: 48px;
  background-color: #f3e8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.career-path-section .icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: #9333ea;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.career-path-section .icon-blue {
  width: 48px;
  height: 48px;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}
.career-path-section .compass-icon {
  width: 24px;
  height: 24px;
  stroke: #2563eb;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.career-path-section .icon-container {
  width: 48px;
  height: 48px;
  background-color: #dbeafe;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}
.career-path-section .icon-container svg {
  width: 24px;
  height: 24px;
  stroke: #2563eb;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.career-path-section .icon-container-orange {
  width: 48px;
  height: 48px;
  background-color: #ffedd5;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}
.career-path-section .icon-container-orange svg {
  width: 24px;
  height: 24px;
  stroke: #ea580c;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.career-path-section .name-c {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}
.career-path-section .detail-c {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.career-path-section .left-right-container-c {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 24px;
  width: 100%;
}
.career-path-section .left-container-c {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 24px;
}
.career-path-section .right-container-c {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  gap: 24px;
  width: 100%;
}
.career-path-section .academic-title-c {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
}
.career-path-section .academic-title-c svg {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .academic-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px 23px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
}
.career-path-section .matching-title-c {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}
.career-path-section .matching-title-c svg {
  width: 20px;
  height: 20px;
  stroke: #16a34a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .learning-title-c {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
}

.career-path-section .learning-title-c svg {
  width: 20px; /* w-5 */
  height: 20px; /* h-5 */
  stroke: #16a34a; /* text-green-600 */
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .background-c {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1px;
  padding: 12px;
  width: 100%;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.career-path-section .academic-background {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
}
.career-path-section .major,
.career-path-section .Graduation,
.career-path-section .focus {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.career-path-section .highlights-c {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  width: 100%;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.career-path-section .resume-highlights {
  line-height: 24px;
  color: #00a43d;
  font-size: 16px;
  font-weight: bold;
}
.career-path-section ul {
  list-style-position: inside;
}
.career-path-section li {
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
}
.career-path-section li::marker {
  content: '• ';
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
}
.career-path-section .recommended-box-c .box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 18px;
  width: 100%;
  border: 2px solid #00a43d;
  border-radius: 12px;
  background-color: #eaf4d4;
}
.career-path-section .recommended-box-c .box:last-child {
  margin-bottom: 0px;
}
.career-path-section .recommended-box-c .box.bg-grey {
  border: none;
  background-color: #f0f0f0;
}
.career-path-section .full-stack-box-c,
.career-path-section .product-manager-box-c,
.career-path-section .ux-designer-box-c {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.career-path-section .path-overview-box-c {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  width: 100%;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
}
.career-path-section .percentage-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}
.career-path-section .percentage-item {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background-color: #eaf4d4;
}
.career-path-section .percentage {
  line-height: 36px;
  color: #00a43d;
  font-size: 24px;
  font-weight: bold;
}
.career-path-section .metric {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.career-path-section .top-hiring-c {
  margin-bottom: 20px;
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: bold;
}
.career-path-section .types-c {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.career-path-section .company-item {
  padding: 4px 8px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  border-radius: 9999px;
  background-color: #f0f0f0;
}
.career-path-section .skill-gap-analysis-box-c {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  width: 100%;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
}
.career-path-section .skill-gap-title-c {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: bold;
}
.career-path-section .skill-gap-title-c svg {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .skill-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  padding: 12px;
  width: 100%;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.career-path-section .skill-row:last-child {
  margin-bottom: 0px;
}
.career-path-section .skills-c {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
}
.career-path-section .skill-level-c {
  margin-left: 10px;
  margin-right: 10px;
  padding: 4px 8px;
  line-height: 21px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 9999px;
  background-color: #00a43d;
}
.career-path-section .skill-level-c.medium {
  color: #1a1a1a;
  background-color: #ffd926;
}
.career-path-section .resources {
  margin-left: auto;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  text-align: center;
}
.career-path-section .recommended-box-c {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 29px 24px 66px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
}
.career-path-section .full-stack-box-c,
.career-path-section .product-manager-box-c,
.career-path-section .ux-designer-box-c {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  background-color: #f9fafb;
}
.career-path-section .full-stack-box-c {
  border-color: #a855f7;
  background-color: #faf5ff;
}
.career-path-section .target-icon {
  width: 16px;
  height: 16px;
  stroke: #4b5563;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  margin-right: 4px;
}
.career-path-section .row-1-c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.career-path-section .level-c {
  padding: 4px 8px;
  line-height: 18px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 9999px;
}
.career-path-section .level-c.high-priority {
  background-color: #00a43d;
  color: #ffffff;
}
.career-path-section .level-c.medium-priority {
  background-color: #ffd926;
  color: #1a1a1a;
}
.career-path-section .row-2-detail-c {
  line-height: 21px;
  font-size: 14px;
  color: #1a1a1a;
}
.career-path-section .row-3-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.career-path-section .stat-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.career-path-section .stat-item.salary {
  color: #00a43d;
  font-weight: 500;
}
.career-path-section .stat-item svg {
  width: 16px;
  height: 16px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .recommended-learning-box-c {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  width: 100%;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
}
.career-path-section .course-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 17px;
  width: 100%;
  border: 1px solid #eaf4d4;
  border-radius: 16px;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}
.career-path-section .course-container:last-child {
  margin-bottom: 0px;
}
.career-path-section .course-container:hover {
  background-color: #f9fafb;
}
.career-path-section .course-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}
.career-path-section .course-name {
  line-height: 27px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: bold;
}
.career-path-section .course-row-c {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  white-space: nowrap;
}
.career-path-section .rating-c {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4b5563;
}
.career-path-section .rating-c .star-icon {
  width: 12px;
  height: 12px;
  stroke: #facc15;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.career-path-section .external-link-icon {
  width: 16px;
  height: 16px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.career-path-section .matching-job-box-c {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  width: 100%;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
}
.career-path-section .building-icon {
  width: 20px;
  height: 20px;
  stroke: #2563eb;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .job-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 17px;
  width: 100%;
  border: 1px solid #eaf4d4;
  border-radius: 16px;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}
.career-path-section .job-container:last-child {
  margin-bottom: 0px;
}
.career-path-section .job-container:hover {
  background-color: #f9fafb;
}
.career-path-section .job-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
  width: 100%;
}
.career-path-section .position {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}
.career-path-section .salary-c {
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.career-path-section .job-row-2 {
  margin-bottom: 4px;
  width: 100%;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
}
.career-path-section .job-row-3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #6b7280;
  width: 100%;
}
.career-path-section .job-row-3 .location {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  white-space: nowrap;
}
.career-path-section .job-row-3 .location svg {
  width: 12px;
  height: 12px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.career-path-section .day {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 14px;
  white-space: nowrap;
}
.career-path-section .matching-job-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 24px;
  width: 100%;
}
.career-path-section .image-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
}
.career-path-section .image-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 389px;
  height: 356px;
}
.career-path-section .image-group .person-icon {
  position: absolute;
  top: 85px;
  left: 174px;
  width: 215px;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.career-path-section .image-group .speach-bubbles-icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 248px;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.career-path-section .image-group .star-icon {
  position: absolute;
  top: -131px;
  left: -254px;
  width: 59px;
  height: auto;
  object-fit: contain;
  object-position: center;
  animation: bounce-slow 2s infinite;
}
.career-path-section .image-group .lightning-icon {
  position: absolute;
  top: 62px;
  left: -284px;
  width: 40px;
  height: auto;
  object-fit: contain;
  object-position: center;
  animation: bounce-slow 2s infinite;
}
.career-path-section .discover-container-j {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 33px 33px 28px;
  width: 100%;
  height: auto;
  color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: linear-gradient(109deg, #00a43d 42%, #ccda00 100%);
}
.career-path-section .header-j {
  margin-bottom: 16px;
  line-height: 36px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.career-path-section .desc-j {
  margin-bottom: 24px;
  max-width: 800px;
  line-height: 27px;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  opacity: 0.9;
}
.career-path-section .button-row-j {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.career-path-section .discover-button-j {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
  font-weight: 500;
  border-radius: 16px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.career-path-section .discover-button-j:hover {
  background-color: #eaf4d4;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.career-path-section .compass-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #00a43d;
}

@media (max-width: 1024px) {
  .career-path-section .lightbulb-icon {
    left: 21px;
    width: calc(61px * 0.8);
  }
  .career-path-section .trophy-icon {
    right: 25px;
    width: calc(57px * 0.8);
  }
  .career-path-section .career-path-container {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0px;
  }
  .career-path-section .big-title-c {
    font-size: 32px;
  }
  .career-path-section .description-c {
    max-width: 100%;
    margin: 0px 55px 16px;
    font-size: 18px;
    line-height: 1.4;
  }
  .career-path-section .steps-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .career-path-section .step-item {
    width: calc(50% - 12px);
    min-width: 180px;
  }
  .career-path-section .left-right-container-c {
    flex-direction: column;
    gap: 24px;
  }
  .career-path-section .left-container-c {
    flex: none;
    width: 100%;
  }
  .career-path-section .right-container-c {
    flex: none;
    width: 100%;
  }
  .career-path-section .academic-box,
  .career-path-section .recommended-box-c,
  .career-path-section .matching-job-box-c {
    padding: 14px;
  }
  .career-path-section .path-overview-box-c {
    padding: 14px;
  }
  .career-path-section .matching-job-row {
    flex-direction: column-reverse;
  }
  .career-path-section .image-container {
    justify-content: center;
  }
  .career-path-section .discover-container-j {
    padding: 24px;
  }
  .career-path-section .header-j {
    font-size: 22px;
  }
  .career-path-section .desc-j {
    font-size: 16px;
    max-width: 100%;
  }
  .career-path-section .button-row-j {
    gap: 10px;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .career-path-section .lightbulb-icon {
    top: 23px;
    left: 11px;
    width: calc(61px * 0.5);
  }
  .career-path-section .trophy-icon {
    top: 53px;
    right: 15px;
    width: calc(57px * 0.5);
  }
  .career-path-section .career-path-container {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .career-path-section .big-title-c {
    font-size: 28px;
    text-align: center;
  }
  .career-path-section .description-c {
    margin: 0px 0px 16px;
    font-size: 16px;
    line-height: 1.3;
  }
  .career-path-section .left-right-container-c {
    flex-direction: column;
    gap: 20px;
  }
  .career-path-section .academic-title-c,
  .career-path-section .recommended-career-path,
  .career-path-section .path-title-c,
  .career-path-section .skill-gap-title-c,
  .career-path-section .learning-title-c,
  .career-path-section .matching-title-c {
    font-size: 16px;
  }
  .career-path-section .percentage-item {
    padding: 10px;
  }
  .career-path-section .image-group {
    width: calc(389px * 0.8);
    height: calc(356px * 0.8);
  }
  .career-path-section .image-group .person-icon {
    top: calc(85px * 0.8);
    left: calc(174px * 0.8);
    width: calc(215px * 0.8);
  }
  .career-path-section .image-group .speach-bubbles-icon {
    width: calc(248px * 0.8);
  }
  .career-path-section .discover-container-j {
    padding: 20px;
  }
  .career-path-section .header-j {
    font-size: 20px;
  }
  .career-path-section .desc-j {
    font-size: 14px;
  }
}

.application-tracker-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 80px 20px;
  width: 100%;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  z-index: 0;
}
.application-tracker-section .lightbulb-icon {
  position: absolute;
  top: 143px;
  right: 116px;
  width: 60px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.application-tracker-section .lightning-icon {
  position: absolute;
  top: 62px;
  right: 194px;
  width: 47px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.application-tracker-section .heart-icon {
  position: absolute;
  top: 133px;
  left: 55px;
  width: 53px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: -1;
  animation: bounce-slow 2s infinite;
}
.application-tracker-section .application-container-a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  max-width: 1200px;
  text-align: center;
}
.application-tracker-section .small-title-a {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px;
  line-height: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 16px;
  background-color: #ffd926;
}
.application-tracker-section .small-title-a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.application-tracker-section .big-title-a {
  margin-bottom: 16px;
  line-height: 40px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.application-tracker-section .description-a {
  margin: 0px 180px 46px;
  max-width: 768px;
  line-height: 28px;
  color: #4b5563;
  font-size: 20px;
  text-align: center;
}
.application-tracker-section .top-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 20px;
  width: 100%;
}
.application-tracker-section .bottom-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  width: 100%;
}
.application-tracker-section .left-column {
  flex: 0 1 800px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  min-width: 320px;
}
.application-tracker-section .right-column {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  min-width: 250px;
}
.application-tracker-section .my-container-a {
  padding: 25px 25px 33px;
  width: 100%;
  border: 1px solid #eaf4d4;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.application-tracker-section .my-application-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  width: 100%;
}
.application-tracker-section .my-application {
  line-height: 28px;
  color: #111827;
  font-size: 20px;
  font-weight: bold;
}
.application-tracker-section .button-group {
  display: flex;
  align-items: center;
}
.application-tracker-section .filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 36px;
  background-color: transparent;
  color: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.application-tracker-section .my-application-row:hover .filter-button {
  opacity: 1;
  pointer-events: auto;
  background-color: #ffd900;
  color: #000;
}
.application-tracker-section .filter-button .filter-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}
.application-tracker-section .quick-add-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  height: 36px;
  line-height: 21px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  background-color: #00a43d;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.application-tracker-section .quick-add-button:hover {
  background-color: #217942;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.application-tracker-section .quick-add-icon {
  width: 20px;
  height: 20px;
  stroke: #111827;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.application-tracker-section .application-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 16px 16px 18px 26px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eaf4d4;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
.application-tracker-section .application-item:last-child {
  margin-bottom: 0px;
}
.application-tracker-section .application-item:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.application-tracker-section .info-container {
  flex: 1 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.application-tracker-section .info-container .info-top-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}
.application-tracker-section .info-container .left-group {
}
.application-tracker-section .info-container .right-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.application-tracker-section .job-name {
  margin-bottom: 4px;
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
}
.application-tracker-section .company {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  text-align: start;
}
.application-tracker-section .software-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6b7280;
}
.application-tracker-section .application-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  width: 32px;
  height: 32px;
  line-height: 36px;
  font-size: 24px;
}
.application-tracker-section .location-a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 16px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 12px;
  white-space: nowrap;
}
.application-tracker-section .location-a svg {
  flex-shrink: 0;
  margin-right: 8px;
  width: 12px;
  height: 12px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.application-tracker-section .salary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 16px;
  line-height: 21px;
  color: #1a1a1a;
  font-size: 12px;
  white-space: nowrap;
}
.application-tracker-section .salary svg {
  flex-shrink: 0;
  margin-right: 8px;
  width: 16px;
  height: 16px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.application-tracker-section .date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 16px;
  line-height: 16px;
  color: #1a1a1a;
  font-size: 12px;
  white-space: nowrap;
}
.application-tracker-section .date svg {
  flex-shrink: 0;
  margin-right: 8px;
  width: 16px;
  height: 16px;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.application-tracker-section .interview-a {
  align-self: flex-end;
  margin-bottom: 2.5px;
  padding: 4px 7.5px;
  line-height: 19.5px;
  color: #00a43d;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-radius: 16px;
  background-color: #eaf4d4;
}
.application-tracker-section .technical-a {
  line-height: 21px;
  color: #1a1a1a;
  font-size: 12px;
}
.application-tracker-section .try-quick-add-a {
  display: flex;
  flex-direction: column;
  padding: 25px 25px 21px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  background: linear-gradient(128deg, #00a43d 34%, #ccda00 100%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.application-tracker-section .header-a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  line-height: 24px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}
.application-tracker-section .desc-a {
  margin-bottom: 19px;
  line-height: 20px;
  color: #ffffff;
  font-size: 14px;
  text-align: start;
}
.application-tracker-section .link-a {
  display: inline-flex;
  align-items: center;
  line-height: 21px;
  font-size: 14px;
  color: #00a43d;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  margin-bottom: 16px;
  text-decoration: none;
}
.application-tracker-section .link-a svg {
  margin: 0px;
  width: 16px;
  height: 16px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.application-tracker-section .try-button-a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  padding: 8px;
  height: 40px;
  line-height: 21px;
  color: #00a43d;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.application-tracker-section .try-button-a:hover {
  background-color: #eaf4d4;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.application-tracker-section .stats-container-a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 21px 21px 41px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #eaf4d4;
  background-color: #ffffff;
}
.application-tracker-section .stats {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: bold;
  text-align: start;
}
.application-tracker-section .stats-container-a .header {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
}
.application-tracker-section .stats-container-a .total {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  text-align: start;
}
.application-tracker-section .stats-container-a .total.green {
  color: #00a43d;
}
.application-tracker-section .stats-container-a .stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.application-tracker-section .upcoming-task-a {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 21px 21px 33px;
  width: 100%;
  border: 1px solid #eaf4d4;
  border-radius: 10px;
  background-color: #ffffff;
}
.application-tracker-section .task-title-a {
  line-height: 24px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: bold;
  text-align: start;
}
.application-tracker-section .technical-iv-a {
  line-height: 14px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  text-align: start;
}
.application-tracker-section .task-date {
  line-height: 16px;
  color: #1a1a1a;
  font-size: 12px;
}
.application-tracker-section .one-a,
.application-tracker-section .two-a,
.application-tracker-section .three-a {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.application-tracker-section .dot-icon {
  align-self: center;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #065f46;
}
.application-tracker-section .dot-icon.red {
  background-color: #c85e60;
}
.application-tracker-section .dot-icon.yellow {
  background-color: #ffd926;
}
.application-tracker-section .dot-icon.green {
  background-color: #00a43d;
}
.application-tracker-section .column-a {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.application-tracker-section .tv-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1024px) {
  .application-tracker-section {
    padding: 60px 16px;
  }
  .application-tracker-section .lightbulb-icon {
    right: 30px;
    width: calc(60px * 0.7);
  }
  .application-tracker-section .lightning-icon {
    right: 108px;
    width: calc(47px * 0.7);
  }
  .application-tracker-section .heart-icon {
    left: 30px;
    width: calc(53px * 0.7);
  }
  .application-tracker-section .big-title-a {
    font-size: 32px;
    line-height: 1.2;
  }
  .application-tracker-section .description-a {
    margin: 0px 80px 48px;
    padding: 0 8px;
    max-width: 100%;
    font-size: 18px;
  }
  .application-tracker-section .top-row {
    flex-direction: column;
  }
  .application-tracker-section .left-column {
    flex: 2 1;
  }
  .application-tracker-section .right-column {
    min-width: 174px;
  }
  .application-tracker-section .my-container-a {
    width: 100%;
    padding: 20px;
  }
  .application-tracker-section .senior-container-a,
  .application-tracker-section .product-manager-a,
  .application-tracker-section .data-scientist-a {
    flex-direction: column;
    gap: 12px;
  }
  .application-tracker-section .software-row {
    flex-direction: column;
    gap: 8px;
  }
  .application-tracker-section .try-quick-add-a {
    padding: 20px;
  }
  .application-tracker-section .discover-container-j,
  .application-tracker-section .try-quick-add-a {
    width: 100%;
  }
  .application-tracker-section .button-row-j {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .application-tracker-section {
    padding: 40px 12px;
  }
  .application-tracker-section .lightbulb-icon {
    right: 15px;
    width: calc(60px * 0.5);
  }
  .application-tracker-section .lightning-icon {
    top: 42px;
    right: 53px;
    width: calc(47px * 0.5);
  }
  .application-tracker-section .heart-icon {
    left: 15px;
    width: calc(53px * 0.5);
  }
  .application-tracker-section .big-title-a {
    font-size: 28px;
  }
  .application-tracker-section .description-a {
    margin: 0px 35px 32px;
    padding: 0 6px;
    line-height: 1.3;
    font-size: 16px;
  }
  .application-tracker-section .my-application-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .application-tracker-section .info-container {
    flex: none;
  }
  .application-tracker-section .info-container .info-top-row {
    flex-direction: column;
  }
  .application-tracker-section .interview-a {
    align-self: flex-start;
  }
  .application-tracker-section .button-group {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 8px;
  }
  .application-tracker-section .try-button-a {
    align-self: center;
  }
  .application-tracker-section .quick-add-button {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .application-tracker-section .four-box-f-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
  }
  .application-tracker-section .my-container-a {
    width: 100%;
    padding: 16px;
  }
  .application-tracker-section .software-row {
    flex-direction: column;
  }
  .application-tracker-section .location-a,
  .application-tracker-section .salary,
  .application-tracker-section .date {
    margin-right: 0;
    flex-wrap: wrap;
  }
  .application-tracker-section .try-quick-add-a {
    padding: 16px;
  }
  .application-tracker-section .header-a {
    font-size: 14px;
  }
  .application-tracker-section .desc-a {
    font-size: 12px;
  }
  .application-tracker-section .bottom-row {
    flex-wrap: wrap;
  }
  .application-tracker-section .tv-image {
    max-width: 315px;
  }
}

.interview-question-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 93px 20px 154px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  z-index: 0;
}
.interview-question-section .lightbulb-icon {
  position: absolute;
  top: 189px;
  left: 46px;
  width: 55px;
  height: auto;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1;
  animation: bounce-slow 2s infinite;
}
.interview-question-section .star-icon {
  position: absolute;
  top: 110px;
  left: 101px;
  width: 42px;
  height: auto;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 42 / 40;
  animation: bounce-slow 2s infinite;
}
.interview-question-section .thumbs-up-icon {
  position: absolute;
  top: 215px;
  right: 73px;
  width: 57px;
  height: auto;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1;
  animation: bounce-slow 2s infinite;
}
.interview-question-section .interview-container-i {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: auto 125px;
  max-width: 1068px;
  width: 100%;
  align-items: center;
  text-align: center;
  z-index: 0;
}
.interview-question-section .title-row-i {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.interview-question-section .left-title {
  display: flex;
  align-items: center;
  background-color: #00a43d;
  padding: 10px 8px;
  border-radius: 16px;
  line-height: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.interview-question-section .left-title svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.interview-question-section .right-title {
  background: #1a1a1a;
  color: #ffffff;
  padding: 8px 8px;
  border-radius: 16px;
  line-height: 24px;
  font-size: 14px;
  font-weight: bold;
}
.interview-question-section .big-title-i {
  margin-bottom: 16px;
  line-height: 40px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.interview-question-section .description-i {
  margin-bottom: 36px;
  max-width: 768px;
  line-height: 28px;
  font-size: 20px;
  color: #4b5563;
  text-align: center;
}
.interview-question-section .left-right-container-i {
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 36px;
  width: 100%;
  z-index: 0;
}
.interview-question-section .ellipse {
  position: absolute;
  width: 542px;
  height: 542px;
  border-radius: 9999px;
  z-index: -1;
}
.interview-question-section .ellipse.bg-1 {
  top: -204px;
  left: -170.5px;
  background: radial-gradient(
    closest-side,
    rgba(255, 217, 38, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-2 {
  top: -204px;
  left: 91.5px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-3 {
  top: -204px;
  right: 163.5px;
  background: radial-gradient(
    closest-side,
    rgba(255, 217, 38, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-4 {
  top: -204px;
  right: -167.5px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-5 {
  top: calc((69 / 1068) * 100%);
  left: -170.5px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-6 {
  top: calc((69 / 1068) * 100%);
  right: -167.5px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-7 {
  bottom: -154px;
  left: -170.5px;
  background: radial-gradient(
    closest-side,
    rgba(0, 164, 61, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-8 {
  bottom: -154px;
  left: 91.5px;
  background: radial-gradient(
    closest-side,
    rgba(255, 217, 38, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-9 {
  bottom: -154px;
  right: 163.5px;
  background: radial-gradient(
    closest-side,
    rgba(204, 218, 0, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .ellipse.bg-10 {
  bottom: -154px;
  right: -167.5px;
  background: radial-gradient(
    closest-side,
    rgba(255, 217, 38, 0.2),
    rgba(255, 255, 255, 0)
  );
}
.interview-question-section .left-container-i {
  display: flex;
  flex: 1 1 66.667%;
  flex-direction: column;
  gap: 24px;
}
.interview-question-section .question-container-i {
  display: flex;
  flex-direction: column;
  padding: 29px 33px 33px;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
  background-color: #ffffff;
}
.interview-question-section .row-1-i {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.interview-question-section .medium-i {
  background-color: #ffd926;
  color: #1a1a1a;
  padding: 8px;
  border-radius: 16px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
}
.interview-question-section .bussines {
  background-color: #eaf4d4;
  color: #00a43d;
  padding: 8px;
  border-radius: 16px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
}
.interview-question-section .page {
  margin-left: auto;
  font-size: 14px;
  line-height: 21px;
  color: #1a1a1a;
}
.interview-question-section .row-2-i {
  margin-bottom: 16px;
  line-height: 28px;
  font-size: 18px;
  font-weight: 600;
  text-align: start;
}
.interview-question-section .row-3-i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding: 24px;
  min-height: 200px;
  line-height: 29.3px;
  color: #1a1a1a;
  font-size: 16px;
  border-radius: 8px;
  background-color: #f0f0f0;
}
.interview-question-section .row-4-i {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.interview-question-section .leadership-i,
.interview-question-section .conflict-i {
  padding: 8px;
  line-height: 20px;
  font-size: 14px;
  color: #1a1a1a;
  border-radius: 16px;
  background-color: #ccda00;
}
.interview-question-section .row-5-i {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.interview-question-section .show-i-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  height: 40px;
  line-height: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  background-color: #00a43d;
}
.interview-question-section .show-i-button:hover {
  background-color: #217942;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.interview-question-section .previous-i-button,
.interview-question-section .next-i-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  height: 40px;
  line-height: 20px;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
  background-color: #ffd900;
  opacity: 0;
}
.interview-question-section .previous-i-button:hover,
.interview-question-section .next-i-button:hover {
  opacity: 1;
}
.interview-question-section .practise-container-i {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  gap: 16px;
  padding: 25px;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
  background-color: #ffffff;
}
.interview-question-section .today-i {
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: start;
}
.interview-question-section .today-row-container-i {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.interview-question-section .cards-i {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
}
.interview-question-section .cards-i .number {
  line-height: 32px;
  color: #00a43d;
  font-size: 24px;
  font-weight: bold;
}
.interview-question-section .cards-i .detail-i {
  line-height: 20px;
  font-size: 14px;
  color: #1a1a1a;
}
.interview-question-section .right-container-i {
  flex: 1 1 33.333%;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.interview-question-section .categories-container-i {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
}
.interview-question-section .categories-i {
  display: flex;
  align-items: center;
  color: #000;
  margin-bottom: 16px;
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: start;
}
.interview-question-section .categories-i svg {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.interview-question-section .categories-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.interview-question-section .categories-row:last-child {
  margin: 0px;
}
.interview-question-section .info-i {
  line-height: 24px;
  font-size: 16px;
  color: #1a1a1a;
}
.interview-question-section .categories-row .number {
  padding: 4px 8px;
  line-height: 20px;
  font-size: 14px;
  color: #00a43d;
  border-radius: 8px;
}
.interview-question-section .progress-container-i {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
}
.interview-question-section .prog-title-i {
  display: flex;
  align-items: center;
  color: #000;
  margin-bottom: 16px;
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: start;
}
.interview-question-section .prog-title-i svg {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.interview-question-section .prog-row-1,
.interview-question-section .prog-row-2,
.interview-question-section .prog-row-3,
.interview-question-section .prog-row-4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.interview-question-section .prog-row-1,
.interview-question-section .prog-row-2,
.interview-question-section .prog-row-3 {
  margin-bottom: 16px;
}

.interview-question-section .one-i {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  line-height: 20px;
  font-size: 14px;
}
.interview-question-section .percentage-bar-i {
  position: relative;
  background-color: #f0f0f0;
  height: 8px;
  border-radius: 9999px;
}
.interview-question-section .percentage-bar-i .progress {
  position: absolute;
  left: 0px;
  height: 100%;
  border-radius: 9999px;
  background-color: #00a43d;
}
.interview-question-section .percentage-bar-i .progress.overall {
  width: 65%;
}
.interview-question-section .percentage-bar-i .progress.business {
  width: 80%;
}
.interview-question-section .percentage-bar-i .progress.corporate {
  width: 45%;
}
.interview-question-section .percentage-bar-i .progress.career {
  width: 70%;
}
.interview-question-section .study-container-i {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #eaf4d4;
  border-radius: 12px;
}
.interview-question-section .study {
  display: flex;
  align-items: center;
  color: #000;
  margin-bottom: 16px;
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  text-align: start;
}
.interview-question-section .study svg {
  width: 20px;
  height: 20px;
  stroke: #00a43d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.interview-question-section .study-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}
.interview-question-section .study-row:last-child {
  margin: 0px;
}
.interview-question-section .daily {
  line-height: 20px;
  font-size: 14px;
}
.interview-question-section .cards {
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
}
.interview-question-section .cards.orange {
  color: #c85e60;
}
.interview-question-section .person-left-icon {
  position: absolute;
  bottom: -128px;
  left: -127px;
  width: 152px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 152 / 234;
}
.interview-question-section .person-right-icon {
  position: absolute;
  right: -141px;
  bottom: -128px;
  width: 186px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 186 / 208;
}

@media (max-width: 1024px) {
  .interview-question-section .interview-question-section {
    padding: 60px 16px 112px;
  }
  .interview-question-section .thumbs-up-icon {
    top: 60px;
  }
  .interview-question-section .interview-container-i {
    margin: auto 95px;
    padding: 0 12px;
    max-width: 100%;
  }
  .interview-question-section .title-row-i {
    flex-direction: column;
    gap: 8px;
  }
  .interview-question-section .big-title-i {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .interview-question-section .description-i {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.4;
  }
  .interview-question-section .left-right-container-i {
    flex-direction: column;
    gap: 24px;
  }
  .interview-question-section .left-container-i,
  .interview-question-section .right-container-i {
    flex: 1 1 100%;
  }
  .interview-question-section .question-container-i,
  .interview-question-section .practise-container-i,
  .interview-question-section .categories-container-i,
  .interview-question-section .progress-container-i,
  .interview-question-section .study-container-i {
    padding: 20px;
  }
  .interview-question-section .row-3-i {
    min-height: auto;
    padding: 16px;
  }
  .interview-question-section .show-i-button,
  .interview-question-section .previous-i-button,
  .interview-question-section .next-i-button {
    flex: 1 1 auto;
    width: 100%;
    margin-bottom: 8px;
  }
  .interview-question-section .today-row-container-i {
    flex-direction: column;
    gap: 8px;
  }
  .interview-question-section .categories-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .interview-question-section .person-left-icon {
    bottom: -86px;
    left: calc(-127px + 152px * 0.2);
    width: calc(152px * 0.8);
  }
  .interview-question-section .person-right-icon {
    right: calc(-141px + 186px * 0.2);
    bottom: -86.4px;
    width: calc(186px * 0.8);
  }
}

@media (max-width: 768px) {
  .interview-question-section .interview-question-section {
    padding: 40px 12px 70px;
  }
  .interview-question-section .lightbulb-icon {
    top: 100px;
    left: 25px;
    width: calc(55px * 0.5);
  }
  .interview-question-section .star-icon {
    top: 61px;
    left: 67px;
    width: calc(42px * 0.5);
  }
  .interview-question-section .thumbs-up-icon {
    right: 30px;
    top: 80px;
    width: calc(57px * 0.5);
  }
  .interview-question-section .interview-container-i {
    margin: 0px;
  }
  .interview-question-section .big-title-i {
    font-size: 28px;
    line-height: 1.2;
  }
  .interview-question-section .description-i {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 32px;
  }
  .interview-question-section .title-row-i {
    gap: 6px;
  }
  .interview-question-section .left-right-container-i {
    flex-direction: column;
    gap: 16px;
  }
  .interview-question-section .left-container-i,
  .interview-question-section .right-container-i {
    flex: 1 1 100%;
  }
  .interview-question-section .row-1-i {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  .interview-question-section .row-4-i {
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 24px;
  }
  .interview-question-section .row-5-i {
    flex-direction: column;
  }
  .interview-question-section .show-i-button,
  .interview-question-section .previous-i-button,
  .interview-question-section .next-i-button {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
  }
  .interview-question-section .today-row-container-i {
    flex-direction: column;
  }
  .interview-question-section .categories-row {
    flex-direction: column;
    gap: 6px;
  }
  .interview-question-section .prog-row-1,
  .interview-question-section .prog-row-2,
  .interview-question-section .prog-row-3,
  .interview-question-section .prog-row-4 {
    gap: 6px;
  }
  .interview-question-section .study-row {
    flex-direction: column;
    gap: 6px;
  }
  .interview-question-section .cards-i .number {
    font-size: 20px;
    line-height: 28px;
  }
  .interview-question-section .cards-i .detail-i {
    font-size: 13px;
  }
  .interview-question-section .person-left-icon {
    bottom: -45px;
    left: -10px;
    width: calc(152px * 0.6);
  }
  .interview-question-section .person-right-icon {
    right: -10px;
    bottom: -45px;
    width: calc(186px * 0.6);
  }
}

.landing-page {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  background-color: #FFF;
}
.candidate-screen {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-family: 'Nunito Sans', sans-serif;
  background-color: #1a1a1a;
  background-image: url(/static/media/starry-background.64e062a947a392077027.png);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}
.candidate-screen .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.candidate-screen .header1 {
  line-height: 35px;
  color: #ccda00;
  font-size: 24px;
  font-weight: 700;
}
.candidate-screen .header2 {
  line-height: 35px;
  color: #ccda00;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.candidate-screen .header3 {
  line-height: 22px;
  color: #ccda00;
  font-size: 16px;
  font-weight: 700;
}
.candidate-screen .paragraph {
  line-height: 25px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
.candidate-screen .header-button {
  padding: 17px 46px;
  line-height: 22px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #00a43d;
  border-radius: 6.25px;
}

/* Top Section */
.candidate-screen section[name='top'] .container {
  align-items: center;
  padding: 52px 30px 65px;
}
.candidate-screen section[name='top'] .text-video-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-bottom: 68px;
  width: 100%;
}
.candidate-screen section[name='top'] .text-container {
  flex: 0 1 310px;
  text-align: start;
}
.candidate-screen section[name='top'] .text-container .header1 {
  margin-bottom: 8px;
}
.candidate-screen section[name='top'] .line-loop-img {
  margin: 0px 24px;
  width: 85px;
  height: 12px;
  object-fit: cover;
  object-position: center;
}
.candidate-screen section[name='top'] .video-wrapper {
  flex: 0 1 586px;
  aspect-ratio: 586 / 309;
}
.candidate-screen section[name='top'] .video-container {
  position: relative;
  margin-top: 6.31%;
  width: 100%;
  height: 100%;
  background-image: url(/static/media/video-background.cd101b1f6d8b24cb6f21.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.candidate-screen section[name='top'] .video {
  position: absolute;
  top: -11.97%;
  left: 48.15%;
  width: 34.13%;
  height: 116.5%;
}
.candidate-screen section[name='top'] .video-content {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.candidate-screen section[name='top'] .questions-data {
  max-width: 459px;
  text-align: center;
}

/* Features Section */
.candidate-screen section[name='features'] .container {
  align-items: center;
  padding: 0px 20px 78px;
  overflow: hidden;
}
.candidate-screen section[name='features'] .header-button {
  margin-bottom: 35px;
}
.candidate-screen section[name='features'] .feature-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 42px;
  margin-bottom: 40px;
  width: 100%;
}
.candidate-screen section[name='features'] .feature-item:last-child {
  margin-bottom: 0px;
}
.candidate-screen section[name='features'] .feature-item.text-right {
  flex-direction: row-reverse;
}
.candidate-screen section[name='features'] .feature-item .text-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 383px;
  height: 100%;
}
.candidate-screen section[name='features'] .feature-item.text-right .text-container {
  justify-content: flex-start;
}
.candidate-screen section[name='features'] .feature-item .text {
  position: relative;
  max-width: 300px;
  text-align: start;
}
.candidate-screen section[name='features'] .header3 {
  margin-bottom: 8px;
}
.candidate-screen section[name='features'] .text img {
  position: absolute;
  object-fit: contain;
  object-position: center;
}
.candidate-screen section[name='features'] .text img.green-star {
  top: -40px;
  left: -112px;
  width: 81.25px;
  height: auto;
}
.candidate-screen section[name='features'] .text img.yellow-star {
  top: -79px;
  right: -111px;
  width: 61.25px;
  height: auto;
}
.candidate-screen section[name='features'] .text img.lime-star {
  bottom: -83px;
  right: 15px;
  width: 59px;
  height: auto;
}
.candidate-screen section[name='features'] .feature-item .img-container {
  flex: 0 1 518px;
  z-index: 2;
}
.candidate-screen section[name='features'] .feature-item .img-container img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* How Section */
.candidate-screen section[name='how'] .container {
  align-items: center;
  padding: 0px 66.5px 52px;
  max-width: 1308px;
}
.candidate-screen section[name='how'] .header-button {
  margin-bottom: 16px;
}
.candidate-screen section[name='how'] .header2 {
  margin-bottom: 18px;
}
.candidate-screen section[name='how'] .block-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  width: 100%;
}
.candidate-screen section[name='how'] .block-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  flex: 0 1 200px;
  position: relative;
}
.candidate-screen section[name='how'] .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding: 27.5px;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border: 1px solid #ccda00;
  border-radius: 6.25px;
  z-index: 1;
}
.candidate-screen section[name='how'] .img-container img {
  max-width: 145px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.candidate-screen section[name='how'] .paragraph {
  padding: 0px 5px;
  text-align: center;
  z-index: 1;
}
.candidate-screen section[name='how'] .bg {
  position: absolute;
  top: 80px;
  left: -66.5px;
  width: 333px;
  height: 333px;
  background: radial-gradient(#ccda0066 0%, transparent 70%);
}

/* Pricing Section */
.candidate-screen section[name='pricing'] .container {
  align-items: center;
  padding: 0px 34px 0px;
  max-width: none;
  overflow: hidden;
}
.candidate-screen section[name='pricing'] .header-button {
  margin-bottom: 16px;
}
.candidate-screen section[name='pricing'] .header2 {
  margin-bottom: 59px;
  max-width: 345px;
  text-align: center;
}
.candidate-screen section[name='pricing'] .offer-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  flex-wrap: wrap;
  width: 100%;
}
.candidate-screen section[name='pricing'] .offer-item {
  align-self: stretch;
  flex: 0 1 313px;
  position: relative;
  padding: 0px 16px 78px;
  background: linear-gradient(
    transparent,
    #00a43d,
    #eaf4d4,
    #ffd926,
    #ffd926,
    #eaf4d4,
    #00a43d,
    transparent,
    transparent
  );
  z-index: 0;
}
.candidate-screen section[name='pricing'] .offer-item .bg-top {
  position: absolute;
  top: -35px;
  left: 0px;
  width: 100%;
  height: 100px;
  background: radial-gradient(farthest-side, white -200%, transparent 90%);
}
.candidate-screen section[name='pricing'] .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0px 21.5px 11px;
  height: 100%;
  min-height: 879px;
  background-color: #ffffff;
  border: 1.25px solid #00a43d;
  border-radius: 6.25px;
  z-index: 2;
}
.candidate-screen section[name='pricing'] .content.bg-green {
  background-color: #eaf4d4;
}
.candidate-screen section[name='pricing'] .price-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
  padding: 30px 0px 14px;
  width: 100%;
  min-height: 173px;
  border-bottom: 1px solid #00a43d;
}
.candidate-screen section[name='pricing'] .plan-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 188px;
  width: 100%;
}
.candidate-screen section[name='pricing'] .plan-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 21px;
  width: 100%;
  text-align: center;
}
.candidate-screen section[name='pricing'] .plan-item.small-margin {
  margin-bottom: 10px;
}
.candidate-screen section[name='pricing'] .plan-item .type {
  width: 62px;
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 700;
}
.candidate-screen section[name='pricing'] .plan-item .price {
  line-height: 25px;
  color: #00a43d;
  font-size: 32px;
  font-weight: 700;
}
.candidate-screen section[name='pricing'] .plan-item .price.free {
  width: 100%;
  color: #707070;
}
.candidate-screen section[name='pricing'] .plan-item .price.discount {
  width: 100%;
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 700;
  text-decoration-line: line-through;
}
.candidate-screen section[name='pricing'] .start-button {
  padding: 5.5px 32px;
  line-height: 22px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid #00a43d;
  border-radius: 10px;
}
.candidate-screen section[name='pricing'] .list-container {
  margin-bottom: 34px;
  width: 100%;
  text-align: start;
}
.candidate-screen section[name='pricing'] .list-container.feature-list {
  min-height: 181px;
}
.candidate-screen section[name='pricing'] .list-title {
  margin-bottom: 8px;
  line-height: 25px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.candidate-screen section[name='pricing'] .list-container ul {
  margin: 0px;
  padding-left: 16px;
}
.candidate-screen section[name='pricing'] .list-container li {
  line-height: 25px;
  color: #707070;
  font-size: 12px;
  font-weight: 400;
}
.candidate-screen section[name='pricing'] .green-hand {
  position: absolute;
  top: -40px;
  left: -29px;
  width: 100%;
  max-width: 115px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: 3;
}
.candidate-screen section[name='pricing'] .yellow-star-thick {
  position: absolute;
  right: -30px;
  bottom: 32px;
  width: 100%;
  max-width: 92.5px;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: 1;
}

/* About Section */
.candidate-screen section[name='about'] .container {
  align-items: center;
  padding: 0px 20px 47px;
  max-width: 1200px;
}
.candidate-screen section[name='about'] .info-container {
  position: relative;
  padding: 16px 52px 92px;
  max-width: 1033px;
  width: 100%;
}
.candidate-screen section[name='about'] .paragraph {
  margin-bottom: 25px;
  width: 100%;
  text-align: start;
}
.candidate-screen section[name='about'] .label {
  margin-bottom: 20px;
}
.candidate-screen section[name='about'] .block-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 27px;
}
.candidate-screen section[name='about'] .block-item {
  width: 125px;
  height: 64px;
  background-color: #f0f0f0;
}
.candidate-screen section[name='about'] .block-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.candidate-screen section[name='about'] .tall-plants {
  position: absolute;
  bottom: 12px;
  left: 0px;
  width: 25px;
  height: 79px;
  object-fit: contain;
  object-position: center;
}
.candidate-screen section[name='about'] .short-plants {
  position: absolute;
  bottom: 0px;
  left: 30px;
  width: 18px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}
.candidate-screen section[name='about'] .person {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 107px;
  height: 147px;
  object-fit: contain;
  object-position: center;
}

@media only screen and (max-width: 800px) {
  /* Top Section */
  .candidate-screen section[name='top'] .container {
    padding: 52px 20px 54px;
  }
  .candidate-screen section[name='top'] .text-video-container {
    flex-wrap: wrap;
  }

  /* Features Section */
  .candidate-screen section[name='features'] .feature-item {
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 51px;
  }
  .candidate-screen section[name='features'] .feature-item .text-container,
  .candidate-screen section[name='features'] .feature-item.text-right .text-container {
    justify-content: center;
  }
  .candidate-screen section[name='features'] .feature-item .text {
    text-align: center;
  }

  /* How Section */
  .candidate-screen section[name='how'] .block-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  /* About Section */
  .candidate-screen section[name='about'] .container {
    padding: 0px 10px 47px;
  }
  .candidate-screen section[name='about'] .info-container {
    padding: 16px 30px 125px;
  }
  .candidate-screen section[name='about'] .block-list {
    justify-content: center;
  }
  .candidate-screen section[name='about'] .paragraph {
    text-align: justify;
  }
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  /* About Section */
  .candidate-screen section[name='about'] .info-container {
    padding: 16px 52px 125px;
  }
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {
}

.employer-screen {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.employer-screen .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.employer-screen .header-button {
  padding: 17px 41px;
  line-height: 22px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #00a43d;
  border-radius: 6.25px;
}
.employer-screen .paragraph {
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  text-align: start;
}
.employer-screen video {
  vertical-align: middle;
}

/* Top Section */
.employer-screen section[name='top'] {
  position: relative;
  padding: 76px 10px 51px;
  min-height: 372px;
}
.employer-screen section[name='top']::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/static/media/employer-top-bg.2b5de11e535aba6b30e2.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0.45;
  content: '';
}
.employer-screen section[name='top'] .container {
  align-items: center;
  position: relative;
  padding: 37.5px 115px 79.5px;
  max-width: 868px;
  height: 100%;
}
.employer-screen section[name='top'] .text-container {
  text-align: center;
}
.employer-screen section[name='top'] .text-container .title {
  margin-bottom: 8px;
  max-width: 600px;
  line-height: 35px;
  color: #00a43d;
  font-size: 24px;
  font-weight: 700;
}
.employer-screen section[name='top'] .text-container .description {
  max-width: 600px;
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
}
.employer-screen section[name='top'] .braces {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 51.25px;
  height: 36.88px;
  object-fit: contain;
  object-position: center;
}
.employer-screen section[name='top'] .letter {
  position: absolute;
  top: 11.25px;
  right: 0px;
  width: 36.88px;
  height: 40.63px;
  object-fit: contain;
  object-position: center;
}
.employer-screen section[name='top'] .tag {
  position: absolute;
  bottom: 94px;
  right: 37px;
  width: 60px;
  height: 43.13px;
  object-fit: contain;
  object-position: center;
}
.employer-screen section[name='top'] .hand {
  position: absolute;
  bottom: 19px;
  left: 107px;
  width: 63.75px;
  height: 66.25px;
  object-fit: contain;
  object-position: center;
}

/* Features Section */
.employer-screen section[name='features'] .container {
  align-items: center;
  padding: 14px 30px 77.5px;
  max-width: none;
}
.employer-screen section[name='features'] .feature-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  margin: 35px 0px 0px;
  max-width: 982px;
}
.employer-screen section[name='features'] .feature-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
}
.employer-screen section[name='features'] .feature-item.text-right {
  flex-direction: row-reverse;
  gap: 61px;
}
.employer-screen section[name='features'] .text-container {
  flex: 0 1 400px;
  margin-left: 21px;
  text-align: start;
}
.employer-screen section[name='features'] .feature-item.text-right .text-container {
  margin-left: 0px;
}
.employer-screen section[name='features'] .title {
  margin-bottom: 8px;
  line-height: 22px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
}
.employer-screen section[name='features'] .description {
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
}
.employer-screen section[name='features'] .img-container {
  flex: 0 1 518px;
}
.employer-screen section[name='features'] .img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}

/* How Section */
.employer-screen section[name='how'] .container {
  align-items: center;
  padding: 0px 25px 78px;
  max-width: 1104px;
}
.employer-screen section[name='how'] .block-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  margin-top: 45px;
  max-width: 653px;
  width: 100%;
}
.employer-screen section[name='how'] .block-list .background {
  position: absolute;
  top: -110px;
  left: 4px;
  width: 100%;
  height: calc(100% + 72px + 91px + 106px + 91px);
  background: radial-gradient(#ccda0066 0%, #ffffff00 65%);
}
.employer-screen section[name='how'] .block-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 312.5px;
  height: 218.75px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  z-index: 1;
}
.employer-screen section[name='how'] .block-item.green {
  color: #00a43d;
  border: 1px solid #00a43d;
  box-shadow: 5px 5px 0px #00a43d;
}
.employer-screen section[name='how'] .block-item.pink {
  color: #c85e60;
  border: 1px solid #c85e60;
  box-shadow: 5px 5px 0px #c85e60;
}
.employer-screen section[name='how'] .block-item .img-container {
  margin-bottom: 14px;
  max-width: 50px;
}
.employer-screen section[name='how'] .block-item .img-container .icon {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}
.employer-screen section[name='how'] .block-item .description {
  max-width: 200px;
  line-height: 25px;
  font-size: 16px;
  font-weight: 400;
}

/* Calculator Section */
.employer-screen section[name='calculator'] .container {
  align-items: center;
  padding: 0px 25px 0px;
}
.employer-screen section[name='calculator'] .content {
  margin-top: 24px;
  max-width: 653px;
  width: 100%;
}
.employer-screen section[name='calculator'] .input-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 43px;
  margin-bottom: 17.5px;
}
.employer-screen section[name='calculator'] .input-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 30px 0px 5px;
  width: 100%;
  height: 56.25px;
  border: 1px solid #00a43d;
  border-radius: 6.25px;
}
.employer-screen section[name='calculator'] .input-container .dollar {
  flex-shrink: 0;
  min-width: 45px;
  line-height: 25px;
  color: #00a43d;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.employer-screen section[name='calculator'] .input-container input {
  padding: 0px 0px 0px 5px;
  height: 100%;
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  border: none;
  z-index: 0;
}
.employer-screen section[name='calculator'] .input-container input:focus-visible {
  outline: none;
}
.employer-screen section[name='calculator'] .title {
  line-height: 25px;
  color: #00a43d;
  font-size: 24px;
  font-weight: 700;
}
.employer-screen section[name='calculator'] .check-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.employer-screen section[name='calculator'] .check-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 13.875px 0px;
  width: 100%;
  min-height: 60px;
  border-top: 1px solid #707070;
}
.employer-screen section[name='calculator'] .check-item:last-child {
  border-bottom: 1px solid #707070;
}
.employer-screen section[name='calculator'] .check-item .title {
  line-height: 33px;
  color: #00a43d;
  font-size: 24px;
  font-weight: 700;
}
.employer-screen section[name='calculator'] .check-item .checkmark {
  flex-shrink: 0;
  width: 31.25px;
  height: 31.25px;
  background-color: #00a43d;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACLSURBVHgB7dXbDYAgEETRLcUS7JBSLcESRohgDAk+NgHmY07C7+YGBcxERESeAAhxbXGtxibHJXtcizGp4rh2T3FeivNSnFe3uHRp5qHBnLruXBqYB8MTOeSzeiOH/nN/IzHjQHyNxMzT+hYJhqukFUkRZ41IqriiiuSKK26RfHEFzteGM05ERORyAJTPnUjMf+z/AAAAAElFTkSuQmCC);
  background-size: 25px 25px;
  background-position: center;
  border-radius: 50%;
  opacity: 0;
}
.employer-screen section[name='calculator'] .check-item.active .checkmark {
  opacity: 1;
}
.employer-screen section[name='calculator'] .check-item .description {
  line-height: 25px;
  color: #eaf4d4;
  font-size: 16px;
  font-weight: 700;
  text-align: start;
}
.employer-screen section[name='calculator'] .check-item.active .description {
  color: #707070;
}
.employer-screen section[name='calculator'] .question {
  margin: 10px 0px 21px;
  line-height: 25px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
  text-align: start;
}
.employer-screen section[name='calculator'] .button-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 403px;
  width: 100%;
}
.employer-screen section[name='calculator'] .button-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.employer-screen section[name='calculator'] .button-item .button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1px;
  width: 19px;
  height: 19px;
  border: 1px solid #00a43d;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}
.employer-screen section[name='calculator'] .button-item .button-container input {
  position: absolute;
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.employer-screen section[name='calculator'] .button-item .button-container .radio {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 50%;
}
.employer-screen section[name='calculator'] .button-container input:checked ~ .radio {
  background-color: #00a43d;
}
.employer-screen section[name='calculator'] .button-item label {
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
}
.employer-screen section[name='calculator'] .alacarte {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 53px;
}
.employer-screen section[name='calculator'] .alacarte button {
  padding: 0px 27px;
  height: 35px;
  line-height: 22px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
  background-color: #ffffff;
  border: 1px solid #00a43d;
  border-radius: 6.25px;
}
.employer-screen section[name='calculator'] .alacarte a {
  line-height: 22px;
  color: #707070;
  font-size: 16px;
  font-weight: 700;
  text-decoration-line: underline;
}

/* Contact Section */
.employer-screen section[name='contact'] {
  padding: 48px 19px 0px;
}
.employer-screen section[name='contact'] .container {
  align-items: center;
  padding: 56px 30px 46px;
  max-width: none;
  background: linear-gradient(135deg, #ffffff, #eaf4d4);
  border-radius: 6.25px;
}
.employer-screen section[name='contact'] .form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 24px;
  max-width: 801px;
  width: 100%;
}
.employer-screen section[name='contact'] .input-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
  max-width: 606px;
  width: 100%;
}
.employer-screen section[name='contact'] .input-item {
  margin-bottom: 35px;
  width: 100%;
  text-align: start;
}
.employer-screen section[name='contact'] .title {
  margin-bottom: 10px;
  line-height: 25px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
}
.employer-screen section[name='contact'] .title .red {
  color: #c85e60;
}
.employer-screen section[name='contact'] input.text {
  max-width: 606px;
  padding: 5.5px 15px;
  line-height: 22px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  background-color: #ffffff;
  border: 1px solid #00a43d;
  border-radius: 6.25px;
}
.employer-screen section[name='contact'] .radio-button-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.employer-screen section[name='contact'] .radio-button-item {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  flex: 0 1 156px;
  position: relative;
  padding: 5px 10px;
  color: #00a43d;
  border: 1px solid #00a43d;
  border-radius: 6.25px;
  background-color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.employer-screen section[name='contact'] .radio-button-item:has(input:checked) {
  color: #ffffff;
  background-color: #00a43d;
}
.employer-screen section[name='contact'] .radio-button-item span {
  line-height: 25px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.employer-screen section[name='contact'] .radio-button-item input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  border: none;
}
.employer-screen section[name='contact'] .checkbox-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}
.employer-screen section[name='contact'] .checkbox-label .checkbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
  width: 21px;
  height: 21px;
  border: 1px solid #00a43d;
  border-radius: 50%;
  background-color: #ffffff;
  overflow: hidden;
}
.employer-screen section[name='contact'] .checkbox-label .checkbox-container input {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color ease-in-out .2s;
}
.employer-screen section[name='contact'] .checkbox-label .checkbox-container input:checked {
  background-color: #00a43d;
}
.employer-screen section[name='contact'] .recaptcha-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
.employer-screen section[name='contact'] .policy {
  align-self: center;
  margin: 1px 0px 16px;
  max-width: 420px;
  line-height: 14px;
  color: #707070;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
}
.employer-screen section[name='contact'] .policy a {
  line-height: 14px;
  color: #707070;
  font-size: 10px;
  font-weight: 400;
  text-decoration: underline;
}
.employer-screen section[name='contact'] .submit-button {
  align-self: center;
  padding: 0px;
  width: 156px;
  height: 35px;
  line-height: 25px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #00a43d;
  border-radius: 6.25px;
  transition: all ease-in-out 0.2s;
}
.employer-screen section[name='contact'] .submit-button:hover {
  color: #fff;
  background-color: #00a43d;
}

/* Roadshow Section */
.employer-screen section[name='roadshow'] .container {
  align-items: center;
  padding: 42px 16.814% 57px;
  max-width: 1920px;
  overflow: hidden;
}
.employer-screen section[name='roadshow'] .video-container {
  position: relative;
  margin-top: 16px;
  max-width: 750px;
  width: 100%;
  aspect-ratio: 1200/675;
}
/* .employer-screen section[name='roadshow'] .person-right {
  bottom: -60px;
  right: -295px;
  width: 246px;
  height: 275px;
} */
.employer-screen section[name='roadshow'] .person-right {
  position: absolute;
  bottom: -13.511%;
  right: -24.533%;
  width: 20.533%;
  height: 40.77%;
  object-fit: contain;
  object-position: center;
}
/* .employer-screen section[name='roadshow'] .person-left {
  bottom: -60px;
  left: -230px;
  width: 179px;
  height: 276px;
} */
.employer-screen section[name='roadshow'] .person-left {
  position: absolute;
  bottom: -13.51%;
  left: -18.933%;
  width: 15.866%;
  height: 40.888%;
  object-fit: contain;
  object-position: center;
}
.employer-screen section[name='roadshow'] .video-container .bg {
  position: absolute;
  width: 62.5%;
  aspect-ratio: 1 / 1;
  opacity: 0.9;
  z-index: -1;
}
.employer-screen section[name='roadshow'] .video-container .bg.yellow {
  background: radial-gradient(#ffd92666 0%, #ffffff00 45%);
}
.employer-screen section[name='roadshow'] .video-container .bg.lime {
  background: radial-gradient(#ccda0066 0%, #ffffff00 45%);
}
.employer-screen section[name='roadshow'] .video-container .bg.green {
  background: radial-gradient(#00a43d66 0%, #ffffff00 45%);
}
.employer-screen section[name='roadshow'] .video-container .bg.position-0 {
  top: -40.265%;
  left: -28.661%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-1 {
  top: -40.265%;
  left: 3.167%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-2 {
  top: -40.265%;
  left: 32.333%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-3 {
  top: -40.265%;
  right: -28.661%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-4 {
  top: 6.963%;
  left: -28.661%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-5 {
  top: 6.963%;
  right: -28.661%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-6 {
  bottom: -59.735%;
  left: -28.661%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-7 {
  bottom: -59.735%;
  left: 3.167%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-8 {
  bottom: -59.735%;
  left: 32.333%;
}
.employer-screen section[name='roadshow'] .video-container .bg.position-9 {
  bottom: -59.735%;
  right: -28.661%;
}

/* About Section */
.employer-screen section[name='about'] {
  position: relative;
}
.employer-screen section[name='about'] .container {
  align-items: center;
  padding: 25px 20px 56px;
  max-width: 1200px;
}
.employer-screen section[name='about'] .container::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/static/media/employer-about-bg.f865557e8e4d2e78804a.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.2;
  content: '';
}
.employer-screen section[name='about'] .info-container {
  margin-top: 16px;
  max-width: 923px;
}
.employer-screen section[name='about'] .paragraph {
  margin-bottom: 25px;
}
.employer-screen section[name='about'] .label {
  margin-bottom: 0px;
}
.employer-screen section[name='about'] .block-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 25px 0px;
  max-width: max-content;
}
.employer-screen section[name='about'] .block-item {
  width: 125px;
  height: 64px;
  background-color: #f0f0f0;
}
.employer-screen section[name='about'] .block-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media only screen and (max-width: 800px) {
  /* Top section */
  .employer-screen section[name='top'] .container {
    padding: 67.5px 15px 109.5px;
  }
  .employer-screen section[name='top'] .letter {
    top: 0px;
  }
  .employer-screen section[name='top'] .tag {
    bottom: 19px;
    right: 0px;
  }
  .employer-screen section[name='top'] .hand {
    left: 0px;
  }

  /* Features section */
  .employer-screen section[name='features'] .feature-list {
    gap: 48px;
  }
  .employer-screen section[name='features'] .feature-item,
  .employer-screen section[name='features'] .feature-item.text-right {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .employer-screen section[name='features'] .text-container {
    margin-left: 0px;
    text-align: center;
  }

  /* Contact Section */
  .employer-screen section[name='contact'] .radio-button-list {
    justify-content: center;
  }
  .employer-screen section[name='contact'] .input-list {
    gap: 0px;
    flex-wrap: wrap;
  }

  /* Calculator section */
  .employer-screen section[name='calculator'] .input-item {
    gap: 23px;
  }

  /* Roadshow section */
  .employer-screen section[name='roadshow'] .container {
    padding: 42px 20px 89px;
  }
  .employer-screen section[name='roadshow'] .person-right {
    bottom: -89px;
    right: 0px;
    width: 62px;
    height: 69px;
  }
  .employer-screen section[name='roadshow'] .person-left {
    bottom: -89px;
    left: 0px;
    width: 45px;
    height: 69px;
  }

  /* About section */
  .employer-screen section[name='about'] .block-list {
    justify-content: center;
  }
  .employer-screen section[name='about'] .paragraph {
    text-align: justify;
  }
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  /* Top section */
  .employer-screen section[name='top'] .container {
    padding: 37.5px 75px 79.5px;
  }

  /* Contact Section */
  .employer-screen section[name='contact'] .radio-button-list {
    justify-content: flex-start;
  }
  .employer-screen section[name='contact'] .input-list {
    gap: 35px;
    flex-wrap: nowrap;
  }

  /* Calculator section */
  .employer-screen section[name='calculator'] .input-item {
    gap: 43px;
  }

  /* Roadshow section */
  .employer-screen section[name='roadshow'] .container {
    padding: 42px 16.814% 57px;
  }
  .employer-screen section[name='roadshow'] .person-right {
    bottom: -13.511%;
    right: -24.533%;
    width: 20.533%;
    height: 40.77%;
  }
  .employer-screen section[name='roadshow'] .person-left {
    bottom: -13.51%;
    left: -18.933%;
    width: 15.866%;
    height: 40.888%;
  }
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {
}

.institution-screen {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.institution-screen .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.institution-screen .paragraph {
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  text-align: start;
}
.institution-screen .header-button {
  padding: 17px 41px;
  line-height: 22px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background-color: #00a43d;
  border-radius: 6.25px;
}
.institution-screen img,
.institution-screen video {
  vertical-align: middle;
}

/* Top Section */
.institution-screen section[name='top'] .container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  padding: 88.75px 30px 96px;
  max-width: 1003px;
}
.institution-screen section[name='top'] .text-container {
  flex: 0 0 350px;
  text-align: start;
}
.institution-screen section[name='top'] .title {
  margin-bottom: 8px;
  line-height: 35px;
  color: #00a43d;
  font-size: 24px;
  font-weight: 700;
}
.institution-screen section[name='top'] .title span {
  margin-right: 24px;
}
.institution-screen section[name='top'] .line-loop {
  width: 90px;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.institution-screen section[name='top'] .img-container {
  flex: 0 1 523px;
  position: relative;
}
.institution-screen section[name='top'] .img-container .background-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.institution-screen section[name='top'] .img-container .person-image {
  top: 65px;
  right: -18px;
  width: 168px;
  position: absolute;
  top: 23.088%;
  right: -3.442%;
  width: 32.122%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Partner Section */
.institution-screen section[name='partner'] {
  padding: 0px 18.75px 0px;
}
.institution-screen section[name='partner'] .header-button {
  margin-bottom: 45px;
}
.institution-screen section[name='partner'] .container {
  align-items: center;
  padding: 31.25px 20px 62px;
  max-width: none;
  background: linear-gradient(135deg, #ffffff, #eaf4d4);
  border-radius: 6.25px;
}
.institution-screen section[name='partner'] .list-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 73.5px;
  margin-bottom: 60px;
  max-width: 879px;
}
.institution-screen section[name='partner'] .list-item:last-child {
  margin-bottom: 0px;
}
.institution-screen section[name='partner'] .list-item.text-right {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.institution-screen section[name='partner'] .text-container {
  flex: 0 1 384px;
  text-align: start;
}
.institution-screen section[name='partner'] .title {
  margin-bottom: 8px;
  line-height: 22px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
}
.institution-screen section[name='partner'] .img-container {
  flex: 0 1 400px;
  height: 200px;
  position: relative;
  border: 1px solid #00a43d;
  border-radius: 6.25px;
  box-shadow: 2.5px 2.5px 2.5px #00a43d;
  overflow: hidden;
}
.institution-screen section[name='partner'] .img-container .background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.institution-screen section[name='partner'] .img-container .badge {
  position: absolute;
  object-fit: contain;
  object-position: center;
}
.institution-screen section[name='partner'] .img-container .badge.envelope {
  top: 111px;
  left: 31px;
  width: 82.5px;
  height: 59px;
}
.institution-screen section[name='partner'] .img-container .badge.bag {
  top: 127px;
  right: 36px;
  width: 74px;
  height: 53px;
}
.institution-screen section[name='partner'] .img-container .badge.paper {
  top: 121px;
  left: 114px;
  width: 71px;
  height: 51px;
}
.institution-screen section[name='partner'] .img-container .badge.letter {
  top: 14px;
  right: 12px;
  width: 48px;
  height: 53px;
}
.institution-screen section[name='partner'] .img-container .badge.hand {
  top: 100px;
  right: 19px;
  width: 77px;
  height: 86px;
}

/* Email Section */
.institution-screen section[name='email'] {
  padding: 62px 20px 129px;
  background: radial-gradient(circle at center, #ccda0066 0%, white 40%);
}
.institution-screen section[name='email'] .container {
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0px 198px;
  max-width: 935px;
  min-height: 280px;
}
.institution-screen section[name='email'] .title {
  margin-bottom: 15px;
  max-width: 344px;
  line-height: 35px;
  color: #00a43d;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.institution-screen section[name='email'] .email-input {
  padding: 2.5px 15px;
  max-width: 365px;
  line-height: 25px;
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  background-color: transparent;
  border-top: none;
  border-right: none;
  border-left: none;
  border-color: #707070;
}
.institution-screen section[name='email'] img {
  position: absolute;
  object-fit: contain;
  object-position: center;
}
.institution-screen section[name='email'] .green-hand {
  top: 0px;
  left: 50px;
  width: 83px;
  height: 53px;
}
.institution-screen section[name='email'] .green-noti {
  bottom: 0px;
  left: 0px;
  width: 94px;
  height: 42px;
}
.institution-screen section[name='email'] .yellow-hand {
  bottom: 27px;
  right: 69px;
  width: 83px;
  height: 64px;
}
.institution-screen section[name='email'] .green-textbox {
  top: 44px;
  right: 0px;
  width: 63px;
  height: 45px;
}

/* Roadshow Section */
.institution-screen section[name='roadshow'] {
  padding: 0px 18.75px;
}
.institution-screen section[name='roadshow'] .container {
  align-items: center;
  padding: 42.5px 20px 85px;
  max-width: none;
  background-image: url(/static/media/green-circles-bg.02fa1b19c09dae1a7210.png);
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
}
.institution-screen section[name='roadshow'] .video-container {
  position: relative;
  margin-top: 35px;
  max-width: 750px;
  width: 100%;
  aspect-ratio: 1200 / 675;
}

/* About Section */
.institution-screen section[name='about'] .container {
  align-items: center;
  position: relative;
  margin: 0px 5px 19px;
  padding: 12px 112px 56px;
  max-width: 1147px;
}
.institution-screen section[name='about'] .info-container {
  margin-top: 16px;
  max-width: 923px;
}
.institution-screen section[name='about'] .paragraph {
  margin-bottom: 25px;
}
.institution-screen section[name='about'] .paragraph.label {
  margin-bottom: 20px;
}
.institution-screen section[name='about'] .block-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 27px;
}
.institution-screen section[name='about'] .block-item {
  width: 125px;
  height: 64px;
}
.institution-screen section[name='about'] .block-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.institution-screen section[name='about'] .person-left {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 89px;
  height: 151px;
  object-fit: contain;
  object-position: center;
}
.institution-screen section[name='about'] .person-right {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 121px;
  height: 151px;
  object-fit: contain;
  object-position: center;
}

@media only screen and (max-width: 800px) {
  /* Top Section */
  .institution-screen section[name='top'] .container {
    gap: 40px;
    flex-wrap: wrap;
    padding: 88.75px 20px 96px;
  }
  .institution-screen section[name='top'] .text-container {
    flex: 0 1 490px;
    padding: 0px 20px;
  }

  /* Partner Section */
  .institution-screen section[name='partner'] .list-item,
  .institution-screen section[name='partner'] .list-item.text-right {
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 72px;
  }

  /* Email Section */
  .institution-screen section[name='email'] .container {
    padding: 65px 30px 100px;
  }
  .institution-screen section[name='email'] .green-hand {
    top: 0px;
    left: 0px;
  }
  .institution-screen section[name='email'] .green-textbox {
    top: 0px;
    right: 0px;
  }
  .institution-screen section[name='email'] .green-noti {
    bottom: 0px;
    left: 0px;
  }
  .institution-screen section[name='email'] .yellow-hand {
    bottom: 0px;
    right: 0px;
  }

  /* Roadshow Section */
  .institution-screen section[name='roadshow'] .container {
    padding: 42.5px 10px 85px;
  }

  /* About Section */
  .institution-screen section[name='about'] .container {
    padding: 12px 20px 141px;
  }
  .institution-screen section[name='about'] .block-list {
    justify-content: center;
  }
  .institution-screen section[name='about'] .paragraph {
    text-align: justify;
  }
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  /* Roadshow Section */
  .institution-screen section[name='roadshow'] .container {
    padding: 42.5px 20px 85px;
  }
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {
}

.demo-screen {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.demo-screen video {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.demo-screen .play {
	display: inline-block;
	position: absolute;
	top: calc(50% - 60px);
	left: calc(50% - 60px);
	width: 120px;
	height: 120px;
	background-color: #F0F0F0;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACgCAYAAACLz2ctAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAvWSURBVHhe7Z2NmdQ2EIa5CggVZKkgUEH2KgAqyFIBUEGOCoAKsldB7irIXgWBCnIdBCog8znjw/b6R7IlW9J8eh4/vr2VZWv07oxm9OOLR0wtCXz//v2Z/OOxHHv9Ap9/0r93csYxlu7lSxxIX+X43Dh/u7i4wGcmlcCFVUkIaIDqVzkAGA6AhfMaCRACUpxPcnwRMAGruWQGQAXuhbTwvgFdSg1ewwgg76wAWTSAak4B3csVtVsoqAHkjRzXAiO0ZZGpOAAFOphSQHfIELohyADjUY7b0mAsBkAB7zeFDia25AQTfRQQr0uoZNYAqrZ7o+DVnmoJ7eJSBzgt0IqfctaKWQKofbsaPJfGKj1PDWJ2IZ6sAFTwPghNpZvZuT8YmOfXOWnELABUU/u7mtq5jWPpOmjE9zmAmDSAGrsDeG8t0ROwrh8VxGSD3MkCKPChj3clhzXnIiB/VVGA70q04afQBYcoLzkA1dz+wX5eiOZtlZFk/zApAAU+mFtoPaZ4EoA2fB+veL+SkwBQtd6f8uhrTQbwk1J5uRGueZWCk7I5gALfQYSB0Ar7euuCjr7hO4HwuO5t23fbDED1cAEeAGTaTgIY1nu91e03AZAmd6vmHrzvZiZ5dQB1NOMvmtzkIIRJvlx7xvaqAGp/DyEWpnQlgKG81fqFqwGogWVE5pnSl8DbtQLXqwAo8EHr0dlIH7zmE67inEQHkPDlRV3naaNDGBVAwpc1fPXDR4UwGoCErwj4okMYBUDCVxR8USEMDqDAh7l7GOFgKk8CGLoLGskICiDjfOUR11OjoHHCYADqCMffJprAdiWDjpgEAVDHdgEfZ7TYgBMQPg8xnWsxgDqrBWO7nMtnA766lp8FwOdLqxwCQI5yLG2FfK9fHCNcBCCdjnzJCfjki5yS2QCy3xewCfMualF/cAmAcDrY78sbnlBPf5L+4OWcwmYBKNrvSm6GFWxMlEAtAezEAC68kjeAanr/8boLM1uRwFPf0MwcABFy2VuRKOvpJQFvU+wFIMd5vRrDamYvr9gZQA04w/RytMMqWm71hlcMU+y0IZIPgJgFgQ2DmCiBKQlg11anHc2cAKTjMSVvft8jASeHxBXAo9wAm4AzUQKuErgWLXiYyjwJIKdZTYmQ349IYFILugDIsAsZmyuBG9GCr8YuHgWQ2m+u3HldQwKYNzi4e/8UgOz7kaWlEhjtCw4CSM93qdx5fUMCg33BMQAZ9yNDoSQwGBccA/BfuTtHPUI1ge1yvko/8EmfCHoBNDLT+VYEginlNzrMuJfPiN7jJdZM4SXQO0Y8BGDpoZfBuWv640P343H4NjBdYu9MmTMADTgfd6L1oO0Gk8rgRjL8YhqZ8JU/c0b6ACx9aw28ngBwTSbO/J4UkW+Gs609+gAseq2HwDc5+tOUqkAIbXmU42dfaTP/mQTO1hK3GsPCyIcvgBChOimA8AWhWiyBlhnuAnglxRe92GgOgLXI6aAshg8FtMxwF8CizS9qvwRA1YY7OdNBmc9iywl8AFDNDILPRaelADa0YfHWIiIIT+op+00AD3LD4t/hEQpA1YZ7OaNvSAfFj9aHSEQTQAiy+FnPIQFUCDFcCdnRQXGH8GFsuAlg8f2/EH3AIRnTQXGnT3I+hGMqAK30/2ICqHLcyZkOihuLVT+wBvClXIMXRhefQpvgPoFxBMUJo0tpi1MN4JVcUnT8rxbJGgCqNtxr35AOSj+P1YSQGkCYDROd6LUApIMyqQVvpS1e1gCacEBi9wHpoExC18xQOSI1gN+9Ls0485oasCkmTvE6hwZtcWFhAkKz6lsBWD8DHZQWiM8BIDrLmAFtIm0NIB2UFmaXANCMB7xVH7Dvl80pXpVU3hHAjfW+8RGU9wDQTAgmJQ1IB6WSwC0APMkfZpYiptAHHAnXmOoOiRzuCODGJrh7e2NrUCoAse/zLrF2iPY4KWvAutKGHJTPANBMEDrVPuCISS59iewjAhhN14YpuHQnkQCG4SRaKQJg0VPlCGA0dMIVXHI3iQCG4yRaSQQwmmjXLzgHL7gTpKYJXh+TeHfMEEAslQCERSaa4ISbVUwvlklgdKTYBADvpXZm1i3koAE1EI1NAorVfPqL+sKhuMR0iw7FAb5dYo8W43E4FhxDqnPLtGByO7KpAOR0rLnEBLpO14vA2XgWqMhcirnmhNSNm0onpH6Qx7D4SoxqQiq8LBOL0sFaKk6IIUdj7CdeTcnfSw4uSlpRExpzNMYkWy1KQr8DC9NNpK01oEFHY4wrLkxf61dn2NEYFHG1MB3finDwPlcTL2XZQgMadzSGAPwibfGMmxNFVIF0NEaF29qcyIwnvJYGpKMx+ctubc9mxhNeA0A6GpPwIUNrg0oEQYt/RUPsOCAdDSfw6kw/tui15IjE0oB0NLzgqxyQSiHUl4kAj/I3X9PgJceHDd4tTJ3ylMxo9t7XNBzkEr6oxkPMdDQ8hNXO2vuiGhP9wFAmmI7GbPhw4fmruqz0A5cCSEdjEXi4+E7aAFGXKvF1rR7ypKPhIazhrKOva93JddisqNg0RwNyRCMoDk+lDe57NaAFM+wLIB2NoPA9hF/GACx9R6YHD2xKtHQ0piTk/X3L/J71AVUDlm6GT6IFL8dER0fDGyzXC1rmtxdAhfAk55K37b0SCN/3SY2OhitL3vla3u+gCVYAD3IuPSiN1YBHAfFWnQz84ND92HuLlhe4SOC1yPrYzdgKwzS/lEb5Kp8fu5TMPJTAhAS+CXy9q/7GAPwohb6haCmBABJ4GPv10YA7yVx0TDCAYFmEmwTOnI/RPmD9pZUZMm4yZK6ZErgW8wufojcNmmDktrZkc6aAedm4BJ4LgFj05g+gQniSc8khGQIUTwLVwqOx4kc1ILVgvJYxUvJg38+pD8i+oBFM4lRztO/nC+BOLqBHHKehSi11Uvuh4pMmuKEFGRcsFZXw9arW/LoU6wMgItn3cnB0xEWydvN8k6rvBECMpE0mZwDVISl9qtakwJhhUgK9Y75DV3kBqBCe5MywzGQ7mMzQO+NlTBJzAKRDYpItp0o7OR7NkrwBVC2IDqaZbX2dRM9Mzo7HYgAVQjN7CpKtSQl4m966xFkaUAGEKQaE9Ion26foDPB6nzVXuvnUdjaACuFBzqXPnPaRp8W8Xl5vV0CLAFQIj3IuflMji2Q51NlpuG2snMUAsj/o0ExlZjlb4zunmqEAZH9wjvTzvWZRvy+IF9yVHSev5kuT55MDvv3YJFOf8oJowPqGuqaWTolPC+SXd5HTEdwJ6dGEHC/ODyrXJz7bWsP1wqF8QTVgQxPSM17aMuldv9jj7atSFADVMyaE6UE094miwIeHiQYgIZzb1sldFw2+6AASwuRg8n2gqPCtAiAh9G3zZPJHh281ABVCesfJsDX5IEFDLWN3i9oH7AnRHOR/WNzEGTSTDGySAUHmt33bqMV6mlUBVE2IVzSdCGGsJp1dbtARDtenWB1AhXAnZ2wQaeIl2a6NsWG+L3JvDK85rWQL+ZybAFhXgLtvhWzK2WWt4mwMPd2mAKo2ZL9wNjuLLoTJPYjWgyXaLG0OYMMkH+VvLvdcB4U7he9+ndsN3yUJABsm+Ur+5mq7uFTMWr0W65GSApDaMFYzV+Umo/WatUwOwIY2ZN8wDI+rx/Z8HjtZAFUbYkMkmGXu1u/Tqj/y4mU8H7cIr7g+btIANrThTkHk6ju3lr2GvOau1XW7RZhcWQDYAfEon+kt97f/rfwbQ2n3YfCIX0pWADZAxHAeJjdQI/4vFGg8mNrB3ejjozTvDlkC2NGIAPEgh7UJDnAuMLED77vLRuN1Mc0awGZldEUeQCzdPCOcAujQFck+FQNgRyvi3RSAsZTJDpgsAOBuctZ2fb+W4gDsaMWdfAaMOHLTjNB0GKctDrpmGxUNYAdGxBT3jSM17Qgtd6qPlGN3Ie2+GQC7QtOXVMObBpQ4Q1uuBSVgu5cDXiug+2wFuG47mAVw6Fese9xAWwJKnAEmDiR8noIUcNUTOwEZDnwGbF9zDJUMySrE//8DOwlOPFIoxmwAAAAASUVORK5CYII=);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	cursor: pointer;
	z-index: 5;
}
.demo-screen .controls {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 90%;
	max-width: 900px;
	margin-bottom: 90px;
	transition: all ease-in-out .2s;
	z-index: 10;
}
.demo-screen .controls .message {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 15px 30px;
	font-size: 30px;
	font-weight: 500;
	text-align: left;
	background-color: #FFF;
	border-radius: 15px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
}
.demo-screen .controls button[name=skip],
.demo-screen .controls button[name=start],
.demo-screen .controls button[name=submit] {
	margin-top: 30px;
	font-size: 32px;
}
.demo-screen .recording {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 40px;
	left: calc(50% - 55px);
	width: 110px;
	height: auto;
	padding: 8px 15px;
	background-color: #FFF;
	border: 2px solid #F41716;
	border-radius: 15px;
	opacity: 0;
	z-index: 10;
}
.demo-screen .recording .dot {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #F41716;
	border-radius: 50%;
}
.demo-screen .recording span {
	margin-left: 8px;
	color: #000;
	font-size: 20px;
	font-weight: 600;
	text-align: left;
}
.demo-screen .menu-toggle {
	display: inline-block;
	position: absolute;
	top: 35px;
	left: 35px;
	width: 75px;
	height: 75px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAQZJREFUeJzt2DFSwkAUgOEXC2j0AnBDdDyVXAWxAGw4CdT+Fix0QhD2rRP/byZdZt6yySThj5AkKQ0wBl6BJbAvxxJ4AUat11cVMAU++dkGmLZeZxXlyp/78UfrQd4J5bbv67n1eu8O+LhiA96z1tVlDQJ2EfHY8/R913VPNddz9JAx5Be+sgZlbsC20rk3ydyA+RXnvlVbRSvlNbjp8QBcDfI1GHH6EDq3CStg0nqdVQEjDp+9C2BXjgUwG+yVlyRJirAJ2gR7/BmyCWITtAnaBLMG2QSzBoVN0CZoE4ywCUqSpH8Mm6BN8BKbIDZBm6BNMGuQTTBrUNgEbYI2wQiboCTpL/kGfe7R1A7Wbg8AAAAASUVORK5CYII=);
	background-color: #00A43D;
	background-size: auto 36px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
	z-index: 100;
}
.demo-screen .menu {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 135px;
	left: 35px;
	gap: 25px;
	z-index: 101;
}
.demo-screen .demo-screen .menu-button {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 75px;
	height: 75px;
	color: #FFF;
	font-size: 32px;
	background-color: #00A43D;
	background-size: auto 75%;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
}
.demo-screen .menu-button[name=fullscreen] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAgRJREFUeJztm01rU0EUhp+j3TQUTKpCBT+w1q0iuqq68w+7dufHTqHdVtA2XejCFiW2biqvi1zSMLkkt3M/TiXngSxmmHPmzZvMhZl7BoJgqbG0Q1IP2Ggo/7GZ/ayTQFIfWG9Iz3czO503WU/SoZpjJGkzV62kB0WOphhq/ANPuJLMeQ+4nSu4hDXgcY34R0WOprgD3J3uSA1og5ll1lFspZxdGPDXKbYSKxXGCMh9kO0D7zNjAT4AO4yXZg59FvyLqhjwx8yaegpfCDP7ATzJjZd0AvTmjeliCVxqwgBvAd6EAd4CvAkDvAV4EwZ4C/AmDPAW4E0Y4C3Am9SAb8DvpG+vIy1t8Dlpjxh/xwllh6L3gWdF8wx4a2ZHrchrGUk3gJecb/s/mtlXR0lBEARBEARBEATBpaBsO7wJPC2aZ8C74i3tf4ekm8ALzrfDn8zsy7yAQUlNzk4XYttA0m5JzVJ/ekx6IrTBbE3Ow1ZVtstW0l4Dbk13xJmgtwBvwgBvAd6EAd4CvAkDvAV4EwZ4C/AmDPAW4M3SG1ClWnxV0nFm/iHwKvc8odjPvyG55XEBVhcNqGKAAYNMAQPgOfA6M36belduFtLFErjqFFuJLgyQU2ylnKkBB8Bhg5ONGF95yWWX2ZqlOgyLz4S2L04emdmvOgkkXQOuN6Rn/sXJIFg+/gFlWy0uGd75FwAAAABJRU5ErkJggg==);
	background-size: auto 60%;
}
.demo-screen .menu-button[name=volume-up] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAArBJREFUeJztmj1oFEEUx/8vGkHByJkIYiFYiZ1oJahFFC1ELDRYmU6xEFMYVDDYmEJIUqRUQkArC60kFoIKCikUvyBaaGEjEgS/EISDeD8LL9xms3t3e3fZududX3U7H2/f+8/MMTvzJI/H4/F4PB6PxwlAFzAAXAb6XPuTKsBe4CUVHrj2KRWArcAdoMRS5l37tqIA64BLwG+iya4AwFHgU0zg2RUA2AU8jQi2BNwGRjMpANALTAILEcE/B/aU253LlABANzAE/IwI/DMwCFigfXYEAA4C7yIC/wNcB9ZH9Ol8AYDtwExE4AD3gW1V+nauAEChPLLFiMBfAfvrsOFUgNUhZ0zShKQj4boY+iT1hMq+SroiadrMSq1wshrAkKTjku6Z2WSzxvbFTON6KALjwIaE72x4BgCbWbqb3JIs4uWjXEhqoMwTSWfN7EOD/RulIMkCzxslfUlioNY0H5G0EFN3TVJ3+fctB8G3hFoCjJtZMaoCuKqKAB1Ll2sHXOMFcO2Aa3IvQD2bHWcAZyT1K36gwpuwCeBXTNuSpMdmdjNY2LYCADsl3UjY7VCN+pPACzN7vVjQzkuANOy27Qwws7fAaUkHJK2KadYj6XDg+aGkakvgkZm9CRa2rQCSZGZTkqbi6oEdkt4Hii6Y2VySd7TzEkgFL4BrB1yTewFq/QkOA3Gfwx3/JSjVFmC0TjuDwKyZfWzWobQJL4FvDdrplzQHjAHh7elK8kOVjQ2Svic1EJ4Bs5LGJB2LqItik6TFs/41koYlnQJGlMKhqJnNA+clDUi6a2aJjsOaJgvH4i2BvF6MhCGvV2NByPPlaBDyej0eBtgNPIsQ4S8wTVYTJMKQ1xSZIMBa8pokFYS8psmFYXmi5Ixrn1KH/6myJ4CLQK9rfzwej8fj8Xg8eeEfNxkYn2NcdJsAAAAASUVORK5CYII=);
}
.demo-screen .menu-button[name=volume-down] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAlFJREFUeJztmj1oFUEUhc+NRlBQCUlawcpWtBLUItqJ2ChWplMsBJuggsHGFEJiYamEgFb2IXZGUEih+AfaaGFjIYIgCMKDuJ+FL2RdZ30vyWZnf+5XLTO7d889O7PszlzJcRzHcRzHcaIADABngGvASGw9pQIcBl6yyqPYmkoB2AM8BBL+5ktsbZsKsAO4CvwgTHMNAE4Cn3ISb64BwAHgaSDZBHgATDXSAGAYuAMsB5J/DhzqnnepUQYAg8Bl4Hsg8c/AOGCp85tjAHAceB9I/CdwC9gZuKb+BgD7gIVA4gDzwN7/XFtfA4Ch7pPtBBJ/BRztI0ZUA7ZmxJik25JOZPtyGJG0K9P2VdJ1SXNmlhQhsjSAIznDuB86wAywe433rM4IkDS0zjhPJF00sw8b1FM6vYb5pKTlnL6bkga7x/frmLzU24AZM+uEOoAbWjWgtgzEFhAbNyC2gNi03oB+PnaiAVyQNKZiHlQiadHM7qUbK2sAsF/S3YLDngVemNnrlYYqTwHKiFvZEWBmb4Hzko5J2lJAyETSYzN7k26srAGSZGazkmY38x5VngKl4AbEFhCb1hvQ6yU4AeT9Dtf+T1DqbcBUn3HGgSUz+7hRQWWTnQLf1hlnTNI7YBrIrhFWmuwIWJI0LelUoC/EqKSVtf5tkiYknQMmVcdF0bXShGXxQqCtGyNZaOvWWBravDmahrZuj2cBDgLPAib8AuZoaoFEFtpaIpMG2E5bi6TS0NYyuSz8Wyi5EFtT6fCnVPY0cAUYjq3HcRzHcRzHaQu/AWM56jc0kfqzAAAAAElFTkSuQmCC);
}
.demo-screen .menu-button[name=exit] {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAXpJREFUeJzt2jlOw2AYhOH3hyBRU0A6WiQqCgpAQuISiANxAxok4BT0QAVBaQPhCFRQRyxDkTgLOAvIv22ceTonkf3NeIlsGczMzMxsPoVYK5a0BOwDNeAmhNCJta3SkVSX1NRAS9JK0XPlohe+rZ+Oi54tzUKWK5NUB66BjZSv17PcVulM2POJo6JnjGaG8KdFzxiNpLXeRW6cc0mZnmql4fAO7/AO7/ADZw5fRQ7v8A7v8FUOP/JITJPv5wE6wCWgyHPF8AE8ASchhJfkw34BkmrALbCd/2y5egC2QghvMPpEaJfqhwfYBHaSheEC/uNh/Vf9rMMF3AHN/GfJXQtoJAvzdhFs070Ivo79laTVKX+D1b3jS7gEXALgEgCXALgEwCUALgFwCYBLAFwC4BIAlwDM+QsSiRlKOCx6xuimlHBR9HxpMj03QwjPwAHdp6/fPWa5rVLrHQn3Q3v/StJy0XOlifmq7CKwB7wDjRDCZ6xtmZmZmZn93hd3l+uV0ARHuAAAAABJRU5ErkJggg==);
	background-size: auto 36px;
}
.demo-screen .reload {
	display: inline-block;
	position: absolute;
	top: 35px;
	right: 35px;
	width: 75px;
	height: 75px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAABSNJREFUeJztm11oHFUUx/+zbRpbTSNtrPWjFNGgNRYUm2qFWBEU7YNg0D6oVEFBEVofFNEHPyhKn2oRRLH6JMWPBxO/UMQKUoVKY6y22JJoUhVMa9L4lapJttufD3eWbu/emc1u7sxsMD/Yl5kz9/zPndk7d849V5pllv81QRpOgGZJiyUtkDRP0h+S/pY0GgTB8TQ0ROG9A4ALJK0Nf22SWiWdGWGelzQoqU/Sl5I+k9STdadUDbAMeAzYz/T5DdgOrAVSeUJrBlgJvAbkPQTuYj+wAZibdaynAJwHvAmcSChwm37gpiRiqeoRwzySmyQ9I+mMGNMJSXskfSHpgKTvJY1IOibzv2+WGRBbw99qmTFjSQUJ3ZIeCIJguBrdXgBagA9i7lIeeBdYD8yv0ccqYBtwJMbPEHC97/gqCVsB/BQh6F/gBczo78tfI3A/MBDh8ziwyZe/SmLageEIITuBSxL03QA8BIxF+H+eJN8UwJXAXw7HY8CGxByX67gI+CqiE55N0umvDod9wMWJOI3X0wi8HNEJ9/p21hQGatMDVBqpEwV4yqFrErjBp5MdDid7MXP6zAGeduj7HTjXR+N3OhofAJZ60O4FIIi4SV3TbXghcNhqdBy43JN2b2DGhF2OTuicTqPPORrc6FG3V4DlwDFL7xBweoXr2oBl9sGl4d0uZTd1/kUGPDLVmwbkgO7QpnCKHbDFaqQArEotkhoB5gLfWNoHgDkOW7uzhosnTsOMoqV0px5NjQCdjqdgvWXThpm2l9JXPHmbo4FrMonGAWZG+hHwIdDhOD8H+NHSv7PkfAPumeTtRYO3rRP7UowvFmAeZmArUgC2Yn1xAo9aMUwAC8NzrnnD68ULGyj/2Hg8g1idAGc5xAMcANpL7M6mPEHTiXl6Jq3jvwCLihde5Wg8sS+8WgDej+iEPLAZaAjt9lnndwDfWcdOAOtKG3/YMjhCnb36MIP0Vszj76IXuAyTTKnEdrvxVy2Duh39gWuBwYjAxoGPKwQ/CDTZjdrTyS0ZxTclgAWYREi1CdkCcJ2rQfv1cV/6YVUPcDNmMJsq26IaGrUMa/+YSBmgmegkSSkHiUrUYt6XpdyYchzTBjORG4kIPg+sjrt4xneAJAFLgC5HB2yudOGM/Qu4AO4BjmIGyTcI5whxF8zIQTAOzPR58VRsc5J+to5d6F9SugRBMBkEwehUbHOS+q1jdTUNTpqcpIPWsTXU2VQ4UZgBH0NJkpPUK2nMOn5rBlqygzpOiKQCdZ4SSxxgPuVJ0Xey1pUqzNC0uDcwObV/rE7oAXJZa0sNTNrJpm6XxryDqQsYsjpgHLgia22pAdzleArqank8cXCvvX9NuNCQNcAtwFuYjLb/KtLwr9Dv6IQ9ZF8i86Sl6YmkHLXiLo/rJ4NvBUxBxCsOPZ8m6bQdd43eGHB3Yo7LdbRiFj9cJFswSXyh5CfApQn6nkeWhZIlQlZQnjorMgG8CHjLJGGm5g8ChyJ8FhK/8w5RLUQvUoKp330PuAOIqySPaj8A1oR3NeqJA7MY4q1YupZy+Y0y5fJNMaZ5ST2SPpfJOP0g6bDMPqFJmS00TTL5x1ZJV0vqkNRSQUKXTLn8SDW6vQOcg9kpkuaGiXWVlaUMJ7fM2AUIvviWetwyYwOcjylR2esh6KPAS5il8MRH+CS2zS2X2f7SIWmlzH98UYT5hKRDMuPEbkm7JPWmuW0urY2TTTq5cbJR0p8y+4dGgyAopKFhlllmcfIfulghT/XGIGIAAAAASUVORK5CYII=);
	background-color: #00A43D;
	background-size: auto 36px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	cursor: pointer;
	z-index: 100;
}
.demo-screen .error {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	overflow: hidden;
	z-index: 50;
}
.demo-screen .error .body {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 560px;
	padding: 45px 60px;
	background-color: #FFF;
	border-radius: 24px;
	overflow-y: auto;
}
.demo-screen .error .body img {
	width: 90px;
	height: 90px;
}
.demo-screen .error .body .title {
	width: 100%;
	margin-top: 30px;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}


@media only screen and (max-width: 800px) {
  .exit {
		right: 15px;
	}
	.controls {
		margin-bottom: 30px;
	}
	.error .body .title {
		font-size: 16px;
	}
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.interview-screen {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.interview-screen .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}


@media only screen and (max-width: 800px) {

}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.interview-benchmark-page {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.interview-benchmark-page .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  padding: 30px 45px;
}
.interview-benchmark-page .header {
  margin-bottom: 16px;
  font-size: 24px;
  text-decoration: underline;
}
.interview-benchmark-page .desc {
  margin-bottom: 16px;
  font-size: 16px;
}
.interview-benchmark-page ul {
  margin-bottom: 16px;
  font-size: 16px;
  list-style: inside;
}
.interview-benchmark-page table {
  margin-bottom: 27px;
  width: 100%;
  border: 1px solid #000000;
}
.interview-benchmark-page th {
  padding: 10px;
  border: 1px solid #000000;
}
.interview-benchmark-page td {
  padding: 10px;
  text-align: center;
  border: 1px solid #000000;
}

@media only screen and (max-width: 800px) {
  .interview-benchmark-page table {
    font-size: 12px;
  }
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {
}

.error-page {
  padding: 45px 60px;
}
.home-hkubs-screen {
  display: inline-flex;
	flex: 1 1 1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.home-hkubs-screen .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.home-hkubs-screen .title {
	color: #707070;
	font-family: "Nunito Sans", sans-serif;
}

.home-hkubs-screen section[name=top] {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1 1 1px;
}
.home-hkubs-screen section[name=top] .side {
	display: inline-flex;
	flex: 1 1;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: auto;
	height: 100%;
}
.home-hkubs-screen section[name=top] .side.left {
	background: #00A43E;
	background: linear-gradient(135deg, #00A43E, #CCDA00);
}
.home-hkubs-screen section[name=top] .side.right {
	justify-content: center;
	align-items: center;
}
.home-hkubs-screen section[name=top] .logo {
	width: 140px;
	height: 40px;
	margin: 32px 24px;
	object-fit: contain;
}
.home-hkubs-screen section[name=top] .center {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
}
.home-hkubs-screen section[name=top] .center .title {
	color: #FFF;
	font-size: 36px;
	font-weight: 700;
	line-height: 48px;
}
.home-hkubs-screen section[name=top] .center img {
	width: 440px;
	height: 365px;
	margin-top: 32px;
	object-fit: contain;
}
.home-hkubs-screen section[name=top] .bottom {
	padding: 32px 24px;
}
.home-hkubs-screen section[name=top] .bottom .title {
	color: #FFF;
	font-size: 24px;
	font-weight: 700;
	text-align: left;
}
.home-hkubs-screen section[name=top] .bottom .desc {
	margin-top: 8px;
	color: #FFF;
	font-size: 16px;
	text-align: left;
}
.home-hkubs-screen section[name=top] .login {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 360px;
	height: auto;
}
.home-hkubs-screen section[name=top] .login .logo {
	width: auto;
	height: 75px;
	object-fit: contain;
}
.home-hkubs-screen section[name=top] .login .title {
	color: #00A43E;
	font-size: 24px;
	text-align: center;
}
.home-hkubs-screen section[name=top] .login .subtitle {
	margin-top: 8px;
	color: #1A1A1A;
	font-size: 16px;
	text-align: center;
}
.home-hkubs-screen section[name=top] .login .form-row {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	max-width: 100%;
	margin-bottom: 16px;
}
.home-hkubs-screen section[name=top] .login .form-row .name {
	color: #1A1A1A;
	font-size: 16px;
	text-align: left;
}
.home-hkubs-screen section[name=top] .login .form-row input {
	width: 100%;
	height: 40px;
	font-size: 14px;
	background-color: #FFF;
	border: 1px solid #EAF4D4;
	border-radius: 16px;
}
.home-hkubs-screen section[name=top] .login .form-row input::placeholder {
	color: #00A43E;
  opacity: 1
}
.home-hkubs-screen section[name=top] .login .form-row input:focus {
	outline: none;
}
.home-hkubs-screen section[name=top] .login button {
	width: 100%;
	margin-top: 8px;
	margin-bottom: 16px;
}
.home-hkubs-screen section[name=top] .login .forget {
	margin-top: 24px;
	color: #00A43E;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
}
.home-hkubs-screen section[name=top] .login .tnc {
	width: 100%;
	margin-top: 16px;
	color: #1A1A1A;
	font-size: 12px;
	text-align: center;
}
.home-hkubs-screen section[name=top] .login .tnc a {
	color: #00A43E;
}



@media only screen and (max-width: 800px) {
	.home-hkubs-screen section[name=top] {
		flex-direction: column;
	}
	.home-hkubs-screen section[name=top] .side {
		flex: none;
		width: 100%;
		height: 100vh;
	}
	.home-hkubs-screen section[name=top] .side.left {
		display: none;
	}
	.home-hkubs-screen section[name=top] .login {
		width: 100%;
		padding: 0 24px;
	}
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.home-cbcityu-screen {
  display: inline-flex;
	flex: 1 1 1px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.home-cbcityu-screen .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}
.home-cbcityu-screen .title {
	color: #707070;
	font-family: "Nunito Sans", sans-serif;
}

.home-cbcityu-screen section[name=top] {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1 1 1px;
}
.home-cbcityu-screen section[name=top] .side {
	display: inline-flex;
	flex: 1 1;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: auto;
	height: 100%;
}
.home-cbcityu-screen section[name=top] .side.left {
	background: #00A43E;
	background: linear-gradient(135deg, #00A43E, #CCDA00);
}
.home-cbcityu-screen section[name=top] .side.right {
	justify-content: center;
	align-items: center;
}
.home-cbcityu-screen section[name=top] .logo {
	width: 160px;
	height: 60px;
	margin: 32px 24px;
	object-fit: contain;
}
.home-cbcityu-screen section[name=top] .center {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: auto;
	margin-bottom: auto;
}
.home-cbcityu-screen section[name=top] .center .title {
	color: #FFF;
	font-size: 36px;
	font-weight: 700;
	line-height: 48px;
}
.home-cbcityu-screen section[name=top] .center img {
	width: 440px;
	height: 365px;
	margin-top: 32px;
	object-fit: contain;
}
.home-cbcityu-screen section[name=top] .bottom {
	padding: 32px 24px;
}
.home-cbcityu-screen section[name=top] .bottom .title {
	color: #FFF;
	font-size: 24px;
	font-weight: 700;
	text-align: left;
}
.home-cbcityu-screen section[name=top] .bottom .desc {
	margin-top: 8px;
	color: #FFF;
	font-size: 16px;
	text-align: left;
}
.home-cbcityu-screen section[name=top] .login {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 360px;
	height: auto;
}
.home-cbcityu-screen section[name=top] .login .logo {
	width: auto;
	height: 90px;
	object-fit: contain;
}
.home-cbcityu-screen section[name=top] .login .title {
	color: #00A43E;
	font-size: 24px;
	text-align: center;
}
.home-cbcityu-screen section[name=top] .login .subtitle {
	margin-top: 8px;
	color: #1A1A1A;
	font-size: 16px;
	text-align: center;
}
.home-cbcityu-screen section[name=top] .login .form-row {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	max-width: 100%;
	margin-bottom: 16px;
}
.home-cbcityu-screen section[name=top] .login .form-row .name {
	color: #1A1A1A;
	font-size: 16px;
	text-align: left;
}
.home-cbcityu-screen section[name=top] .login .form-row input {
	width: 100%;
	height: 40px;
	font-size: 14px;
	background-color: #FFF;
	border: 1px solid #EAF4D4;
	border-radius: 16px;
}
.home-cbcityu-screen section[name=top] .login .form-row input::placeholder {
	color: #00A43E;
  opacity: 1
}
.home-cbcityu-screen section[name=top] .login .form-row input:focus {
	outline: none;
}
.home-cbcityu-screen section[name=top] .login button {
	width: 100%;
	margin-top: 8px;
	margin-bottom: 16px;
}
.home-cbcityu-screen section[name=top] .login .forget {
	margin-top: 24px;
	color: #00A43E;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
}
.home-cbcityu-screen section[name=top] .login .tnc {
	width: 100%;
	margin-top: 16px;
	color: #1A1A1A;
	font-size: 12px;
	text-align: center;
}
.home-cbcityu-screen section[name=top] .login .tnc a {
	color: #00A43E;
}



@media only screen and (max-width: 800px) {
	.home-cbcityu-screen section[name=top] {
		flex-direction: column;
	}
	.home-cbcityu-screen section[name=top] .side {
		flex: none;
		width: 100%;
		height: 100vh;
	}
	.home-cbcityu-screen section[name=top] .side.left {
		display: none;
	}
	.home-cbcityu-screen section[name=top] .login {
		width: 100%;
		padding: 0 24px;
	}
}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
nav.menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 260px;
  height: 100%;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: #FFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
  visibility: visible;
  transition: all ease-in-out .2s;
}
nav.menu .logo {
  align-self: center;
  width: auto;
  height: 45px;
}
nav.menu .menu-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-top: 30px;
  margin-left: 30px;
  background-color: var(--md-primary);
  background-image: url(/static/media/icon-arrow-left-white.a735bdcb053d655dc5ea.svg);
  background-size: auto 16px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  visibility: visible;
  cursor: pointer;
}
nav.menu .menu-toggle.collapse {
  background-color: #000;
  background-image: url(/static/media/icon-arrow-right-white.444374396489a2d0f5df.svg);
}
nav.menu .menu-list {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 15px;
  padding-left: 30px;
  padding-right: 10px;
  overflow-y: auto;
}
nav.menu .menu-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  color: #333;
  font-size: 16px;
  cursor: pointer;
}
nav.menu .menu-item.selected {
  color: var(--md-primary);
}
nav.menu .menu-item img {
  width: auto;
  height: 16px;
  margin-right: 8px;
}
nav.menu .profile {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0 30px;
}
nav.menu .profile .thumbnail {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #FFF;
  font-size: 20px;
  background-color: #D9D9D9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}
nav.menu .profile .name {
  flex: 1 1;
  padding-left: 8px;
  color: #333;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
nav.menu .profile .logout {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url(/static/media/portal-logout.5ba6a5f75744e7217dd8.svg);
  background-size: auto 16px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

nav.menu.collapse {
  align-items: center;
  width: 75px;
  background-color: var(--md-primary);
}
nav.menu.collapse .logo {
  width: auto;
  height: 40px
}
nav.menu.collapse .menu-toggle.collapse {
  margin-left: 0;
  background-color: #000;
}
nav.menu.collapse .menu-list {
  align-items: center;
  padding: 0;
}
nav.menu.collapse .menu-item {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 8px;
  padding: 0;
}
nav.menu.collapse .menu-item.selected {
  background-color: #FFF;
}
nav.menu.collapse .menu-item img {
  margin-right: 0;
}
nav.menu.collapse .menu-item span {
  display: none;
}
nav.menu.collapse .profile {
  flex-direction: column-reverse;
}
nav.menu.collapse .profile .name {
  display: none;
}
nav.menu.collapse .profile .logout {
  margin-bottom: 15px;
}

.portal-screen {
  display: inline-flex;
  flex: 1 1 1px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.portal-screen * {
  /* color: inherit; */
  /* font-size: inherit; */
}
.portal-content {
  display: inline-flex;
  flex: 1 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: 100vh;
  background-color: #EEE;
  overflow: hidden;
}
.portal-content>div {
  height: 100%;
  overflow: auto;
}
.portal-content>div>div {
  flex-shrink: 0;
}
.portal-content * {
  font-family: "Rubik", sans-serif;
}
.portal-content ol,
.portal-content ul {
  list-style: auto;
  padding-left: 1.8em;
}


@media only screen and (max-width: 800px) {

}

@media only screen and (min-width: 481px) and (max-width: 800px) {
  
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {

}
.portal-home {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.portal-home .main {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  padding: 30px 30px;
  border-right: 2px solid #FFF;
}
.portal-home .slider {
  display: inline-flex;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  aspect-ratio: 2.5;
  border-radius: 16px;
  overflow: hidden;
}
.portal-home .slides {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.portal-home .slide {
  display: inline-block;
  width: 100%;
  scroll-snap-align: start;
}
.portal-home .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portal-home .slider .button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  width: 28px;
  height: 100%;
  padding: 5px;
  font-size: 26px;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.25s ease-in;
}
.portal-home .slider .button:hover {
  background-color: rgba(0, 0, 0, 0.25);
	opacity: 1;
}
.portal-home .slider .button.left {
  left: 0;
  border-radius: 20px 0px 0px 20px;
}
.portal-home .slider .button.right {
  right: 0;
  border-radius: 0px 20px 20px 0px;
}
.portal-home .slider .button .arrow {
  width: 0;
	height: 0;
	border-style: solid;
}
.portal-home .slider .button.left .arrow {
  border-width: 8px 8px 8px 0;
	border-color: transparent #ffffff transparent transparent;
}
.portal-home .slider .button.right .arrow {
  border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent #ffffff;
}
.portal-home .motivation {
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--md-primary);
  font-size: 16px;
  font-weight: 600;
}
.portal-home .card-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.portal-home .card-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.portal-home .card-title img {
  width: auto;
  height: 15px;
  margin-right: 8px;
}
.portal-home .card-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}
.portal-home .card-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: calc(33.3333% - 5.6666px);
  background-color: #FFF;
  border-radius: 16px;
}
.portal-home .card-item .detail {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 12px 15px;
}
.portal-home .card-item img.thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 2;
  border-radius: 16px;
  object-fit: cover;
  cursor: pointer;
}
.portal-home .card-item .emoji {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
}
.portal-home .card-item .name {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #000;
  font-size: 16px;
  text-align: left;
}
.portal-home .card-item .desc {
  display: -webkit-box;
  color: #000;
  font-size: 16px;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.portal-home .card-item .stat {
  margin-top: auto;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  text-align: left;
}

.portal-home .side {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 360px;
  padding: 30px 15px;
}
.portal-home .journey-card {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 30px 20px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-home .journey-card .name {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.portal-home .journey-card .desc {
  margin-top: 8px;
  color: #000;
  font-size: 16px;
  text-align: left;
  line-height: 24px;
}
.portal-home .journey-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
}
.portal-home .journey-item:last-child {
  margin-bottom: 0;
}
.portal-home .journey-item .checkbox {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-size: auto 16px;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--md-primary);
  border-radius: 50%;
}
.portal-home .journey-item .checkbox.checked {
  background-color: var(--md-primary);
  background-image: url(/static/media/icon-check.1a2f10a18d9dc0ea57bd.svg);
}
.portal-home .journey-item .detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  padding-left: 8px;
}
.portal-home .journey-item .detail-name {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 24px;
}
.portal-home .journey-item .detail-desc {
  margin-top: 8px;
  color: #000;
  font-size: 16px;
  text-align: left;
  line-height: 24px;
}
.portal-home .journey-item .detail-desc span {
  color: var(--md-primary);
  cursor: pointer;
}
.portal-home .ads-banner {
  width: 100%;
  height: auto;
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
}
.portal-home .ads-banner img {
  width: 100%;
  height: auto;
}
.modal[name=resume-upload] .form {
  align-items: center;
	width: 480px;
}
.modal[name=resume-upload] .title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.modal[name=resume-upload] .description {
  font-size: 16px;
  text-align: center;
  line-height: 24px;
}
.modal[name=resume-upload] .description span {
  color: var(--md-primary);
}
.modal[name=resume-upload] .upload {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 200px;
  margin-top: 8px;
  background-image: url(/static/media/portal-upload.3c35fec4a912eb7f8373.svg);
  background-size: auto 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #EEE;
  border-radius: 8px;
  cursor: pointer;
}
.modal[name=resume-upload] .upload.uploaded {
  background-image: none;
}
.modal[name=resume-upload] .upload .file-icon {
  width: auto;
  height: 48px;
}
.modal[name=resume-upload] .upload .file-name {
  margin-top: 8px;
  color: #000;
  font-size: 12px;
  text-align: center;
}
.modal[name=resume-upload] button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 40px;
  padding: 0;
  color: #FFF;
  background-color: var(--md-primary);
  border: none;
  border-radius: 20px;
}
.modal[name=resume-upload] button:disabled {
  background-color: #707070;
  cursor: not-allowed;
}
.portal-content .header {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 15px;
  background-color: #FFF;
  border-bottom: 1px solid #EEE;
}
.portal-content .header .back {
  width: 30px;
  height: 30px;
  background-image: url(/static/media/portal-back.d765a51af32ecc298b69.svg);
  background-size: auto 24px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.portal-content .header .title {
  margin-left: 8px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.portal-content .header .tutorial {
  margin-left: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.portal-content .header .tutorial img {
  width: 100%;
  height: 100%;
}
.interview-overview-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
}
.interview-overview-tab .card-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 8px;
}
.interview-overview-tab .card-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.interview-overview-tab .card-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}
.interview-overview-tab .card-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: calc(33.3333% - 5.6666px);
  padding: 18px 22px;
  background-color: #FFF;
  border-radius: 16px;
}
.interview-overview-tab .card-item.large {
  width: calc(50% - 4px);
  padding: 32px 22px;
}
.interview-overview-tab .card-item .emoji {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
}
.interview-overview-tab .card-item .name {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.interview-overview-tab .card-item .desc {
  display: -webkit-box;
  color: #000;
  font-size: 16px;
  text-align: left;
}
.interview-overview-tab .card-item ol {
  padding-left: 1.5em;
  line-height: 24px;
}
.interview-overview-tab .card-item .stat {
  margin-top: auto;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  text-align: left;
}
.interview-overview-tab .card-item .stat sup {
  font-size: 20px;
}
.interview-overview-tab .card-block.green {
  padding: 24px 22px;
  background-color: var(--md-primary);
  border-radius: 16px;
}
.interview-overview-tab .card-block.green .card-title {
  color: #FFF;
}
.interview-overview-tab .card-block.green .card-item {
  background-color: var(--md-primary);
  border: 1px solid #FFF;
}
.interview-overview-tab .card-block.green .card-item .name {
  color: #FFF;
  margin-bottom: 16px;
}
.interview-overview-tab .card-block.green .card-item .stat {
  color: #FFF;
}
.interview-category-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  margin-top: 30px;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.interview-category-tab .title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  color: #000;
  font-size: 16px;
  text-align: left;
}
.interview-category-tab .title .icon {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.interview-category-tab .title .icon img {
  width: 16px;
  height: 16px;
}
.interview-category-tab .card-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}
.interview-category-tab .card-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: calc(33.3333% - 5.6666px);
  padding: 24px 16px;
  padding-bottom: 48px;
  background-color: #EEE;
  border-radius: 16px;
  cursor: pointer;
}
.interview-category-tab .card-item.green {
  background-color: var(--md-primary);
}
.interview-category-tab .card-item.yellow {
  background-color: #FFD926;
}
.interview-category-tab .card-item .emoji {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
}
.interview-category-tab .card-item .name {
  margin-bottom: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.interview-category-tab .card-item .desc {
  display: -webkit-box;
  color: #000;
  font-size: 16px;
  text-align: left;
  line-height: 24px;
}
.interview-category-tab .card-item.green .name,
.interview-category-tab .card-item.green .desc {
  color: #FFF;
}
.modal[name=interview-add] .form {
	width: 100%;
  max-width: 720px;
}
.modal[name=interview-add] .title {
  align-self: center;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.modal[name=interview-add] .step-title {
  align-self: center;
  margin-top: 15px;
  margin-bottom: 30px;
  color: #707070;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.modal[name=interview-add] .step-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.modal[name=interview-add] .step-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal[name=interview-add] .step-item .dot {
  width: 18px;
  height: 18px;
  background-color: #FFF;
  border: 3px solid #00A43D;
  border-radius: 50%;
}
.modal[name=interview-add] .step-item.selected .dot {
  background-color: #00A43D;
}
.modal[name=interview-add] .step-item .name {
  margin-top: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.modal[name=interview-add] .step-divider {
  width: 50px;
  height: 3px;
  margin: 0 20px;
  background-color: #00A43D;
}
.modal[name=interview-add] .mode-list {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	align-self: center;
	width: 100%;
	max-width: 480px;
}
.modal[name=interview-add] .mode-item {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 15px;
	padding: 10px 30px;
	background-color: #FFF;
	border-radius: 12px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	cursor: pointer;
  transition: all ease-in-out .2s;
}
.modal[name=interview-add] .mode-item.selected {
	border: 2px solid #00A43D;
}
.modal[name=interview-add] .mode-item.disabled {
	opacity: 0.6;
	background-color: #F0F0F0;
	cursor: not-allowed;
}
.modal[name=interview-add] .mode-item .name {
	color: #00A43D;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
}
.modal[name=interview-add] .mode-item:hover .name {
	text-decoration: none;
	text-decoration: initial;
}
.modal[name=interview-add] .mode-item .description {
	margin-top: 3px;
	color: #4e4e4e;
	font-size: 16px;
	text-align: left;
}
.modal[name=interview-add] .language-list {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: flex-start;
	align-self: center;
	width: 100%;
	max-width: 560px;
	gap: 6px;
}
.modal[name=interview-add] .language-item {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 32%;
	padding: 10px 30px;
	background-color: #FFF;
	border-radius: 12px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	cursor: pointer;
  transition: all ease-in-out .2s;
}
.modal[name=interview-add] .language-item.selected {
	border: 2px solid #00A43D;
}
.modal[name=interview-add] .language-item.disabled {
	opacity: 0.6;
	background-color: #F0F0F0;
	cursor: not-allowed;
}
.modal[name=interview-add] .language-item .name {
	color: #00A43D;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
}
.modal[name=interview-add] .language-item:hover .name {
	text-decoration: none;
	text-decoration: initial;
}
.modal[name=interview-add] .company-list {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-self: center;
	width: 100%;
	max-width: 480px;
}
.modal[name=interview-add] .company-item {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
	width: 120px;
	height: 120px;
	margin: 0 10px;
	margin-bottom: 20px;
	cursor: pointer;
	transition: background-color ease-in-out .2s;
}
.modal[name=interview-add] .company-item .tick {
	display: none;
}
.modal[name=interview-add] .company-item.selected .tick {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	color: #FFF;
	font-size: 16px;
	text-align: center;
	background-color: #00A43D;
	border-radius: 50%;
	z-index: 1;
}
.modal[name=interview-add] .company-item:hover {
}
.modal[name=interview-add] .company-item .thumbnail {
	width: 100%;
	height: 100%;
	padding: 10px;
	background-color: #FFF;
	border-radius: 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	filter: blur(1px);
  -webkit-filter: blur(1px);
}
.modal[name=interview-add] .company-item .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.modal[name=interview-add] .division-list {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	align-self: center;
	width: 100%;
	max-width: 640px;
}
.modal[name=interview-add] .division-item {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 6px;
	margin-bottom: 12px;
	padding: 8px 16px;
	background-color: #FFF;
	border: 2px solid transparent;
	border-radius: 20px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .25);
	cursor: pointer;
  transition: all ease-in-out .2s;
}
.modal[name=interview-add] .division-item.selected {
	border: 2px solid #00A43D;
}
.modal[name=interview-add] .division-item .name {
	color: #000;
	font-size: 16px;
	text-align: center;
}
.modal[name=interview-add] .form button {
  align-self: center;
  width: 180px;
}
.interview-employer-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  margin-top: 30px;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.interview-employer-tab .title {
  align-self: center;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.interview-employer-tab .search {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  margin-top: 16px;
  padding: 0 24px;
  background-color: #EEE;
  border-radius: 8px;
}
.interview-employer-tab .search .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background-image: url(/static/media/portal-search.5080cec2abff97479eda.svg);
  background-size: auto 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.interview-employer-tab .search input {
  flex: 1 1;
  height: auto;
  padding: 0;
  background-color: transparent;
  border: none;
}
.interview-employer-tab .search input:focus {
  outline: none;
}
.interview-employer-tab .category-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  padding-bottom: 8px;
  gap: 8px;
  border-bottom: 1px solid #EEE;
}
.interview-employer-tab .category-item {
  display: inline-flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 40px;
  color: #000;
  font-size: 14px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #EEE;
  border-radius: 8px;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.interview-employer-tab .category-item.selected {
  color: #FFF;
  background-color: var(--md-primary);
  border-color: var(--md-primary);
}
.interview-employer-tab .company-list {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
}
.interview-employer-tab .company-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  border-bottom: 1px solid #EEE;
  cursor: pointer;
  transition: background-color ease-in-out .2s;
}
.interview-employer-tab .company-item:hover {
  background-color: #EEE;
}
.interview-employer-tab .company-item .thumbnail {
  width: 60px;
  height: 60px;
  filter: blur(1px);
  -webkit-filter: blur(1px);
}
.interview-employer-tab .company-item .thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.interview-employer-tab .company-item .detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  padding-left: 16px;
}
.interview-employer-tab .company-item .name {
  color: var(--md-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.interview-employer-tab .company-item:hover .name {
  text-decoration: underline;
}
.interview-employer-tab .company-item .desc {
  margin-top: 8px;
  color: #000;
  font-size: 16px;
  text-align: left;
}
.interview-result-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  margin-top: 30px;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.interview-result-tab .title {
  align-self: center;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.interview-result-tab .table-row {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
.interview-result-tab table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 15px;
  background-color: #FFF;
}
.interview-result-tab table td {
  color: #707070;
  font-size: 14px;
}
.interview-result-tab table td, 
.interview-result-tab table th {
  border: none;
  padding: 8px 15px;
}
.interview-result-tab table tr:nth-child(even){background-color: #F9F9F9;}
.interview-result-tab table tbody tr:hover {background-color: #ddd;}
.interview-result-tab table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  color: #00A43D;
  font-weight: 400;
  border-bottom: 1px solid #00A43D;
}
.interview-result-tab table td.empty {
	padding: 60px 0;
	color: #8e8e8e;
	font-size: 16px;
	font-style: italic;
	text-align: center;
}
.interview-result-tab table button {
  font-size: 12px;
}
.interview-result-tab .score.good {
	color: #00A43D;
}
.interview-result-tab .score.normal {
	color: #20C997;
}
.interview-result-tab .score.bad {
	color: #FA5252;
}
.interview-result-tab button.refresh {
  margin-left: 12px;
  font-size: 12px;
  font-weight: 400;
}
.modal[name=interview-result] .form {
	width: 95%;
  max-width: 1600px;
  padding: 18px 30px;
}
.modal[name=interview-result] .form .title {
  margin-bottom: 16px;
  font-size: 16px;
}
.modal[name=interview-result] .question-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 16px;
  gap: 8px;
}
.modal[name=interview-result] .question-item {
  display: inline-flex;
  flex-direction: row;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 12px;
  color: #000;
  font-size: 14px;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.modal[name=interview-result] .question-item.selected {
  flex-shrink: 1;
  border-color: var(--md-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal[name=interview-result] .card-column {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(33.3333% - 10.6666px);
  margin-bottom: 16px;
  gap: 16px;
}
.modal[name=interview-result] .card-column.large {
  flex: 1 1;
  width: auto;
}
.modal[name=interview-result] .card-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 16px;
  gap: 16px;
}
.modal[name=interview-result] .card-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: calc(50% - 8px);
  padding: 12px 22px;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
}
.modal[name=interview-result] .card-item.large {
  width: 100%;
}
.modal[name=interview-result] .card-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.modal[name=interview-result] .card-desc {
  margin-top: 5px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.modal[name=interview-result] .score-block {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 12px;
}
.modal[name=interview-result] .score-wrap {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.modal[name=interview-result] .score-name {
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.modal[name=interview-result] .score-num {
  margin-top: 5px;
  color: var(--md-primary);
  font-size: 24px;
  font-weight: 500;
  text-align: left;
}
.modal[name=interview-result] .score-num.good {
  color: var(--md-score-good);
}
.modal[name=interview-result] .score-num.normal {
  color: var(--md-score-normal);
}
.modal[name=interview-result] .score-num.bad {
  color: var(--md-score-bad);
}
.modal[name=interview-result] .score-rate {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin-left: auto;
  color: var(--md-primary);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: 8px solid var(--md-primary);
  border-radius: 50%;
}
.modal[name=interview-result] .score-rate.good {
  color: var(--md-score-good);
  border-color: var(--md-score-good);
}
.modal[name=interview-result] .score-rate.normal {
  color: var(--md-score-normal);
  border-color: var(--md-score-normal);
}
.modal[name=interview-result] .score-rate.bad {
  color: var(--md-score-bad);
  border-color: var(--md-score-bad);
}
.modal[name=interview-result] .score-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
}
.modal[name=interview-result] .score-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.modal[name=interview-result] .score-title {
  color: #707070;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}
.modal[name=interview-result] .score-percent {
  margin-left: auto;
  color: var(--md-primary);
  font-size: 12px;
  text-align: right;
}
.modal[name=interview-result] .score-percent.good {
  color: var(--md-score-good);
}
.modal[name=interview-result] .score-percent.normal {
  color: var(--md-score-normal);
}
.modal[name=interview-result] .score-percent.bad {
  color: var(--md-score-bad);
}
.modal[name=interview-result] .score-bar {
  position: relative;
  width: 100%;
  height: 3px;
  margin-top: 8px;
  background-color: #D9D9D9;
  border-radius: 2px;
}
.modal[name=interview-result] .score-bar .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--md-primary);
  border-radius: 2px;
}
.modal[name=interview-result] .score-bar .fill.good {
  background-color: var(--md-score-good);
}
.modal[name=interview-result] .score-bar .fill.normal {
  background-color: var(--md-score-normal);
}
.modal[name=interview-result] .score-bar .fill.bad {
  background-color: var(--md-score-bad);
}
.modal[name=interview-result] .feedback-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--md-primary);
}
.modal[name=interview-result] .feedback-item.good {
  border-color: var(--md-score-good);
}
.modal[name=interview-result] .feedback-item.normal {
  border-color: var(--md-score-normal);
}
.modal[name=interview-result] .feedback-item.bad {
  border-color: var(--md-score-bad);
}
.modal[name=interview-result] .feedback-title {
  color: var(--md-primary);
  font-size: 14px;
  text-align: left;
}
.modal[name=interview-result] .feedback-item.good .feedback-title {
  color: var(--md-score-good);
}
.modal[name=interview-result] .feedback-item.normal .feedback-title {
  color: var(--md-score-normal);
}
.modal[name=interview-result] .feedback-item.bad .feedback-title {
  color: var(--md-score-bad);
}
.modal[name=interview-result] .feedback-desc {
  margin-top: 4px;
  color: #707070;
  font-size: 14px;
  text-align: left;
  line-height: 24px;
}
.modal[name=interview-result] .eng-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
}
.modal[name=interview-result] .eng-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50px;
  margin-right: 6px;
}
.modal[name=interview-result] .eng-row .name {
  color: #707070;
  font-size: 14px;
  text-align: left;
}
.modal[name=interview-result] .eng-row .score {
  margin-top: 12px;
  color: var(--md-primary);
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.modal[name=interview-result] .cefr-block {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  padding: 16px 12px;
  background-color: #DFF4E8;
  border-radius: 16px;
}
.modal[name=interview-result] .cefr-name {
  color: var(--md-primary);
  font-size: 14px;
  text-align: left;
}
.modal[name=interview-result] .cefr-desc {
  margin-top: 4px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.modal[name=interview-result] .eng-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.modal[name=interview-result] .eng-item .top {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.modal[name=interview-result] .eng-item .icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url(/static/media/action-item.07f9f44517a73c51929c.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.modal[name=interview-result] .eng-item .name {
  flex: 1 1;
  color: var(--md-primary);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.modal[name=interview-result] .eng-item.good .name {
  color: var(--md-score-good);
}
.modal[name=interview-result] .eng-item.normal .name {
  color: var(--md-score-normal);
}
.modal[name=interview-result] .eng-item.bad .name {
  color: var(--md-score-bad);
}
.modal[name=interview-result] .eng-item .score {
  color: var(--md-primary);
  font-size: 14px;
  font-weight: 600;
}
.modal[name=interview-result] .eng-item.good .score {
  color: var(--md-score-good);
}
.modal[name=interview-result] .eng-item.normal .score {
  color: var(--md-score-normal);
}
.modal[name=interview-result] .eng-item.bad .score {
  color: var(--md-score-bad);
}
.modal[name=interview-result] .eng-item .bar {
  position: relative;
  width: 100%;
  height: 3px;
  margin-top: 8px;
  background-color: #D9D9D9;
  border-radius: 2px;
}
.modal[name=interview-result] .eng-item .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--md-primary);
  border-radius: 2px;
}
.modal[name=interview-result] .eng-item.good .fill {
  background-color: var(--md-score-good);
}
.modal[name=interview-result] .eng-item.normal .fill {
  background-color: var(--md-score-normal);
}
.modal[name=interview-result] .eng-item.bad .fill {
  background-color: var(--md-score-bad);
}
.modal[name=interview-result] .eng-item .comment {
  margin-top: 8px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.modal[name=interview-result] .chart-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.modal[name=interview-result] .chart-container tspan {
  font-size: 11px;
}
.modal[name=interview-result] .action-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
}
.modal[name=interview-result] .action-item .icon {
  width: 16px;
  height: 16px;
  background-image: url(/static/media/action-item.07f9f44517a73c51929c.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.modal[name=interview-result] .action-item .detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  padding-top: 0px;
  padding-left: 8px;
}
.modal[name=interview-result] .action-item .name {
  color: var(--md-primary);
  font-size: 14px;
  text-align: left;
}
.modal[name=interview-result] .action-item .description {
  margin-top: 4px;
  color: #707070;
  font-size: 12px;
  text-align: left;
  line-height: 20px;
}
.modal[name=interview-result] video {
  width: 100%;
  height: auto;
  margin-top: 16px;
}
.interview-submission-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  margin-top: 30px;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.interview-submission-tab .title {
  align-self: center;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.interview-submission-tab .desc {
  align-self: center;
  margin-top: 8px;
  color: #707070;
  font-size: 16px;
  text-align: left;
}
.interview-submission-tab .form-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}
.interview-submission-tab .form-block .form-title {
  margin-bottom: 16px;
  color: #000;
  font-size: 16px;
  text-align: center;
}
.interview-submission-tab .form-block input,
.interview-submission-tab .form-block select {
  width: 320px;
  height: 40px;
  margin-bottom: 8px;
  padding: 0 12px;
  text-align: center;
  background-color: #eee;
  border: none;
  border-radius: 8px;
}
.interview-submission-tab .form-block select {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAY5aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA5LjEtYzAwMiA3OS5kYmEzZGEzYjUsIDIwMjMvMTIvMTUtMTA6NDI6MzcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyNS42IChNYWNpbnRvc2gpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0wNS0xN1QxMTo0NzozMCswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjM5MmJkZGE0LWMzMjctNDAyNC1hMTg3LTQyN2ExNGM5ZDU2YSIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjc1MjI1Mjc4LTAyNzEtNmM0MS1iODE1LWViZjY2Yzk3Y2VkYyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjU0ZDgxNTM3LWQxYTgtNDQ3MS05MzUxLTQ5ODI4OGYzYTNmOSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NTRkODE1MzctZDFhOC00NDcxLTkzNTEtNDk4Mjg4ZjNhM2Y5IiBzdEV2dDp3aGVuPSIyMDI0LTA1LTE3VDExOjQ3OjMwKzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjUuNiAoTWFjaW50b3NoKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY29udmVydGVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJmcm9tIGFwcGxpY2F0aW9uL3ZuZC5hZG9iZS5waG90b3Nob3AgdG8gaW1hZ2UvcG5nIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDozOTJiZGRhNC1jMzI3LTQwMjQtYTE4Ny00MjdhMTRjOWQ1NmEiIHN0RXZ0OndoZW49IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNS42IChNYWNpbnRvc2gpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrH56NoAAAIVSURBVHhe7ZpBTgMxDEU73AuJLtpLsOdQLCshFlyCi6GSV34kE1mdTieZLuwvPbm4Ged/Uzao0/l83kXWk2pY5QJUwyoXoBpWuQDVsMoFqIZVLkA1rHIBqmGVC1ANq1yAaljlAlTDKheguljTNB0Kn4WPwrPam4k7dTceDmovF/8VXkrRkUcNP4VX7+wIuEt3Wg9H7+wcbnOOoi9zcWWTJXCH7mrv//LOz3Hvn8DFSSNmncrHEYNDpNmngufb8zQvbytzFO0L3m8BhnwSmKnZ7X1Af+89N4fbvIWiOUPdlsAszWzvgVV3uc1b4WIZsIYqXZbADM1q58PqO9zmEjAgI9ZYZZVBntWMdi6sDg9ucykYkSFrsHKXUZ7Rs+086BIe3OY9YEjGrNHKIsOc1TPtHOgWHtzmvWBMBq3hyk3GOaOz7fPQNTy4zTVgUEat8crVALynM+1z0D08uM21YFSGbYCKG4Se3mvPw5Dw4DZ7gGEZt0Eq/wLxWr32HAwLD26zFxhXABuocgkmHhIe3GZPCKAgNliF/sPCg9vsDUEUyAa8xibhwW2OgEAKZoN6bBYe3OYoCKaANrBl0/DgNkdCQAW1wWHz8OA2R0NQBX5oeHjYN0WnaXop5e3vp9178fGt15sqvyqrGla5ANWwygWohlUuQDWscgGqYZULUA2rXIBqWOUCVMMqF6AaVrkA1bAKvoDd7hecvN10dGrBHgAAAABJRU5ErkJggg==);
	background-size: auto 15px;
	background-position: calc(100% - 5px) center;
	background-repeat: no-repeat;
}
.interview-submission-tab .form-block textarea {
  width: 320px;
  min-height: 180px;
  margin-bottom: 8px;
  padding: 8px 12px;
  text-align: center;
  background-color: #eee;
  border: none;
  border-radius: 8px;
  resize: vertical;
}
.interview-submission-tab .industry-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.interview-submission-tab .industry-item {
  padding: 10px 42px;
  color: #000;
  font-size: 16px;
  text-align: center;
  background-color: #EEE;
  border-radius: 8px;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.interview-submission-tab .industry-item.selected {
  color: var(--md-primary);
  background-color: var(--md-background);
}
.interview-submission-tab .add-question {
  width: 32px;
  height: 32px;
  background-color: var(--md-primary);
  background-image: url(/static/media/icon-add.1c9d2acc3c2152523425.svg);
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
}
.interview-submission-tab .form-block .upload-image {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 180px;
  margin-bottom: 8px;
  padding: 8px 12px;
  background-color: #eee;
  background-image: url(/static/media/portal-upload.3c35fec4a912eb7f8373.svg);
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}
.interview-submission-tab .form-block .upload-image.uploaded {
  background-image: none;
}
.interview-submission-tab .form-block .upload-image.uploaded img {
  max-width: 90%;
  max-height: 90%;
}
.interview-submission-tab button {
  width: 320px;
}
.portal-interview {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.portal-interview .tab-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #FFF;
}
.portal-interview .tab-list .container {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  height: 100%;
}
.portal-interview .tab-list .tab-item {
  display: inline-flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 45px;
  color: var(--md-primary);
  font-size: 16px;
  text-align: center;
  border-radius: 16px;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.portal-interview .tab-list .tab-item.selected {
  font-weight: bold;
  background-color: var(--md-background);
}
.portal-interview .tab-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 30px 30px;
}
.portal-interview .tab-wrapper {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.portal-resume {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.portal-resume .resume-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-resume .resume-container .title {
  margin-bottom: 12px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.portal-resume .table-row {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
.portal-resume table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 15px;
  background-color: #FFF;
}
.portal-resume table td {
  color: #707070;
  font-size: 14px;
}
.portal-resume table td, 
.portal-resume table th {
  border: none;
  padding: 8px 15px;
}
.portal-resume table tr:nth-child(even){background-color: #F9F9F9;}
.portal-resume table tbody tr:hover {background-color: #ddd;}
.portal-resume table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  color: #00A43D;
  font-weight: 400;
  border-bottom: 1px solid #00A43D;
}
.portal-resume table td.empty {
	padding: 60px 0;
	color: #8e8e8e;
	font-size: 16px;
	font-style: italic;
	text-align: center;
}
.portal-resume .action {
  width: 24px;
  height: 24px;
  margin: 0 16px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.portal-resume .action.view {
  background-image: url(/static/media/action-view.9676f04df5af11c0e91f.svg);
}
.portal-resume .action.copy {
  background-image: url(/static/media/action-copy.b3567bdf85da719d833f.svg);
}
.portal-resume .action.edit {
  background-image: url(/static/media/action-edit.8be84e16eb8381292170.svg);
}
.portal-resume .action.delete {
  background-image: url(/static/media/action-delete.b056ccbd56eac0d42224.svg);
}
.portal-resume button.add {
  margin-top: 16px;
}
.portal-resume-detail {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.portal-resume-detail .tab-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #FFF;
}
.portal-resume-detail .tab-list .container {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  height: 100%;
}
.portal-resume-detail .tab-list .tab-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 45px;
  padding: 0 45px;
  color: var(--md-primary);
  font-size: 16px;
  text-align: center;
  border-radius: 16px;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.portal-resume-detail .tab-list .tab-item.selected {
  font-weight: bold;
  background-color: var(--md-background);
}
.portal-resume-detail .tab-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 30px 30px;
}
.resume-preview-tab {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  gap: 8px;
  animation: fadeIn 0.1s ease-in forwards;
}
.resume-preview-tab .card-column {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: 400px;
  gap: 8px;
}
.resume-preview-tab .card-column.large {
  flex: 1 1;
  width: auto;
}
.resume-preview-tab .card-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.resume-preview-tab .card-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.resume-preview-tab .card-desc {
  margin-top: 8px;
  color: #707070;
  font-size: 14px;
  text-align: left;
  line-height: 24px;
}
.resume-preview-tab .card-desc ul {
  padding-left: 1.5em;
}
.resume-preview-tab .top-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}
.resume-preview-tab input.resume-name {
  padding: 6px 12px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background-color: transparent;
  border: 1px solid #DDD;
  border-radius: 6px;
}
.resume-preview-tab input.resume-name.warn {
  border: 2px solid #F00 !important;
}
.resume-preview-tab input.resume-name:active {
  border: 2px solid #7D7D7D;
  outline: none;
}
.resume-preview-tab .download-button {
  margin-left: 16px;
  font-size: 14px;
  white-space: nowrap;
}
.resume-preview-tab .download {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  margin-right: 14px;
  cursor: pointer;
}
.resume-preview-tab .download img {
  width: 18px;
  height: 18px;
}
.resume-preview-tab .resume-section {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 16px;
}
.resume-preview-tab .resume-section .top {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 12px 12px;
  background-color: rgb(250, 253, 242);
  border-bottom: 1px solid var(--md-primary);
}
.resume-preview-tab .resume-section .top .expandToggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-image: url(/static/media/resume-expand.3647ecde7551a6851b0d.svg);
  background-size: auto 24px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transform: rotate(-90deg);
  transition: transform ease-in-out .2s;
}
.resume-preview-tab .resume-section .top .expandToggle.expanded {
  transform: rotate(0deg);
}
.resume-preview-tab .resume-section .top .name {
  flex: 1 1;
  padding-left: 8px;
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.resume-preview-tab .resume-section .top .add {
  width: 24px;
  height: 24px;
  background-image: url(/static/media/resume-add.80827dfbc0111e2b91ff.svg);
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.resume-preview-tab .resume-section .top .edit {
  width: 24px;
  height: 24px;
  background-image: url(/static/media/resume-edit.2cba0c29f439e0720984.svg);
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.resume-preview-tab .resume-section .body {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 16px 32px;
  gap: 8px;
}
.resume-preview-tab .resume-row {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  gap: 4px;
}
.resume-preview-tab .resume-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding: 8px;
  color: #000;
  font-size: 12px;
  text-align: left;
  transition: background-color ease-in-out .2s;
}
.resume-preview-tab .resume-item:hover {
  background-color: #EEE;
}
.resume-preview-tab .resume-item.indent {
  padding-left: 32px;
}
.resume-preview-tab .resume-item img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.resume-preview-tab .resume-row .edit {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url(/static/media/resume-edit.2cba0c29f439e0720984.svg);
  background-size: auto 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.resume-preview-tab .edit-form {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.resume-preview-tab .edit-form .title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.resume-preview-tab .edit-form .form-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 24px;
}
.resume-preview-tab .edit-form .form-block {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.resume-preview-tab .edit-form .form-title {
  margin-bottom: 8px;
  color: #000;
  font-size: 12px;
  text-align: left;;
}
.resume-preview-tab .edit-form input,
.resume-preview-tab .edit-form select {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #EEE;
  border: 1px solid #DDD;
  border-radius: 8px;
}
.resume-preview-tab .edit-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 8px 12px;
  background-color: #EEE;
  border: 1px solid #DDD;
  border-radius: 8px;
  resize: vertical;
}
.resume-preview-tab .edit-form select {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAY5aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA5LjEtYzAwMiA3OS5kYmEzZGEzYjUsIDIwMjMvMTIvMTUtMTA6NDI6MzcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyNS42IChNYWNpbnRvc2gpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0wNS0xN1QxMTo0NzozMCswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjM5MmJkZGE0LWMzMjctNDAyNC1hMTg3LTQyN2ExNGM5ZDU2YSIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjc1MjI1Mjc4LTAyNzEtNmM0MS1iODE1LWViZjY2Yzk3Y2VkYyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjU0ZDgxNTM3LWQxYTgtNDQ3MS05MzUxLTQ5ODI4OGYzYTNmOSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NTRkODE1MzctZDFhOC00NDcxLTkzNTEtNDk4Mjg4ZjNhM2Y5IiBzdEV2dDp3aGVuPSIyMDI0LTA1LTE3VDExOjQ3OjMwKzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjUuNiAoTWFjaW50b3NoKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY29udmVydGVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJmcm9tIGFwcGxpY2F0aW9uL3ZuZC5hZG9iZS5waG90b3Nob3AgdG8gaW1hZ2UvcG5nIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDozOTJiZGRhNC1jMzI3LTQwMjQtYTE4Ny00MjdhMTRjOWQ1NmEiIHN0RXZ0OndoZW49IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNS42IChNYWNpbnRvc2gpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrH56NoAAAIVSURBVHhe7ZpBTgMxDEU73AuJLtpLsOdQLCshFlyCi6GSV34kE1mdTieZLuwvPbm4Ged/Uzao0/l83kXWk2pY5QJUwyoXoBpWuQDVsMoFqIZVLkA1rHIBqmGVC1ANq1yAaljlAlTDKheguljTNB0Kn4WPwrPam4k7dTceDmovF/8VXkrRkUcNP4VX7+wIuEt3Wg9H7+wcbnOOoi9zcWWTJXCH7mrv//LOz3Hvn8DFSSNmncrHEYNDpNmngufb8zQvbytzFO0L3m8BhnwSmKnZ7X1Af+89N4fbvIWiOUPdlsAszWzvgVV3uc1b4WIZsIYqXZbADM1q58PqO9zmEjAgI9ZYZZVBntWMdi6sDg9ucykYkSFrsHKXUZ7Rs+086BIe3OY9YEjGrNHKIsOc1TPtHOgWHtzmvWBMBq3hyk3GOaOz7fPQNTy4zTVgUEat8crVALynM+1z0D08uM21YFSGbYCKG4Se3mvPw5Dw4DZ7gGEZt0Eq/wLxWr32HAwLD26zFxhXABuocgkmHhIe3GZPCKAgNliF/sPCg9vsDUEUyAa8xibhwW2OgEAKZoN6bBYe3OYoCKaANrBl0/DgNkdCQAW1wWHz8OA2R0NQBX5oeHjYN0WnaXop5e3vp9178fGt15sqvyqrGla5ANWwygWohlUuQDWscgGqYZULUA2rXIBqWOUCVMMqF6AaVrkA1bAKvoDd7hecvN10dGrBHgAAAABJRU5ErkJggg==);
	background-size: auto 15px;
	background-position: calc(100% - 5px) center;
	background-repeat: no-repeat;
}
.resume-preview-tab .edit-form input:focus {
  outline: none;
}
.resume-preview-tab .edit-form button {
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 1.2em;
  font-size: 14px;
  border-radius: 20px;
}

.resume-preview-tab button.review {
  margin-left: auto;
  font-size: 14px;
}
.resume-preview-tab .chart-container {
  align-self: center;
  position: relative;
  width: 160px;
  height: 160px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.resume-preview-tab .chart {
  transform: rotate(-90deg);
}
.resume-preview-tab .chart-background {
  fill: none;
  stroke: #eaeaea;
  stroke-width: 8;
}
.resume-preview-tab .chart-progress {
  fill: none;
  stroke-width: 8;
  stroke-dasharray: 0, 565.48;
  transition: stroke-dasharray 0.5s ease-in-out;
}
.resume-preview-tab .chart-progress.good {
	stroke: #00A43D;
}
.resume-preview-tab .chart-progress.normal {
	stroke: #FCC419;
}
.resume-preview-tab .chart-progress.bad {
	stroke: #FA5252;
}
.resume-preview-tab .chart-score {
	display: inline-flex;
  flex-direction: column;
	justify-content: center;
	align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 32px;
  font-weight: bold;
}
.resume-preview-tab .chart-score span {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.resume-preview-tab .chart-score.good {
	color: #00A43D;
}
.resume-preview-tab .chart-score.normal {
	color: #FCC419;
}
.resume-preview-tab .chart-score.bad {
	color: #FA5252;
}
.resume-preview-tab .card-metric {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
}
.resume-preview-tab .card-metric .metric-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
.resume-preview-tab .card-metric img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.resume-preview-tab .card-metric .name {
  flex: 1 1;
  font-size: 16px;
  text-align: left;
}
.resume-preview-tab .card-metric.good .name {
  color: var(--md-primary)
}
.resume-preview-tab .card-metric.missing .name {
  color: #C99605;
}
.resume-preview-tab .card-metric .number {
  margin-left: 8px;
  font-size: 16px;
  text-align: left;
}
.resume-preview-tab .card-metric.good .number {
  color: var(--md-primary)
}
.resume-preview-tab .card-metric.missing .number {
  color: #C99605;
}
.resume-preview-tab .card-metric .bar {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 5px;
  background-color: #D9D9D9;
  border-radius: 3px;
}
.resume-preview-tab .card-metric .fill {
  height: 5px;
  border-radius: 3px;
}
.resume-preview-tab .card-metric.good .fill {
  background-color: var(--md-primary);
}
.resume-preview-tab .card-metric.missing .fill {
  background-color: #C99605;
}
.modal[name=resume-export] .form {
  align-items: center;
	width: 900px;
}
.modal[name=resume-export] .title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.modal[name=resume-export] .template-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
}
.modal[name=resume-export] .template-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: 180px;
  border: 2px solid #EEE;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
          user-select: none;
  transition: background-color ease-in-out .2s;
}
.modal[name=resume-export] .template-item.selected {
  border: 2px solid #DDD;
  background-color: #EEE;
}
.modal[name=resume-export] .template-item .thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
}
.modal[name=resume-export] .template-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal[name=resume-export] .template-item .name {
  padding: 6px 8px;
  color: #000;
  font-size: 14px;
  text-align: left;
  border-top: 1px solid #EEE;
}
.modal[name=resume-export] .divider {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin-top: 45px;
  margin-bottom: 30px;
  background-color: #EEE;
}
.modal[name=resume-export] button {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 40px;
  padding: 0;
  color: #FFF;
  background-color: var(--md-primary);
  border: none;
  border-radius: 20px;
}
.modal[name=resume-export] button:disabled {
  background-color: #707070;
  cursor: not-allowed;
}
.resume-coach-tab {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  gap: 8px;
  animation: fadeIn 0.1s ease-in forwards;
}
.resume-coach-tab .card-column {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: 400px;
  gap: 8px;
}
.resume-coach-tab .card-column.large {
  flex: 1 1;
  width: auto;
}
.resume-coach-tab .card-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.resume-coach-tab .card-title {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.resume-coach-tab .card-desc {
  margin-top: 8px;
  color: #707070;
  font-size: 14px;
  text-align: left;
  line-height: 24px;
}
.resume-coach-tab .card-desc ul {
  padding-left: 1.5em;
}
.resume-coach-tab .card-desc span {
  color: var(--md-primary);
}
.resume-coach-tab .resume-user {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.resume-coach-tab .resume-name {
  margin-top: 16px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.resume-coach-tab .resume-text {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #000;
  font-size: 12px;
  text-align: left;
}
.resume-coach-tab .resume-title {
  margin-top: 16px;
  color: var(--md-primary);
  font-size: 14px;
  text-align: left;
}
.resume-coach-tab .resume-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid #DDD;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color ease-in-out .2s;
}
.resume-coach-tab .resume-block.selected {
  border-color: var(--md-primary);
}
.resume-coach-tab .resume-block .resume-name {
  margin-top: 0;
}
.resume-coach-tab .resume-desc {
  color: #000;
  font-size: 12px;
  text-align: left;
}
.resume-coach-tab .divider {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background-color: #D9D9D9;
}
.resume-coach-tab .ai-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 16px;
}
.resume-coach-tab .ai-title {
  flex: 1 1;
  color: #000;
  font-size: 14px;
  text-align: left;
}
.resume-coach-tab .ai-button {
  color: #FFF;
  font-size: 14px;
  background-color: #FECF4C;
}
.resume-coach-tab .subtab-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  gap: 8px;
}
.resume-coach-tab .subtab-item {
  width: 180px;
  height: 40px;
  color: #707070;
  background-color: #FFF;
  border: 1px solid #EEE;
  border-radius: 20px;
  transition: all ease-in-out .2s;
}
.resume-coach-tab .subtab-item.selected {
  color: #FFF;
  background-color: var(--md-primary);
  border-color: var(--md-primary);
}
.resume-coach-tab .custom-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
  gap: 8px;
}
.resume-coach-tab .button-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  gap: 8px;
}
.resume-coach-tab input,
.resume-coach-tab select {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  background-color: #EEE;
  border-radius: 8px;
}
.resume-coach-tab textarea {
  min-height: 160px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid #EEE;
  border-radius: 8px;
}
.resume-coach-tab textarea:disabled {
  color: #7d7d7d;
  cursor: not-allowed;
}
.portal-analyzer {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.portal-analyzer .job-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-analyzer .job-container .title {
  margin-bottom: 12px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.portal-analyzer .table-row {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
.portal-analyzer table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 15px;
  background-color: #FFF;
}
.portal-analyzer table td {
  color: #707070;
  font-size: 14px;
}
.portal-analyzer table td, 
.portal-analyzer table th {
  border: none;
  padding: 8px 15px;
}
.portal-analyzer table tr:nth-child(even){background-color: #F9F9F9;}
.portal-analyzer table tbody tr:hover {background-color: #ddd;}
.portal-analyzer table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  color: #00A43D;
  font-weight: 400;
  border-bottom: 1px solid #00A43D;
}
.portal-analyzer table td.empty {
	padding: 60px 0;
	color: #8e8e8e;
	font-size: 16px;
	font-style: italic;
	text-align: center;
}
.portal-analyzer .action {
  width: 24px;
  height: 24px;
  margin: 0 16px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.portal-analyzer .action.view {
  background-image: url(/static/media/action-view.9676f04df5af11c0e91f.svg);
}
.portal-analyzer .action.copy {
  background-image: url(/static/media/action-copy.b3567bdf85da719d833f.svg);
}
.portal-analyzer .action.edit {
  background-image: url(/static/media/action-edit.8be84e16eb8381292170.svg);
}
.portal-analyzer .action.delete {
  background-image: url(/static/media/action-delete.b056ccbd56eac0d42224.svg);
}
.analyzer-summary-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.analyzer-summary-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1080px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.analyzer-summary-tab .card-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.analyzer-summary-tab .card-column {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.analyzer-summary-tab .card-column:nth-child(1) {
  width: 480px;
  padding-right: 90px;
}
.analyzer-summary-tab .card-column:nth-child(2) {
  flex: 1 1;
  width: auto;
}
.analyzer-summary-tab .card-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  gap: 8px;
}
.analyzer-summary-tab .card-item {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  width: auto;
  padding: 20px 45px;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
}
.analyzer-summary-tab .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.analyzer-summary-tab .card-attr {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.analyzer-summary-tab .job-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  color: var(--md-primary);
  font-size: 20px;
  text-align: left;
}
.analyzer-summary-tab .job-title img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}
.analyzer-summary-tab .job-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
  line-height: 24px;
}
.analyzer-summary-tab .job-desc ul {
  margin: 0;
  padding-left: 1.6em;
}
.analyzer-summary-tab .skill-column {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 90px;
}
.analyzer-summary-tab .skill-title {
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.analyzer-summary-tab .skill-title.soft {
  color: #C99605;
}
.analyzer-summary-tab .skill-item {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 250px;
  height: 40px;
  margin-bottom: 8px;
  padding: 0 16px;
  color: var(--md-primary);
  font-size: 14px;
  text-align: left;
  background-color: var(--md-background);
  border: 1px solid var(--md-primary);
  border-radius: 16px;
}
.analyzer-summary-tab .skill-item img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.analyzer-summary-tab .skill-item.soft {
  color: #C99605;
  background-color: #FFEFC2;
  border-color: #C99605;
}
.analyzer-summary-tab button.match-resume {
  position: absolute;
  top: 24px;
  right: 40px;
}

.analyzer-analyzer-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.analyzer-analyzer-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.analyzer-analyzer-tab .card-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.analyzer-analyzer-tab .card-title.margin {
  margin-top: 24px;
  margin-bottom: 8px;
}
.analyzer-analyzer-tab button.resume-button {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.analyzer-analyzer-tab .card-subtitle {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.analyzer-analyzer-tab .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.analyzer-analyzer-tab .card-bubble {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  padding: 16px 40px;
  background-color: var(--md-background);
  border-radius: 16px;
}
.analyzer-analyzer-tab .card-bubble .job-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: var(--md-primary);
  font-size: 18px;
  text-align: left;
}
.analyzer-analyzer-tab .card-bubble .job-title img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}
.analyzer-analyzer-tab .card-bubble .job-desc {
  margin-top: 8px;
  color: #333;
  font-size: 14px;
  text-align: left;
  line-height: 24px;
}
.analyzer-analyzer-tab .card-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  gap: 8px;
}
.analyzer-analyzer-tab .card-item {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  width: auto;
  padding: 20px 45px;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
}
.analyzer-analyzer-tab .card-heading {
  margin-bottom: 16px;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.analyzer-analyzer-tab .chart-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.analyzer-analyzer-tab .chart {
  transform: rotate(-90deg);
}
.analyzer-analyzer-tab .chart-background {
  fill: none;
  stroke: #eaeaea;
  stroke-width: 8;
}
.analyzer-analyzer-tab .chart-progress {
  fill: none;
  stroke-width: 8;
  stroke-dasharray: 0, 565.48;
  transition: stroke-dasharray 0.5s ease-in-out;
}
.analyzer-analyzer-tab .chart-progress.good {
	stroke: #00A43D;
}
.analyzer-analyzer-tab .chart-progress.normal {
	stroke: #FCC419;
}
.analyzer-analyzer-tab .chart-progress.bad {
	stroke: #FA5252;
}
.analyzer-analyzer-tab .chart-score {
	display: inline-flex;
  flex-direction: column;
	justify-content: center;
	align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 32px;
  font-weight: bold;
}
.analyzer-analyzer-tab .chart-score span {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.analyzer-analyzer-tab .chart-score.good {
	color: #00A43D;
}
.analyzer-analyzer-tab .chart-score.normal {
	color: #FCC419;
}
.analyzer-analyzer-tab .chart-score.bad {
	color: #FA5252;
}
.analyzer-analyzer-tab .card-comment {
  color: #707070;
  font-size: 14px;
  text-align: center;
}
.analyzer-analyzer-tab .card-metric {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
}
.analyzer-analyzer-tab .card-metric .metric-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
.analyzer-analyzer-tab .card-metric img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.analyzer-analyzer-tab .card-metric .name {
  flex: 1 1;
  font-size: 16px;
  text-align: left;
}
.analyzer-analyzer-tab .card-metric.good .name {
	color: #00A43D;
}
.analyzer-analyzer-tab .card-metric.normal .name {
  color: #C99605;
}
.analyzer-analyzer-tab .card-metric.bad .name {
	color: #FA5252;
}
.analyzer-analyzer-tab .card-metric .number {
  margin-left: 8px;
  font-size: 16px;
  text-align: left;
}
.analyzer-analyzer-tab .card-metric.good .number {
	color: #00A43D;
}
.analyzer-analyzer-tab .card-metric.normal .number {
  color: #C99605;
}
.analyzer-analyzer-tab .card-metric.bad .number {
	color: #FA5252;
}
.analyzer-analyzer-tab .card-metric .bar {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 5px;
  background-color: #D9D9D9;
  border-radius: 3px;
}
.analyzer-analyzer-tab .card-metric .fill {
  height: 5px;
  border-radius: 3px;
}
.analyzer-analyzer-tab .card-metric.good .fill {
  background-color: #00A43D;
}
.analyzer-analyzer-tab .card-metric.normal .fill {
  background-color: #C99605;
}
.analyzer-analyzer-tab .card-metric.bad .fill {
  background-color: #FA5252;
}
.analyzer-analyzer-tab .card-divider {
  display: inline-flex;
  width: 100%;
  height: 1px;
  margin-top: auto;
  margin-bottom: 16px;
  background-color: #D9D9D9;
}
.analyzer-analyzer-tab .card-paragraph {
  color: #707070;
  font-size: 14px;
  text-align: left;
}
.analyzer-analyzer-tab .card-paragraph .good {
	color: #00A43D;
}
.analyzer-analyzer-tab .card-paragraph .normal {
	color: #FCC419;
}
.analyzer-analyzer-tab .card-paragraph .bad {
	color: #FA5252;
}
.analyzer-analyzer-tab .card-keyword {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-self: center;
  width: 100%;
  max-width: 280px;
  padding: 4px 32px;
  margin-bottom: 8px;
  border: 1px solid transparent;
  border-radius: 15px;
}
.analyzer-analyzer-tab .card-keyword.good {
  background-color: var(--md-background);
  border-color: var(--md-primary);
}
.analyzer-analyzer-tab .card-keyword.missing {
  background-color: #FFEFC2;
  border-color: #C99605;
}
.analyzer-analyzer-tab .card-keyword img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.analyzer-analyzer-tab .card-keyword .name {
  flex: 1 1;
  font-size: 12px;
  text-align: left;
}
.analyzer-analyzer-tab .card-keyword.good .name {
  color: var(--md-primary);
}
.analyzer-analyzer-tab .card-keyword.missing .name {
  color: #C99605;
}
.analyzer-analyzer-tab .card-tip {
  color: #707070;
  font-size: 11px;
  text-align: left;
}
.analyzer-analyzer-tab .recom-bubble {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  border: 1px solid var(--md-primary);
  border-radius: 16px;
}
.analyzer-analyzer-tab .recom-bubble.good {
  background-color: var(--md-background);
  border-color: var(--md-primary);
}
.analyzer-analyzer-tab .recom-bubble.needed {
  background-color: #DFE9F4;
  border-color: #3A99FF;
}
.analyzer-analyzer-tab .recom-bubble.missing {
  background-color: #FFEFC2;
  border-color: #C99605;
}
.analyzer-analyzer-tab .recom-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.analyzer-analyzer-tab .recom-bubble.good .recom-title {
  color: var(--md-primary);
}
.analyzer-analyzer-tab .recom-bubble.needed .recom-title {
  color: #3A99FF
}
.analyzer-analyzer-tab .recom-bubble.missing .recom-title {
  color: #C99605;
}
.analyzer-analyzer-tab .recom-title img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.analyzer-analyzer-tab .recom-desc {
  margin-top: 8px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.analyzer-analyzer-tab .next-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 8px;
}
.analyzer-analyzer-tab .next-item {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: auto;
  padding: 16px 24px;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
}
.analyzer-analyzer-tab .next-name {
  color: var(--md-primary);
  font-size: 18px;
  text-align: left;
}
.analyzer-analyzer-tab .next-desc {
  margin-top: 8px;
  color: #707070;
  font-size: 14px;
  text-align: left;
  line-height: 24px;
}
.analyzer-analyzer-tab .next-item ul,
.analyzer-analyzer-tab .next-item ol {
  margin: 0;
  padding-left: 1.8em;
}
.analyzer-analyzer-tab .buttons {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  gap: 8px;
}
.analyzer-analyzer-tab .buttons button {
  height: 40px;
  padding: 0 1.2em;
  border-radius: 16px;
}
.analyzer-coach-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.analyzer-coach-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.analyzer-coach-tab .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.analyzer-coach-tab .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.analyzer-coach-tab .card-content {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
  gap: 24px;
}
.analyzer-coach-tab .resume-container {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: auto;
  padding: 20px 45px;
  padding-bottom: 160px;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
}
.analyzer-coach-tab .resume {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.analyzer-coach-tab .resume * {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
}
.analyzer-coach-tab .resume mark {
  background-color: #FFEFC2;
  cursor: pointer;
}
.analyzer-coach-tab .resume-intro {
  align-self: center;
  margin-bottom: 16px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5em;
}
.analyzer-coach-tab .resume-title {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  padding-bottom: 8px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #DDD;
}
.analyzer-coach-tab .resume-paragraph {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 1.5em;
}
.analyzer-coach-tab .resume-paragraph ul {
  padding-left: 1.5em;
}
.analyzer-coach-tab .marker {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -16px;
  width: 32px;
  height: 32px;
  background-color: #FFEFC2;
  border-radius: 50%;
  cursor: pointer;
}
.analyzer-coach-tab .marker span {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  color: #C99605;
  font-size: 10px;
  text-align: center;
  border: 1px solid #C99605;
  border-radius: 50%;
}

.analyzer-coach-tab .comment-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  position: relative;
  width: 320px;
}
.analyzer-coach-tab .comment-container .card-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}
.analyzer-coach-tab .comment-container .card-desc {
  margin-top: 0;
}
.analyzer-coach-tab .comment-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 20px 20px;
  background-color: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
  animation: fadeIn 0.1s ease-in forwards;
}
.analyzer-coach-tab .comment-block .title {
  color: #707070;
  font-size: 14px;
  text-align: left;
}
.analyzer-coach-tab .comment-block .paragraph {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.analyzer-coach-tab .comment-block .paragraph.original {
  padding: 8px 8px;
  background-color: #EEE;
  border-radius: 8px;
  cursor: pointer;
}
.analyzer-coach-tab .comment-block .paragraph.enhance {
  padding: 8px 8px;
  font-weight: 600;
  background-color: #FFEFC2;
  border-radius: 8px;
  cursor: pointer;
}

.analyzer-coach-tab .buttons {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  gap: 8px;
}
.analyzer-coach-tab .buttons button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  padding: 0 1.2em;
  border-radius: 16px;
}
.analyzer-coach-tab .buttons button img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}
.analyzer-coverletter-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  animation: fadeIn 0.1s ease-in forwards;
}
.analyzer-coverletter-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.analyzer-coverletter-tab .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.analyzer-coverletter-tab .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.analyzer-coverletter-tab .card-content {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
  gap: 24px;
}
.analyzer-coverletter-tab .letter-container {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: auto;
  padding: 20px 45px;
  padding-bottom: 160px;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
}
.analyzer-coverletter-tab .letter {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.analyzer-coverletter-tab .letter * {
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
}
.analyzer-coverletter-tab .letter mark {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  background-color: #FFEFC2;
}
.analyzer-coverletter-tab .letter-intro {
  align-self: center;
  margin-bottom: 16px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5em;
}
.analyzer-coverletter-tab .letter-attr {
  margin-top: 8px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.analyzer-coverletter-tab .letter-title {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  padding-bottom: 8px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #DDD;
}
.analyzer-coverletter-tab .letter-paragraph {
  margin-top: 8px;
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 1.5em;
}
.analyzer-coverletter-tab .letter-paragraph ul {
  padding-left: 1.5em;
}
.analyzer-coverletter-tab .note {
  margin-top: 8px;
  color: #F00;
  font-size: 12px;
}

.analyzer-coverletter-tab .buttons {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  gap: 8px;
}
.analyzer-coverletter-tab .buttons button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  padding: 0 1.2em;
  border-radius: 16px;
}
.analyzer-coverletter-tab .buttons button img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}
.portal-analyzer-detail {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
}
.portal-analyzer-detail .tab-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #FFF;
}
.portal-analyzer-detail .tab-list .container {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  height: 100%;
}
.portal-analyzer-detail .tab-list .tab-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 45px;
  padding: 0 45px;
  color: var(--md-primary);
  font-size: 16px;
  text-align: center;
  border-radius: 16px;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.portal-analyzer-detail .tab-list .tab-item.selected {
  font-weight: bold;
  background-color: var(--md-background);
}
.portal-analyzer-detail .tab-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 30px 30px;
}
.portal-analyzer-detail .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-analyzer-detail .card-container.new-form {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-analyzer-detail .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.portal-analyzer-detail .card-title.margin {
  margin-top: 24px;
  margin-bottom: 8px;
}
.portal-analyzer-detail .card-subtitle {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-analyzer-detail .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-analyzer-detail .form-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  margin-top: 30px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-analyzer-detail .form-container .title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.portal-analyzer-detail .form-container .form-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 24px;
}
.portal-analyzer-detail .form-container .form-block {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  margin-bottom: 24px;
}
.portal-analyzer-detail .form-container .form-subrow {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}
.portal-analyzer-detail .form-container .form-title {
  margin-bottom: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;;
}
.portal-analyzer-detail .form-container input,
.portal-analyzer-detail .form-container select {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #EEE;
  border: 1px solid transparent;
  border-radius: 8px;
}
.portal-analyzer-detail .form-container textarea {
  width: 100%;
  min-height: 120px;
  font-size: 14px;
  background-color: #EEE;
  border: 1px solid transparent;
  border-radius: 8px;
  resize: vertical;
}
.portal-analyzer-detail .form-container select {
  color: var(--md-primary);
	background-image: url(/static/media/icon-dropdown-green.ea95418c24d5ce8fb7c3.svg);
	background-size: auto 6px;
	background-position: calc(100% - 12px) center;
	background-repeat: no-repeat;
}
.portal-analyzer-detail .form-container input:focus,
.portal-analyzer-detail .form-container select:focus,
.portal-analyzer-detail .form-container textarea:focus {
  outline: none;
}
.portal-analyzer-detail .form-container .form-options {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.portal-analyzer-detail .form-container .form-option {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 36px;
  padding: 0 24px;
  color: var(--md-primary);
  font-size: 14px;
  text-align: center;
  border: 1px solid var(--md-primary);
  border-radius: 18px;
  white-space: nowrap;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.portal-analyzer-detail .form-container .form-option.selected {
  color: #FFF;
  background-color: var(--md-primary);
}
.portal-analyzer-detail .form-container button {
  font-size: 14px;
}
.portal-analyzer-detail .action-row {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.portal-analyzer-detail .action-row .container {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  padding: 0 30px;
}

.portal-analyzer-detail .progress-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 16px 0;
  gap: 8px;
}
.portal-analyzer-detail .progress-title {
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-analyzer-detail .progress-bar {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 16px;
  background-color: #EEE;
  border-radius: 8px;
}
.portal-analyzer-detail .progress-bar .fill {
  display: inline-flex;
  width: auto;
  height: 100%;
  background-color: var(--md-primary);
  border-radius: 8px;
  transition: width ease-in-out .2s;
}
.portal-analyzer-detail .progress-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.portal-analyzer-detail .progress-name {
  color: var(--md-primary);
  font-size: 14px;
  text-align: left;
}
.portal-analyzer-detail .progress-percent {
  margin-left: auto;
  color: var(--md-primary);
  font-size: 14px;
  text-align: right;
}
.portal-tracker {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.portal-tracker .job-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-tracker .job-container .title {
  margin-bottom: 12px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.portal-tracker .search-container {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}
.portal-tracker .search-row {
  display: inline-flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding: 8px 24px;
  background-color: #EEE;
  border-radius: 8px;
}
.portal-tracker .search-row .icon {
  width: 24px;
  height: 24px;
  background-image: url(/static/media/portal-search.5080cec2abff97479eda.svg);
  background-size: auto 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.portal-tracker .search-row input {
  flex: 1 1;
  width: auto;
  height: 24px;
  background-color: transparent;
  border: none;
}
.portal-tracker .search-row input:focus {
  outline: none;
}
.portal-tracker button.add-job {
  display: inline-flex;
	justify-content: center;
	align-items: center;
  height: 45px;
  margin-left: 24px;
  padding: 0 1.2em;
  padding-bottom: 2px;
}
.portal-tracker .table-row {
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
.portal-tracker table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 15px;
  background-color: #FFF;
}
.portal-tracker table td {
  color: #707070;
  font-size: 14px;
}
.portal-tracker table td, 
.portal-tracker table th {
  border: none;
  padding: 8px 15px;
}
.portal-tracker table tr:nth-child(even){background-color: #F9F9F9;}
.portal-tracker table tbody tr:hover {background-color: #ddd;}
.portal-tracker table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  color: #00A43D;
  font-weight: 400;
  border-bottom: 1px solid #00A43D;
}
.portal-tracker table td.empty {
	padding: 60px 0;
	color: #8e8e8e;
	font-size: 16px;
	font-style: italic;
	text-align: center;
}
.portal-tracker .status {
  padding: 8px 12px;
  color: #FFF;
  font-size: 12px;
  text-align: center;
  background-color: var(--md-primary);
  border-radius: 8px;
}
.portal-tracker .status[data-status='1'] {
  color: #333;
  background-color: #FFD926;
}
.portal-tracker .status[data-status=2] {
  background-color: #00A43D;
}
.portal-tracker .status[data-status=3] {
  background-color: #3A99FF;
}
.portal-tracker .status[data-status=4] {
  background-color: #F8928A;
}
.portal-tracker .action-cell {
  white-space: nowrap;
}
.portal-tracker .action {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 8px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.portal-tracker .action.view {
  background-image: url(/static/media/action-view.9676f04df5af11c0e91f.svg);
}
.portal-tracker .action.copy {
  background-image: url(/static/media/action-copy.b3567bdf85da719d833f.svg);
}
.portal-tracker .action.edit {
  background-image: url(/static/media/action-edit.8be84e16eb8381292170.svg);
}
.portal-tracker .action.delete {
  background-image: url(/static/media/action-delete.b056ccbd56eac0d42224.svg);
}
.portal-tracker-detail {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
}
.portal-tracker-detail .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-tracker-detail .top {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.portal-tracker-detail .position {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.portal-tracker-detail .status {
  margin-left: 28px;
  padding: 8px 20px;
  color: #FFF;
  font-size: 12px;
  text-align: center;
  background-color: var(--md-primary);
  border-radius: 8px;
}
.portal-tracker-detail .status[data-status='1'] {
  color: #333;
  background-color: #FFD926;
}
.portal-tracker-detail .status[data-status=2] {
  background-color: #00A43D;
}
.portal-tracker-detail .status[data-status=3] {
  background-color: #3A99FF;
}
.portal-tracker-detail .status[data-status=4] {
  background-color: #F8928A;
}
.portal-tracker-detail button.edit {
  margin-left: auto;
  padding: .8em 1.8em;
  padding-left: 45px;
  padding-right: 16px;
  background-image: url(/static/media/portal-edit-white.870d3a5123c887874eca.svg);
  background-size: auto 18px;
  background-position: 16px center;
  background-repeat: no-repeat;
}
.portal-tracker-detail .company {
  margin-top: 8px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-tracker-detail .attr-row {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.portal-tracker-detail .attr-block {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 24px;
  padding-right: 16px;
}
.portal-tracker-detail .attr-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-right: 32px;
}
.portal-tracker-detail .attr-item .icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.portal-tracker-detail .attr-item .text {
  margin-left: 8px;
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.portal-tracker-detail .value {
  margin-top: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
  word-break: break-all;
}
.portal-tracker-detail .card-container .divider {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background-color: #DFF4E8;
}
.portal-tracker-detail .card-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.portal-tracker-detail .card-column {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  padding-right: 60px;
}
.portal-tracker-detail .card-title {
  margin-bottom: 8px;
  color: var(--md-primary);
  font-size: 20px;
  text-align: left;
}
.portal-tracker-detail .card-desc {
  margin-bottom: 24px;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 24px;
}
.portal-tracker-detail .card-desc ul,
.portal-tracker-detail .card-desc ol {
  margin: 0;
  padding-left: 1.8em;
}

.portal-tracker-detail .form-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  margin-top: 30px;
  padding: 24px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-tracker-detail .form-container .title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.portal-tracker-detail .form-container .form-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 24px;
}
.portal-tracker-detail .form-container .form-block {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
}
.portal-tracker-detail .form-container .form-subrow {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}
.portal-tracker-detail .form-container .form-title {
  margin-bottom: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;;
}
.portal-tracker-detail .form-container input,
.portal-tracker-detail .form-container select {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  background-color: #EEE;
  border: 1px solid #DDD;
  border-radius: 8px;
}
.portal-tracker-detail .form-container textarea {
  width: 100%;
  min-height: 120px;
  background-color: #EEE;
  border: 1px solid #DDD;
  border-radius: 8px;
  resize: vertical;
}
.portal-tracker-detail .form-container select {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxMAAAsTAQCanBgAAAY5aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA5LjEtYzAwMiA3OS5kYmEzZGEzYjUsIDIwMjMvMTIvMTUtMTA6NDI6MzcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyNS42IChNYWNpbnRvc2gpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNC0wNS0xN1QxMTo0NzozMCswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjM5MmJkZGE0LWMzMjctNDAyNC1hMTg3LTQyN2ExNGM5ZDU2YSIgeG1wTU06RG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjc1MjI1Mjc4LTAyNzEtNmM0MS1iODE1LWViZjY2Yzk3Y2VkYyIgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjU0ZDgxNTM3LWQxYTgtNDQ3MS05MzUxLTQ5ODI4OGYzYTNmOSI+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NTRkODE1MzctZDFhOC00NDcxLTkzNTEtNDk4Mjg4ZjNhM2Y5IiBzdEV2dDp3aGVuPSIyMDI0LTA1LTE3VDExOjQ3OjMwKzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjUuNiAoTWFjaW50b3NoKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY29udmVydGVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJmcm9tIGFwcGxpY2F0aW9uL3ZuZC5hZG9iZS5waG90b3Nob3AgdG8gaW1hZ2UvcG5nIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDozOTJiZGRhNC1jMzI3LTQwMjQtYTE4Ny00MjdhMTRjOWQ1NmEiIHN0RXZ0OndoZW49IjIwMjQtMDUtMTdUMTI6Mzg6MTIrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyNS42IChNYWNpbnRvc2gpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrH56NoAAAIVSURBVHhe7ZpBTgMxDEU73AuJLtpLsOdQLCshFlyCi6GSV34kE1mdTieZLuwvPbm4Ged/Uzao0/l83kXWk2pY5QJUwyoXoBpWuQDVsMoFqIZVLkA1rHIBqmGVC1ANq1yAaljlAlTDKheguljTNB0Kn4WPwrPam4k7dTceDmovF/8VXkrRkUcNP4VX7+wIuEt3Wg9H7+wcbnOOoi9zcWWTJXCH7mrv//LOz3Hvn8DFSSNmncrHEYNDpNmngufb8zQvbytzFO0L3m8BhnwSmKnZ7X1Af+89N4fbvIWiOUPdlsAszWzvgVV3uc1b4WIZsIYqXZbADM1q58PqO9zmEjAgI9ZYZZVBntWMdi6sDg9ucykYkSFrsHKXUZ7Rs+086BIe3OY9YEjGrNHKIsOc1TPtHOgWHtzmvWBMBq3hyk3GOaOz7fPQNTy4zTVgUEat8crVALynM+1z0D08uM21YFSGbYCKG4Se3mvPw5Dw4DZ7gGEZt0Eq/wLxWr32HAwLD26zFxhXABuocgkmHhIe3GZPCKAgNliF/sPCg9vsDUEUyAa8xibhwW2OgEAKZoN6bBYe3OYoCKaANrBl0/DgNkdCQAW1wWHz8OA2R0NQBX5oeHjYN0WnaXop5e3vp9178fGt15sqvyqrGla5ANWwygWohlUuQDWscgGqYZULUA2rXIBqWOUCVMMqF6AaVrkA1bAKvoDd7hecvN10dGrBHgAAAABJRU5ErkJggg==);
	background-size: auto 15px;
	background-position: calc(100% - 5px) center;
	background-repeat: no-repeat;
}
.portal-tracker-detail .form-container input:focus,
.portal-tracker-detail .form-container select:focus,
.portal-tracker-detail .form-container textarea:focus {
  outline: none;
}
.portal-tracker-detail .form-container button {
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 1.2em;
  font-size: 14px;
  border-radius: 20px;
}
.portal-tracker-detail .form-container button.parse-url {
  margin-top: auto;
}
.portal-tracker-detail .form-container .divider {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin: 16px 0;
  background-color: #D9D9D9;
}
.portal-tracker-detail .form-container .form-options {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 16px;
}
.portal-tracker-detail .form-container .form-option {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 36px;
  padding: 0 24px;
  color: var(--md-primary);
  font-size: 14px;
  text-align: center;
  border: 1px solid var(--md-primary);
  border-radius: 18px;
  white-space: nowrap;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.portal-tracker-detail .form-container .form-option.selected {
  color: #FFF;
  background-color: var(--md-primary);
}
.career-career-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.career-career-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px !important;
  margin: 0 !important;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.career-career-tab .position-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding-left: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
}
.career-career-tab .position-item.high {
  background-color: var(--md-primary);
  border-color: var(--md-primary);
}
.career-career-tab .position-item.medium {
  background-color: #FECF4C;
  border-color: #FECF4C;
}
.career-career-tab .position-item.potential {
  background-color: #3A99FF;
  border-color: #3A99FF;
}
.career-career-tab .position-item .body {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px 28px;
  background-color: #FFF;
  border-radius: 16px;
}
.career-career-tab .position-item .position-name {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.career-career-tab .position-item .position-desc {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-career-tab .position-item .selection-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 8px;
}
.career-career-tab .position-item .selection-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 30px;
  color: var(--md-primary);
  font-size: 12px;
  text-align: center;
  border: 1px solid var(--md-primary);
  border-radius: 15px;
  cursor: pointer;
}
.career-career-tab .position-item .selection-item.selected {
  font-weight: 600;
  background-color: #DFF4E8;
  border-color: #DFF4E8;
}
.career-career-tab .position-item .detail-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.career-career-tab .position-item .detail-item .name {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: var(--md-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.career-career-tab .position-item .detail-item .name img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}
.career-career-tab .position-item .detail-item .desc {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-career-tab .position-item .role-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.career-career-tab .position-item .role-item .name {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: var(--md-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.career-career-tab .position-item .role-item .description {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-career-tab .position-item .skill-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.career-career-tab .position-item .skill-item .name {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: var(--md-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.career-career-tab .position-item .skill-item .description {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-career-tab .position-item .education-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.career-career-tab .position-item .education-item .name {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: var(--md-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.career-career-tab .position-item .education-item .name img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}
.career-career-tab .position-item .education-item .desc {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-career-tab .position-item button {
  font-size: 14px;
}
.career-career-tab .position-item button.view {
  margin-top: 16px;
}
.career-career-tab .position-item .button-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  gap: 16px;
}
.career-career-tab .position-item .status {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 18px;
  right: 22px;
  width: 150px;
  height: 30px;
  color: #FFF;
  font-size: 14px;
  background-color: var(--md-primary);
  border-radius: 15px;
}
.career-career-tab .position-item.high .status {
  background-color: var(--md-primary);
}
.career-career-tab .position-item.medium .status {
  background-color: #FECF4C;
}
.career-career-tab .position-item.potential .status {
  background-color: #3A99FF;
}
.career-skill-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.career-skill-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px !important;
  margin: 0 !important;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.career-skill-tab .overall-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 20px 24px;
  border: 1px solid var(--md-primary);
  border-radius: 16px;
}
.career-skill-tab .overall-container.medium {
  border-color: #FECF4C;
}
.career-skill-tab .overall-container.required {
  border-color: #F8928A;
}
.career-skill-tab .overall-name {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.career-skill-tab .overall-desc {
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-skill-tab .skill-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.career-skill-tab .skill-item .skill-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.career-skill-tab .skill-item .name {
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-skill-tab .skill-item .percent {
  margin-left: auto;
  color: var(--md-primary);
  font-size: 12px;
  text-align: right;
}
.career-skill-tab .skill-item.medium .percent {
  color: #FECF4C;
}
.career-skill-tab .skill-item.required .percent {
  color: #F8928A;
}
.career-skill-tab .skill-item .bar {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 8px;
  background-color: #EEE;
  border-radius: 4px;
}
.career-skill-tab .skill-item .bar .fill {
  width: auto;
  height: 100%;
  background-color: var(--md-primary);
  border-radius: 4px;
}
.career-skill-tab .skill-item.medium .bar .fill {
  background-color: #FECF4C;
}
.career-skill-tab .skill-item.required .bar .fill {
  background-color: #F8928A;
}
.career-skill-tab .dev-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 20px 24px;
  border: 1px solid var(--md-primary);
  border-radius: 16px;
}
.career-skill-tab .dev-item.required {
  border-color: #F8928A;
}
.career-skill-tab .dev-item.medium {
  border-color: #FECF4C;
}
.career-skill-tab .dev-item .dev-name {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.career-skill-tab .dev-item .dev-gap {
  margin-top: 8px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.career-skill-tab .dev-item .dev-progress {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.career-skill-tab .dev-item .progress-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.career-skill-tab .dev-item .progress-row .current {
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-skill-tab .dev-item .progress-row .required {
  margin-left: auto;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-skill-tab .dev-item .bar {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 8px;
  margin-top: 8px;
  background-color: #EEE;
  border-radius: 4px;
}
.career-skill-tab .dev-item .bar .fill {
  width: auto;
  height: 100%;
  background-color: var(--md-primary);
  border-radius: 4px;
}
.career-skill-tab .dev-item.required .bar .fill {
  background-color: #F8928A;
}
.career-skill-tab .dev-item.medium .bar .fill {
  background-color: #FECF4C;
}
.career-skill-tab .dev-item .resource-title {
  margin-top: 16px;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}
.career-skill-tab .dev-item .resource-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  gap: 8px;
}
.career-skill-tab .dev-item .resource-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: calc(50% - 4px);
  padding: 8px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  cursor: pointer;
}
.career-skill-tab .dev-item .resource-item .name {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}
.career-skill-tab .dev-item .resource-item .desc {
  margin-top: 4px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.career-skill-tab .dev-item .resource-item .tag-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
}
.career-skill-tab .dev-item .resource-item .tag-item {
  padding: 8px 16px;
  color: #333;
  font-size: 12px;
  text-align: center;
  background-color: #D9D9D9;
  border-radius: 16px;
}
.career-skill-tab .dev-item .resource-item .percent {
  margin-left: auto;
  color: var(--md-primary);
  font-size: 12px;
  text-align: right;
}
.career-skill-tab .dev-item .status {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 18px;
  right: 22px;
  width: 150px;
  height: 30px;
  color: #FFF;
  font-size: 14px;
  background-color: var(--md-primary);
  border-radius: 15px;
}
.career-skill-tab .dev-item.required .status {
  background-color: #F8928A;
}
.career-skill-tab .dev-item.medium .status {
  background-color: #FECF4C;
}
.career-skill-tab .dev-item.potential .status {
  background-color: #3A99FF;
}
.career-skill-tab .action-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 20px 24px;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
}
.career-skill-tab .action-name {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.career-skill-tab .action-desc {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-skill-tab .action-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  padding: 12px 16px;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
}
.career-skill-tab .action-item .name {
  color: #333;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}
.career-skill-tab .action-item .desc {
  margin-top: 4px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-job-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.career-job-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px !important;
  margin: 0 !important;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.career-job-tab .job-list {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 8px;
}
.career-job-tab .job-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: calc(50% - 4px);
  padding: 12px 16px;
  border: 1px solid var(--md-primary);
  border-radius: 16px;
  cursor: default;
}
.career-job-tab .job-item .name {
  margin-top: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.career-job-tab .job-item .company {
  margin-top: 4px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.career-job-tab .job-item .details {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 4px;
  color: var(--md-primary);
  font-size: 12px;
  text-align: left;
}
.career-job-tab .job-item .details img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.career-job-tab .job-item .desc {
  display: -webkit-box;        /* Use flexbox in WebKit */
  -webkit-line-clamp: 2;       /* Limit to 2 lines */
  -webkit-box-orient: vertical; /* Vertical orientation */
  overflow: hidden;             /* Hide overflowing text */
  text-overflow: ellipsis;      /* Show "..." when text is truncated */
  white-space: normal;          /* Allow wrapping */
  margin-top: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.career-job-tab .job-item button {
  width: 100%;
  margin-top: 16px;
  font-size: 14px;
  border-radius: 16px;
}
.portal-career {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.portal-career .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-career .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.portal-career .card-title.margin {
  margin-top: 24px;
  margin-bottom: 8px;
}
.portal-career .card-subtitle {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-career .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-career .form-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  margin-top: 30px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-career .form-container .title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.portal-career .form-container .form-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 24px;
}
.portal-career .form-container .form-block {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  margin-bottom: 24px;
}
.portal-career .form-container .form-subrow {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}
.portal-career .form-container .form-title {
  margin-bottom: 8px;
  color: #333;
  font-size: 12px;
  text-align: left;;
}
.portal-career .form-container input,
.portal-career .form-container select {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #EEE;
  border: 1px solid transparent;
  border-radius: 8px;
}
.portal-career .form-container textarea {
  width: 100%;
  min-height: 120px;
  font-size: 14px;
  background-color: #EEE;
  border: 1px solid transparent;
  border-radius: 8px;
  resize: vertical;
}
.portal-career .form-container select {
  color: var(--md-primary);
	background-image: url(/static/media/icon-dropdown-green.ea95418c24d5ce8fb7c3.svg);
	background-size: auto 6px;
	background-position: calc(100% - 12px) center;
	background-repeat: no-repeat;
}
.portal-career .form-container input:focus,
.portal-career .form-container select:focus,
.portal-career .form-container textarea:focus {
  outline: none;
}
.portal-career .form-container .form-options {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.portal-career .form-container .form-option {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 36px;
  padding: 0 24px;
  color: var(--md-primary);
  font-size: 14px;
  text-align: center;
  border: 1px solid var(--md-primary);
  border-radius: 18px;
  white-space: nowrap;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.portal-career .form-container .form-option.selected {
  color: #FFF;
  background-color: var(--md-primary);
}
.portal-career .form-container button {
  font-size: 14px;
}
.portal-career .upload-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 80px;
  gap: 8px;
  color: var(--md-primary);
  font-size: 12px;
  text-align: center;
  background-color: #EEE;
  border-radius: 8px;
  cursor: pointer;
}
.portal-career .upload-container img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.portal-career .note {
  color: #000;
  font-size: 12px;
}
.portal-career .feature-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  padding: 16px 16px;
  border: 1px solid #EEE;
  border-radius: 8px;
}
.portal-career .feature-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 6px;
  color: var(--md-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.portal-career .feature-title img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  object-fit: contain;
}
.portal-career .feature-desc {
  color: #333;
  font-size: 12px;
  text-align: left;
  line-height: 24px;
}
.portal-career .feature-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 640px;
  margin-top: 8px;
  gap: 8px;
}
.portal-career .feature-bubble {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  width: auto;
  padding: 16px 18px;
  border: 1px solid var(--md-primary);
  border-radius: 16px;
}
.portal-career .feature-bubble .name {
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.portal-career .feature-bubble .desc {
  margin-top: 8px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}

.portal-career .progress-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 16px 0;
  gap: 8px;
}
.portal-career .progress-title {
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-career .progress-bar {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 16px;
  background-color: #EEE;
  border-radius: 8px;
}
.portal-career .progress-bar .fill {
  display: inline-flex;
  width: auto;
  height: 100%;
  background-color: var(--md-primary);
  border-radius: 8px;
  transition: width ease-in-out .2s;
}
.portal-career .progress-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.portal-career .progress-name {
  color: var(--md-primary);
  font-size: 14px;
  text-align: left;
}
.portal-career .progress-percent {
  margin-left: auto;
  color: var(--md-primary);
  font-size: 14px;
  text-align: right;
}
.portal-career .tab-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #FFF;
}
.portal-career .tab-list .container {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  height: 100%;
}
.portal-career .tab-list .tab-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 45px;
  padding: 0 45px;
  color: var(--md-primary);
  font-size: 16px;
  text-align: center;
  border-radius: 16px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  transition: all ease-in-out .2s;
}
.portal-career .tab-list .tab-item.selected {
  font-weight: bold;
  background-color: var(--md-background);
}
.portal-career .tab-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 30px 30px;
}
.portal-career .action-row {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.portal-career .action-row .container {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 0;
}
.course-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEE;
  cursor: pointer;
}
.course-item .thumbnail {
  width: 100px;
  height: 100px;
  margin-right: 24px;
  object-fit: cover;
  border-radius: 8px;
}
.course-item.small .thumbnail {
  width: 50px;
  height: 50px;
  margin-right: 8px;
}
.course-item .detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
}
.course-item .type {
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.course-item .name {
  margin-top: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.course-item.small .name {
  margin-top: 6px;
}
.course-item .company {
  margin-top: 4px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.course-item .attr-row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 4px;
}
.course-item.small .attr-row {
  margin-top: 8px;
}
.course-item .attr-row img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.course-item .attr-row .attr {
  margin-right: 12px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.course-item .save {
  position: absolute;
  top: 16px;
  right: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.portal-academy {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100%;
}
.portal-academy .container {
  display: inline-flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 30px;
  gap: 8px;
}
.portal-academy .card {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 18px 16px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-academy .card.filter {
  width: 180px;
}
.portal-academy .card.content {
  flex: 1 1;
  width: auto;
}
.portal-academy .card.hot {
  width: 280px;
}
.portal-academy .filter-title {
  margin: 8px 0;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-academy .filter-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 6px 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}
.portal-academy .filter-item img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.portal-academy .tag-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  gap: 8px;
}
.portal-academy .tag-item {
  padding: 4px 6px;
  color: var(--md-primary);
  font-size: 11px;
  border: 1px solid var(--md-primary);
  border-radius: 12px;
}
.portal-academy .tag-reset {
  padding: 4px 6px;
  color: #FFF;
  background-color: var(--md-primary);
  font-size: 11px;
  border: 1px solid var(--md-primary);
  border-radius: 12px;
  cursor: pointer;
}
.portal-academy .course-list {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0 8px;
  gap: 16px;
}
.portal-academy .hot-title {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-academy-detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100%;
}
.portal-academy-detail .container {
  display: inline-flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 30px;
  gap: 8px;
}
.portal-academy-detail .card {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 18px 16px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-academy-detail .card.content {
  flex: 1 1;
  width: auto;
}
.portal-academy-detail .card.hot {
  width: 280px;
}
.portal-academy-detail .cover {
  width: 100%;
  height: auto;
  aspect-ratio: 4;
  object-fit: cover;
  object-position: top left;
  border-radius: 16px;
}
.portal-academy-detail .course-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: center;
  width: 100%;
  padding: 0 48px;
}
.portal-academy-detail .course-name {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  color: #333;
  font-size: 24px;
  text-align: left;
}
.portal-academy-detail .course-name span {
  margin-right: auto;
}
.portal-academy-detail .course-name .button {
  align-self: flex-end;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  cursor: pointer;
}
.portal-academy-detail .course-name .button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.portal-academy-detail .company-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}
.portal-academy-detail .company-row .thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, .25);
}
.portal-academy-detail .company-row .name {
  margin-left: 16px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-academy-detail .company-row button {

}
.portal-academy-detail .attr-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 4px;
}
.portal-academy-detail .attr-row img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.portal-academy-detail .attr-row .attr {
  margin-right: 12px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.portal-academy-detail .enroll {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  padding: .5em 1.6em;
}
.portal-academy-detail .enroll img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  object-fit: contain;
}
.portal-academy-detail .divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background-color: #EEE;
}
.portal-academy-detail .content-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.portal-academy-detail .content-column {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.portal-academy-detail .content-column:first-child {
  width: 65%;
}
.portal-academy-detail .content-column:last-child {
  width: 35%;
}
.portal-academy-detail .content-title {
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-academy-detail .content-desc {
  margin-top: 16px;
  padding-right: 16px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.portal-academy-detail .content-desc * {
  color: inherit;
  font-size: inherit;
}
.portal-academy-detail .content-desc p {
  margin-top: 0;
  margin-bottom: 8px;
}
.portal-academy-detail .content-desc ul,
.portal-academy-detail .content-desc ol {
  margin-top: 0;
  margin-bottom: 8px;
  padding-left: 1.8em;
}
.portal-academy-detail .lecture-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 8px;
  padding-left: 20px;
  border-left: 1px solid var(--md-primary);
}
.portal-academy-detail .lecture-item .title {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  color: var(--md-primary);
  font-size: 20px;
  text-align: left;
}
.portal-academy-detail .lecture-item button.yellow {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  font-size: 12px;
}
.portal-academy-detail .lecture-item button.yellow img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.portal-academy-detail .lecture-item .name {
  margin-top: 16px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-academy-detail .hot-title {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
  text-align: left;
}

.portal-academy-lecture {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100%;
}
.portal-academy-lecture .container {
  display: inline-flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 30px;
  gap: 8px;
}
.portal-academy-lecture .card {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 18px 16px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-academy-lecture .card.list {
  width: 280px;
}
.portal-academy-lecture .card.content {
  flex: 1 1;
  width: auto;
}
.portal-academy-lecture .course-name {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
.portal-academy-lecture .company-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}
.portal-academy-lecture .company-row .thumbnail {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}
.portal-academy-lecture .company-row .name {
  margin-left: 8px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-academy-lecture .progress-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
}
.portal-academy-lecture .progress-bar {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 8px;
  background-color: #EEE;
  border-radius: 4px;
}
.portal-academy-lecture .progress-bar .fill {
  width: auto;
  height: 100%;
  background-color: var(--md-primary);
  border-radius: 4px;
}
.portal-academy-lecture .progress-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 4px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.portal-academy-lecture .divider {
  width: 100%;
  height: 1px;
  margin: 8px 0;
  background-color: #DDD;
}
.portal-academy-lecture .lecture-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 8px 8px;
  color: #333;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background-color ease-in-out .2s;
}
.portal-academy-lecture .lecture-item:hover {
  background-color: #F0F0F0;
}
.portal-academy-lecture .lecture-item>img {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.portal-academy-lecture .lecture-item .icon {
  display: inline-flex;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border: 1px solid var(--md-primary);
  border-radius: 50%;
  background-color: white;
}
.portal-academy-lecture .lecture-item .icon:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid var(--md-primary);
  border-radius: 50%;
  background-color: transparent;
}
.portal-academy-lecture .lecture-item .icon>img {
  width: 8px;
  height: 8px;
  object-fit: contain;
}
.portal-academy-lecture .lecture-item .name {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.portal-academy-lecture .lecture-item .tag {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 4px;
  padding: 2px 6px;
  color: var(--md-primary);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  background-color: #e6fcf5;
  border-radius: 2px;
}
.portal-academy-lecture .lecture-item .tag img {
  width: 8px;
  height: 8px;
  margin-right: 4px;
  object-fit: contain;
}
.portal-academy-lecture .lecture-item .arrow {
  margin-left: auto;
}
.portal-academy-lecture .course-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: center;
  width: 100%;
  padding: 0 12px;
}
.portal-academy-lecture .card.content .course-name {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  color: #333;
  font-size: 24px;
  text-align: left;
}
.portal-academy-lecture .course-name span {
  margin-right: auto;
}
.portal-academy-lecture .course-name .button {
  align-self: flex-end;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  cursor: pointer;
}
.portal-academy-lecture .course-name .button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.portal-academy-lecture .company-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}
.portal-academy-lecture .company-row .thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, .25);
}
.portal-academy-lecture .company-row .name {
  margin-left: 16px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-academy-lecture .attr-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 4px;
}
.portal-academy-lecture .attr-row img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.portal-academy-lecture .attr-row .attr {
  margin-right: 12px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.portal-academy-lecture .enroll {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  padding: .5em 1.6em;
}
.portal-academy-lecture .enroll img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  object-fit: contain;
}
.portal-academy-lecture .divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background-color: #EEE;
}
.portal-academy-lecture .content-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.portal-academy-lecture .content-column {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.portal-academy-lecture .content-column:first-child {
  width: 65%;
}
.portal-academy-lecture .content-column:last-child {
  width: 35%;
}
.portal-academy-lecture .content-title {
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-academy-lecture .content-desc {
  margin-top: 16px;
  padding-right: 16px;
  color: #333;
  font-size: 12px;
  text-align: left;
}
.portal-academy-lecture .content-desc * {
  color: inherit;
  font-size: inherit;
}
.portal-academy-lecture .content-desc p {
  margin-top: 0;
  margin-bottom: 8px;
}
.portal-academy-lecture .content-desc ul,
.portal-academy-lecture .content-desc ol {
  margin-top: 0;
  margin-bottom: 8px;
  padding-left: 1.8em;
}
.portal-academy-lecture .lecture-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: center;
  width: 100%;
  padding: 0 12px;
}
.portal-academy-lecture .lecture-name {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 16px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
}
.portal-academy-lecture .lecture-content video {
  width: 100%;
  height: auto;
}
.portal-academy-lecture .lecture-content .button-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}

.eventweek {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}
.eventweek .day-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 450px;
  gap: 4px;
}
.eventweek .day-item {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 180px;
  color: #333;
  background-color: #EEE;
  border-radius: 5px;
  cursor: pointer;
}
.eventweek .day-item.today {
  color: #FFF;
  background-color: var(--md-primary);
}
.eventweek .day-item .day {
  font-size: 16px;
}
.eventweek .day-item .date {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
}
.eventweek .column {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
}
.eventweek .column .title {
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.eventweek .column .item-list {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 8px;
  padding-left: 1.8em;
}
.job-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEE;
  cursor: pointer;
}
.job-item .thumbnail {
  width: 100px;
  height: 100px;
  margin-right: 24px;
  object-fit: cover;
  border-radius: 8px;
}
.job-item.small .thumbnail {
  width: 50px;
  height: 50px;
  margin-right: 8px;
}
.job-item .detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
}
.job-item .type {
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.job-item .name {
  margin-top: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.job-item.small .name {
  margin-top: 6px;
}
.job-item .company {
  margin-top: 4px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.job-item .attr-row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 4px;
}
.job-item.small .attr-row {
  margin-top: 8px;
}
.job-item .attr-row img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.job-item .attr-row .attr {
  margin-right: 12px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.job-item .save {
  position: absolute;
  top: 16px;
  right: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.opportunities-job-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.opportunities-job-tab .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  gap: 8px;
}
.opportunities-job-tab .card-row {
  display: inline-flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  gap: 8px;
}
.opportunities-job-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 18px 16px;
  background-color: #FFF;
  border-radius: 16px;
}
.opportunities-job-tab .card-container.filter {
  width: 280px;
}
.opportunities-job-tab .card-container.content {
  flex: 1 1;
  width: auto;
}
.opportunities-job-tab .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.opportunities-job-tab .card-title.margin {
  margin-top: 24px;
  margin-bottom: 8px;
}
.opportunities-job-tab .card-subtitle {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.opportunities-job-tab .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.opportunities-job-tab .filter-title {
  margin: 8px 0;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.opportunities-job-tab .filter-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 6px 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}
.opportunities-job-tab .filter-item img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.event-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #EEE;
  cursor: pointer;
}
.event-item .thumbnail {
  width: 100px;
  height: 100px;
  margin-right: 24px;
  object-fit: cover;
  border-radius: 8px;
}
.event-item.small .thumbnail {
  width: 50px;
  height: 50px;
  margin-right: 8px;
}
.event-item .detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
}
.event-item .type {
  color: var(--md-primary);
  font-size: 16px;
  text-align: left;
}
.event-item .name {
  margin-top: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.event-item.small .name {
  margin-top: 6px;
}
.event-item .company {
  margin-top: 4px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.event-item .attr-row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 4px;
}
.event-item.small .attr-row {
  margin-top: 8px;
}
.event-item .attr-row img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.event-item .attr-row .attr {
  margin-right: 12px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.event-item .save {
  position: absolute;
  top: 16px;
  right: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.opportunities-event-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.opportunities-event-tab .container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  gap: 8px;
}
.opportunities-event-tab .card-row {
  display: inline-flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  gap: 8px;
}
.opportunities-event-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 18px 16px;
  background-color: #FFF;
  border-radius: 16px;
}
.opportunities-event-tab .card-container.filter {
  width: 280px;
}
.opportunities-event-tab .card-container.content {
  flex: 1 1;
  width: auto;
}
.opportunities-event-tab .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.opportunities-event-tab .card-title.margin {
  margin-top: 24px;
  margin-bottom: 8px;
}
.opportunities-event-tab .card-subtitle {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.opportunities-event-tab .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.opportunities-event-tab .filter-title {
  margin: 8px 0;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.opportunities-event-tab .filter-item {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 6px 8px;
  color: #333;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}
.opportunities-event-tab .filter-item img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: contain;
}
.opportunities-company-tab {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.1s ease-in forwards;
}
.opportunities-company-tab .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.opportunities-company-tab .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.opportunities-company-tab .card-title.margin {
  margin-top: 24px;
  margin-bottom: 8px;
}
.opportunities-company-tab .card-subtitle {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.opportunities-company-tab .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-opportunities {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.portal-opportunities .tab-list {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #FFF;
}
.portal-opportunities .tab-list .container {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  height: 100%;
}
.portal-opportunities .tab-list .tab-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 45px;
  padding: 0 45px;
  color: var(--md-primary);
  font-size: 16px;
  text-align: center;
  border-radius: 16px;
  cursor: pointer;
  transition: all ease-in-out .2s;
}
.portal-opportunities .tab-list .tab-item.selected {
  font-weight: bold;
  background-color: var(--md-background);
}
.portal-opportunities .tab-content {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 30px 30px;
}
.portal-opportunities-job-detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100%;
}
.portal-opportunities-job-detail .container {
  display: inline-flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 30px;
  gap: 8px;
}
.portal-opportunities-job-detail .card {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 18px 16px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-opportunities-job-detail .card.content {
  flex: 1 1;
  width: auto;
}
.portal-opportunities-job-detail .card.hot {
  width: 280px;
}

.portal-opportunities-job-detail .top-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.portal-opportunities-job-detail .top-row .thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: contain;
}
.portal-opportunities-job-detail .top-row .detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}
.portal-opportunities-job-detail .top-row .name {
  font-size: 18px;
}
.portal-opportunities-job-detail .top-row .company {
  color: #7d7d7d;
  font-size: 16px;
}
.portal-opportunities-job-detail .button-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 12px;
}
.portal-opportunities-job-detail .button-row img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  cursor: pointer;
}
.portal-opportunities-job-detail .attr-row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 4px;
}
.portal-opportunities-job-detail .attr-row img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.portal-opportunities-job-detail .attr-row .attr {
  margin-right: 12px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.portal-opportunities-job-detail .divider {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin: 15px 0;
  background-color: #DDD;
}
.portal-opportunities-job-detail .content p {
  margin-top: 0;
  color: #2e2e2e;
  font-size: 14px;
}
.portal-opportunities-job-detail .content strong {
  color: #000;
}
.portal-opportunities-job-detail .content li {
  color: #2e2e2e;
  font-size: 14px;
}
.portal-opportunities-event-detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100%;
}
.portal-opportunities-event-detail .container {
  display: inline-flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 30px;
  gap: 8px;
}
.portal-opportunities-event-detail .card {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 18px 16px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-opportunities-event-detail .card.content {
  flex: 1 1;
  width: auto;
}
.portal-opportunities-event-detail .card.hot {
  width: 280px;
}

.portal-opportunities-event-detail .top-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.portal-opportunities-event-detail .top-row .thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: contain;
}
.portal-opportunities-event-detail .top-row .detail {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}
.portal-opportunities-event-detail .top-row .name {
  font-size: 18px;
}
.portal-opportunities-event-detail .top-row .company {
  color: #7d7d7d;
  font-size: 16px;
}
.portal-opportunities-event-detail .button-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 12px;
}
.portal-opportunities-event-detail .button-row img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  cursor: pointer;
}
.portal-opportunities-event-detail .attr-row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  gap: 4px;
}
.portal-opportunities-event-detail .attr-row img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.portal-opportunities-event-detail .attr-row .attr {
  margin-right: 12px;
  color: #707070;
  font-size: 12px;
  text-align: left;
}
.portal-opportunities-event-detail .divider {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin: 15px 0;
  background-color: #DDD;
}
.portal-opportunities-event-detail .content p {
  margin-top: 0;
  color: #2e2e2e;
  font-size: 14px;
}
.portal-opportunities-event-detail .content strong {
  color: #000;
}
.portal-opportunities-event-detail .content li {
  color: #2e2e2e;
  font-size: 14px;
}
.portal-settings {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
}
.portal-settings .card-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  margin-top: 30px;
  padding: 24px 40px;
  background-color: #FFF;
  border-radius: 16px;
}
.portal-settings .card-title {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.portal-settings .card-title.margin {
  margin-top: 24px;
  margin-bottom: 8px;
}
.portal-settings .card-subtitle {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
  text-align: left;
}
.portal-settings .card-desc {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.portal-settings .form-row {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 24px;
}
.portal-settings .form-block {
  display: inline-flex;
  flex: 1 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  max-width: calc(50% - 12px);
}
.portal-settings .form-title {
  margin-bottom: 8px;
  color: #000;
  font-size: 12px;
  text-align: left;;
}
.portal-settings input,
.portal-settings select {
  width: 100%;
  height: 40px;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #EEE;
  border: 1px solid #DDD;
  border-radius: 8px;
}
.portal-settings select {
  background-image: url(/static/media/icon-dropdown-green.ea95418c24d5ce8fb7c3.svg);
  background-size: auto 6px;
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
}
.portal-settings textarea {
  width: 100%;
  min-height: 120px;
  padding: 8px 12px;
  background-color: #EEE;
  border: 1px solid #DDD;
  border-radius: 8px;
  resize: vertical;
}
.portal-settings button {
  font-size: 14px;
}
.portal-settings .divider {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background-color: #DDD;
}

/*# sourceMappingURL=main.03419983.css.map*/