:root {
  --font-base: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: SourceCodePro;
  src: url(/assets/fonts/SourceCodePro/static/SourceCodePro-Medium.ttf);
  font-weight: 500;
}

* {
  font-family: Montserrat;
  padding: 0;
  margin: 0;
}

html {
  overflow: unset;
  overscroll-behavior: none;
}

body {
  height: 100%;
  width: 100%;
  overflow: auto;
  overscroll-behavior: none;
}

p, span, li {
  line-height: 20px;
}

main {
  width: 100%;
  padding: 5vh 0;
}

h1, h2, h3, h4, h5, p {
  cursor: text;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
}

h1 {
  font-size: 28px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 14px;
}

button, a, button *, a * {
  cursor: pointer;
}
button[disabled], button[disabled] * {
  cursor: default;
}

div.spacer {
  width: 100%;
  height: 100%;
}

button {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

button.div {
  color: #000;
  background: none;
  border: none;
  outline: none;
}

a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
  text-decoration: underline;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:hover {
  color: #4169E1;
}

button.a {
  background: none;
  border: none;
  outline: none;
  text-decoration: underline;
  font-weight: 500;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
}
button.a:hover {
  color: #000;
}

button.a-hover {
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  font-size: 14px;
}
button.a-hover:hover {
  text-decoration: underline;
}

button.primary {
  width: 100%;
  padding: 15px 0px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  outline: none;
  border-radius: 25px;
  transition: background-color 0.3s;
  font-size: 14px;
  font-weight: 500;
}
button.primary:hover {
  border: 1px solid #4169E1;
  background-color: #4169E1;
  color: #fff;
}
button.primary.loading {
  background-color: #4169E1;
  min-height: 50px;
}
button.primary[disabled] {
  pointer-events: none;
  background-color: #555;
  border: 1px solid #555;
}

button.secondary {
  width: 100%;
  padding: 15px 0px;
  background-color: #fff;
  color: #4169E1;
  border: 1px solid #4169E1;
  outline: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
}
button.secondary:hover {
  background-color: #f2f2f2;
}

button.cancel {
  width: 100%;
  padding: 15px 0px;
  background-color: #fff;
  color: red;
  border: 1px solid red;
  outline: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
}
button.cancel:hover {
  background-color: #f2f2f2;
}
button.cancel[disabled] {
  background-color: #f2f2f2;
}

a.button {
  display: block;
  text-align: center;
}

a.button.primary {
  width: 100%;
  padding: 15px 0px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  outline: none;
  border-radius: 25px;
  transition: background-color 0.3s;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  text-decoration: none;
}
a.button.primary:hover {
  border: 1px solid #4169E1;
  background-color: #4169E1;
  color: #fff;
}
a.button.primary.loading {
  background-color: #4169E1;
  min-height: 50px;
}
a.button.primary[disabled] {
  pointer-events: none;
  background-color: #555;
  border: 1px solid #555;
}

a.button.secondary {
  width: 100%;
  padding: 15px 0px;
  background-color: #fff;
  color: #4169E1;
  border: 1px solid #4169E1;
  outline: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
a.button.secondary:hover {
  background-color: #f2f2f2;
}

p.secondary {
  color: #333;
}

a.button-primary {
  width: calc(100% - 50px);
  padding: 15px 0px;
  background-color: #4169E1
  color: #fff;
  border: 1px solid #4169E1
  outline: none;
  border-radius: 25px;
  transition: color 0.3s;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 25px;
  display: block;
  text-align: center;
}
a.button-primary:hover {
  background-color: #000;
  color: #fff;
}
a.button-primary.loading {
  background-color: #fff;
  min-height: 50px;
}

a.button-secondary {
  width: calc(100% - 50px);
  padding: 15px 0px;
  background-color: #fff;
  color: #000;
  border: 1px solid #4169E1
  outline: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 25px;
  display: block;
  text-align: center;
}
a.button-secondary:hover {
  background-color: #f2f2f2;
}

[placeholder]:empty:before {
  content: attr(placeholder);
  color: #555;
  cursor: text;
}

#react-root {
  position: relative;
}

.terms-of-service-home, .privacy-policy-home {
  padding: 5vh 5vw;
}

.terms-of-service, .privacy-policy {
  width: 550px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .terms-of-service, .privacy-policy {
    width: 90%
  }
}

.terms-of-service-home *, .privacy-policy-home * {
  font-size: 12px;
}
.terms-of-service-home h1, .privacy-policy-home h1 {
  font-size: 22px;
}
.terms-of-service-home h2, .privacy-policy-home h2 {
  font-size: 18px;
}

.article-home {
  width: 100%;
  font-size: 14px;
  margin: 0 auto;
  padding: 0;
}

.article-home .cover {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: hidden;
  max-height: 80vh;
}
.article-home .cover img {
  width: 100%;
}

.article-home .content {
  width: 700px;
  margin: 0px auto;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .article-home .content {
    width: 90%;
  }
}

.article-home p {
  margin-bottom: 10px;
}

.article-home ul {
  padding-left: 30px;
  margin-bottom: 10px;
}

.article-home h1 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.article-home h2 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.article-home h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.what-is-a-proxy img {
  position: relative;
  top: 3vh;
}
@media only screen and (max-width: 768px) {
  .what-is-a-proxy img {
    top: 0vh;
  }
}

.what-is-the-difference-between-a-proxy-and-a-vpn img {
  position: relative;
  top: 3vh;
}
@media only screen and (max-width: 768px) {
  .what-is-the-difference-between-a-proxy-and-a-vpn img {
    top: 0vh;
  }
}

.how-to-detect-a-proxy img {
  position: relative;
  top: -9vh;
}
@media only screen and (max-width: 768px) {
  .how-to-detect-a-proxy img {
    top: 0vh;
  }
}
@media only screen and (max-width: 480px) {
  .how-to-detect-a-proxy img {
    top: 0vh;
  }
}

.contact-us-home {
  background-color: #f2f2f2;
  padding-bottom: 5vh;
}

.contact-us-home main {
  width: 50%;
  padding: 0 5%;
  margin-left: 5%;
}
@media only screen and (max-width: 768px) {
  .contact-us-home main {
    width: 90%;
    margin: 0;
  }
}

.contact-us-home h1 {
  font-size: 28px;
  font-weight: 500;
  padding-top: 30px;
  padding-bottom: 15px;
}

.contact-us-home .description {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-size: 14px;
}

.contact-us-home .contact-methods {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  font-size: 14px;
}

.contact-us-home .contact-methods .panel {
  position: relative;
  padding: 15px;
}

.required-fields {
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
}

label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  cursor: text;
}

