/* =====================
  General
======================== */

:root {
  /* body and title fonts */
  --primary-typeface: 'Inter', 'Helvetica Neue', 'Helvetica', sans-serif;

  /* primary colours */
  --true-white: #fff;
  --off-black: #0D1F39; /* for page background / use as black */
  --iti-green: #29907C;
  --off-white-a: #B6BCC4; /* primary text off-white (full brightness) */
  --off-white-b: #9EA5B0; /* secondary text off-white (less bright) */
  --off-white-c: #6E7988; /* tertiary text off-white (least bright) */

  /* secondary colours */
  --red: #E35A5A;
  --amber: #E3AC5A;
}

* {
  padding: 0; /* remove default padding and margin */
  margin: 0;
  text-decoration-line: none;
  box-sizing: border-box; /* set all elements to border box */
}

html {
  overflow-x: hidden; /* necessary for the gradients */
}

/* set body background colour and positioning  */
body {  
  position: relative;
  background-color: var(--off-black);
  padding: 21px;
}

/* Imports Inter typeface */

/*regular (400)*/
@font-face {
  font-family: "Inter";
  src: url('/fonts/inter/Inter_18pt-Regular.ttf');
  font-weight: 400;
  font-style: normal;
}

/*regular italic (400)*/
@font-face {
  font-family: "Inter";
  src: url('/fonts/inter/Inter_18pt-Italic.ttf');
  font-weight: 400;
  font-style: italic;
}

/*medium (500)*/
@font-face {
  font-family: "Inter";
  src: url('/fonts/inter/Inter_18pt-Medium.ttf');
  font-weight: 500;
  font-style: normal;
}

/*semi-bold (600)*/
@font-face {
  font-family: "Inter";
  src: url('/fonts/inter/Inter_18pt-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
}

/*bold (700)*/
@font-face {
  font-family: "Inter";
  src: url('/fonts/inter/Inter_18pt-Bold.ttf');
  font-weight: 700;
  font-style: normal;
}

/*changes highlight colour*/
::selection {
  background: var(--iti-green); /* WebKit/Blink Browsers */
  color: var(--off-white-a);
}

::-moz-selection {
  background: var(--iti-green); /* Gecko Browsers */
  color: var(--off-white-a);
}

/* set default font styling for text elements */
h1, h2, h3, h4, h5, h6, p, li, a, input, label, textarea, select, option, button, address, small {
  font-family: var(--primary-typeface);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--off-white-a);
}

/* set line height */
h1, h2, h3, h4, h5, h6, p, li, a, label, textarea, select, option, address, small {
  /* line-height: 134%; optimal line height for this typeface */
}

/* set font styling for individual heading levels and other text elements */

h1 {
  font-size: 30px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p strong {
  font-weight: 500;
}

a {
  font-weight: 500;
}

span {
  font-family: inherit;
  font-style: inherit;
  color: inherit;
  /* line-height: inherit; */
}

small {
  font-size: 12px;
}

/* remove default outline from buttons, input, etc. */

input, select, textarea, a, button {
  outline: none;
}

button:focus, a:focus, input:focus, button:active, a:active, input:active {
  outline: none;
}

/* ... instead, add a custom outline on "focus-visible" state only (this applies only when the user uses the 'tab' button to navigate) */
a:focus-visible, button:focus-visible {
  outline: auto;
  outline-color: var(--iti-green);
  outline-style: double;
  outline-width: 6px;
}

/* remove any text-decoration from anchor links. Important tag is used as in the past, older browsers have ignored the rule. */

a {
  text-decoration: none !important;
}

a:-webkit-any-link {
  text-decoration: none !important;
}

a:-moz-any-link {
  text-decoration: none !important;
}

a:link, a:active, a:any-link, a:visited, a:focus, a:hover, a:active {
  text-decoration: none !important;
}

/* remove default styling from buttons (and add custom styling) */

button {
  /* color: unset; */
  background-color: unset;
  /* font: unset; */
  border: none;
  box-sizing: inherit;
  align-items: unset;

  font-family: var(--primary-typeface);
}

button:hover {
  cursor: pointer;
}

button:active {
  border: none;
}

/* remove default styling from inputs (and add custom styling) */

input {
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 12px 20px;
  background-color: transparent;
  color: var(--off-white-a);
  font-family: var(--primary-typeface);
  font-weight: 500;
  font-size: 16px;
}

input::placeholder {
  color: var(--off-white-b);
  font-size: 16px;
  font-family: var(--primary-typeface);
  /* line-height: 140%; */
  font-weight: 400;
}

input::-webkit-search-decoration {
  -webkit-appearance: none;
}

input::-webkit-search-cancel-button{
  -webkit-appearance: none;
}

/* typically used to hide the site name at the top of pages for SEO */
.hide-visually {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

/* default class to hide elements. "hidden" class is used instead to hide an element but apply custom transition effects, etc. */
.hide {
  opacity: 0;
  pointer-events: none;
}

/* standard background image properties. sets background images to be "covers" (ie. fills width and height while maintaining the aspect ratio) */
.stan-background-image {
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  /* background-color: var(--grey-a); */
}

/* JS disabled pop-up warning */

/* .js-disabled-box {
  position: fixed;
  background-color: var(--dark-blue);
  width: 100%;
  padding: 28px 40px;
  z-index: 100;
}

.js-disabled-box h4 {
  color: var(--true-white);
  text-align: center;
  font-family: var(--title);
  font-weight: 500;
  font-size: 19px;
  line-height: 157%;
} */


/* standardise form placeholder text */

::-moz-placeholder { /* Firefox 19+ */
  opacity: 1;
}
:-ms-input-placeholder { /* IE 10+ */
  opacity: 1;
}
::-ms-input-placeholder { /* Microsoft Edge */
  opacity: 1;
}
:-moz-placeholder { /* Firefox 18- */
  opacity: 1;
}
::placeholder { /* Most modern browsers */
  opacity: 1;
}

/* --- styling for generic elements shared across multiple pages --- */

/* checkbox - code adapted from https://moderncss.dev/pure-css-custom-checkbox-style/ */

input[type=checkbox] {
  padding: unset;
  transition: border-color .2s ease-in-out;

  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 16px;
  height: 16px;
  border: 1px solid grey;
  border-radius: 4px;
  /* transform: translateY(-0.075em); */
  display: grid;
  place-content: center;
}

input[type=checkbox]::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: var(--true-white);

  /* -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); */
  /* transform: scale(0);
  transform-origin: center center; */
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  /* box-shadow: inset 1em 1em red; */
  /* Windows High Contrast Mode */
  /* background-color: CanvasText; */
}

input[type=checkbox]:checked {
  border-color: var(--true-white);
}

input[type=checkbox]:checked::before {
  opacity: 1;
}

/* input[type=checkbox]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
} */
/* 
input[type=checkbox]:disabled {
  --custom-checkbox-label-color: var(--custom-checkbox-label-disabled);
  color: var(--custom-checkbox-label-disabled);
  cursor: not-allowed;
} */

/* remove arrows on number fields */

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  /* Chrome, Safari, Edge, Opera */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

input[type=number] { /* Firefox */
  -moz-appearance: textfield;
}

/* --- header and nav --- */
.main-header {
  display: flex;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .logo-wrap {
  padding: 5px;
}

.main-header .logo {
  max-width: 30px;
  height: auto;
}

.main-header .nav-contents {
  display: flex;
  align-items: center;
}

.main-header .sign-up-button {
  margin-right: 14px;
}

.main-header .more-menu-icon {
  display: flex;
  padding: 5px;
}

.main-header .more-menu-icon .icon {
  fill: var(--off-white-a);
  width: 30px;
  height: auto;
  transition: fill .2s;
}

.main-header .more-menu-icon:hover .icon, .main-header .more-menu-icon:active .icon {
  fill: var(--iti-green);
}


/* more menu overlay */
.more-menu {
  position: absolute;
  top: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  padding: 4px 10px;
  background-color: var(--off-black);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  /* box-shadow: 0px 0px 40px 0px rgba(43, 51, 45, 0.10); */
  min-width: 170px;
  z-index: 1;

  transition: opacity .2s, transform .2s;
}

.more-menu.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.more-menu .section {
  display: flex;
  flex-direction: column;
}

.more-menu .link-item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 10px 15px;
  /* following two styles are required as one of the link items is a button (for semantic reasons) */
  font-weight: 500;
  /* line-height: 140%; */

  transition: background-color .2s ease-in-out;
}

  .more-menu .link-item.secondary {
    color: var(--off-white-c);
  }

.more-menu .link-item:last-child {
  margin-bottom: 0;
}

.more-menu .link-item .icon {
  width: 20px;
  height: 20px;
  fill: var(--off-white-a);
  transition: fill .2s;
}

.more-menu .link-item:hover .icon,
.more-menu .link-item:active .icon {
  fill: var(--iti-green);
}

.more-menu .link-item span {
  padding-left: 10px;
  transition: color .2s;
}

.more-menu .link-item span:first-child {
  padding-left: 0px;
}

  .more-menu .link-item:hover span,
  .more-menu .link-item:active span {
    color: var(--iti-green);
  }

.more-menu .section {
  padding-bottom: 6px;
  padding-top: 6px;
}

.more-menu .section:last-child {
  border-bottom: none;
}

@media only screen and (min-width: 800px) {
  .more-menu {
    bottom: unset;
    top: 90px;
    right: 30px;
  }

  .more-menu.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }
}



