:root {
  --unit:0.625rem;
  --a-speed: 300ms;
  --c-light: #FFF;
  --c-gray1: #EEE;
  --c-gray2: #CCC;
  --c-gray3: #999;
  --c-gray4: #666;
  --c-gray5: #555;
  --c-gray6: #222;
  --c-dark: #111;
  --c-overlay-light: rgb(0 0 0 / 0.3);
  --c-overlay-dark: rgb(0 0 0 / 0.8);
  --c-glass-light: rgba(255, 255, 255, 0.7);
  --c-glass-dark: rgba(17, 17, 17, 0.7);
  --c-nav-light: rgb(255 255 255 / 0.5);
  --c-nav-dark: rgb(0 0 0 / 0.5);
  --c-success: #1b0;
  --c-error: #f20;
  --c-pulse-light: 255, 255, 255;
  --c-pulse-dark: 0, 0, 0;
  --c-shadow-dark: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.5));
  --c-shadow-light: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  --c-yellow: #FC0;
  --c-orange: #F80;
  --c-brown: #A63;
  --c-red: #F20;
  --c-pink: #F58;
  --c-magenta: #B1C;
  --c-violet: #80F;
  --c-blue: #08F;
  --c-cyan: #0BA;
  --c-green: #0A0;
  --c-lemon: #AC4;
  --c-mono: var(--foreground);
  --f-base: Inter, var(--f-sans);
  --f-headings: Cormorant, var(--f-serif);
  --f-body: Inter, var(--f-sans);
  --f-sans: -apple-system,system-ui, BlinkMacSystemFont,"Helvetica","Arial",sans-serif;
  --f-serif: Georgia,"Times New Roman",Times, serif;
  --f-mono: "Lucida Console",Monaco,monospace;
  --l-title: 1.2;
  --l-body: 1.6;
  --t-xs: 10px;
  --t-s: 12px;
  --t-m: 14px;
  --t-xm: 16px;
  --t-l: 24px;
  --t-xl: 32px;
  --t-base: 1rem;
  --t-scale: 1.25;
  --t-0: calc(var(--t-base) / var(--t-scale));
  --t-1: var(--t-base);
  --t-2: calc(var(--t-1) * var(--t-scale));
  --t-3: calc(var(--t-2) * var(--t-scale));
  --t-4: calc(var(--t-3) * var(--t-scale));
  --t-5: calc(var(--t-4) * var(--t-scale));
  --t-6: calc(var(--t-5) * var(--t-scale));
  --t-7: calc(var(--t-6) * var(--t-scale));
  --t-8: calc(var(--t-7) * var(--t-scale));
  --r-none: 0rem;
  --r-small: calc(var(--unit) / 2);
  --r-full: 1000rem;
  --s-1: var(--unit);
  --s-2: calc(var(--unit) * 2);
  --s-3: calc(var(--unit) * 3);
  --s-4: calc(var(--unit) * 4);
}

:root {
  --background: var(--c-light);
  --foreground: var(--c-dark);
  --c-mix-1: var(--c-gray1);
  --c-mix-2: var(--c-gray3);
  --c-mix-3: var(--c-gray4);
  --c-mix-4: var(--c-overlay-light);
  --c-mix-5: var(--c-nav-dark);
  --c-mix-6: var(--c-glass-light);
  --c-mix-7: var(--c-pulse-dark);
  --c-mix-8: var(--c-shadow-light);
  --c-mix-9: var(--c-gray5);
  --c-mix-10: var(--c-gray2);
  --c-mix-11: var(--c-overlay-dark);
}

[data-theme="dark"] {
  --background: var(--c-dark);
  --foreground: var(--c-light);
  --c-mix-1: var(--c-gray6);
  --c-mix-2: var(--c-gray5);
  --c-mix-3: var(--c-gray3);
  --c-mix-4: var(--c-overlay-dark);
  --c-mix-5: var(--c-nav-light);
  --c-mix-6: var(--c-glass-dark);
  --c-mix-7: var(--c-pulse-light);
  --c-mix-8: var(--c-shadow-dark);
  --c-mix-9: var(--c-gray3);
  --c-mix-10: var(--c-gray5);
  --c-mix-11: var(--c-overlay-dark);
}