.input {
  margin-bottom: 20px;
}

.input .validation {
  margin-top: 10px;
  font-size: 14px;
}
.input .validation .validation-field {
  display: flex;
  align-items: start;
  margin-bottom: 5px;
}
.input .validation .validation-field > *:first-child {
  margin-right: 5px;
}

.input .validation .validation-field img {
  margin-top: 5px;
}

input {
  font-size: 14px;
}

input[disabled] {
  pointer-events: none;
}

input[type="text"] {
  width: calc(100% - 30px);
  padding: 15px;
  outline: none;
  border-radius: 25px;
  border: 1px solid #c4c4c4;
  transition: border 0.3s;
}
input[type="text"]:focus,
input[type="text"]:hover
{
  border: 1px solid #4169E1;
}

input[type="password"] {
  width: calc(100% - 30px);
  padding: 15px;
  outline: none;
  border-radius: 25px;
  border: 1px solid #c4c4c4;
  transition: border 0.3s;
}
input[type="password"]:focus,
input[type="password"]:hover
{
  border: 1px solid #4169E1;
}

input[type="email"] {
  width: calc(100% - 30px);
  padding: 15px;
  outline: none;
  border-radius: 25px;
  border: 1px solid #c4c4c4;
  transition: border 0.3s;
}
input[type="email"]:focus,
input[type="email"]:hover
{
  border: 1px solid #4169E1;
}

