: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 {
  height: calc(100% - 30px);
  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;
}

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

.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);
}

.container > .site-description {
  display: flex;
  justify-content: space-between;
}

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

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

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

@media screen and (min-width: 1101px) {
  .container > .site-description {
    margin-top: 60px;
  }
}

@media screen and (max-width: 1100px) {
  .container > .site-description {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .container > .site-description {
    margin-top: 40px;
  }
}

.container > .site-description > .welcome-text {
  position: relative;
}

.container > .site-description > .welcome-text > a {
  font-size: var(--t-m) !important;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.container > .site-description > .welcome-text > a > span {
  display: flex;
  margin-left: calc(var(--unit) * 1.4);
}

.container > .site-description > .welcome-text > a > span > svg {
  width: 16px;
  height: 16px;
}

.container > .site-description > .welcome-text > .site-names-overlay {
  width: calc(var(--unit) * 26);
  display: none;
  position: absolute;
  top: 90px;
  background: var(--background);
  filter: var(--c-mix-8);
  z-index: 5;
}

.container > .site-description > .welcome-text > .site-names-overlay.show {
  display: flex;
}

.container > .site-description > .welcome-text > .site-names-overlay > ul {
  list-style-type: none;
  width: 100%;
}

.container > .site-description > .welcome-text > .site-names-overlay > ul > li {
  display: flex;
  font-size: var(--t-m);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--unit) * 1.4) var(--s-2);
  cursor: pointer;
  transition: var(--a-speed);
  color: var(--foreground);
}

.container > .site-description > .welcome-text > .site-names-overlay > ul > li:last-child > span {
  display: flex;
}

.container > .site-description > .welcome-text > .site-names-overlay > ul > li:hover {
  background: var(--c-mix-1);
  color: var(--foreground);
}

.container > .site-description > .welcome-text > .site-names-overlay > ul > li:hover > span {
  display: flex;
}

.container > .site-description > .welcome-text > .site-names-overlay > ul > li > span {
  display: none;
}

.container > .site-description > .welcome-text > .site-names-overlay > ul > li > span > svg {
  width: 16px;
  height: 16px;
}

.container-small {
  background: var(--background);
}

@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.sticky {
  position: sticky;
  top: 0px;
  z-index: 2;
  background: var(--background);
}

.container-small .tab-link {
  background: unset;
}

.container-small .tab-link > .tabs {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  box-shadow: inset 0 -1px 0 var(--c-mix-1);
  background: var(--background);
}

.container-small .tab-link > .tabs > .tab {
  width: 100%;
  color: var(--c-mix-2);
  font-size: var(--t-m);
  line-height: var(--l-body);
  height: calc(var(--unit) * 5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--a-speed);
}

@media screen and (min-width: 768px) {
  .container-small .tab-link > .tabs > .tab {
    width: auto;
    margin-right: var(--s-4);
  }
  .container-small .tab-link > .tabs > .tab:last-child {
    margin-right: 0;
  }
}

.container-small .tab-link > .tabs > .tab:hover {
  color: var(--foreground);
}

.container-small .tab-link > .tabs > .tab.active {
  color: var(--foreground);
  box-shadow: inset 0 -1px 0 var(--foreground);
}

.tab-content-box {
  position: relative;
  margin: 0;
  margin-bottom: calc(var(--unit) * 9);
  padding: 0 var(--s-2);
  padding: 0;
}

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

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

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

.tab-content-box > .tab-content > [data-tab-content] {
  display: none;
}

.tab-content-box > .tab-content > .active[data-tab-content] {
  animation: fadeIn 500ms linear 1;
  display: block;
}