@media screen and (max-width: 600px) {
  :root {
    --t-base: 0.875rem;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

::selection {
  background: var(--c-mix-10);
  color: var(--foreground);
}

html {
  transition: all var(--a-speed);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-base);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

h1 {
  font-family: var(--f-base);
  font-size: var(--t-l);
  color: var(--foreground);
  line-height: var(--l-title);
  margin-bottom: var(--s-2);
  font-weight: 700;
}

h2 {
  font-family: var(--f-base);
  font-size: var(--t-xm);
  color: var(--foreground);
  line-height: var(--l-title);
  font-weight: normal;
}

h3 {
  font-family: var(--f-base);
  font-size: var(--t-xm);
  color: var(--forground);
  line-height: var(--l-title);
  font-weight: normal;
}

p {
  font-family: var(--f-base);
  line-height: var(--l-body);
  color: var(--foreground);
}

.small-text {
  font-size: var(--t-s);
  font-weight: 400;
  color: var(--c-mix-2);
}

a {
  text-decoration: none;
  color: var(--foreground);
  cursor: pointer;
}

a:focus {
  text-decoration: none;
  background: unset;
}

svg {
  stroke-width: 1.5;
}

.input-icon svg {
  width: 16px;
  height: 16px;
}

.container {
  display: flex;
  flex-direction: column;
  padding: calc(var(--unit) * 2);
  position: relative;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: var(--foreground);
  box-shadow: 0 0 0px 1000px var(--c-mix-1) inset;
  transition: background-color 5s ease-in-out 0s;
}

.mt-1 {
  margin-top: var(--s-1);
}

.mt-2 {
  margin-top: var(--s-2);
}

.mt-3 {
  margin-top: var(--s-3);
}

.mt-4 {
  margin-top: var(--s-4);
}

.mt-5 {
  margin-top: calc(var(--s-4) + var(--unit));
}

.mt-6 {
  margin-top: calc(var(--s-4) + (var(--unit) * 2));
}

.mt-7 {
  margin-top: calc(var(--s-4) + (var(--unit) * 3));
}

.mt-8 {
  margin-top: calc(var(--s-4) + (var(--unit) * 4));
}

.mb-1 {
  margin-bottom: var(--s-1);
}

.mb-2 {
  margin-bottom: var(--s-2);
}

.mb-3 {
  margin-bottom: var(--s-3);
}

.mb-4 {
  margin-bottom: var(--s-4);
}

.mb-5 {
  margin-bottom: calc(var(--s-4) + var(--unit));
}

.mb-6 {
  margin-bottom: calc(var(--s-4) + (var(--unit) * 2));
}

.mb-7 {
  margin-bottom: calc(var(--s-4) + (var(--unit) * 3));
}

.mb-8 {
  margin-bottom: calc(var(--s-4) + (var(--unit) * 4));
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: var(--t-xl);
  }
  .small-text {
    font-size: var(--t-s);
  }
}

@media screen and (max-width: 767px) {
  .body-text {
    font-size: var(--t-m);
  }
}

.t-0 {
  font-size: var(--t-0);
}

.t-1 {
  font-size: var(--t-1);
}

.t-2 {
  font-size: var(--t-2);
}

.t-3 {
  font-size: var(--t-3);
}

.t-4 {
  font-size: var(--t-4);
}

.t-5 {
  font-size: var(--t-5);
}

.t-6 {
  font-size: var(--t-6);
}

.t-7 {
  font-size: var(--t-7);
}

.t-8 {
  font-size: var(--t-8);
}

.text-center {
  text-align: center;
}

.w-boxed {
  width: 1024px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--s-2) 0;
}

.w-full {
  width: 100%;
  padding: var(--s-2);
}

.r-none {
  border-radius: var(--r-none);
}

.r-small {
  border-radius: var(--r-small);
}

.r-full {
  border-radius: var(--r-full);
}

.btn {
  position: relative;
  font-family: var(--f-base);
  font-size: var(--t-m);
  background: var(--foreground);
  color: var(--background);
  display: block;
  border: none;
  border-radius: var(--r-small);
  height: calc( var(--unit) * 5);
  padding: var(--unit);
  text-align: center;
  line-height: var(--l-title);
  transition: var(--a-speed);
  -webkit-appearance: button;
  opacity: 1;
}