/* footer */
.footer {
  margin-top: 80px;
  padding-bottom: 10px;
}

  .footer-small-logo {
    width: 100%;
    padding: 12px 21px;
  }

.footer .nav-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}

  .footer-small-logo .nav-wrap {
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
  }

    .footer-small-no-logo .nav-wrap {
      justify-content: center;
      flex-direction: row;
      width: 100%;
    }

.footer .nav-wrap a {
  margin-right: 20px;
  transition: color .2s;
}

  .footer .nav-wrap a:hover, .footer .nav-wrap a:active {
    color: var(--iti-green);
  }

.footer .nav-wrap .line-a {
  margin-bottom: 15px;
}

.footer-small-logo .logo-wrap {
  padding: 5px;
}

.footer-small-logo .logo {
  max-width: 25px;
  height: auto;
}

@media only screen and (min-width: 620px) {
  .footer .nav-wrap {
    flex-direction: row;
    justify-content: center;
  }

    .footer-small-logo a.logo-wrap {
      margin-right: 40px;
    }

  .footer .nav-wrap .line-a {
    margin-bottom: 0;
  }
}



/* divider wrap */
.divider-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}



/* background gradient */
.background-gradient {
  width: 1728px;
  height: 1728px;
  position: absolute;
  top: -750px;
  right: -508px;
  background: radial-gradient(11.75% 11.75% at 60.89% 63.91%, rgba(5, 219, 177, 0.12) 0%, rgba(5, 219, 177, 0.00) 100%), radial-gradient(13.78% 13.78% at 53.11% 50%, rgba(0, 123, 255, 0.12) 0%, rgba(0, 123, 255, 0.00) 100%);
  pointer-events: none;
  opacity: .8;
  overflow: hidden;
}
  .background-gradient.fixed { /* for pages that don't scroll much (like sign up or settings). fixes gradients position but prevents them elongating the page length */
    position: fixed;
  }
.background-gradient.bg-bottom {
  top: unset;
  right: unset;
  bottom: -550px;
  left: -562px;
  width: 1385px;
  height: 1385px;
  transform: rotate(-170.802deg);
  background: radial-gradient(11.75% 11.75% at 60.89% 63.91%, rgba(5, 219, 177, 0.12) 0%, rgba(5, 219, 177, 0.00) 100%), radial-gradient(13.78% 13.78% at 53.11% 50%, rgba(0, 123, 255, 0.12) 0%, rgba(0, 123, 255, 0.00) 100%);
}

.bg-wrap {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1385px;
  height: 1385px;
  pointer-events: none;
}

@media only screen and (min-width: 620px) {
  .background-gradient.bg-top {
    width: 3328px;
    height: 3328px;
    top: -1550px;
    right: -1100px;
  }

  .background-gradient.bg-bottom {
    width: 2385px;
    height: 2385px;
    top: unset;
    right: unset;
    bottom: -1000px;
    left: -1000px;
  }

  .bg-wrap {
    width: 2385px;
    height: 2385px;
  }
}



