.sb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}
@media all and (max-width: 1024px) {
  .sb-header {
    margin-bottom: 32px;
  }
  .sb-header:not(.sb-header__report) img {
    height: 32px;
  }
}
.sb-header-tools {
  display: flex;
  gap: 12px;
}
@media all and (max-width: 1024px) {
  .sb-header-tools {
    gap: 8px;
  }
}
.sb-header nav {
  display: flex;
  gap: 12px;
}
.sb-header nav .sb-header-tools {
  margin-left: 60px;
  display: flex;
  gap: 12px;
}
@media all and (max-width: 1024px) {
  .sb-header nav .sb-header-tools {
    margin-left: 0;
  }
}
.sb-header nav .sb-header-menu {
  display: flex;
  gap: 12px;
}

.sb-header.sb-header__report {
    min-height: 48px;
}

@media all and (max-width: 1024px) {
  .sb-header nav .sb-header-menu {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
    width: calc(100% - 40px);
    background: var(--color-white);
    padding: 8px 0;
    justify-content: center;
    margin: 0 auto;
    gap: 8px;
  }
}
@media all and (max-width: 560px) {
  .sb-header nav .sb-header-menu {
    width: calc(100% - 32px);
  }
  .sb-header nav .sb-header-menu a.active {
    width: 100%;
  }
  .sb-header nav .sb-header-menu a:not(.active) {
    font-size: 0;
    padding: 14px;
    text-indent: -999em;
    gap: 0;
  }
}