.btn:focus {
  border: 2px solid var(--c-mix-1);
  box-shadow: none;
  outline: none;
}

.btn:hover {
  cursor: pointer;
  opacity: .7;
}

a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
}

.btn-large {
  width: 100%;
}

.btn-medium {
  width: 48%;
}

.btn-small {
  width: 25%;
}

.btn-outline {
  border: 1px solid var(--foreground);
  background: var(--background);
  color: var(--foreground);
}

.btn-outline:hover {
  cursor: pointer;
  border: 1px solid var(--foreground);
  background: var(--foreground);
  color: var(--background);
}

.input-box {
  position: relative;
  margin-bottom: var(--s-1);
}

.input-large {
  width: 100%;
  height: calc(var(--unit) * 5);
  display: block;
  font-family: var(--f-base);
  font-size: var(--t-xm);
  padding: 14px;
  background: unset;
  color: var(--foreground);
  border: 1px solid;
  border-color: var(--c-mix-1);
  border-radius: var(--r-small);
  line-height: var(--l-body);
  position: relative;
  box-shadow: none;
  -webkit-appearance: none;
}

.input-large:focus {
  box-shadow: none;
  outline: none;
  background: var(--c-mix-1);
  border-color: var(--c-mix-1);
}

.input-large::placeholder {
  font-family: var(--f-base);
  color: var(--c-mix-2);
}

.input-large[type="password"]::placeholder {
  font-family: var(--f-base);
  color: var(--c-mix-2);
}

.top-border {
  border-top-left-radius: var(--r-small);
  border-top-right-radius: var(--r-small);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.bottom-border {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: var(--r-small);
  border-bottom-right-radius: var(--r-small);
}

.no-border {
  border-radius: 0;
}

.input-small {
  width: 100%;
  height: calc(var(--unit) * 4);
  display: block;
  font-family: var(--f-base);
  font-size: var(--t-m) !important;
  padding: var(--unit);
  background: unset;
  color: var(--foreground);
  border: 1px solid;
  border-color: var(--c-mix-1);
  border-radius: var(--r-small);
  line-height: var(--l-body);
  position: relative;
  box-shadow: none;
  -webkit-appearance: none;
}

.input-small:focus {
  box-shadow: none;
  outline: none;
  background: var(--c-mix-1);
  border-color: var(--c-mix-1);
}

.input-small::placeholder {
  font-family: var(--f-base);
  color: var(--c-mix-2);
  font-size: var(--t-m);
}

.input-small[type="password"]::placeholder {
  font-family: var(--f-base);
  color: var(--c-mix-2);
}

select {
  width: 100%;
  display: block;
  padding: var(--unit);
  width: 100%;
  height: calc(var(--unit) * 5);
  display: block;
  font-family: var(--f-base);
  font-size: var(--t-m);
  padding: calc(var(--unit) / 2);
  background: unset;
  color: var(--foreground);
  border: 1px solid;
  border-color: var(--c-mix-1);
  border-radius: var(--r-small);
  line-height: var(--l-body);
  position: relative;
  box-shadow: none;
}

.container {
  padding: 0;
}

.container > .vzy-mobile-nav {
  display: flex;
  justify-content: space-between;
}

.container > .vzy-mobile-nav > a {
  width: calc(var(--unit) * 6);
  height: calc(var(--unit) * 6);
  transition: var(--a-speed);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--a-speed);
}

.container > .vzy-mobile-nav > a:hover {
  background: var(--c-mix-1);
}

.container > .vzy-mobile-nav > a:hover > svg {
  opacity: 70%;
}

.container > .vzy-mobile-nav > a > svg {
  transition: var(--a-speed);
  width: calc(var(--unit) * 1.6);
  height: calc(var(--unit) * 1.6);
  stroke-width: 2;
}

@media screen and (min-width: 768px) {
  .container > .vzy-mobile-nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .container > .vzy-topbar {
    display: none;
  }
}

.container > .vzy-topbar > header {
  height: 60px;
  border-bottom: 1px solid var(--c-mix-1);
  display: flex;
  justify-content: space-between;
}