/* validation message */
.validation-status-message {
  font-family: var(--primary-typeface);
  font-weight: 400;
  margin-top: 12px;
  padding: 0 7px 5px 7px;
  text-align: center;
  color: var(--amber);
}

.validation-status-message.hidden {
  display: none;
}



/* check bullet list */
.check-bullet-list {
  margin-top: 17px;
}

.check-bullet-list .item {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

  .check-bullet-list .item:last-child {
    margin-bottom: 0;
  }

.check-bullet-list .item .text {
  margin-left: 9px;
}

.check-bullet-list .item .title {
  font-family: var(--primary-typeface);
  color: var(--off-white-a);
  font-size: 16px;
  font-weight: 500;
}

.check-bullet-list .item svg {
  flex-shrink: 0; /* prevent icon shrinking when there is limited screen space */
}

.check-bullet-list .item svg circle {
  fill: var(--iti-green);
}

.check-bullet-list .item .description {
  font-family: var(--primary-typeface);
  color: var(--grey-b);
  margin-top: 2px;
}



/* standard button */
.standard-button {
  padding: 14px 24px;
  font-weight: 500;
  border-radius: 14px;
  width: fit-content;
  min-width: 188px;
  text-align: center;
}

/* a.standard-button {
  line-height: normal; /* remove custom line height for links which are in the style of a button */
/* } */

.standard-button.full-width-button {
  width: 100%;
}

.standard-button.standard-button-green {
  background-color: var(--iti-green);
  color: rgba(255, 255, 255, 0.80);
  transition: background-color .5s;
}

  .standard-button.standard-button-green:hover, .standard-button.standard-button-green:active {
    background-color: #24A38A;
  }

.standard-button.standard-button-grey {
  background-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.80);
  transition: background-color .2s;
  min-width: unset;
}

  .standard-button.standard-button-grey:hover, .standard-button.standard-button-grey:active {
    background-color: rgba(255, 255, 255, 0.16);
  }

.standard-button.standard-button-negative {
  background-color: #e3ac5a1a;
  color: var(--amber);
  border: 1px solid #e3ac5a54;
  transition: background-color .2s ease-in-out;
}

  .standard-button.standard-button-negative:hover, .standard-button.standard-button-negative:focus-visible {
    background-color: #e3ac5a2b;
  }



/* primary title */
.primary-title {
  font-weight: 600;
  font-size: 30px;
}



/* small text*/
.small-text {
  font-size: 14px;
  color: var(--off-white-c);
}

.small-text a {
  color: inherit;
  font-size: inherit;
}

.small-text .underline-link {
  border-bottom-color: inherit;
}


/* negative colour text */
.negative-colour-text {
  color: var(--amber);
}



/* inline link - green */
.green-inline-link {
  color: var(--iti-green);
  font-weight: 500;
}
/* inline link - negative colour */
.negative-inline-link {
  color: var(--negative);
  font-weight: 500;
}
.underline-link {
  border-bottom: 1px solid var(--off-white-a);
  transition: border-bottom-color .2s, color .2s;
}
  .underline-link:hover, .underline-link:active {
    border-bottom-color: var(--iti-green);
    color: var(--iti-green);
  }



/* grey-outline-input */
.grey-outline-input {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  padding: 13px 16px;
  font-weight: 400;
  transition: border-color .2s;
}
  .grey-outline-input.full-width-input {
    width: 100%
  }

  .grey-outline-input:focus, .grey-outline-input:active {
    border-color: var(--iti-green);
  }
  .grey-outline-input.invalid {
    border-color: var(--amber);
  }
  .grey-outline-input:disabled {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
  }


/* notifications */
.notification-wrap {
  position: fixed;
  margin-bottom: 70px;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 10px;

  transition: opacity .4s, transform .3s;
}

  .notification-wrap.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(140px);
  }

.notification-wrap .notification {
  border-radius: 100px;
  background-color: var(--iti-green);
  padding: 16px 35px;
  padding-left: 25px;
  display: flex;
  align-items: center;
  min-width: 150px;
  width: fit-content;
  max-width: 490px;
}

  .notification-wrap.negative .notification {
    background-color: var(--negative);
  }

.notification-wrap .notification .icon-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.notification-wrap .notification .icon-wrap .icon {
  fill: var(--true-white);
}

  .notification-wrap.negative .notification .icon-wrap .icon {
    display: none;
  }

.notification-wrap .notification .text {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.notification-wrap .notification .text > * {
  color: var(--true-white);
  font-family: var(--primary-typeface);
}

.notification-wrap .notification .notification-title {
  font-weight: 400; /* change to 500 if we decide to use the description */
  margin-top: 2px;
}

.notification-wrap .notification .notification-description {
  margin-top: 5px;
}



/* loading screen */
.loading-screen {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;

  transition: opacity .2s ease-in-out;
}

.loading-screen .spinner { /* the code for this spinner has been adapted from https://10015.io/tools/css-loader-generator */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--iti-green);
  animation: spinner-bulqg1 0.8s infinite linear alternate,
        spinner-oaa3wk 1.6s infinite linear;
}

@keyframes spinner-bulqg1 {
  0% {
      clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }

  12.5% {
      clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }

  25% {
      clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }

  50% {
      clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }

  62.5% {
      clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }

  75% {
      clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }

  100% {
      clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}

@keyframes spinner-oaa3wk {
  0% {
      transform: scaleY(1) rotate(0deg);
  }

  49.99% {
      transform: scaleY(1) rotate(135deg);
  }

  50% {
      transform: scaleY(-1) rotate(0deg);
  }

  100% {
      transform: scaleY(-1) rotate(-135deg);
  }
}



/* full screen */
.full-screen-page {
  min-height: 90vh; /* Fallback - mobile */
  min-height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  width: 100%;
}

  .full-screen-page.beta-access {
    height: 90vh; /* Fallback - mobile */
    height: calc(var(--vh, 1vh) * 100);
  }

@media only screen and (min-width: 450px) {
  .full-screen-page {
    min-height: 100vh; /* Fallback - desktop */
    min-height: calc(var(--vh, 1vh) * 100);
  }

    .full-screen-page.beta-access {
      height: 100vh; /* Fallback - desktop */
      height: calc(var(--vh, 1vh) * 100);
    }
}



/* toggle */

/* toggle. the css code for the toggle has been adapted from https://codepen.io/mburnette/pen/LxNxNg */

.toggle-wrap {
  display: flex;
}

.toggle-wrap input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.toggle-wrap label {
  cursor: pointer;
  text-indent: -9999px;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.26);
  display: block;
  border-radius: 100px;
  position: relative;
}