input.cancel {
  border: 1px solid red;
}
input.cancel:hover, input.cancel:focus {
  border: 1px solid red;
}

.input.checkbox {
  margin-bottom: 15px;
  font-size: 12px;
}

.input.checkbox span.label {
  user-select: none;
}

.input.checkbox input[type="checkbox"] {
  margin-top: 3px;
  margin-left: 1px;
  margin-right: 10px;
}

.input.checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

input[type="checkbox"] {
  outline: none;
  color: #333;
  accent-color: #4169E1;
  border: 1px solid #4169E1
  cursor: pointer;
  transition: color 0.3s;
}
input[type="checkbox"]:focus,
input[type="checkbox"]:hover {
  color: #000;
}

.contact-us-home h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us-home .hr {
}

.contact-us-home .textarea-container {
  width: 100%;
  overflow-x: hidden;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  transition: border 0.3s;
}

.contact-us-home .textarea-container.active {
  border: 1px solid #000;
}

.contact-us-home textarea {
  padding: 5px 10px;
  width: calc(100% - 5px);
  resize: none;
  height: 15vh;
  border: none;
  outline: none;
}

.contact-us-home .input.message {
  position: relative;
}

.characters-remaining {
  font-size: 12px;
  text-align: right;
  color: #f2f2f2;
  transition: color 0.3s;
}
.characters-remaining.active {
  color: #000;
}
.characters-remaining.error {
  color: red;
}

.input.error .error-message {
  display: block;
}
.input.error label {
  color: red;
}
.error-message {
  color: red;
  margin-top: 5px;
  font-size: 12px;
  display: none;
}

.contact-us-home .policy {
  margin-top: 30px;
  font-size: 12px;
  padding: 0px 15px;
}

.legal > h1 {
  margin-bottom: 3vh;
}

.legal > h2 {
  margin-top: 1vh;
  margin-bottom: 2vh;
  padding-top: 1vh;
}

.legal > p {
  margin-bottom: 2vh;
}

.legal > ul {
  padding-left: 5vw;
}

.legal > ul > li {
  margin-bottom: 1vh;
}

.legal > .last-updated {
  margin-bottom: 2vh;
}

.nav-bars {
}

.nav-bar-padding {
  height: 81px;
}
@media only screen and (max-width: 768px) {
  .nav-bar-padding {
    height: 56px;
  }
}

.nav-top {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  pointer-events: none;
  border-bottom: 1px solid #000;
}

.nav-top > nav {
  transition: background-color 0.25s, border-color 0.25s;
  background-color: transparent;
  border-bottom: 1px solid;
  border-color: transparent;
}
.nav-top.opaque > nav {
  background-color: #fff;
  border-bottom: 1px solid #000;
  border-color: #f2f2f2;
}

.nav-top > nav.primary {
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
  padding-top: 25px;
  padding-bottom: 20px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .nav-top > nav.primary {
    height: 28px;
    padding-top: 17px;
    padding-bottom: 10px;
  }
}

.nav-top > nav.primary > .left {
  display: flex;
  width: 33%;
  pointer-events: none;
}
.nav-top > nav.primary > .left {
  pointer-events: all;
}

.nav-top > nav.primary > .middle {
  width: 33%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-top > nav.primary > .middle * {
  pointer-events: all;
}

.nav-top > nav.primary > .right {
  display: flex;
  flex-direction: row-reverse;
  width: 33%;
  pointer-events: none;
}
.nav-top > nav.primary > .right * {
  pointer-events: all;
}

.nav-top > nav.search {
  display: flex;
  justify-content: start;
  height: 28px;
  padding: 8px 0px;
}

.nav-top .right .anchors {
  position: relative;
  right: 35px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .nav-top .right .anchors {
    right: 20px;
  }
}


#react-root > .page.layout {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#react-root > .page.navbar-layout {
  min-height: 88vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#react-root > nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12vh;
  border-bottom: 1px solid #c4c4c4;
}
#react-root > nav .logo img {
  width: 200px;
  height: auto;
}

