:root {
  --body-background-color: #FFF;
  --background-color: #f5f5f5;
  --thead-background: #FAFAFA;
  --text-color: #0B0A0A;
  --gray-color: #758183;
  --gray-line-light-color: #f5f5f5;
  --gray-line-color: #D8D8D8;
  --nav-link-color: rgba(0, 0, 0, .5);
  --nav-link-hover-color: rgba(0, 0, 0, 1);
  --project-link-color: rgba(0, 0, 0, .5);
  --project-link-hover-color: rgba(0, 0, 0, 1);
}

html[data-theme="dark"] {
  --body-background-color: rgb(0, 0, 0);
  --background-color: rgb(36, 37, 37);
  --thead-background: #1d1e1e;
  --text-color: #D7D1C7;
  --gray-color: #758183;
  --gray-line-light-color: #2A2929;
  --gray-line-color: #404040;
  --nav-link-color: rgba(255, 255, 255, .5);
  --nav-link-hover-color: rgba(255, 255, 255, 1);
  --project-link-color: rgba(255, 255, 255, .5);
  --project-link-hover-color: rgba(255, 255, 255, 1);
}

body {
  margin: 0;
  padding: 0;
  color: var(--text-color);
}
html {
  background-color: var(--body-background-color);
}
.account-activate {
  width: 100%;
}
.layout {
  background: var(--body-background-color) !important;
  padding: 24px 0;
}
.ant-layout {
  background: var(--body-background-color) !important;
}
.slider {
  flex: 0 0 200px;
  max-width: 200px;
  min-width: 200px;
  width: 200px;
}
.recharts-surface {
  background-color: var(--body-background-color);
}
.recharts-text {
  fill: var(--text-color);
}
.chart-tooltip {
  background-color: var(--body-background-color);
  padding: 10px;
  border: 1px solid var(--gray-line-color);
  border-radius: 4px;
}
.link-dashed {
  border-bottom: 1px dashed #D5D5D5;
  cursor: pointer;
}
.login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.login__form {
  width: 100%;
}
.login__form.login__form .ant-form-item-label > label {
  height: 20px;
}
.login__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}
.login__submit {
  width: 100%;
}
.login__links {
  display: flex;
  justify-content: space-between;
}
.login__actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

html,
body,
.ant-layout {
  height: 100%;
}
.layout-wrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}
@media (max-width: 992px) {
  .layout-wrapper {
    flex-direction: column;
  }
}
.layout-sidebar {
  background: var(--background-color);
  width: 400px;
}
.layout-sidebar__header {
  padding: 60px 60px 20px;
}
.layout-sidebar__subtitle {
  padding-top: 20px;
  font-size: 15px;
  color: var(--text-color);
}
.layout-sidebar svg {
  fill: var(--text-color);
}
@media (max-width: 992px) {
  .layout-sidebar {
    width: 100%;
    background: var(--background-color);
  }
  .layout-sidebar__header {
    margin: 0 auto;
    padding: 20px;
    text-align: left;
  }
  .layout-sidebar__subtitle {
    display: none;
  }
}
.layout-content {
  background: var(--body-background-color);
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: auto;
}
.layout-content__head {
  padding: 30px 30px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.layout-content__r-link {
  flex-grow: 1;
  text-align: right;
  margin: 0;
}
.layout-content__children {
  padding: 30px 0 70px;
  width: 100%;
  max-width: 400px;
  margin: auto;
}
@media (max-width: 992px) {
  .layout-content__head {
    padding: 20px 20px 0;
  }
  .layout-content__children {
    padding: 30px 20px 70px;
  }
}

body {
  background: var(--body-background-color);
  font-family: -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-size: 14px;
}
.wrapper {
  margin-top: 40px;
}

.navbar {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-line-light-color);
  margin-bottom: 20px;
}
.navbar a {
  color: var(--nav-link-color);
  text-decoration: none;
}
.navbar a:hover {
  color: var(--nav-link-hover-color);
}
.navbar__wrap {
  display: flex;
  align-content: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.navbar__menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  flex: 1;
}
.navbar__menu a {
  margin: 0 16px;
  padding: 3px 6px;
}
.navbar__menu a:hover,
.navbar__menu a:focus,
.navbar__menu a:active {
  transition: background 0.2s;
  background: #f5f5f5;
  border-radius: 4px;
}
.navbar__logo {
  align-self: center;
  padding-right: 35px;
}
.navbar__logo svg {
  fill: var(--text-color);
}
.navbar__user {
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: right;
  align-self: center;
}
.navbar__balance {
  background: var(--background-color);
  padding: 9px;
  border-radius: 100px;
  margin-right: 10px;
}
.navbar__avatar {
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 34px;
  width: 34px;
}
.navbar__avatar img {
  border-radius: 100px;
  height: 34px;
  width: 34px;
}
@media (max-width: 992px) {
  .navbar__logo {
    padding-right: 5px;
  }
}
.logo {
  display: flex;
  align-items: center;
}
.logo__pic {
  line-height: 1;
  padding-right: 15px;
}
.logo__name {
  line-height: 1;
}
@media (max-width: 992px) {
  .logo__name {
    display: none;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  color: var(--gray-color);
  margin-top: 20px;
}
footer p {
  margin-top: 0;
  margin-bottom: 0.4em;
}
footer a {
  color: var(--gray-color);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-line-color);
}