.container > .vzy-topbar > header > .logo {
  width: 10%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: var(--s-2);
}

.container > .vzy-topbar > header > .logo > a {
  height: 100%;
  display: flex;
  align-items: center;
}

.container > .vzy-topbar > header > .logo > a:hover > svg {
  opacity: .7;
}

.container > .vzy-topbar > header > .logo > a > svg {
  height: 16px;
  transition: var(--a-speed);
}

.container > .vzy-topbar > header > nav {
  width: 80%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container > .vzy-topbar > header > nav > ul {
  display: flex;
  list-style-type: none;
  height: 100%;
}

.container > .vzy-topbar > header > nav > ul > li {
  height: 100%;
  display: flex;
  margin-right: calc(var(--unit) * 6);
}

.container > .vzy-topbar > header > nav > ul > li:last-child {
  margin-right: 0;
}

.container > .vzy-topbar > header > nav > ul > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: var(--t-m) !important;
  text-transform: capitalize;
  font-weight: 400;
  color: var(--c-mix-5);
  transition: var(--a-speed);
}

.container > .vzy-topbar > header > nav > ul > li > a > span {
  margin-right: var(--s-1);
}

.container > .vzy-topbar > header > nav > ul > li > a > span > svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
  display: flex;
}

.container > .vzy-topbar > header > nav > ul > li > a > span > svg > path {
  transition: var(--a-speed);
}

.container > .vzy-topbar > header > nav > ul > li > a:hover {
  color: var(--foreground);
}

.container > .vzy-topbar > header > nav > ul > li > a:hover > span > svg > path {
  stroke: var(--foreground);
}

.container > .vzy-topbar > header > nav > ul > li > a.active {
  color: var(--foreground);
  border-bottom: 1px solid var(--foreground);
}

.container > .vzy-topbar > header > nav > ul > li > a.active > span > svg > path {
  stroke: var(--foreground);
}