#react-root > nav .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12vh;
  border-bottom: 1px solid #c4c4c4;
}
#react-root > nav .logo img {
  width: 200px;
  height: auto;
}

.absolute-elements {
  position: relative;
}

footer {
  font-size: .8em;
  background-color: #fff;
  color: #000;
  font-weight: 500;
}

footer .copyright {
  padding-top: 6vh;
  padding-bottom: 6vh;
}

footer .copyright .statement {
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer.navbar-layout {
  color: #000;
  background-color: #fff;
  border-top: 1px solid #c4c4c4;
}

footer.navbar-layout {
  font-size: .8em;
  background-color: #fff;
  color: #000;
  font-weight: 500;
}

footer.navbar-layout .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 42px;
  margin-bottom: 10px;
}
footer.navbar-layout .logo img {
  width: 200px;
}

footer.navbar-layout .description {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  font-size: 14px;
}

footer.navbar-layout nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  font-size: 14px;
  padding-left: 0%;
}
@media only screen and (max-width: 768px) {
  footer.navbar-layout nav {
    flex-direction: column;
    padding-left: 15%;
    padding-right: 15%;
  }
}
footer.navbar-layout nav a {
  display: inline-block;
  text-decoration: none;
}

footer.navbar-layout .copyright {
  margin-top: 30px;
  padding-top: 6vh;
  padding-bottom: 6vh;
}

footer.navbar-layout .copyright .statement {
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.disclaimer {
  font-size: 14px;
  padding-left: 15px;
  color: #000;
}
.disclaimer a {
  font-size: 14px;
  color: #000;
}

#create-account-home .disclaimer {
  margin-top: 10px;
}

.x-icon {
}

.x-icon svg {
  width: 10px;
  height: 10px;
  fill: #000;
  opacity: 0.7;
}

.link-placeholder {
  color: #666;
}

.spinner-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 12px;
}

.spinner {
  position: absolute;
  left: calc(50% + 10px);
  top: 15px;
  animation: rotate 2s linear infinite;
  z-index: 2;
  margin: -25px 0 0 -25px;
  width: 30px;
  height: 30px;
}

.spinner .path {
  stroke: #4169E1;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

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

#not-found-home {
}

#not-found-home {
  text-align: center;
  padding-top: 40vh;
  padding-bottom: 50vh;
  padding-left: 4vw;
  padding-right: 4vw;
  width: calc(100% - 8vw);
}

#not-found-home .back-home {
  margin: auto;
  margin-top: 15px;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  #not-found-home .back-home {
    width: 80%;
  }
}

#landing-home {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#landing-home section {
}
@media only screen and (max-width: 768px) {
  #landing-home section {
    width: 90%;
    padding: 5% 0;
  }
}

#landing-home section:first-child {
}
@media only screen and (max-width: 768px) {
  #landing-home section:first-child {
  }
}

#landing-home .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
#landing-home .logo img {
  width: 500px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  #landing-home .logo img {
    width: 90%;
  }
}

#landing-home .description {
  font-weight: 500;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

#landing-home .ip-address {
  display: flex;
  justify-content: center;
  align-items: center;
}

#landing-home .ip-address input {
  font-weight: 600;
  color: #555;
}
#landing-home .ip-address button {
  width: min(200px, 38%);
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  #landing-home .ip-address button {
    width: 38%;
  }
}

#landing-home nav.links {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  margin-top: 25px;
  font-size: 14px;
  padding-left: 0%;
}
@media only screen and (max-width: 768px) {
  #landing-home nav.links {
    flex-direction: column;
    padding-left: 15%;
    padding-right: 15%;
  }
}
@media only screen and (max-width: 480px) {
  #landing-home nav.links {
  }
}