.add-links {
  margin: 15px 0;
}
.add-links__field-name {
  opacity: 0.6;
}
.add-links__button {
  padding: 0;
}
.add-links__error-links {
  padding: 15px 0;
}

.project-head {
  margin-bottom: 20px;
}
.project-head__title {
  display: flex;
  align-items: center;
  padding-bottom: 7px;
}
.project-head__title h1 {
  margin: 0;
}
.project-head__icons {
  padding-left: 10px;
}
.project-head__menu {
  padding-top: 10px;
}
.project-head__domain {
  font-size: 13px;
  color: var(--gray-color);
}

.filters {
  padding: 5px 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px 15px;
}

.link-drawer__title {
  font-size: 15px;
}
.link-drawer__subtitle {
  font-size: 15px;
  font-weight: 500;
}
.link-drawer__issues {
  margin: 25px 0;
}
.link-drawer__strong {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--project-link-color);
}
.link-drawer__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px 30px;
  margin-top: 10px;
}
.link-drawer__item {
  position: relative;
  font-size: 13px;
}
.link-drawer__success {
  padding-left: 20px;
}
.link-drawer__success:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2714%27 height=%2714%27%3E%3Cpath fill=%27%2365CCD6%27 fill-rule=%27nonzero%27 d=%27M7 0a7 7 0 1 1 0 14A7 7 0 0 1 7 0Zm2.622 3.464L6.455 8.187 4.218 6.379l-.8.99 3.32 2.682 3.942-5.878-1.058-.71Z%27/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: cover;
  transform: translateY(-50%);
}
.link-drawer__fail {
  padding-left: 20px;
}
.link-drawer__fail:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2714%27 height=%2714%27%3E%3Cpath fill=%27%23DD6145%27 fill-rule=%27nonzero%27 d=%27M7.397 13.145a6.5 6.5 0 1 0 0-13 6.5 6.5 0 0 0 0 13Zm2.475-9.682.707.707-2.475 2.475L10.58 9.12l-.707.707-2.475-2.475-2.475 2.475-.707-.707L6.69 6.645 4.215 4.17l.707-.707 2.475 2.475 2.475-2.475Z%27/%3E%3C/svg%3E");
  background-position: 50%;
  background-size: cover;
  transform: translateY(-50%);
}

.column-display {
  overflow: hidden;
  overflow-y: scroll;
  height: 250px;
}
.ant-vertical-checkbox-group {
  display: flex;
  flex-direction: column;
}
.ant-vertical-checkbox-group .ant-checkbox-group-item {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
}
.table-links-wrapper td.ant-table-cell {
  font-size: 13px;
}
.table-links-wrapper__title {
  color: var(--text-color);
  font-size: 13px;
}
.table-links-wrapper__url {
  cursor: pointer;
  color: var(--project-link-color);
  font-size: 12px;
  border-bottom: 1px solid var(--gray-line-color);
}
.table-links-wrapper__url:hover {
  border-bottom: none;
}
.table-links-wrapper__settings {
  color: var(--text-color);
  cursor: pointer;
}
.project-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  flex-flow: wrap;
}
.project-actions__left {
  flex: 1;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}
