html, body {
  margin:0;
  padding:0;
}

* {
  box-sizing: border-box;
}

.full-width-bar-secondary {
  padding: 8px;
  background-color: #2D4839;
}

body {
  background-color: white;
  color: black;
  font-family: 'Roboto Mono', monospace;
}

.wavy-underline-copy {
  /* Required to position the underline relative to this element */
  font-size: 1.5rem;
  position: relative; 
  /* This can be inline or inline-block */
  display: inline-block;
  font-family: 'Cal Sans', sans-serif;
}

.wavy-underline-copy::after {
  /* Create the pseudo-element */
  content: ''; 

  /* Position it absolutely underneath the text */
  position: absolute;
  left: 0;
  right: 0; /* Or width: 100% */

  /* This replaces 'text-underline-offset' */
  bottom: -12px; 

  /* This replaces 'text-decoration-thickness' */
  height: 15px; 

  /* This creates the wavy line using a repeating SVG background image */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3e%3cpath fill='none' stroke='%23bbf7d0' stroke-width='2' d='M0 2 C5 4 5 0 10 2 C15 4 15 0 20 2'/%3e%3c/svg%3e");
  background-size: 15px 6; /* Controls the wave frequency and thickness */
  background-repeat: repeat-x;
}

#install-cta {
  background-color: #7A9F7E;
  margin-bottom: 30px;
  padding-left: 40px;
  padding-right: 40px;
  font-family: 'Roboto Mono', monospace;
  font-size: 26px;
  border: 2px solid black;
  border-radius: 15px;
}

#install-cta:hover {
  background-color: #FF623B;
}

.width-restrict {
  max-width: 950px;
  margin: auto;
}

.width-restrict-sub {
  max-width: 650px;
  margin: auto;
}

.width-restrict-wide {
  max-width: 1400px;
  margin: auto;
}

h1 {
    font-size: 70px;
    text-align: center;
    font-weight: normal;
    margin: auto;
    font-family: 'Bricolage Grotesque', sans-serif;
}

#main-headline {
  color: black;
  text-decoration: none;
}

#main-headline:hover {
  text-decoration: none;
}

#main-headline:visited {
  color: black;
  text-decoration: none;
}

#main-headline-sm {
  color: black;
  text-decoration: none;
  font-size: 50px;
}

#main-headline-sm:hover {
  text-decoration: none;
}

#main-headline-sm:visited {
  color: black;
  text-decoration: none;
}

.no-dec-link:visited {
  color: black;
}

.no-dec-link-grey {
  color: grey;
}

.no-dec-link-grey:visited {
  color: grey;
}

.no-dec-link-white {
  color: white;
}

.no-dec-link-white:visited {
  color: white;
}

h2 {
    font-size: 34px;
    text-align: center;
    font-weight: normal;
    margin: auto;
    font-family: 'Roboto Mono', monospace;
}

h3 {
    font-size: 24px;
    text-align: center;
    font-weight: normal;
    margin: auto;
    font-family: 'Roboto Mono', monospace;
}

h4 {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    margin: auto;
    font-family: 'Roboto Mono', monospace;
}

h5 {
  font-family: 'Roboto Mono', monospace;
  font-size: 20px;
}

.btn {
    font-size: 22px;
    text-align: center;
    margin: auto;
    font-family: 'Roboto Mono', monospace;
}

[type='radio'] {
  display: none;
}

#currencySelect {
  margin-bottom: 20px;
  text-align: center;
}

label.btn-secondary {
  background: #F8F8F8;
  color: black;
  font-size: 14px;
}

label.btn-secondary:hover {
  background: #9DE9A5;
  color: black;
}

ul {
  list-style-position: none;
}

li {
  list-style-type: none;
}

#ufh-logo {
  width: 200px;
  padding-top:20px;
  padding-bottom:20px;
  margin:auto;
}

#ufh-logo-sm {
  width: 150px;
  padding-bottom:10px;
  margin:auto;
}

#ti-logo {
  width: 150px;
  padding-top:40px;
  margin:auto;
  display:block;
}

.threadi-p {
  font-family: 'Cal Sans', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #bbf7d0;
  text-decoration-style: wavy;
}

.threadi-footer-logo {
  font-size: 28px;
  font-family: 'Cal Sans', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: #bbf7d0;
  text-decoration-style: wavy;
}

.threadi-footer-logo a,
.threadi-footer-logo a:visited {
  text-decoration: none;
  color: inherit;
}

.threadi-p a,
.threadi-p a:visited {
  text-decoration: none;
  color: inherit;
}


.usage-guide-img {
  width:100%;
  height:auto;
  border:2px solid #DFDFDF;
  margin:auto;
  display:block;
  margin-top: 25px;
  margin-bottom: 25px;
}

button:hover {
  cursor: pointer;
}

.btn-link {
  color: black;
}

.btn-link:hover {
  color: white;
  text-decoration: none;
}

.sub-unlimited {
  color: #F9D9A5;
}

.sub-unlimited-body {
  color: white;
}

.via-stripe {
  font-size: 14px;
}

.payment-cta {
  font-size: 16px;
}

.footer-links {
  text-decoration: none;
  font-size:15px;
  color: black;
}

.footer-links:hover {
  text-decoration: none;
  color: #434343;
}

.footer-links:visited {
  text-decoration: none;
  color: black;
}

.table-scrollable {
  overflow: auto;
}

th {
  font-weight: normal;
}

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #FF7A59;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  animation: spin 2s linear infinite;
}

.little-loader {
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #FF7A59;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: little-spin 1s linear infinite;
}

.beta-icon {
  border: 5px solid black;
  border-radius: 10%;
  width: 100px;
  height: 40px;
  margin: auto;
  font-family: "Bungee Shade", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #31e981;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes little-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* SMALL SCREEN CONDITIONALS */

@media screen and (max-width: 600px) {
  h2 {
    font-size: 26px;
  }
  #install-cta {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
  }
  h1 {
    font-size: 50px;
  }
  h3 {
    font-size: 20px;
  }
  .hide-600 {
    display: none;
  }
  .warning-narrow-screen {
    visibility: visible;
  }
  .logged-in-user-info {
    font-size: 13px;
  }
  .bhpc-top-right-options {
    font-size: 13px;
  }
  .cta-hide-sm {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  h2 {
    font-size: 22px;
  }
  #install-cta {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 18px;
  }
  h1 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .logged-in-user-info {
    font-size: 12px;
  }
  .bhpc-top-right-options {
    font-size: 12px;
  }
}

@media screen and (min-width: 600px) {
  .warning-narrow-screen {
    display: none;
  }
}