: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";

  --rounded-full: 9999px;
  --rounded-md: 0.375rem;

  --claimyr-blue: #2A3856;
  --claimyr-light-blue: #52B3D0;
  --claimyr-pink: #ED716D;
  --claimyr-red: #f02849;
  --claimyr-red-dark: #d60f30;
  --claimyr-green: #1CCF2E;

  --black: #000;
  --white: #fff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;

  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-200: #fef08a;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;
  --yellow-900: #713f12;

  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Ubuntu, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
}

body {
  position: relative;
  background-color: var(--gray-100);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, p, html, body, section {
  margin: 0;
}

#login-register {
  width: 42%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #login-register {
    width: 90%;
  }
}

#login-register .logo-section {
  margin: 50px auto;
}

#login-register .logo-section > img {
  margin-left: 25px;
}

#login-register .onboarding-section {
  padding: 50px 80px 70px 80px;
  background-color: #fff;
  box-shadow: 0px 12px 15px var(--gray-300);
  /*
  height: 230px;
  */
}
@media only screen and (max-width: 768px) {
  #login-register .onboarding-section {
    padding: 50px 20px 70px 20px;
  }
}

#login-register .form {
  margin-top: 20px;
}
#login-register .form > .input-group {
  margin-bottom: 10px;
}
#login-register .form > .input-group > input {
  margin-top: 3px;
  width: calc(100% - 30px);
  height: 42px;
  font-size: 16px;
  padding: 0px 15px;
  border-radius: 5px;
  border: 1px solid lightgrey;
}

#login-register .form > .signup {
  text-align: center;
}

#login-register .auth-code-form {
  margin-top: 20px;
}
#login-register .auth-code-form > input.auth-code {
  margin-top: 10px;
  width: calc(100% - 30px);
  height: 42px;
  font-size: 16px;
  padding: 0px 15px;
  border-radius: 5px;
  border: 1px solid lightgrey;
}

#login-register .button-container {
  margin-top: 25px;
}

#login-register .password-hint {
  margin-top: 5px;
  font-size: 12px;
  color: var(--gray-500);
  transition: opacity 0.25s;
  opacity: 1;
}
#login-register .password-hint.hidden {
  opacity: 0;
}

#login-register .show-password-button-container {
  position: relative;
}
#login-register .show-password-button-container > .show-password-button {
  position: absolute;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  top: -31px;
  right: 5px;
}
#login-register .show-password-button-container > .show-password-button > svg {
  fill: var(--gray-400);
}

#login-register button.continue {
  width: 100%;
  background-color: var(--claimyr-blue);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 0px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  height: 42px;
}
#login-register button.continue > .spinner > img {
  height: 18px;
}

#login-register .disclaimer {
  margin-top: 15px;
  color: var(--gray-400);
  font-size: 12px;
}

#login-register .signup-section {
  padding: 20px 0px;
}

#login-register .signup {
  margin-top: 5px;
  margin-left: 10px;
}

#login-register .signup > a {
  margin-left: 15px;
  color: blue;
  text-decoration: none;
}

#login-register .footer-section {
}

#login-register .footer {
  margin-top: 5px;
  margin-left: 10px;
}
#login-register .footer > * {
  color: var(--gray-500);
}
#login-register .footer > a {
  margin-left: 15px;
  color: var(--gray-500);
  text-decoration: none;
}

#top-nav-spacer {
  height: 50px;
}

#top-nav {
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-300);
  height: 30px;
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}

#top-nav .business-name {
  padding-left: 30px;
  height: 100%;
  display: flex;
  cursor: default;
  align-items: center;
  white-space: nowrap;
}

#top-nav .spacer {
  width: 50%;
}

#top-nav .claimyr-logo {
  padding-top: 2px;
}
#top-nav .claimyr-logo img {
  width: 100px;
}

#top-nav .user-profile {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 15px;
}

#top-nav .user-profile > button {
  width: 100%;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

#top-nav .user-menu {
  position: absolute;
  bottom: -77px;
  z-index: 10;
  background-color: #fff;
  width: 106px;
  border-radius: 5px;
}

#top-nav .user-menu button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 10px 15px;
}
#top-nav .user-menu button:hover {
  background-color: var(--gray-50);
}

#top-nav .home-logo {
}
#top-nav .home-logo > img {
  width: 30px;
}