.toggle-wrap label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.80);
  border-radius: 90px;
  transition: 0.3s;
}

.toggle-wrap input:checked + label {
  background: var(--iti-green);
}

.toggle-wrap input:disabled + label {
  background: rgba(255, 255, 255, 0.26);
}

.toggle-wrap input:checked + label:after {
  left: calc(100% - 3px);
  transform: translateX(-100%);
}

.toggle-wrap label:active:after {
  width: 30px;
}



/* title-description wrap */
.home .title-description-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 35px;
}

.home .title-description-wrap > * {
  text-align: center;
}

.home .title-description-wrap .primary-title {
  margin-bottom: 6px;
  padding: 0 20px;
}

.home .title-description-wrap > p {
  padding: 0 12px;
}



/* status animated circle */

.status-wrap {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.status-wrap .status-inner {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: var(--iti-green);
}
  .dashboard .link-list-item.expired .status-wrap .status-inner{
    background-color: var(--off-white-c);
  }

.status-wrap .status-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  border-radius: 100px;
  background-color: var(--iti-green);
  opacity: .5;
  animation-duration: 1.2s;
  animation-name: bounce;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
  .dashboard .link-list-item.expired .status-wrap .status-outer{
    display: none;
  }

@keyframes bounce {
  0% {
    opacity: 0.5;
    width: 0px;
    height: 0px;
    top: 8px;
    left: 8px;
  }

  70%{
    opacity: 0.35;
  }

  95% {
    opacity: 0;
    width: 20px;
    height: 20px;
    top: -2px;
    left: -2px;
  }

  100% {
    opacity: 0;
    width: 0px;
    height: 0px;
    top: 8px;
    left: 8px;
  }
}



/* miscellaneous */ 
.relative-positioning {
  position: relative;
}

.overlay .close-tab-button {
  padding: 3px 3px;
  background-color: var(--off-white-a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 100px;
  fill: var(--grey-a);
}



/* =====================
  Home page 
======================== */

.home {
  overflow-x: hidden; /* necessary for the gradients */
}

.home .green {
  color: var(--iti-green);
}

/* links cound and animated hero element (AHE) wrap - for desktop only */
.home .ahe-form-wrap {
  display: flex;
  align-items: center;
}

.home .ahe-form-wrap .ahe-link-count-wrap.desktop-only {
  display: none;
  flex-direction: column-reverse;
  margin-right: 30px;
  margin-bottom: 47px;
  align-items: center;
}

.home .ahe-form-wrap .ahe-link-count-wrap.desktop-only .ahe {
  margin-bottom: 10px;
}

/* active links count */
.home .links-count-wrap {
  display: flex;
  align-items: center;
}

.home .links-count-wrap.mobile-only {
  margin-bottom: 20px;
}

.home .links-count-wrap .active-links-text {
  color: var(--off-white-b);
}

.home .links-count-wrap .links-created-text-wrap {
  color: var(--off-white-c);
}

/* animated hero element (AHE) */

.home .ahe {
  width: 351px;
  height: 150px;
  position: relative;
  overflow: hidden;

  margin-bottom: 4px;
}

.home .ahe .ahe-url-item {
  animation-name: ahe-url-link-animation;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-fill-mode: forwards;

  position: absolute;
  bottom: 0;
  left: 8.5%;
}

.home .ahe .ahe-url-item .link-wrap {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-radius: 14px;
  border: 1px solid var(--off-white-c);
  width: fit-content;

  animation-name: ahe-url-link--link-wrap--animation;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-fill-mode: forwards;
}

.home .ahe .ahe-url-item .link-wrap p {
  font-weight: 500;
  color: var(--off-white-b);
  font-size: 20px;
}

.home .ahe .ahe-url-item .link-wrap .icon {
  fill: var(--off-white-b);
  margin-right: 4px;
}

.home .ahe .ahe-url-item .chars-length-text {
  position: relative;
  right: -160px;
  color: var(--off-white-c);
  bottom: 25px;
}

.home .ahe .ahe-url-item .mode-text {
  position: relative;
  right: -120px;
  bottom: -18px;
  color: var(--off-white-b);
}

@keyframes ahe-url-link-animation {
  0% {
    transform: translate(0, 300px);
    opacity: 0;
  }

  25% {
    opacity: 0;
  }

  40% {
    transform: translate(0, -19px);
    opacity: 1;
  }

  50% {
    transform: translate(0, -26px);
  }

  60% {
    transform: translate(0, -19px);
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translate(0, -300px);
  }
}

@keyframes ahe-url-link--link-wrap--animation {
  0% {
    transform: rotateZ(390deg);
  }

  40% {
    transform: rotateZ(346deg);
  }

  50% {
    transform: rotateZ(344deg);
  }

  60% {
    transform: rotateZ(346deg);
  }

  100% {
    transform: rotateZ(320deg);
  }
}

@media only screen and (min-width: 900px) {
  .home .ahe-form-wrap .ahe-link-count-wrap.desktop-only {
    display: flex;
  }

  .home .links-count-wrap.mobile-only {
    display: none;
  }

  .home .ahe.mobile-only {
    display: none;
  }
}

/* generate form */

.home .generate-form-wrap {
  width: 351px;
  margin: 0 auto;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .generate-form {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 8px;
  width: 351px;
}

.home .generate-form .mode-selection {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.home .generate-form .mode-selection .mode-selection-button {
  height: 45px;
  border-radius: 14px;
  font-weight: 500;
  flex-grow: 1;
  font-size: 15px;
}

.home .generate-form .mode-selection .visual-selector {
  position: absolute;
  top: 0;
  left: 0;
  height: 45px;
  background: rgba(255, 255, 255, 0.12);
  width: 113px;
  border-radius: 14px;
  transition: left .2s;
}

.home .generate-form .info-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.home .generate-form .info-text .mode-description {
  margin-bottom: 4px;
}

.home .generate-form .info-text .expiry-info {
  display: flex;
  align-items: center;
}

.home .generate-form .info-text .expiry-info .icon {
  fill: var(--off-white-a);
  margin-right: 5px;
}

.home .generate-form .info-text .expiry-info a {
  font-weight: 400;
}

.home .generate-form .input-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.home .generate-form .input-wrap .input {
  padding-left: 45px;
  width: 100%;
  transition: all .2s;
}

.home .generate-form .input-wrap .input.displaying-results {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: transparent;
}

.home .generate-form .input-wrap .icon {
  position: absolute;
  left: 15px;
  top: 12px;
  fill: var(--off-white-a);
}

.home .generate-form .audible-mode-wrap {
  position: relative;
  width: 100%;
  padding: 0 18px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

  .home .generate-form .audible-mode-wrap.hidden {
    display: none;
  }

.home .generate-form .audible-mode-wrap .text-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.home .generate-form .audible-mode-wrap .text-wrap .icon {
  fill: var(--off-white-b);
  margin-left: 5px;
  max-width: 22px;
  transition: fill .2s;
}

.home .generate-form .audible-mode-wrap .text-wrap .icon:hover, .home .generate-form .audible-mode-wrap .text-wrap .icon:active {
  fill: var(--off-white-a);
}

.home .generate-form .audible-mode-wrap .text-wrap .tooltip {
  padding: 8px;
  border-radius: 10px;
  background-color: var(--off-black);
  position: absolute;
  color: var(--off-white-a);
  text-align: center;
  width: 160px;
  bottom: 30px;
  left: 38px;
  transition: all .2s;
}

.home .generate-form .audible-mode-wrap .text-wrap .tooltip.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.home .generate-form .standard-button.standard-button-grey {
  margin-top: 10px;
}
  .home .generate-form .standard-button.standard-button-grey.hidden {
    display: none;
  }

.home .generate-form-wrap .disclaimer {
  text-align: center;
  margin-top: 10px;
}

@media only screen and (min-width: 620px) {
  .home .generate-form-wrap {
    margin-top: 100px;
  }
}

@media only screen and (min-width: 900px) {
  .home .title-description-wrap .primary-title.home-page-hero-title {
    font-size: 35px;
  }

  .home .generate-form-wrap {
    width: 490px;
  }
}

/* benefits */

.home .benefits {
  margin-top: 60px;
  margin-bottom: 60px;
}

.home .benefits .benefits-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .benefits .benefits-list .list-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(53.31% 52.15% at 62.73% 66%, rgba(5, 219, 177, 0.09) 0%, rgba(5, 219, 177, 0.00) 100%), radial-gradient(47.49% 47.16% at 27.31% 24.81%, rgba(0, 123, 255, 0.07) 0%, rgba(0, 123, 255, 0.00) 100%), rgba(215, 236, 231, 0.08);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 27px;
  height: 260px;
  width: 271px;
}

.home .benefits .benefits-list .list-item:last-child {
  margin-bottom: unset;
}

.home .benefits .benefits-list .list-item .icon {
  fill: var(--iti-green);
  width: 35px;
  height: auto;
  margin-bottom: 8px;
}

.home .benefits .benefits-list .list-item .benefit-title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
}

.home .benefits .benefits-list .list-item .benefit-description {
  text-align: center;
  color: var(--off-white-b);
}

@media only screen and (min-width: 620px) {
  .home .benefits {
    margin-top: 80px;
    margin-bottom: 100px;
  }
}

@media only screen and (min-width: 900px) {
  .home .benefits .benefits-list {
    flex-direction: row;
    justify-content: center;
  }

  .home .benefits .benefits-list .list-item {
    margin-bottom: 0;
    margin-right: 32px;
  }

  .home .benefits .benefits-list .list-item:last-child {
    margin-right: unset;
  }
}

/* iti vs ... */

.home .vs {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.home .vs .title-description-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}

.home .vs .title-description-wrap > * {
  text-align: center;
}

.home .vs .bottom-evaluation {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: -10px;
}

.home .vs .bottom-evaluation .main-text-wrap {
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.home .vs .bottom-evaluation .main-text-wrap .main-text {
  font-weight: 600;
}

.home .vs .bottom-evaluation .small-text {
  margin-top: 6px;
}

.home .vs .comparison-image {
  width: 120%;
  height: auto;
  max-width: 500px;
}

/*  how does it work */

.home .how-does-it-work {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.home .how-does-it-work .title-description-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 25px;
}

.home .how-does-it-work .title-description-wrap > * {
  text-align: center;
}

.home .how-does-it-work .how-does-it-work-image {
  width: 100%;
  height: auto;
  padding-right: 50px;
  max-width: 350px;
}

.home .how-does-it-work .how-does-it-work-image.desktop {
  display: none;
}

@media only screen and (min-width: 620px) {
  .home .vs {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home .how-does-it-work {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home .how-does-it-work .how-does-it-work-image {
    padding-right: 150px;
    max-width: 450px;
  }
}

@media only screen and (min-width: 900px) {
  .home .how-does-it-work .how-does-it-work-image.mobile {
    display: none;
  }
  .home .how-does-it-work .how-does-it-work-image.desktop {
    display: block;
  }
  .home .how-does-it-work .how-does-it-work-image {
    padding-right: 0;
    max-width: 1006px;
  }
}

/* cta */

.home .page-end-cta {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.home .page-end-cta .title-description-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 35px;
}

.home .page-end-cta .title-description-wrap > * {
  text-align: center;
  padding: 0 12px;
}

.home .page-end-cta .title-description-wrap .primary-title {
  max-width: 370px;
}

.home .page-end-cta .generate-link {
  min-width: 188px;
}

@media only screen and (min-width: 620px) {
  .home .page-end-cta {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}



/* --- overlays --- */

/* WIP overlay (based on intro overlay above) */

.wip-overlay-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #96a29973; /* TEMP */
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
}

.wip-overlay-wrap.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.wip-overlay {
  position: relative;
  border-radius: 10px;
  background-color: var(--true-white);
  padding: 30px;
  padding-top: 45px;
  margin: 15px;
  box-shadow: 0px 0px 40px 0px rgba(43, 51, 45, 0.10);
  width: 100%;
  min-width: 320px;
  max-width: 380px;
  font-family: var(--primary-typeface);
}

.wip-overlay .otter-icon {
  max-width: 100px;
  margin: 0 auto;
  margin-bottom: 12px;
  display: block;
  height: auto;
}

.wip-overlay .title {
  text-align: center;
}

.wip-overlay .description {
  margin-top: 12px;
  text-align: center;
  font-family: var(--primary-typeface);
}



/* delete account overlay */
.delete-account-overlay-wrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.06);
}

  .delete-account-overlay-wrap.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }

.delete-account-overlay {
  margin: 15px 20px;
  border-radius: 10px;
  padding: 35px 20px;
  padding-top: 45px;
  max-width: 450px;
  background-color: var(--off-black);
  position: relative;
  text-align: center;
}

.delete-account-overlay .input {
  width: 100%;
}

.delete-account-overlay .standard-button {
  margin-top: 12px;
  width: 100%;
}

.delete-account-overlay .description {
  margin-bottom: 20px;
  margin-top: 10px;
}

.delete-account-overlay .title {
  font-weight: 600;
}

@media only screen and (min-width: 450px) {
  .delete-account-overlay {
    padding: 40px;
    padding-top: 45px;
  }
}



/* =====================
  Confirmation / inactive link / page not found (404) pages. (they all have the class of "cip")
======================== */
.cip .center-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
}

.cip .center-wrap .primary-title {
  font-size: 20px;
  text-align: center;
  word-break: break-all;
}

.cip .center-wrap .primary-title .green {
  color: var(--iti-green);
}

.cip .center-wrap .standard-button {
  min-width: 115px;
  margin-top: 20px;
}

.cip .footer {
  position: absolute;
  bottom: 0;
  left: 0;
}

.cip .details {
  position: absolute;
  bottom: 110px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
}

.cip .details p {
  text-align: center;
  color: var(--off-white-c);
  word-break: break-all;
}

@media only screen and (min-width: 620px) {
  .cip .center-wrap .primary-title {
    font-size: 24px;
  }
  
  .cip .details {
    bottom: 130px;
  }
}

/* expired / 404 (page not found) link page */
.expired-pnf .title-description-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.expired-pnf .title-description-wrap > * {
  text-align: center;
}

.expired-pnf .title-description-wrap .primary-title {
  margin-bottom: 6px;
  padding: 0 12px;
  word-break: normal;
}

.expired-pnf .title-description-wrap > p {
  padding: 0 12px;
}

.expired-pnf .cta-wrap {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  padding: 21px;
  display: flex;
  justify-content: center;
}

.expired-pnf .cta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.10);
  padding: 21px;
  transition: background-color .2s;
}