.project-actions__right {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 992px) {
  .project-actions__left {
    padding-bottom: 20px;
  }
}
.issues-popover svg {
  fill: #65CCD6;
}
.issues-popover .link-found svg {
  fill: orange;
}
.ant-tag {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid #D9D9D9;
}
.ant-tag:hover {
  color: #858585;
}
.ant-tag-checkable-checked {
  background-color: #1668DC !important;
  border: none;
}
.issues {
  display: inline;
  font-size: 12px;
  color: #BA462C;
  border-bottom: 1px dashed;
  margin-left: 4px;
}
.issues.link-found {
  color: orange;
}
.issues-popover {
  cursor: pointer;
  white-space: nowrap;
}
.issues-content__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.issues-content__list li {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  padding-left: 0;
  font-size: 12px;
}
.issues-content__list li svg {
  margin-right: 6px;
}
.issues-content__list li:last-child {
  margin-bottom: 0;
}
.no-wrap {
  white-space: nowrap;
}

.user {
  display: flex;
}
.user img {
  margin-right: 10px;
  width: 32px;
  border-radius: 100px;
}
.box {
  border: 2px solid var(--gray-line-light-color);
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 20px;
}
.box .ant-progress {
  margin-bottom: 0;
}
.box__title {
  font-size: 15px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 5px;
}
.box__desc {
  margin-bottom: 2px;
}



.team__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.team__invite {
  text-align: right;
}
.team__upgrade {
  opacity: 0.5;
  margin-top: 10px;
}
.cards {
  margin-bottom: 40px;
  border: 1px solid #D8D8D8;
  border-radius: 7px;
}
.cards__title {
  font-weight: 600;
  padding: 20px;
  border-bottom: 1px solid #D8D8D8;
}
.cards__title span {
  background-color: #DEFCFF;
  color: #040404;
  padding: 3px;
  font-weight: 400;
  font-size: 13px;
  border-radius: 2px;
}
.cards__item {
  padding: 20px;
  border-bottom: 1px solid #D8D8D8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cards__item:last-child {
  border-bottom: none;
}
.user {
  display: flex;
  align-items: center;
}
.user__avatar {
  border-radius: 50%;
  margin-right: 15px;
}
.user__avatar img {
  width: 34px;
  height: 34px;
}
.user__title {
  font-weight: 600;
  padding-bottom: 4px;
}
.user__subtitle {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #A3A3A3;
}
.user__subtitle li {
  display: inline-block;
  margin-right: 5px;
}
.user__subtitle li:first-child::before {
  content: "";
}
.user__subtitle li::before {
  content: "· ";
}
.controls {
  display: flex;
  align-items: center;
}
.controls div,
.controls button,
.controls select {
  margin-left: 10px;
}
.controls__warning {
  background-color: #FEF7DB;
  padding: 3px 5px;
  color: #040404;
}

.profile__title {
  margin-bottom: 7px;
}
.profile__desc {
  color: #333;
}
.profile__section {
  margin-bottom: 20px;
  margin-top: 40px;
}
.avatar-info {
  color: #666;
  max-width: 220px;
  line-height: 1.4;
}

.projects-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.projects-actions__title {
  margin-bottom: 0;
}
.table-projects-wrapper__title {
  color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table-projects-wrapper__title:hover {
  border-bottom: none;
}
.table-projects-wrapper .ant-badge {
  margin-left: 1em;
}
.table-projects-wrapper .ant-badge .ant-badge-status-text {
  font-size: 13px;
}
.table-projects-wrapper__settings {
  color: rgba(0, 0, 0, 0.7);
}

.tariffs__responsive {
  overflow: auto;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding-bottom: 20px;
}
.tariffs__responsive:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
}
.tariffs__table {
  width: 100%;
  font-size: 14px;
  min-width: 840px;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
.tariffs__table tr td {
  padding: 12px;
  text-align: center;
}
.tariffs__table tr td:first-of-type {
  text-align: left;
  padding-left: 30px;
}
.tariffs__table th {
  background: white;
  position: sticky;
  top: 0;
  text-align: center;
}
.tariffs__table th:first-of-type {
  text-align: left;
}
.tariffs__table thead tr {
  border-bottom: 1px solid #D9D9D9;
  background: var(--thead-background);
}
.tariffs__tariff-name {
  font-weight: 400;
  padding: 32px 15px 10px;
  font-size: 16px;
  text-align: center;
}
.tariffs__cost-container {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}
.tariffs__cost {
  color: var(--text-color);
  font-size: 26px;
  line-height: 26px;
  margin-right: 5px;
  font-weight: 700;
  padding-bottom: 10px;
}