#landing-home nav.links .col {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  #landing-home nav.links .col {
    flex-direction: column;
  }
}
#landing-home nav.links .col > * {
  margin-bottom: 10px;
}

#landing-home .article.links {
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  #landing-home .article.links {
    margin-top: 0px;
  }
}

footer nav.links .col {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  footer nav.links .col {
    flex-direction: column;
  }
}
footer nav.links .col > * {
  margin-bottom: 10px;
}

footer nav.links {
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  footer nav.links {
    margin-top: 0px;
  }
}

nav.links a, nav.links button {
  margin: 0px 10px;
  text-align: left;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  nav.links a, nav.links button {
    margin-bottom: 10px;
  }
}

#results-home .results {
  margin-top: 15px;
  width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #results-home .results {
    width: 90%;
  }
}

#results-home .results .result {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#results-home .results .result > img {
  width: 100px;
}
#results-home .results .result > p {
  margin-top: 10px;
}

#results-home .results .field {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 25px;
  width: 90%;
}

#results-home .results .field > .name {
  font-weight: 600;
}

#results-home .results .field > .value {
  font-weight: 500;
  border: 1px solid #c4c4c4;
  padding: 15px 20px;
  border-radius: 25px;
  margin-top: 5px;
  width: 100%;
  text-align: center;
}


#results-home nav.links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 600px;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  #results-home nav.links {
    flex-direction: column;
    width: 90%;
  }
}

#results-home nav.links a, #results-home nav.links button {
  margin: 0px 10px;
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  #results-home nav.links a, #results-home nav.links button:first-child {
    margin-bottom: 10px;
  }
}

#results-home.unknown nav.links {
  width: 300px;
}

#pricing-home {
}

#pricing-home .description {
  width: 768px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #pricing-home .description {
    width: 90%;
  }
}

#pricing-home .description h1 {
  font-weight: 600;
}

#pricing-home .pricing {
  margin: 0 auto;
  margin-top: 10px;
  width: 768px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #pricing-home .pricing {
    width: 90%;
    flex-direction: column;
    justify-content: flex-start;
  }
}

#pricing-home .pricing .option {
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  width: calc(50% - 30px);
  padding: 15px;
  height: 50vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  #pricing-home .pricing .option {
    height: 30vh;
  }
}
#pricing-home .pricing .option:first-child {
  margin-right: 12px;
}
#pricing-home .pricing .option:last-child {
  margin-left: 12px;
}
@media only screen and (max-width: 768px) {
  #pricing-home .pricing .option {
    width: calc(100% - 30px);
    margin-bottom: 10px;
  }
  #pricing-home .pricing .option:first-child {
    margin-right: 0px;
  }
  #pricing-home .pricing .option:last-child {
    margin-left: 0px;
  }
}

#pricing-home .pricing .option > div {
  width: 100%;
}

#pricing-home .pricing .option h1 {
  font-weight: 600;
  font-size: 28px;
}
#pricing-home .pricing .option .price {
  margin-top: 5px;
  font-weight: 500;
  font-size: 16px;
  min-height: 20px;
}
@media only screen and (max-width: 768px) {
  #pricing-home .pricing .option .price {
    min-height: 0px;
  }
}

#pricing-home .pricing .option .line-items {
  margin-top: 20px;
}

#pricing-home .pricing .option .line-items .line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5px;
}

.bullet {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #000;
}

#pricing-home .pricing .option .line > .bullet {
  margin-right: 5px;
}

#pricing-home .pricing .option .select {
}

