/*
    This file contains the styles that apply globally, and aren't tied to any particular component.  
*/
body {
  font-family: Inter, sans-serif;
}
h1 {
  font-size: 56px;
  line-height: 120%;
  margin-top: 6px;
  margin-bottom: 20px;
}
h2 {
  font-size: 48px;
  line-height: 120%;
  margin-top: 6px;
  margin-bottom: 20px;
}
h3 {
  font-size: 40px;
  line-height: 130%;
  margin-top: 6px;
  margin-bottom: 15px;
}
h4 {
  font-size: 32px;
  line-height: 140%;
  margin-top: 6px;
  margin-bottom: 15px;
}
h5 {
  font-size: 24px;
  line-height: 140%;
  margin-top: 4px;
  margin-bottom: 10px;
}
h6 {
  font-size: 20px;
  line-height: 140%;
  margin-top: 4px;
  margin-bottom: 10px;
}
p {
  color: #000;
  font-size: 16px;
  line-height: 150%;
}
a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  line-height: 150%;
}
a.button:not(.inline),
.button:not(.inline) {
  display: inline-block;
  border: 1px solid;
  transition: box-shadow 0.2s;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 14px;
}
a.button:not(.inline)[loading],
.button:not(.inline)[loading] {
  position: relative;
  opacity: 0.5;
}
a.button:not(.inline)[loading]::after,
.button:not(.inline)[loading]::after {
  margin: auto;
  content: " ";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #4311fa;
  border-top-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin 1s ease infinite;
          animation: spin 1s ease infinite;
  opacity: 0.4;
}
a.button:not(.inline):not(:first-of-type),
.button:not(.inline):not(:first-of-type) {
  margin-left: 10px;
}
a.button:not(.inline).primary,
.button:not(.inline).primary {
  background-color: #4311fa;
  border-color: #4311fa;
  color: #fff;
}
a.button:not(.inline).primary:hover,
.button:not(.inline).primary:hover,
a.button:not(.inline).primary:active,
.button:not(.inline).primary:active {
  border-color: #4311fa;
}
a.button:not(.inline).secondary,
.button:not(.inline).secondary {
  background-color: #FFF;
  border-color: #4311fa;
  color: #4311fa;
}
a.button:not(.inline).secondary:focus,
.button:not(.inline).secondary:focus,
a.button:not(.inline).secondary:hover,
.button:not(.inline).secondary:hover {
  opacity: 0.8;
  border-color: #4311fa;
}
a.button:not(.inline).danger,
.button:not(.inline).danger {
  background-color: #C92C10;
  border-color: #C92C10;
  color: #fff;
}
a.button:not(.inline).danger:hover,
.button:not(.inline).danger:hover,
a.button:not(.inline).danger:active,
.button:not(.inline).danger:active {
  border-color: #C92C10;
}
a.button:not(.inline).icon,
.button:not(.inline).icon {
  font-family: 'Font Awesome 6 Free' !important;
  background-color: transparent;
  border-color: transparent;
  color: #4311fa;
}
a.button:not(.inline).icon:focus,
.button:not(.inline).icon:focus,
a.button:not(.inline).icon:hover,
.button:not(.inline).icon:hover {
  opacity: 0.8;
  border-color: transparent;
}
img {
  max-width: 100%;
}
.hidden {
  display: none !important;
}
@media only screen and (max-width: 800px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
}
div.dropdown-modal,
div.blazored-modal {
  border-radius: 10px;
  box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 12px 16px 16px;
}
div.dropdown-modal .blazored-modal-header,
div.blazored-modal .blazored-modal-header {
  padding: 0 !important;
}
div.dropdown-modal h3.blazored-modal-title,
div.blazored-modal h3.blazored-modal-title {
  font-size: 20px;
  line-height: 140%;
  margin-top: 4px;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}
div.dropdown-modal button.blazored-modal-close,
div.blazored-modal button.blazored-modal-close {
  flex-shrink: 0;
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid #4311fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 10px 8px 12px;
  background: #FFF !important;
  position: absolute !important;
  margin: 0 !important;
  top: -60px !important;
  right: -12px !important;
}
div.dropdown-modal div.dropdown-modal.popup,
div.blazored-modal div.dropdown-modal.popup {
  background-color: #FFF;
  gap: 5px;
  padding: 0;
}
div.dropdown-modal select-for-footer,
div.blazored-modal select-for-footer {
  display: none;
}
div.dropdown-modal .blazored-modal-content,
div.blazored-modal .blazored-modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
div.dropdown-modal .blazored-modal-content h6,
div.blazored-modal .blazored-modal-content h6 {
  font-size: 16px;
  font-weight: 600;
}
.blazored-modal-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 800px) {
  div.dropdown-modal {
    gap: 0;
    width: 100dvw;
  }
  div.dropdown-modal dropdown-options select-option[breezer-select-option] {
    font-size: 14px;
  }
  div.dropdown-modal dropdown-options select-option[breezer-select-option]:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  div.dropdown-modal .blazored-modal-content {
    max-height: 80dvh;
    overflow: scroll;
  }
  .blazored-modal-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
/*
    This file contains the styles that apply globally, and aren't tied to any particular component.  
*/
:root {
  --font-awesome-family: "Font Awesome 6 Pro";
  --skele-width: 300px;
  --skele-height: 500px;
}
knock-search-bar {
  margin: 5px 0;
  display: inline-flex;
  max-width: 100vw;
  height: 44px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  outline: none;
  color: #000;
  border-radius: 70px;
  padding: 0 15px;
  width: 100%;
}
knock-search-bar:hover {
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0.8;
}
knock-search-bar .button.inline {
  order: 1;
}
knock-search-bar button i {
  color: #4311fa;
  font-size: 17px;
}
knock-search-bar input[type="text"] {
  order: 2;
  border: none;
  min-width: unset;
  width: 100%;
  font-size: 16px;
  color: #000;
}
knock-search-bar input[type="text"]::-webkit-input-placeholder {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.2);
}
knock-search-bar input[type="text"]::-moz-placeholder {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.2);
}
knock-search-bar input[type="text"]::-ms-input-placeholder {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.2);
}
knock-search-bar input[type="text"]::placeholder {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.2);
}
knock-search-bar input[type="text"]:hover,
knock-search-bar input[type="text"]:focus {
  border: none;
}
#cid-idp-selector-popup button {
  padding: 12px;
  border-radius: 12px;
  background-color: #F4F4F4;
  color: #262626;
  font-size: 13px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.connect-id-button button#cid-idp-selector-button {
  border: 1px solid #262626;
  background-color: #262626;
  color: white;
  min-width: 311px;
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}
.connect-id-button button#cid-idp-selector-button svg {
  max-height: 20px;
  max-width: 20px;
}
.connect-id-button button#cid-idp-selector-button:hover,
.connect-id-button button#cid-idp-selector-button:focus {
  opacity: 1;
  border: 1px solid #4F4F4F;
  background-color: #4F4F4F;
}