@media screen and (max-width: 767px) {
  .tab-content-box {
    padding: 0 var(--s-2);
  }
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form {
  display: flex;
  justify-content: space-between;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box.search-box {
  width: 100%;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > .input-large {
  width: 100%;
  padding-left: calc(var(--unit) * 3.5);
  font-size: var(--t-m);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  position: relative;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > .input-large:focus {
  box-shadow: none;
  outline: none;
  background: var(--c-mix-1);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > .input-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > .zoom-icon {
  left: 0;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > .close-icon {
  right: 0;
  display: none;
  cursor: pointer;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > .close-icon > svg {
  width: 12px;
  height: 12px;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button {
  position: absolute;
  right: 0;
  width: 10%;
  height: calc(var(--unit) * 5);
  background: unset;
  color: var(--foreground);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button > span {
  margin-left: var(--unit);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button > span > svg {
  width: 16px;
  height: 16px;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button > span.filter-icon {
  display: none;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button > span.filter-icon.show {
  display: flex;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button > span.close-filter-icon {
  display: none;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button > span.close-filter-icon.show {
  display: flex;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button > span.close-filter-icon > svg {
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 767px) {
  .tab-content-box > .tab-content > [data-tab-content] > .contacts > form > .input-box > button {
    width: 30%;
  }
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list {
  display: none;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list.show {
  display: block;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul {
  list-style: none;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li {
  display: flex;
  height: 50px;
  width: 100%;
  line-height: var(--l-body);
  align-items: center;
  border-top: 1px solid var(--c-mix-1);
  border-left: 1px solid var(--c-mix-1);
  border-right: 1px solid var(--c-mix-1);
  border-bottom: none;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li:first-child {
  border-top-left-radius: var(--r-small);
  border-top-right-radius: var(--r-small);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li:last-child {
  border-bottom-left-radius: var(--r-small);
  border-bottom-right-radius: var(--r-small);
  border-bottom: 1px solid var(--c-mix-1);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li:hover {
  background: var(--c-mix-1);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li:hover > .filter-item > .checkmark {
  border: 1px solid var(--foreground);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li > .filter-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: calc(var(--unit) * 1.4);
  position: relative;
  cursor: pointer;
  font-size: var(--t-m);
  color: var(--foreground);
  user-select: none;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li > .filter-item > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li > .filter-item > input:checked ~ .checkmark {
  background-color: var(--foreground);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li > .filter-item > input:checked ~ .checkmark > svg {
  display: block;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li > .filter-item > .checkmark {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translate(0%, -50%);
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 1px solid var(--c-mix-1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--a-speed);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li > .filter-item > .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .filter-list > ul > li > .filter-item > .checkmark svg {
  display: none;
  width: calc(var(--unit) * 1.2);
  height: calc(var(--unit) * 1.2);
  stroke-width: 3;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-left: 1px solid var(--c-mix-1);
  border-right: 1px solid var(--c-mix-1);
  border-top: 1px solid var(--c-mix-1);
  border-bottom: 0;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card:first-child {
  border-top-left-radius: var(--r-small);
  border-top-right-radius: var(--r-small);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card:last-child {
  border-bottom-left-radius: var(--r-small);
  border-bottom-right-radius: var(--r-small);
  border-bottom: 1px solid var(--c-mix-1);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card:hover {
  background: var(--c-mix-1);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card:hover > .card-option > div > span {
  background: var(--foreground);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card:hover > .card-option > div > span > svg > path {
  stroke: var(--background);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > a {
  padding: var(--s-2);
  width: 100%;
  display: block;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > a:focus {
  background: var(--c-mix-1) !important;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > a > .card-body {
  width: calc(100% - 80px);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > a > .card-body > h2 {
  margin-bottom: 5px;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > a > .card-body > p {
  font-size: var(--t-xs) !important;
  line-height: var(--l-body);
  color: var(--c-mix-3);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .card-option {
  cursor: pointer;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: flex-end;
  padding-right: var(--s-1);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .card-option > .home {
  margin-right: 12px;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .card-option > .home > svg {
  width: 16px;
  height: 16px;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .card-option > div {
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .card-option > div > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-mix-1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .card-option > div > span > svg {
  width: 12px;
  height: 12px;
  stroke-width: 2;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal {
  display: flex;
  flex-direction: column;
  width: 180px;
  position: absolute;
  top: 60px;
  right: -1px;
  z-index: 5;
  border-radius: var(--r-small);
  opacity: 0;
  pointer-events: none;
  filter: var(--c-mix-8);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal.show {
  opacity: 1;
  pointer-events: visible;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal > .modal-card > ul {
  background: var(--background);
  border-radius: var(--r-small);
  list-style-type: none;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal > .modal-card > ul > li {
  padding-left: var(--s-2);
  padding-right: var(--s-2);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal > .modal-card > ul > li:first-child {
  border-top-left-radius: var(--r-small);
  border-top-right-radius: var(--r-small);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal > .modal-card > ul > li:last-child {
  border-bottom-left-radius: var(--r-small);
  border-bottom-right-radius: var(--r-small);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal > .modal-card > ul > li:hover {
  background: var(--c-mix-1);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-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;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal > .modal-card > ul > li > a > span {
  display: flex;
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal > .modal-card > ul > li > a > span > svg {
  width: calc(var(--unit) * 1.6);
  height: calc(var(--unit) * 1.6);
}

.tab-content-box > .tab-content > [data-tab-content] > .contacts > .contact-list > .card > .contact-modal > .modal-card > ul > li > a.delete-contact {
  color: var(--c-error);
}

.tab-content-box > .tab-content > [data-tab-content] .newsletter {
  margin-top: calc(var(--unit) * 6);
}

.tab-content-box > .tab-content > [data-tab-content] .newsletter-blank {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
}

.tab-content-box > .tab-content > [data-tab-content] .newsletter-blank svg {
  width: 80px;
  height: 80px;
  stroke-width: 0.3;
}

.tab-content-box > .tab-content > [data-tab-content] .newsletter-blank p {
  color: var(--c-mix-3);
  text-align: center;
}

.nav-bottom {
  width: 100%;
  margin: 0 auto;
  background: var(--c-mix-6);
  backdrop-filter: saturate(100%) blur(5px);
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: var(--s-2);
  padding-bottom: var(--s-2);
  z-index: 10;
}

.nav-bottom > ul {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  list-style-type: none;
}

.nav-bottom > ul > li {
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-bottom > ul > li > span {
  margin-bottom: 3px;
  justify-content: center;
  align-self: center;
  align-items: center;
}

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

.nav-bottom > ul > li > a > span {
  margin-bottom: 2px;
}

.nav-bottom > ul > li > a > span > svg {
  stroke-width: 1;
}

.nav-bottom > ul > li > a > span > svg > path {
  transition: var(--a-speed);
}

.nav-bottom > ul > li > a:hover {
  color: var(--foreground);
}

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

.nav-bottom > ul > li > a.active {
  color: var(--foreground);
}

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

.nav-bottom > ul > li:nth-child(1) {
  flex-basis: 25%;
}

.nav-bottom > ul > li:nth-child(1) > a {
  justify-content: flex-start;
}

.nav-bottom > ul > li:nth-child(2) {
  flex-basis: 50%;
}

.nav-bottom > ul > li:nth-child(2) > a {
  justify-content: center;
}

.nav-bottom > ul > li:nth-child(3) {
  flex-basis: 25%;
}

.nav-bottom > ul > li:nth-child(3) > a {
  justify-content: flex-end;
}

@media screen and (min-width: 768px) {
  .nav-bottom > ul > li {
    flex-direction: column;
  }
  .nav-bottom > ul > li > a {
    flex-direction: row;
    font-size: var(--t-s) !important;
  }
  .nav-bottom > ul > li > a > span {
    margin-right: 5px;
  }
}

@media screen and (min-width: 768px) {
  .nav-bottom {
    width: calc(var(--unit) * 60);
    left: 50%;
    transform: translate(-50%);
    padding-left: var(--s-2);
    padding-right: var(--s-2);
  }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .nav-bottom {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .nav-bottom {
    display: none;
  }
}

.contact-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: var(--c-mix-4);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--s-2);
  z-index: 5;
}

.contact-overlay > .overlay-card {
  position: absolute;
  width: calc(100% - var(--s-4));
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--unit) * 2);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .contact-overlay {
    width: 100% !important;
    margin: 0 auto;
  }
  .contact-overlay > .overlay-card {
    width: calc(var(--unit) * 40);
    top: 50%;
    left: 50%;
    bottom: auto;
    z-index: 2;
    transform: translate(-50%, -50%);
  }
}

.contact-overlay > .contact-card {
  display: none;
  position: absolute;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .contact-overlay > .contact-card {
    width: calc(var(--unit) * 40);
    top: 50%;
    left: 50%;
    bottom: auto;
    z-index: 2;
    transform: translate(-50%, -50%);
  }
}

.contact-overlay > .contact-card > .overlay-card-body {
  background-color: var(--background);
  border-radius: var(--r-small);
  padding: var(--s-2);
}

.contact-overlay > .contact-card > .overlay-card-body > h2 {
  text-align: center;
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--c-mix-1);
  margin-bottom: var(--s-2);
}

.contact-overlay > .contact-card > .overlay-card-body > form > .input-box {
  display: flex;
  align-items: center;
  width: 100%;
}

.contact-overlay > .contact-card > .overlay-card-body > form > .input-box > .input-label {
  flex: 35%;
  color: var(--foreground);
  font-size: var(--t-m);
  line-height: var(--l-title);
}

.contact-overlay > .contact-card > .overlay-card-body > form > .input-box > .input-group {
  flex: 65%;
  display: flex;
}

.contact-overlay > .contact-card > .overlay-card-body > form > .contact-card-button {
  display: flex;
  justify-content: space-between;
}

.contact-overlay > .contact-card > .overlay-card-body > form > .contact-card-button > button {
  width: calc(100% / 2 - 10px);
  background: var(--c-mix-1);
  color: var(--foreground);
}

.contact-overlay > .contact-card > .overlay-card-body > form > .contact-card-button > button:focus, .contact-overlay > .contact-card > .overlay-card-body > form > .contact-card-button > button:hover {
  border: none;
}

.contact-overlay > .contact-card > .overlay-card-body > form > .contact-card-button > button:last-child {
  background: var(--foreground);
  color: var(--background);
}

.contact-overlay > .fadeUp {
  animation: fadeUp var(--a-speed) linear 1;
}

.contact-overlay > .fadeDown {
  animation: fadeDown var(--a-speed) linear 1;
}

@media screen and (min-width: 600px) {
  .contact-overlay {
    width: 600px;
    margin: 0 auto;
  }
}

.delete-contact-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: var(--c-mix-4);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--s-2);
  z-index: 5;
}

.delete-contact-overlay > .overlay-card {
  position: absolute;
  width: calc(100% - var(--s-4));
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--unit) * 2);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .delete-contact-overlay {
    width: 100% !important;
    margin: 0 auto;
  }
  .delete-contact-overlay > .overlay-card {
    width: calc(var(--unit) * 40);
    top: 50%;
    left: 50%;
    bottom: auto;
    z-index: 2;
    transform: translate(-50%, -50%);
  }
}

.delete-contact-overlay > .delete-contact-card {
  display: none;
  position: absolute;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .delete-contact-overlay > .delete-contact-card {
    width: calc(var(--unit) * 40);
    top: 50%;
    left: 50%;
    bottom: auto;
    z-index: 2;
    transform: translate(-50%, -50%);
  }
}

.delete-contact-overlay > .delete-contact-card > .overlay-card-body {
  background-color: var(--background);
  border-radius: var(--r-small);
}

.delete-contact-overlay > .delete-contact-card > .overlay-card-body > h2 {
  text-align: center;
  padding-top: var(--s-2);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--c-mix-1);
}

.delete-contact-overlay > .delete-contact-card > .overlay-card-body > p {
  font-size: var(--t-m);
  text-align: center;
  line-height: var(--l-body);
  color: var(--c-mix-3);
}

.delete-contact-overlay > .delete-contact-card > .overlay-card-body > .delete-contact-card-button {
  padding: 0 var(--s-2) var(--s-2) var(--s-2);
  display: flex;
}

.delete-contact-overlay > .delete-contact-card > .overlay-card-body > .delete-contact-card-button > button:first-child {
  margin-right: var(--s-2);
  background: var(--c-mix-1);
  color: var(--foreground);
}

.delete-contact-overlay > .delete-contact-card > .overlay-card-body > .delete-contact-card-button > button:first-child:focus, .delete-contact-overlay > .delete-contact-card > .overlay-card-body > .delete-contact-card-button > button:first-child:hover {
  border: none;
}

.delete-contact-overlay > .delete-contact-card > .overlay-card-body > .delete-contact-card-button > button:last-child {
  background: var(--c-error);
  color: var(--c-light);
}

.delete-contact-overlay > .delete-contact-card > .overlay-card-body > .delete-contact-card-button > button:last-child:focus, .delete-contact-overlay > .delete-contact-card > .overlay-card-body > .delete-contact-card-button > button:last-child:hover {
  border: none;
}

.delete-contact-overlay > .fadeUp {
  animation: fadeUp var(--a-speed) linear 1;
}

.delete-contact-overlay > .fadeDown {
  animation: fadeDown var(--a-speed) linear 1;
}

@media screen and (min-width: 600px) {
  .delete-contact-overlay {
    width: 600px;
    margin: 0 auto;
  }
}

.delete-contact-overlay > .delete-alert {
  width: calc(100% - 40px);
  height: calc(var(--unit) * 5);
  margin: 0 auto;
  background: var(--c-light);
  position: fixed;
  top: 20px;
  display: none;
  align-items: center;
  border-radius: var(--r-small);
}

.delete-contact-overlay > .delete-alert > p {
  display: flex;
  padding-left: 14px;
  color: var(--c-dark);
  font-size: var(--t-m) !important;
}

.delete-contact-overlay > .delete-alert > p > span {
  margin-right: var(--s-1);
  display: flex;
  align-items: center;
}

.delete-contact-overlay > .delete-alert > p > span > svg {
  width: 16px;
  height: 16px;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.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);
}