.expired-pnf .cta:hover, .expired .cta:active {
  background-color: rgba(255, 255, 255, 0.13);
}

.expired-pnf .cta .text {
  margin-right: 10px;
}

.expired-pnf .cta .icon {
  fill: var(--off-white-a);
  min-width: 26px;
  height: auto;
}

@media only screen and (min-width: 620px) {
  .expired-pnf .cta-wrap {
    bottom: 90px;
  }

  .expired-pnf .cta {
    max-width: 400px;
  }
}



/* =====================
  Account Settings page
======================== */
.settings {
  overflow-x: hidden; /* necessary for the gradients */
}

.settings main {
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 450px;
}

.settings .primary-title {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  width: 100%;
  margin-bottom: 40px;
}

.settings .list {
  width: 100%;
}

.settings .item {
  width: 100%;
  display: flex;
  margin-bottom: 28px;
  transition: height .2s ease-in-out;

  flex-direction: column;
  justify-content: unset;
}

.settings .item .top {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

  .settings .item .top.align-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
  }

.settings .item .top h2:not(.primary-title),
.settings .item .top h1:not(.primary-title) {
  font-weight: 600;
  font-size: 20px;
}

.settings .item .link-item-main-content {
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 8px;
}

.settings .item .setting-option-description {
  font-size: 16px;
  color: var(--off-white-b);
  padding: 8px 12px;
}