.form {
  width: min(600px, 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  padding: 6vh 15px;
  margin: 50px auto;
}
@media only screen and (max-width: 768px) {
  .form {
    width: calc(min(600px, 90%) - 30px);
  }
}

.form > * {
  width: 100%;
}

.form > .inputs {
}

.form > .inputs .password-requirements {
  font-size: 12px;
  padding-left: 15px;
  color: #555;
  margin-top: 5px;
}

.form > nav.links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#forgot-password-home .resend {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
#forgot-password-home .resend button {
  width: 200px;
}
#forgot-password-home .resend span {
  margin-left: 15px;
  font-size: 14px;
}

#forgot-password-home .message {
  color: #000;
  font-size: 14px;
  padding: 0 5px;
}

#upgrade-home > h1 {
  font-weight: 600;
}

#upgrade-home .pricing .option {
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  width: calc(50% - 35px);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  text-align: left;
}
#upgrade-home .pricing .option:first-child {
  margin-right: 5px;
}
#upgrade-home .pricing .option:last-child {
  margin-left: 5px;
}

@media only screen and (max-width: 768px) {
  #upgrade-home .pricing .option {
    height: 30vh;
    width: calc(100% - 30px);
    margin-bottom: 10px;
  }
  #upgrade-home .pricing .option:first-child {
    margin-right: 0px;
  }
  #upgrade-home .pricing .option:last-child {
    margin-left: 0px;
  }
}

#upgrade-home .pricing .option h2 {
  font-size: 18px;
  font-weight: 600;
}

#upgrade-home .pricing .option.active {
  border: 1px solid #4169E1;
}

#upgrade-home .pricing .option > div {
  width: 100%;
}

#upgrade-home .pricing .option h1 {
  font-weight: 600;
  font-size: 28px;
}
#upgrade-home .pricing .option .price {
  margin-top: 5px;
  font-weight: 500;
  font-size: 16px;
}

#upgrade-home .pricing .option .line-items {
  margin-top: 20px;
}

#upgrade-home .pricing .option .line-items .line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5px;
}

.bullet {
  min-width: 5px;
  min-height: 5px;
  border-radius: 5px;
  background-color: #000;
}

#upgrade-home .pricing {
  margin-top: 20px;
  display: flex;
}

#upgrade-home .pricing .option .line > .bullet {
  margin-right: 5px;
}

#upgrade-home .pricing .option .select {
}

#upgrade-home .instructions {
  font-size: 12px;
  margin-top: 30px;
}

#upgrade-home .instructions a {
  font-size: 12px;
}

#upgrade-home label a {
  font-size: 12px;
}

#upgrade-home .inputs {
  margin-top: 20px;
}

#upgrade-home nav.buttons {
  margin-top: 30px;
}

#dashboard-home {
  width: 600px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #dashboard-home {
    width: 96%;
  }
}

#dashboard-home section {
  border: 1px solid #c4c4c4;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #dashboard-home section {
  }
}
#dashboard-home section:last-child {
  margin-bottom: 0px;
}

#dashboard-home .ip-address {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

#dashboard-home .ip-address input {
  font-weight: 600;
  color: #555;
}
#dashboard-home .ip-address button {
  width: min(200px, 38%);
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  #dashboard-home .ip-address button {
    width: 42%;
  }
}

#dashboard-home .results {
  margin-top: 15px;
  width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 10px 0px;
}
@media only screen and (max-width: 768px) {
  #dashboard-home .results {
    width: 90%;
  }
}

#dashboard-home .results .result {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#dashboard-home .results .result > img {
  width: 100px;
}
#dashboard-home .results .result > p {
  margin-top: 10px;
}

#dashboard-home .results .field {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 25px;
  width: 90%;
}

#dashboard-home .results .field > .name {
  font-weight: 600;
}

#dashboard-home .results .field > .value {
  font-weight: 500;
  border: 1px solid #c4c4c4;
  padding: 15px 20px;
  border-radius: 25px;
  margin-top: 5px;
  width: 100%;
  text-align: center;
}

#dashboard-home .api-key {
  margin-top: 10px;
}

#dashboard-home .generate {
  margin-top: 10px;
}