.container > .vzy-topbar > header > .profile {
  width: 10%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder {
  width: calc(var(--unit) * 7);
  height: calc(var(--unit) * 6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder:hover > .profile-modal {
  display: flex;
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-picture {
  width: 30px;
  height: 30px;
  border: 1px solid var(--c-mix-1);
  border-radius: var(--r-full);
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-picture > img {
  width: 100%;
  height: 100%;
  border-radius: var(--r-full);
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal {
  display: none;
  flex-direction: column;
  width: 180px;
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 5;
  border-radius: var(--r-small);
  filter: var(--c-mix-8);
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul {
  background: var(--background);
  border-radius: var(--r-small);
  list-style-type: none;
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul > li {
  padding-left: calc(var(--unit) * 1.4);
  padding-right: calc(var(--unit) * 1.4);
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul > li:first-child {
  border-top-left-radius: var(--r-small);
  border-top-right-radius: var(--r-small);
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul > li:last-child {
  border-bottom-left-radius: var(--r-small);
  border-bottom-right-radius: var(--r-small);
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul > li:hover {
  background: var(--c-mix-1);
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul > li > a {
  font-size: var(--t-m) !important;
  line-height: var(--l-body);
  padding: calc(var(--unit) * 1.4) 0px calc(var(--unit) * 1.4) 0px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul > li > a.light-mode {
  display: none;
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul > li > a > span {
  display: flex;
}

.container > .vzy-topbar > header > .profile > .profile-picture-holder > .profile-modal > .modal-card > ul > li > a > span > svg {
  width: calc(var(--unit) * 1.6);
  height: calc(var(--unit) * 1.6);
}

@media screen and (min-width: 1101px) {
  .container-small {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1100px) {
  .container-small {
    width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .container-small {
    width: 100%;
    padding: 0 var(--s-2);
  }
}

.container-small > h1 {
  text-align: left;
}

.container-small > p {
  color: var(--c-mix-3);
}

.container-small > p > a {
  position: relative;
}

.container-small > p > a:hover:after {
  background: var(--foreground);
}

.container-small > p > a:after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--c-mix-1);
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: var(--a-speed);
}

@media screen and (min-width: 1101px) {
  .container-small.welcome-block {
    margin-top: 60px;
  }
}

@media screen and (max-width: 1100px) {
  .container-small.welcome-block {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .container-small.welcome-block {
    margin-top: 40px;
  }
}

.container-small.template-grid {
  padding-bottom: var(--s-2);
}

.container-small > .template {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media screen and (max-width: 1100px) {
  .container-small > .template {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .container-small > .template {
    grid-template-columns: 100%;
  }
}

.container-small > .template > .template-container {
  height: 380px;
  border: 1px solid var(--c-mix-1);
  border-radius: var(--r-small);
}

@media screen and (min-width: 1101px) {
  .container-small > .template > .template-container:hover {
    background: var(--c-mix-1);
  }
  .container-small > .template > .template-container:hover > .filter-item > .template-image > .template-options {
    display: flex;
  }
}

.container-small > .template > .template-container:hover {
  background: var(--c-mix-1);
}

.container-small > .template > .template-container:hover > .filter-item > .template-footer > .template-select > .checkmark {
  border: 1px solid var(--foreground);
}

.container-small > .template > .template-container > .filter-item {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  font-size: var(--t-m);
  color: var(--foreground);
  user-select: none;
}

.container-small > .template > .template-container > .filter-item > .template-image {
  height: calc(100% - 100px);
  background: var(--c-mix-1);
  margin: 20px;
  border-radius: var(--r-small);
  position: relative;
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-content > svg {
  width: 32px;
  height: 32px;
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-options {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  align-items: center;
  justify-content: center;
  background: var(--c-mix-4);
  border-radius: var(--r-small);
  display: none;
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-options > ul {
  width: calc(var(--unit) * 18);
  list-style: none;
  background: var(--background);
  border-radius: var(--r-small);
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-options > ul > li {
  width: 100%;
  height: calc(var(--unit) * 5);
  padding: calc(var(--unit) * 1.4);
  transition: var(--a-speed);
  line-height: var(--l-body);
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-options > ul > li:first-child {
  border-top-left-radius: var(--r-small);
  border-top-right-radius: var(--r-small);
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-options > ul > li:last-child {
  border-bottom-left-radius: var(--r-small);
  border-bottom-right-radius: var(--r-small);
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-options > ul > li:hover {
  background: var(--c-mix-1);
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-options > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-small > .template > .template-container > .filter-item > .template-image > .template-options > ul > li > a > svg {
  width: 16px;
  height: 16px;
}

.container-small > .template > .template-container > .filter-item > .template-footer {
  display: flex;
  margin: 0 var(--s-1) var(--s-2) var(--s-2);
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-details {
  flex: 0 0 calc(100% - 40px);
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-details > p.template-name {
  font-size: var(--t-m);
  text-transform: capitalize;
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-details > p.template-category {
  font-size: var(--t-xs);
  color: var(--c-mix-3);
  text-transform: capitalize;
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-select {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (min-width: 1100px) {
  .container-small > .template > .template-container > .filter-item > .template-footer > .template-select {
    display: none;
  }
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-select > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-select > input:checked ~ .checkmark {
  background-color: var(--foreground);
  border: 1px solid var(--foreground);
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-select > input:checked ~ .checkmark > svg {
  display: block;
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-select > .checkmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 24px;
  width: 24px;
  border: 1px solid var(--c-mix-1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--a-speed);
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-select > .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container-small > .template > .template-container > .filter-item > .template-footer > .template-select > .checkmark > svg {
  display: none;
  width: calc(var(--unit) * 1.2);
  height: calc(var(--unit) * 1.2);
  stroke-width: 3;
}

.help {
  position: fixed;
  bottom: var(--s-2);
  right: var(--s-2);
  width: calc(var(--unit) * 4);
  height: calc(var(--unit) * 4);
}

@media screen and (max-width: 767px) {
  .help {
    display: none;
  }
}

.help:hover {
  cursor: pointer;
}

.help:hover > a > span {
  filter: var(--c-mix-8);
  background: var(--background);
}

.help:hover > a > span > svg > path {
  stroke: var(--foreground);
}

.help > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help > a > span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border-radius: var(--r-full);
  transition: var(--a-speed);
  filter: var(--c-mix-8);
}

.help > a > span > svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.help > a > span > svg > path {
  transition: var(--a-speed);
}