.settings .current-password-input {
  margin-bottom: 10px;
}

.settings .item .left {
  display: flex;
  align-items: center;
}

.settings .item .left span {
  padding-top: 6px;
  padding-left: 8px;
}

.settings .item .standard-button {
  margin-top: 12px;
}

.settings .input-wrap {
  width: 100%;
  position: relative;
  margin-top: 16px;
}

.settings .input-wrap input {
  width: 100%;
  padding-right: 40px;
  margin-top: 0;
}

.settings .grey {
  color: var(--grey-b);
}




/* =====================
  Sign up/in page
======================== */

.sign-up-sign-in {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
  /* min-height: 100vh; */
}

.sign-up-sign-in main {
  padding-top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.sign-up-sign-in main .list .link-item {
  flex-direction: column;
  justify-content: unset;
  align-items: unset;
  font-family: var(--primary-typeface);
  padding: 22px 25px;
  pointer-events: all;
}

.sign-up-sign-in .primary-title {
  text-align: center;
  margin-bottom: 6px;
}

.sign-up-sign-in .page-description {
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  margin-bottom: 30px;
  display: block;
}

/* sign up/in form */
.sign-up-sign-in .form-sign-up-button {
  margin-top: 10px;
}

.sign-up-sign-in .sign-up-form {
  background-color: rgba(255, 255, 255, 0.10);
  padding: 8px;
  border-radius: 20px;
  width: 351px;
}

.sign-up-sign-in .sign-up-form .fields {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sign-up-sign-in .sign-up-form .fields .input-item:not(:first-child) {
  margin-top: 10px;
}

.sign-up-sign-in .sign-up-form .fields .input-item input {
  margin-top: 0;
  width: 100%;
}

.sign-up-sign-in .disclaimer {
  text-align: center;
  margin-top: 10px;
}

.sign-up-sign-in .check-bullet-list-wrap {
  position: absolute;
  bottom: 45px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.sign-up-sign-in .check-bullet-list {
  padding: 22px 45px;
  max-width: 550px;
}

.sign-up-sign-in .already-have-account-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  font-family: var(--primary-typeface);
  padding: 12px 20px;
  padding-bottom: 0;
  margin-top: 25px;
  border-top: 1px solid #EEEDE4; /* COLOR POSSIBLY TEMPORARY */
}

.sign-up-sign-in .already-have-account-cta > * {
  font-family: inherit;
}

.sign-up-sign-in .footer {
  position: absolute;
  left: 0;
  bottom: 5px;
}

@media only screen and (min-width: 620px) {
  .sign-up-sign-in .check-bullet-list-wrap {
    position: absolute;
    bottom: 8vh;
  }
}

@media only screen and (max-height: 650px) {
  .sign-up-sign-in .check-bullet-list-wrap {
    display: none;
  }
}



/* =====================
  Account dashboard
======================== */
.dashboard {
  padding: 11px;
  overflow-x: hidden; /* necessary for the gradients */
}

.dashboard .top {
  margin-top: 50px;
  margin-bottom: 10px;
}

.dashboard .link-list {
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 8px;
  min-height: 300px;
}

.dashboard .link-list-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.dashboard .link-list-top .filters {
  display: flex;
  margin-right: 10px;
}

.dashboard .link-list-top .filters button {
  border-radius: 100px;
  border: 1px solid var(--off-white-c);
  padding: 14px 20px;
  transition: all .2s;
}
  .dashboard .link-list-top .filters button.active {
    border-color: var(--iti-green);
    color: var(--iti-green);
    background-color: #29907b12;
  }

  .dashboard .link-list-top .filters button:hover, .dashboard .link-list-top .filters button:active {
    border: 1px solid var(--off-white-b);
  }

.dashboard .link-list-top .filters button:first-child {
  margin-right: 10px;
}

.dashboard .link-list-top button, .dashboard .link-list-top a {
  min-width: unset;
}

.dashboard .link-list-top .dashboard-only-button {
  display: none;
}

.dashboard .link-list-main {
  padding-top: 10px;
}

/* link-list-main */
.dashboard .link-list-item {
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}
  .dashboard .link-list-item.hidden {
    display: none;
  }

.dashboard .link-list-item:last-child {
  border-bottom-color: transparent;
}

.dashboard .link-list-item .non-hidden-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard .link-list-item .main-left, .dashboard .link-list-item .main-right {
  display: flex;
  align-items: center;
}

.dashboard .link-list-item .main-details {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.dashboard .link-list-item .main-details .shortened-url {
  font-weight: 500;
}

.dashboard .link-list-item .main-details .original-url-wrap {
  display: flex;
  align-items: center;
}

.dashboard .link-list-item .main-details .original-url-wrap .icon {
  margin-right: 3px;
  fill: var(--off-white-b);
}

.dashboard .link-list-item .main-details .original-url-wrap .original-url {
  color: var(--off-white-b);
  max-width: 100px;
  max-height: 20px; /* prevent line breaks and text going to new line */
  overflow: hidden;
}

.dashboard .link-list-item .main-right-content {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.dashboard .link-list-item .days-left-wrap {
  display: flex;
  align-items: center;
}

.dashboard .link-list-item .days-left-wrap .icon {
  margin-right: 5px;
  fill: var(--off-white-a);
}

.dashboard .link-list-item .days-left-wrap .days-left {
  font-weight: 500;
}

.dashboard .link-list-item .dashboard-only-content {
  display: none;
}

.dashboard .link-list-item .main-right-content .date-created {
  color: var(--off-white-b);
}

.dashboard .link-list-item .link-list-more-menu {
  display: flex;
}

.dashboard .link-list-item .link-list-more-menu .icon {
  fill: var(--off-white-a);
  width: 30px;
  height: auto;
  transition: fill .2s;
}

.dashboard .link-list-item .link-list-more-menu:hover .icon, .dashboard .link-list-item .link-list-more-menu:active .icon {
  fill: var(--iti-green);
}

.dashboard .link-list-item.expired *:not(.link-list-more-menu .icon):not(.standard-button-grey) {
  color: var(--off-white-c) !important;
  fill: var(--off-white-c) !important;
}

.dashboard .link-list-item .hidden-content {
  padding-top: 20px;
  transition: all .2s;
}
  .dashboard .link-list-item .hidden-content.hidden {
    height: 0;
    opacity: 0;
    pointer-events: none;
    padding: 0;
  }

.dashboard .link-list-item .hidden-content .main-hidden-content {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.dashboard .link-list-item .hidden-content .buttons {
  display: flex;
  flex-direction: column;
}

.dashboard .link-list-item .hidden-content .buttons > * {
  width: 100%;
  margin-bottom: 8px;
}

.dashboard .link-list-item .hidden-content .buttons > *:last-child {
  margin-bottom: 0;
}

.dashboard .disclaimer {
  margin-top: 20px;
  text-align: center;
}

@media only screen and (min-width: 620px) {
  .dashboard {
    padding: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dashboard main {
    max-width: 1200px;
    width: 100%;
  }

  .dashboard .link-list-item .main-details .original-url-wrap .original-url {
    max-width: 250px;
  }

  .dashboard .link-list-item .hidden-content .buttons > * {
    width: fit-content;
    margin-bottom: 0;
    margin-right: 8px;
  }

  .dashboard .link-list-item .hidden-content .buttons > *:last-child {
    margin-right: 0;
  }

  .dashboard .link-list-item .hidden-content .buttons {
    flex-direction: row;
    justify-content: flex-end;
  }

  .dashboard .link-list-top .dashboard-only-button {
    display: initial;
  }

  .dashboard .link-list-top .mobile-only-button {
    display: none;
  }
}

@media only screen and (min-width: 1000px) {
  .dashboard .link-list-item .main-right {
    width: 100%;
    max-width: 750px;
  }

  .dashboard .link-list-item .main-right-content {
    width: 100%;
    margin-left: 40px;
    margin-right: 40px;
    justify-content: space-between;
  }

  .dashboard .link-list-item .dashboard-only-content {
    display: inline-block;
  }

  .dashboard .link-list-item .hidden-content .main-hidden-content {
    display: none;
  }
}



/* =====================
  Analytics pages
======================== */
.analytics {
  padding: 11px;
  overflow-x: hidden; /* necessary for the gradients */
}

.analytics .under-development-notice {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.10);
  padding: 8px 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  display: block;
}

.analytics .analytics-title-icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.analytics .analytics-title-icon-wrap .icon {
  fill: var(--off-white-c);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.analytics .analytics-title {
  font-weight: 500;
  font-size: 16px;
  color: var(--off-white-c);
}

.analytics .primary-title {
  margin-bottom: 5px;
}

.analytics .original-url-icon-wrap {
  display: flex;
  align-items: center;
}

.analytics .original-url-icon-wrap .icon {
  fill: var(--off-white-b);
  width: 20px;
  height: 20px;
  margin-right: 2px;
}

.analytics .original-url-icon-wrap .original-url {
  color: var(--off-white-b);
}

.analytics .analytics-list {
  margin-top: 20px;
}

.analytics .analytics-list .plain-boxes {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  width: 100%;
}

.analytics .analytics-list .plain-boxes .item {
  padding: 30px;
  border-radius: 20px;
  margin-right: 12px;
  margin-bottom: 12px;
  background-color: rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 calc(50% - 6px);
}

  .analytics .analytics-list .plain-boxes .item:nth-child(2n) {
    margin-right: 0;
  }

.analytics .analytics-list .plain-boxes .item .number {
  margin-bottom: 5px;
  font-size: 35px;
  font-weight: 500;
}

.analytics .analytics-list .plain-boxes .item .label {
  text-align: center;
}

@media only screen and (min-width: 620px) {
  .analytics {
    padding: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .analytics main {
    max-width: 1200px;
    width: 100%;
  }
}



/* =====================
  Generic (including legal) pages
======================== */
.generic {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.generic main {
  max-width: 650px;
}

.generic .title {
  margin-bottom: 20px;
}

.generic .title-text {
  font-size: 35px;
}

.generic p {
  font-family: var(--primary-typeface);
  font-weight: 400;
}

.generic .page-content h2, .generic .page-content h3, .generic .page-content h4, .generic .page-content h5, .generic .page-content h6 {
  margin-bottom: 5px;
}

.generic .page-content ul, .generic .page-content ol {
  padding-left: 35px;
  margin-top: 4px;
}

@media only screen and (min-width: 450px) {
  .generic {
    padding-top: 100px;
  }
}



/* =====================
  Beta access page
  ========================

  the following code has been adapted from a previous project of mine (called Ottr).
  this is because they both share a similar "Beta Access" page. 
  this only applies to this section of the CSS code. 
 */

.beta-access {
  overflow: hidden;
  background-color: var(--off-black);
}

.beta-access .preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-black);
  z-index: 1;
  transition: opacity .2s;
}

.beta-access .preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.beta-access .preloader .video {
  max-width: 180px;
  height: auto;
}

.beta-access .logo {
  max-width: 25px;
  height: auto;
  margin-bottom: 10px;
}

.beta-access main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.beta-access main > * {
  max-width: 320px;
}

.beta-access .title {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
  text-align: center;
}

.beta-access .below-title-text {
  font-family: var(--primary-typeface);
  text-align: center;
  padding: 0 10px;
  margin-bottom: 18px;
}

.beta-access .small-text {
  font-size: 14px;
  color: var(--off-white-c);
}

.beta-access .small-text a {
  font-size: inherit;
}

.beta-access .slides .slide-item:first-child .small-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  padding: 0 20px;
}

.beta-access .slides {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  width: 90%;
  height: 320px;
}

.beta-access .slides .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 30px;
  height: 100%;
  width: 100%;
  opacity: 0;
  pointer-events: none;

  transition: opacity .2s ease-in-out;
}

  .beta-access .slides .slide-item.content-align-start {
    justify-content: start;
  }

  .beta-access .slides .slide-item.active {
    opacity: 1;
    pointer-events: all;
  }

.beta-access .slides .slide-item .text, .beta-access .slides .slide-item .small-text {
  font-family: var(--primary-typeface);
  text-align: center;
}

  .beta-access .slides .slide-item .text.text-align-left {
    text-align: left;
    align-self: start;
  }

.beta-access .slides .slide-item .text strong {
  font-weight: 500;
}

.beta-access .slides .slide-item ul {
  padding-top: 6px;
  padding-bottom: 14px;
}

.beta-access .slides .slide-item li {
  margin-left: 18px;
}

.beta-access .number-inputs {
  display: flex;
}

.beta-access .number-input {
  background-color: rgba(255, 255, 255, 0.10);
  width: 45px;
  height: 54px;
  font-size: 30px;
  margin-right: 10px;
  border-radius: 10px;
  padding: 8px;
  padding-top: 12px;
  text-align: center;
  font-family: var(--primary-typeface);
}

  .beta-access .number-input:last-child {
    margin-right: 0;
  }

.beta-access form {
  margin-top: 18px;
}

  /* shake animation for invalid form. adapted from https://css-tricks.com/snippets/css/shake-css-keyframe-animation/ */
  .beta-access form.invalid {
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    /* -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px; */
  }

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.beta-access .slide-indicator {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.beta-access .slide-indicator .dot {
  height: 8px;
  width: 8px;
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  margin-right: 8px;

  transition: background-color .2s ease-in-out;
}

  .beta-access .slide-indicator .dot:last-child {
    margin-right: 0;
  }

  .beta-access .slide-indicator .dot.active {
    background-color: var(--off-white-c);
  }

.beta-access .controls {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: -8px;
}

.beta-access .controls button {
  min-width: unset;
  transition: opacity .2s, background-color .2s;
}

.beta-access .back-button {
  display: flex;
  height: 45px;
  width: 45px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
}

.beta-access .back-button .icon {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.80);
}

.beta-access .legal-text-wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
}

.beta-access .legal-text {
  max-width: 320px;
  text-align: center;
}

.beta-access .legal-text a {
  font-weight: 400;
}



/* =====================
  Miscellaneous overrides
======================== */

.home .title-description-wrap.desktop-only {
  display: none;
}

@media only screen and (min-width: 900px) {
  .home .title-description-wrap.desktop-only {
    display: flex;
  }

  .home .title-description-wrap.mobile-only {
    display: none;
  }
}