#dashboard-home .rate-limits {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#dashboard-home .api-key > .value {
  font-weight: 500;
  border: 1px solid #c4c4c4;
  padding: 15px 20px;
  border-radius: 25px;
  margin-top: 5px;
  min-height: 19px;
  text-align: center;
  overflow-x: scroll;
}

pre, code {
  font-family: SourceCodePro;
}

#dashboard-home .docs-section {
  margin-top: 20px;
  font-size: 14px;
}
#dashboard-home .docs-section > h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
#dashboard-home .docs-section pre {
  overflow-x: scroll;
  border: 1px solid #c4c4c4;
  background-color: #eee;
  padding: 8px 10px;
}
#dashboard-home .docs-section pre code {
}
#dashboard-home .docs-section .list-item code {
  background-color: #eee;
  padding: 2px 5px;
}

#dashboard-home .docs-section .list {
  margin-top: 20px;
}
#dashboard-home .docs-section .list .list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 15px;
}
#dashboard-home .docs-section .list .list-item > .bullet {
  margin: 7px;
}

.hide-scrollbar {
  /* For Firefox */
  scrollbar-width: none;
  /* For IE and Edge */
  -ms-overflow-style: none;
}

/* For Chrome, Safari, Opera, and other WebKit browsers */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.selector {
  width: 100%;
  position: relative;
  user-select: none;
  cursor: pointer;
}

.selector .options {
  z-index: 100;
  position: absolute;
  width: 100%;
  border-left: 1px solid #4169E1;
  border-right: 1px solid #4169E1;
  overflow-x: hidden;
}

.selector .options .option-items {
  width: calc(100% + 15px);
  overflow-y: scroll;
  max-height: 50vh;
}

.selector.down .options {
  z-index: 100;
  top: calc(100% - 2px);
  bottom: unset;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #4169E1;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #fff;
  overflow-x: hidden;
}
.selector.up .options {
  bottom: calc(100% - 4px);
  top: unset;
  border-top: 1px solid #4169E1;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.selector .selected {
  display: block;
  width: 100%;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  outline: none;
  color: #000;
  background-color: #fff;
  font-weight: 500;
  text-align: left;
  transition: border-color 0.2s;
}
.selector .selected:hover {
  border-color: #4169E1;
}

.selector .selected .selected-text {
  outline: none;
  display: block;
  padding: 15px;
  min-height: 12px;
  padding-right: 25px;
  font-size: 12px;
}

.selector .selected.dropdown {
  border-bottom: 1px solid #4169E1;
  border-left: 1px solid #4169E1;
  border-right: 1px solid #4169E1;
  border-top: 1px solid #4169E1;
  transition: border-color 0s;
}

.selector.down .selected.dropdown {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.selector.up .selected.dropdown {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.selector .option {
  display: block;
  width: 100%;
  padding: 10px 0px;
  border: none;
  outline: none;
  color: #000;
  background-color: #fff;
  font-weight: 500;
  text-align: left;
}
.selector .option {
  border-radius: 0px;
  padding: 10px 15px;
}
.selector.down .option.last {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.selector.up .option.first {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.selector .option:hover {
  background-color: #4169E1;
  color: #fff;
}
.selector .selected:hover {
  color: #000;
  background-color: #fff;
}
.selector .option:disabled {
  color: #555;
  cursor: default;
  pointer-events: none;
}

.selector .caret {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
  transform: rotate(90deg);
  position: absolute;
  right: 12px;
  top: 40%;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.selector.open .caret {
  transform: rotate(-90deg);
}
.selector .caret svg {
  width: 12px;
  height: 12px;
}

#manage-subscription-home {
  padding: 3vh 15px;
}

#manage-subscription-home .inputs {
  margin-top: 10px;
}

#manage-subscription-home > div.cancel {
  margin-top: 20px;
}

#manage-subscription-home nav.buttons {
  margin-top: 20px;
}

#manage-subscription-home .success-message {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #manage-subscription-home .success-message {
    text-align: left;
  }
}