.sb-footer {
  font-family: var(--site-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  font-weight: 500;
  color: var(--color-gray-600);
  padding: 30px 0;
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
}
@media all and (max-width: 1024px) {
  .sb-footer {
    align-items: flex-start;
  }
}
@media all and (max-width: 768px) {
  .sb-footer {
    margin-top: 60px;
  }
}
.sb-footer .copyright {
  padding: 13px 0;
}
.sb-footer nav ul {
  gap: 40px;
  display: flex;
}
@media all and (max-width: 1024px) {
  .sb-footer nav ul {
    flex-direction: column;
    gap: 0;
  }
}
.sb-footer nav ul a {
  color: inherit;
  text-decoration: none;
  padding: 13px 0;
  display: block;
}
.sb-footer nav ul a:hover {
  color: var(--color-primary-active);
}

.sb-audit-preview {
  padding: 32px;
  display: flex;
  background: var(--color-gray-100);
  border-radius: 32px;
  margin-bottom: 8px;
  gap: 32px;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .sb-audit-preview {
    padding: 20px;
    gap: 20px;
    border-radius: 20px;
    flex-flow: row wrap;
  }
}
.sb-audit-preview__image {
  border-radius: 10px;
  overflow: hidden;
  width: 260px;
  height: auto;
  flex: 0 0 260px;
  background-color: var(--color-white);
  position: relative;
}
@media all and (max-width: 768px) {
  .sb-audit-preview__image {
    flex: 0 0 100%;
    width: 100%;
  }
}
.sb-audit-preview__image img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
}
@media all and (max-width: 768px) {
  .sb-audit-preview__image img {
    position: static;
  }
}
.sb-audit-preview__info {
  width: 100%;
}
.sb-audit-preview__information {
  font-family: var(--site-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  color: var(--color-gray-500);
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
@media all and (max-width: 560px) {
  .sb-audit-preview__information {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 16px;
  }
}
.sb-audit-preview__information a {
  color: inherit;
}
.sb-audit-preview__information > * {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-audit-preview__information .icon {
  font-size: 18px;
}
.sb-audit-preview__title {
  margin: 0 0 24px;
}
@media all and (max-width: 1024px) {
  .sb-audit-preview__title {
    display: flex;
    align-items: center;
  }
}
@media all and (max-width: 768px) {
  .sb-audit-preview__title {
    margin: 0 0 16px;
  }
}
.sb-audit-preview__title-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media all and (max-width: 560px) {
  .sb-audit-preview__title-wrapper {
    flex-direction: column;
  }
}
.sb-audit-preview__title .sb-button {
  margin-left: 16px;
  color: var(--color-gray-600);
}
@media all and (max-width: 1024px) {
  .sb-audit-preview__title .sb-button {
    margin-left: auto;
  }
}
.sb-audit-preview__labels {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
@media all and (max-width: 1024px) {
  .sb-audit-preview__labels {
    flex-flow: row wrap;
  }
}
@media all and (max-width: 768px) {
  .sb-audit-preview__labels {
    margin-bottom: 20px;
    gap: 4px;
  }
}
.sb-audit-preview__label {
  width: 25%;
  border: 1px dashed var(--color-gray-400);
  padding: 20px;
  border-radius: 12px;
}
@media all and (max-width: 1024px) {
  .sb-audit-preview__label {
    width: calc(50% - 4px);
  }
}
@media all and (max-width: 768px) {
  .sb-audit-preview__label {
    width: calc(50% - 2px);
    padding: 12px;
  }
}
@media all and (max-width: 560px) {
  .sb-audit-preview__label {
    width: 100%;
  }
}
.sb-audit-preview__label-content {
  font-family: var(--site-font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-gray-900);
  display: flex;
  gap: 4px;
}
@media all and (max-width: 768px) {
  .sb-audit-preview__label-content {
    font-family: var(--site-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
  }
}
.sb-audit-preview__label-content .sb-audit-question {
  margin-right: 0;
  margin-left: auto;
}
.sb-audit-preview__label-text {
  font-family: var(--site-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  font-weight: 500;
  color: var(--color-gray-600);
}

.sb-audit-preview__error-text {
    font-family: var(--site-font-family);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5rem;
    color: var(--color-gray-800);
}

@media all and (max-width: 768px) {
    .sb-audit-preview__label-text {
        font-family: var(--site-font-family);
        font-size: 10px;
        font-weight: 600;
        line-height: 12px;
    }

    .sb-audit-preview__error-text {
        font-family: var(--site-font-family);
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5rem;
        color: var(--color-gray-800);
    }
}
.sb-audit-preview__label-link {
  margin-top: 20px;
  font-family: var(--site-font-family);
  font-size: 11px;
  font-weight: 600;
  line-height: 13.2px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  border-bottom: 1px dashed rgba(var(--color-primary-rgb), 0.2);
}
@media all and (max-width: 768px) {
  .sb-audit-preview__label-link {
    margin-top: 12px;
  }
}
.sb-audit-preview__label-link:hover {
  border-color: var(--color-primary);
}
.sb-audit-preview__label .iconic {
  font-family: var(--site-font-family);
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  position: relative;
}
.sb-audit-preview__buttons {
  display: flex;
  gap: 8px;
}
@media all and (max-width: 1024px) {
  .sb-audit-preview__buttons {
    flex-flow: row wrap;
  }
}
@media all and (max-width: 768px) {
  .sb-audit-preview__buttons {
    gap: 4px;
  }
}
@media all and (max-width: 560px) {
  .sb-audit-preview__buttons {
    gap: 6px;
  }
}
@media all and (max-width: 1024px) {
  .sb-audit-preview__buttons .sb-button {
    width: calc(50% - 4px);
  }
}
@media all and (max-width: 768px) {
  .sb-audit-preview__buttons .sb-button {
    width: calc(50% - 2px);
  }
}
@media all and (max-width: 560px) {
  .sb-audit-preview__buttons .sb-button {
    width: 100%;
  }
}
.sb-audit-preview__buttons .sb-button.right {
  margin-left: auto;
  margin-right: 0;
}
@media all and (max-width: 1024px) {
  .sb-audit-preview__buttons .sb-button.right {
    width: 100%;
    margin-left: unset;
  }
}
.sb-audit-preview__skeleton {
  z-index: 2;
  position: relative;
  width: 100%;
}
.sb-audit-preview__skeleton .sb-audit-preview__title {
  margin-bottom: 0;
}
.sb-audit-preview__skeleton:before {
  position: absolute;
  top: -32px;
  right: -32px;
  left: -32px;
  bottom: -32px;
  content: "";
  z-index: 1;
  backdrop-filter: blur(8px);
  background: rgba(var(--color-gray-100-rgb), 0.9);
}
.sb-audit-preview__skeleton-icon {
  font-size: 40px;
  margin: 0 auto 32px;
  z-index: 2;
  position: relative;
  text-align: center;
}
.sb-audit-preview__skeleton-title {
  color: var(--color-gray-900);
  font-family: var(--site-font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin: 0 auto 20px;
  z-index: 2;
  position: relative;
  text-align: center;
}
.sb-audit-preview__skeleton-title a {
  text-decoration: none;
}
.sb-audit-preview__skeleton-text {
  font-family: var(--site-font-family);
  font-size: 13px;
  font-weight: 400;
  line-height: 15.6px;
  color: var(--color-gray-700);
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.sb-audit-preview__skeleton-buttons {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-audit-report {
  display: flex;
  gap: 8px;
  margin-bottom: 100px;
}
@media all and (max-width: 1280px) {
  .sb-audit-report {
    flex-flow: row wrap;
  }
}
@media all and (max-width: 768px) {
  .sb-audit-report {
    margin-bottom: 60px;
  }
}
.sb-audit-report .sb-audit-preview {
  width: 75%;
  margin-bottom: 0;
}
@media all and (max-width: 1280px) {
  .sb-audit-report .sb-audit-preview {
    width: 100%;
  }
}
.sb-audit-report .sb-audit-preview__label {
  width: 33.3333333333%;
}
@media all and (max-width: 1024px) {
  .sb-audit-report .sb-audit-preview__label {
    width: calc(50% - 4px);
  }
}
@media all and (max-width: 560px) {
  .sb-audit-report .sb-audit-preview__label {
    width: 100%;
  }
}

.sb-audit-score {
  width: 25%;
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 1280px) {
  .sb-audit-score {
    width: 100%;
  }
}
.sb-audit-score.info {
  background: var(--color-info-light);
}
.sb-audit-score.info .sb-audit-score__text {
  color: var(--color-info-active);
}
.sb-audit-score.info .sb-audit-score__circle::before {
  background: var(--color-info-light);
}
.sb-audit-score.warning {
  background: var(--color-warning-light);
}
.sb-audit-score.warning .sb-audit-score__text {
  color: var(--color-warning-active);
}
.sb-audit-score.warning .sb-audit-score__circle::before {
  background: var(--color-warning-light);
}
.sb-audit-score.danger {
  background: var(--color-danger-light);
}
.sb-audit-score.danger .sb-audit-score__text {
  color: var(--color-danger-active);
}
.sb-audit-score.danger .sb-audit-score__circle::before {
  background: var(--color-danger-light);
}
.sb-audit-score__percent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.sb-audit-score__text {
  color: var(--color-gray-900);
  font-family: var(--site-font-family);
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-left: 0;
}
.sb-audit-score__circle {
  height: 40px;
  width: 40px;
}
.sb-audit-score__circle::before {
  top: 5px;
  right: 5px;
  left: 5px;
  bottom: 5px;
}
.sb-audit-score button {
  margin-top: auto;
}

.sb-empty-audit {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 32px;
  max-width: 488px;
  margin: 0 auto;
}
.sb-empty-audit img {
  margin-bottom: 32px;
}
.sb-empty-audit__title {
  margin-bottom: 48px;
  text-align: center;
}
.sb-empty-audit__form {
  display: flex;
}
@media all and (max-width: 560px) {
  .sb-empty-audit__form {
    flex-direction: column;
    gap: 8px;
  }
}
.sb-empty-audit__form input {
  width: 320px;
  margin-right: 8px;
}
@media all and (max-width: 560px) {
  .sb-empty-audit__form input {
    width: 100%;
    margin-right: 0;
  }
}
@media all and (max-width: 560px) {
  .sb-empty-audit__form .sb-button {
    width: 100%;
  }
}

.sb-lead-form {
  padding: 40px;
  border: 1px solid;
  border-radius: 32px;
  max-height: 280px;
}

.sb-lead-form.info {
    background-color: white;
    border: 1px solid var(--color-gray-900);
    overflow: hidden;
}

.sb-lead-form__image {
    margin-top: -40px;
    margin-bottom: -40px;
    margin-left: -40px;
}

@media all and (max-width: 960px) {
  .sb-lead-form {
    max-height: unset;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media all and (max-width: 768px) {
  .sb-lead-form {
    padding: 20px;
    border-radius: 20px;
    margin-top: 60px;
  }
}
.sb-lead-form__content {
  max-width: 460px;
  display: flex;
  flex-direction: column;
}

.sb-lead-form.info .sb-lead-form__content {
    max-width: 640px;
}

.sb-lead-form.info .sb-lead-form__content * {
    line-height: 120%;
}

.sb-lead-form.info .sb-lead-form__title {
    font-weight: 600;
    font-size: 32px;
}

.sb-lead-form.info .sb-lead-form__text {
    font-weight: 500;
    font-size: 16px;
}

.sb-lead-form.info .sb-lead-form__note {
    font-weight: 400;
    font-size: 13px;
    color: #555657;
}

@media all and (max-width: 960px) {
  .sb-lead-form__content {
    align-items: center;
    text-align: center;
  }
}
.sb-lead-form__content button {
  margin-top: auto;
  width: max-content;
}
@media all and (max-width: 960px) {
  .sb-lead-form__content button {
    margin-top: 20px;
  }
}
@media all and (max-width: 768px) {
  .sb-lead-form__content button {
    width: 100%;
  }
}
@media all and (max-width: 1280px) {
  .sb-lead-form__image {
    width: 400px;
    margin-bottom: 32px;
  }

  .sb-lead-form.info img {
      display: none;
  }
}
@media all and (max-width: 960px) {
  .sb-lead-form__image {
    width: 300px;
  }
}
.sb-lead-form.v2 {
  width: 420px;
  padding: 56px;
  background: var(--color-gray-100);
  position: sticky;
  top: 20px;
  text-align: center;
  max-height: unset;
  height: min-content;
  border: unset;
}
@media all and (max-width: 1280px) {
  .sb-lead-form.v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media all and (max-width: 768px) {
  .sb-lead-form.v2 {
    padding: 40px 20px;
  }
}
.sb-lead-form.v2 .sb-lead-form__content {
  margin: 0 auto;
}
.sb-lead-form.v2 h3 {
  margin-bottom: 4px;
}
.sb-lead-form.v2 p {
  color: var(--color-gray-500);
}
.sb-lead-form.v2 button {
  margin-top: auto;
  width: max-content;
}
@media all and (max-width: 960px) {
  .sb-lead-form.v2 button {
    margin-top: 20px;
  }
}
@media all and (max-width: 768px) {
  .sb-lead-form.v2 button {
    width: 100%;
  }
}

.sb-audit-list {
  margin-bottom: 56px;
}
.sb-audit-list__title {
  color: var(--color-gray-900);
  font-family: var(--site-font-family);
  font-size: 28px;
  font-weight: 600;
  line-height: 33.6px;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 40px;
}
@media all and (max-width: 768px) {
  .sb-audit-list__title {
    color: var(--color-gray-900);
    font-family: var(--site-font-family);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
  }
}
.sb-audit-list__item {
  height: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 768px) {
  .sb-audit-list__item {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.sb-audit-list__item-wrapper {
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-gray-200);
}
.sb-audit-list__item-wrapper:first-child {
  border-top: 1px dashed var(--color-gray-200);
}
.sb-audit-list__item-wrapper.opened .js-toggle .closed {
  display: none;
}
.sb-audit-list__item-wrapper.opened .js-toggle .opened {
  display: inline;
}
.sb-audit-list__item-wrapper.opened .sb-audit-info {
  display: block;
}
.sb-audit-list__item-left {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media all and (max-width: 768px) {
  .sb-audit-list__item-left {
    gap: 8px;
  }
}
.sb-audit-list__item-left .icon {
  font-size: 26px;
}
.sb-audit-list__item-right {
  position: relative;
  gap: 4px;
  width: 244px;
  display: flex;
  justify-content: flex-end;
}
@media all and (max-width: 768px) {
  .sb-audit-list__item-right {
    width: 100%;
    justify-content: flex-start;
  }
}
.sb-audit-list__item-right .sb-button {
  width: 120px;
}
@media all and (max-width: 768px) {
  .sb-audit-list__item-right .sb-button {
    width: calc(50% - 2px);
  }
}
.sb-audit-list__item-right a {
  margin-right: auto;
}
.sb-audit-list__item-right .js-toggle .closed {
  display: inline;
}
.sb-audit-list__item-right .js-toggle .opened {
  display: none;
}
.sb-audit-list__item-title {
  font-weight: 500;
  color: var(--color-gray-800);
}
.sb-audit-list__item-text {
  font-weight: 700;
  color: var(--color-gray-800);
}
.sb-audit-list__button {
  margin-top: 14px;
}
.sb-audit-list__muted {
  font-family: var(--site-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  color: var(--color-gray-700);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  backdrop-filter: blur(4px);
  background: rgba(var(--color-white-rgb), 0.8);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  user-select: none;
}
.sb-audit-list__muted img {
  margin-left: 12px;
}

.sb-audit-info {
  background: var(--color-white-active);
  border-radius: 16px;
  margin-top: 14px;
  padding: 40px;
  display: none;
}
@media all and (max-width: 768px) {
  .sb-audit-info {
    padding: 20px;
  }
}
.sb-audit-info__title {
  margin: 32px 0;
}
@media all and (max-width: 768px) {
  .sb-audit-info__title {
    margin: 20px 0;
  }
}
.sb-audit-info__text {
  color: var(--color-gray-600);
}
.sb-audit-info__text + .sb-audit-info__title {
  margin-top: 40px;
}
@media all and (max-width: 768px) {
  .sb-audit-info__text + .sb-audit-info__title {
    margin-top: 20px;
  }
}
.sb-audit-info__item {
  font-family: var(--site-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--color-gray-200);
  gap: 16px;
  display: flex;
  flex-flow: row nowrap;
}
@media all and (max-width: 560px) {
  .sb-audit-info__item {
    font-family: var(--site-font-family);
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
  }
}
.sb-audit-info__item span {
  color: var(--color-gray-500);
  white-space: nowrap;
}
.sb-audit-info__item a {
  color: var(--color-primary);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.sb-audit-info__item:first-child {
  border-top: 1px dashed var(--color-gray-200);
}
.sb-audit-info__item-title {
  color: var(--color-gray-900);
  font-family: var(--site-font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  letter-spacing: -0.01em;
  margin: 20px 0 4px;
}
.sb-audit-info__button {
  margin-top: 32px;
}

.sb-detailed-report {
  max-width: 760px;
}
@media all and (max-width: 1280px) {
  .sb-detailed-report {
    width: 100%;
    max-width: unset;
  }
}
.sb-detailed-report__wrapper {
  margin-top: 48px;
}
@media all and (max-width: 768px) {
  .sb-detailed-report__wrapper {
    margin-top: 40px;
  }
}
.sb-detailed-report__wrapper .sb-heading__wrapper {
  margin-top: 20px;
}
@media all and (max-width: 768px) {
  .sb-detailed-report__wrapper .sb-heading__wrapper {
    margin-top: 16px;
  }
}
.sb-detailed-report__inner {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
@media all and (max-width: 1280px) {
  .sb-detailed-report__inner {
    flex-direction: column;
  }
}
@media all and (max-width: 1280px) {
  .sb-detailed-report__inner .sb-lead-form.v2 {
    margin-top: 60px;
    width: 100%;
  }
}
.sb-detailed-report__text {
  font-family: var(--site-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-gray-700);
  margin-bottom: 48px;
}
@media all and (max-width: 768px) {
  .sb-detailed-report__text {
    font-family: var(--site-font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    margin-bottom: 40px;
  }
}
.sb-detailed-report__recommendations-title {
  margin-bottom: 48px;
}
.sb-detailed-report__recommendations-title b {
  color: var(--color-gray-900);
  font-family: var(--site-font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.01em;
  display: block;
}
@media all and (max-width: 768px) {
  .sb-detailed-report__recommendations-title b {
    font-family: var(--site-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    font-weight: 500;
  }
}
.sb-detailed-report__recommendations-title p {
  font-family: var(--site-font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-gray-700);
}
@media all and (max-width: 768px) {
  .sb-detailed-report__recommendations-title p {
    font-family: var(--site-font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
  }
}
.sb-detailed-report__recommendations-list {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sb-detailed-report__recommendations-list li {
  color: var(--color-gray-700);
  display: flex;
  align-items: center;
}
.sb-detailed-report__recommendations-list li span {
  font-family: var(--site-font-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  color: var(--color-gray-900);
  padding: 13px;
  margin-right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray-200);
  border-radius: 32px;
}
.sb-detailed-report__recommendations-list li p {
  margin: 0;
}

.sb-tariff {
  width: calc(33.3333333333% - 6px);
  padding: 56px;
  background: var(--color-gray-100);
  border-radius: 32px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 1024px) {
  .sb-tariff {
    width: calc(50% - 4px);
  }
}
@media all and (max-width: 768px) {
  .sb-tariff {
    width: 100%;
    padding: 40px 32px;
    border-radius: 20px;
  }
}
.sb-tariff__wrapper {
  display: flex;
  gap: 8px;
  margin-bottom: 100px;
  flex-flow: row wrap;
}
@media all and (max-width: 768px) {
  .sb-tariff__wrapper {
    margin-bottom: 60px;
  }
}
.sb-tariff__timer {
  display: flex;
  justify-content: space-between;
  color: var(--color-dark);
  font-weight: 500;
  position: absolute;
  top: 28px;
  right: 20px;
  left: 20px;
}
.sb-tariff__timer img {
  margin-right: 10px;
}
.sb-tariff__timer-text {
  display: flex;
  width: 100%;
  align-items: center;
  height: 24px;
}
.sb-tariff__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}
@media all and (max-width: 768px) {
  .sb-tariff__image {
    margin-bottom: 40px;
  }
  .sb-tariff__image img {
    width: 132px;
  }
}
.sb-tariff__title {
  color: var(--color-gray-900);
  font-family: var(--site-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  font-style: italic;
}
@media all and (max-width: 768px) {
  .sb-tariff__title {
    color: var(--color-gray-900);
    font-family: var(--site-font-family);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
}
.sb-tariff__counter {
  color: var(--color-dark);
  margin-bottom: 32px;
}

.sb-tariff-counter-subscription-alert {
    background-color: var(--color-gray-200);
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.sb-tariff-counter-subscription-alert a {
    color: black;
    text-decoration: underline;
}

.sb-tariff__list {
  margin-top: auto;
  margin-bottom: 32px;
}
.sb-tariff__list li {
  padding: 16px 0;
  color: var(--color-gray-600);
}
.sb-tariff__list li:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-200);
}
.sb-tariff__price {
  color: var(--color-gray-900);
  font-family: var(--site-font-family);
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  margin-bottom: 48px;
}
@media all and (max-width: 768px) {
  .sb-tariff__price {
    color: var(--color-gray-900);
    font-family: var(--site-font-family);
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
  }
}
.sb-tariff__price span {
  color: var(--color-gray-400);
}
.sb-tariff__form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media all and (max-width: 560px) {
  .sb-tariff__form .sb-number-input {
    width: calc(50% - 3px);
  }
  .sb-tariff__form input[type=number] {
    width: 100%;
  }
  .sb-tariff__form input[type=submit] {
    width: calc(50% - 3px);
  }
}
.sb-tariff__button {
  margin-top: auto;
}

.sb-notifications-table .reserved-space {
  width: 150px;
}
@media all and (max-width: 976px) {
  .sb-notifications-table table {
    width: 100%;
    max-width: unset;
    min-width: unset;
  }
  .sb-notifications-table tr {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .sb-notifications-table td {
    padding: 6px 0;
    display: block;
  }
  .sb-notifications-table td .icon {
    display: none;
  }
  .sb-notifications-table td.date {
    order: -1;
  }
  .sb-notifications-table td.mob-hide {
    display: none;
  }
  .sb-notifications-table td.reserved-space {
    width: auto;
  }
}

.not-ready {
  text-decoration: red wavy underline !important;
}

.not-full-ready {
  text-decoration: green wavy underline !important;
}

.exception-plate-container {
    max-width: 1300px;
    justify-content: center;
}

.exception-plate {
    width: 500px;
    background: var(--color-gray-100);
    border-radius: 32px;
    text-align: center;
}

.exception-plate-msg-container {
    margin-top: 15px;
    margin-bottom: 25px;
}

.exception-plate-img {
    max-width: 500px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.exception-plate-msg {
    color: var(--color-gray-900);
    font-family: var(--site-font-family);
    font-weight: 500;
    font-size: 28px;
    line-height: 38.4px;
    margin: 0;
}

@media all and (max-width: 768px) {
    .exception-plate-msg {
        font-size: 22px;
    }

    .exception-plate, .exception-plate-img {
        max-width: 350px;
    }
}