#footer {
  all: initial;
  align-items: center;
  background-color: var(--gray-800);
  display: flex;
  flex-direction: column;
  font-family: var(--font-base);
  padding: 3rem 0;
}
@media only screen and (max-width: 768px) {
  #footer {
    margin-bottom: var(--nav-bottom-height);
  }
}
#footer .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
#footer .links a {
  color: var(--gray-300);
  padding: .5rem 1rem;
  text-decoration: none;
}
#footer img {
  height: 2rem;
}
#footer .copyright-statement {
  display: inline-block;
  color: var(--gray-500);
}

#dashboard {
  padding-bottom: 50px;
}

#dashboard main {
  min-height: 100vh;
  width: 600px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  #dashboard main {
    width: calc(100% - 60px);
  }
}

#phone-line-search-section {
  margin-top: 15px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

#phone-line-search {
  position: relative;
}
#phone-line-search > .search > input {
  font-size: 22px;
  padding: 10px 15px;
  width: calc(100% - 30px);
  border-radius: 15px;
  border: 1px solid var(--claimyr-red);
  outline: none;
  background-color: var(--claimyr-red);
  color: #fff;
  cursor: pointer;
}
#phone-line-search > .search > input.open {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: #fff;
  color: #000;
  cursor: text;
  border: 1px solid lightgrey;
}
#phone-line-search > .search > .dropdown-karat {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  pointer-events: none;
}
#phone-line-search > .results {
  width: 100%;
  position: absolute;
  background-color: #fff;
  max-height: 50vh;
  overflow-y: scroll;
  overflow-x: hidden;
  border-bottom: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  border-left: 1px solid lightgrey;
  z-index: 10;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
#phone-line-search > .results > .result {
  width: 100%;
}
#phone-line-search > .results > .result > button {
  font-size: 22px;
  border: none;
  background-color: #fff;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 10px 15px;
  outline: none;
  color: #000;
}
#phone-line-search > .results > .result > button:hover {
  background-color: var(--claimyr-red);
  color: #fff;
}

#send-call-section {
}
#send-call-section > h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

#send-call {
  background-color: #fff;
  border: 1px solid #000;
  border-top: none;
}

#send-call nav {
  border-bottom: 1px solid #000;
  background: var(--gray-100);
  width: calc(100% + 2px);
  position: relative;
  left: -1px;
}

#send-call nav button {
  background: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  border-top: 1px solid #000;
  border-right: none;
  border-left: 1px solid #000;
  border-top-right-radius: 5px;
  padding: 3px 8px;
  position: relative;
  bottom: -1px;
}
#send-call nav button.active {
  cursor: default;
  border-bottom: 1px solid #fff;
}
#send-call nav button.rightmost {
  border-right: 1px solid #000;
}

#send-call .main {
  padding: 20px 30px;
}

#send-call .input-group-row {
  display: flex;
}
@media only screen and (max-width: 768px) {
  #send-call .input-group-row {
    flex-direction: column;
  }
}

#send-call .input-group {
  margin-bottom: 10px;
}

#send-call .input-group input {
  height: 30px;
  font-size: 18px;
  padding-left: 15px;
  width: calc(100% - 20px);
}
#send-call .input-group.phone-number input {
  width: 390px;
}
@media only screen and (max-width: 768px) {
  #send-call .input-group.phone-number input {
    width: calc(100% - 20px);
  }
}

#send-call .input-group.extension {
  padding-left: 5px;
}

#send-call .input-group.extension input {
  width: 100px;
}
@media only screen and (max-width: 768px) {
  #send-call .input-group.extension input {
    width: calc(100% - 20px);
  }
}

#send-call .available-sends {
  margin-top: 15px;
}

#send-call .label-control {
  display: flex;
  align-items: center;
}

#send-call .label {
  margin-bottom: 3px;
}

#send-call button.add-contact {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--gray-500);
}

#send-call button.submit {
  margin-top: 15px;
  width: 100%;
  height: 45px;
  background-color: var(--claimyr-red);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}
#send-call .spinner > img {
  height: 25px;
}
#send-call .success-checkmark > img {
  height: 25px;
}

#send-call .business-contact-card {
  cursor: pointer;
  background: none;
  outline: none;
  border-radius: 15px;
  border: 1px solid var(--gray-500);
  padding: 5px 10px;
  margin-right: 5px;
}

#orders-section {
  margin-top: 15px;
}
#orders-section > h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

#orders-section .order-card {
  background-color: #fff;
  padding: 15px 30px;
  border: 1px solid var(--gray-300);
  border-radius: 15px;
  width: calc(100% - 60px);
  font-size: 15px;
  margin-bottom: 5px;
}
#orders-section .order-card .name {
}
#orders-section .order-card .value {
}
