@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); * {
  box-sizing: border-box;
}

body {
  height: 100vh;
  overflow: hidden;
  font-family: Roboto, sans-serif;
  background: rgb(232, 243, 255);
  display: flex;
  padding: 0px;
  margin: 0px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: rgb(125, 191, 255);
}

a:visited {
  color: inherit;
}

.sidebar {
  max-width: 234px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 0px 16px 25px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: rgb(36, 36, 36);
}

.sidebar-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.sidebar-link {
  padding: 12px 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgb(36, 36, 36);
  display: flex;
  align-items: center;
  column-gap: 12px;
  transition: all 0.3s ease 0s;
}

.sidebar-link svg {
  fill: rgb(36, 36, 36);
}

.sidebar-link:hover {
  background: rgb(255, 255, 255);
  color: rgb(52, 145, 236);
  border-radius: 8px 0px 0px 8px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
}

.sidebar-link:hover svg {
  fill: rgb(52, 145, 236);
}

.sidebar-link.is-active {
  background: rgb(255, 255, 255);
  color: rgb(52, 145, 236);
  border-radius: 8px 0px 0px 8px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
}

.sidebar-link.is-active svg {
  fill: rgb(52, 145, 236);
}

.main-content {
  width: 100%;
  background: rgb(255, 255, 255);
  padding: 32px;
  flex-direction: column;
  overflow: hidden;
  display: flex;
  height: 100%;
}

.main-content .main-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 28px;
  font-weight: 500;
  color: rgb(36, 36, 36);
  z-index: 1;
}

.main-content table {
  width: 100%;
  margin-top: 24px;
  padding: 12px 32px 32px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
  border-radius: 8px;
  overflow-y: auto;
}

.main-content th {
  padding: 12px 16px;
  border-bottom: 1px solid rgb(148, 153, 159);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}

.main-content td {
  padding: 12px 16px;
  border-bottom: 1px solid rgb(230, 234, 240);
  text-overflow: ellipsis;
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
}

.main-content tr {
  position: relative;
}

.main-content tr td:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;  
  width: 100%;
  max-width: 100%;
}

.main-content td .select-link {
  color: rgb(52, 145, 236);
}

.btn {
  background: rgb(22, 201, 40);
  border-radius: 8px;
  padding: 4px 16px;
  font-weight: 500;
  font-size: 14px;
  color: rgb(255, 255, 255);
}

.hide {
  display: none !important;
}

.show {
  display: flex;
}

.settings {
  max-width: 878px;
  margin-top: 32px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
  display: flex;
  flex-direction: column;
  padding: 16px 0px;
  border-radius: 8px;
}

.placeholders .tooltiptext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px !important;
}

.settings-wrapper {
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings-status {
  max-width: 100px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  padding: 4px 16px;
  border-radius: 0px 8px 0px 0px;
  background: rgb(247, 11, 80);
}

.settings-status.is-enable {
  background: rgb(22, 201, 40);
}

.settings-title {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.settings-title span {
  font-size: 24px;
  color: rgb(36, 36, 36);
}

.settings-title a {
  font-size: 14px;
  color: rgb(162, 173, 185);
}

.settings-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings-wrapper form label {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  color: rgb(36, 36, 36);
  font-size: 16px;
  font-weight: 500;
}

.settings-wrapper form label span, #settigns-username {
  display: flex;
  align-items: center;
  gap: 8px;
}

.settings-wrapper input, .settings-wrapper textarea {
  padding: 12px 16px;
  border: 1px solid rgb(162, 173, 185);
  border-radius: 8px;
  font-size: 16px;
  color: rgb(0, 0, 0);
}

.settings-wrapper input::placeholder, .settings-wrapper textarea::placeholder {
  color: rgb(212, 215, 219);
}

.settings-buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.settings-buttons button {
  width: 190px;
  height: 48px;
  padding: 10px 24px;
  border-radius: 8px;
  background: rgb(52, 145, 236);
  font-weight: 500;
  font-size: 20px;
  color: rgb(255, 255, 255);
  border: 0px;
  cursor: pointer;
  transition: opacity 0.3s ease 0s;
}

.settings-buttons button:hover {
  opacity: 0.8;
}

.settings-buttons button:disabled, .settings-buttons .btn-disabled {
  background: rgb(244, 246, 249);
  color: rgb(162, 173, 185);
}

.username-active a {
  color: rgb(52, 145, 236);
}

.username-active svg {
  fill: rgb(52, 145, 236);
}

.delete-user-btn svg, .send-user-btn svg, #click-username svg {
  stroke-width: 0;
}

.delete-user-btn:hover svg {
  fill: rgb(247, 11, 80);
}

.send-user-btn:hover svg {
  stroke: rgb(107, 223, 119);
}

#click-username:hover svg {
  stroke: rgb(125, 191, 255);
}

.notification {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 32px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
  border-radius: 8px;
  color: rgb(36, 36, 36);
  z-index: 999;
  background: rgb(255, 255, 255);
}

.notification.is-success {
  border-top: 3px solid rgb(22, 201, 40);
}

.notification.is-danger {
  border-top: 3px solid rgb(247, 11, 80);
}

.btn-hide {
  display: none;
}

.error-input {
  border: 1px solid rgb(247, 11, 80) !important;
}

.empty-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.empty-wrapper h2 {
  margin: 0px;
  padding: 0px;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.tooltip {
  display: inline-block;
}

table .tooltiptext {
  right: 10px;
  bottom: -10px;
}

.placeholders .tooltiptext {
  min-width: 235px;
}

.placeholders.tooltip {
  position: relative;
}

.tooltip .tooltiptext {
  visibility: hidden;
  background: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  padding: 4px 12px;
  gap: 8px;
  border-radius: 4px;
  color: rgb(36, 36, 36);
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 4px 0px;
  position: absolute;
  z-index: 999;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.footer {
  margin-top: auto;
  text-align: right;
  margin-bottom: 5px;
}

.footer a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: rgb(130, 125, 139) !important;
  text-decoration: none !important;
}

.delete-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(51, 51, 51);
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.2;
  z-index: 3;
}

.delete-dialog {
  max-width: 400px;
  padding: 14px 24px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgb(255, 255, 255);
  box-shadow: rgba(83, 92, 105, 0.12) 0px 7px 21px, rgba(83, 92, 105, 0.06) 0px -1px 6px 0px;
  z-index: 4;
  border-radius: 10px;
}

.delete-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.delete-btn:nth-child(1) {
  background: rgb(52, 145, 236);
  color: rgb(255, 255, 255);
}

.delete-btn:nth-child(1):hover {
  background: rgb(125, 191, 255);
  color: rgb(255, 255, 255);
}

.delete-btn {
  cursor: pointer;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: rgb(162, 173, 185);
  text-align: center;
  background: rgb(244, 246, 249);
}

.delete-btn:hover {
  background: rgb(228, 239, 255);
  color: rgb(52, 145, 236);
}

.select-userPopup {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(83, 92, 105, 0.12) 0px 7px 21px, rgba(83, 92, 105, 0.06) 0px -1px 6px 0px;
  border-radius: 10px;
  max-height: 400px;
  min-height: 250px;
  min-width: 365px !important;
  max-width: 365px !important;
}

.select-userSearch {
  width: 100%;
  padding: 6px 10px;
}

.select-userSearch input {
  width: 100%;
  border: 1px solid rgb(231, 231, 231);
  border-radius: 4px;
  font-size: 14px;
  height: 30px;
  color: rgb(85, 85, 85);
}

.select-userListTitle {
  color: rgb(0, 0, 0);
  font-size: 14px;
  padding: 3px 0px 0px 11px;
}

.select-userList {
  padding: 6px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.select-userList a {
  width: 48%;
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  color: rgb(11, 102, 195);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  padding: 2px;
  transition: background-color 0.2s linear 0s;
}

.select-userList a:hover {
  background: rgb(241, 242, 243);
}

.select-userList a img {
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.select-userOverlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.main-guide {
  overflow-y: auto;
}

.main-guide a {
  color: rgb(35, 170, 217);
  text-decoration: underline;
}

.main-guide .hint {
  background-color: rgb(231, 246, 252);
  padding: 20px 30px;
  border-radius: 15px;
  position: relative;
  margin: 20px 0px;
  max-width: 70%;
}

.main-guide .hint::before {
  background: url("https://sotbit.ru/local/templates/sotbit_main_learning/images/hint_icon.png") 0px 0px no-repeat;
  content: "";
  height: 28px;
  top: -4px;
  left: -4px;
  position: absolute;
  width: 28px;
}

.main-guide .warning {
  background-color: rgb(252, 228, 228);
  padding: 20px 30px;
  border-radius: 15px;
  position: relative;
  margin: 20px 0px;
  max-width: 70%;
}

.main-guide .warning::before {
  background: url("https://sotbit.ru/local/templates/sotbit_main_learning/images/warning_icon.png") 0px 0px no-repeat;
  content: "";
  height: 28px;
  top: -4px;
  left: -4px;
  position: absolute;
  width: 28px;
}

.main-guide .list-content__title {
  font-size: 1.6rem;
  font-weight: 600;
}

.main-guide > div.list-content.documention-details--right > div:nth-child(3) span:not(:first-child) {
  color: rgb(35, 170, 217);
  font-style: italic;
}

.main-guide table tr:nth-child(2n+1) {
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
}

.main-guide .list-content table td {
  padding: 4px 15px;
  line-height: 22px;
  border: 1px solid rgb(227, 227, 227);
  text-align: left;
  justify-content: flex-start;
}

.main-guide .list-content table tr:nth-child(2n) {
  color: rgb(0, 0, 0);
  background: rgb(239, 239, 239);
}

.main-guide table {
box-shadow: none;
padding: 0;
margin-top: 10px;
max-width: 70%;
}

.main-guide td {
 max-width: 100%;
 white-space: normal;  
}

.main-guide img {
  max-width: 100%;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.page-number.clickable.active {
  width: 30px;
  text-align: center;
  padding-block: 8px;
  background: #00B8FF;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  line-height: 15px;
}
.page-number {
  font-size: 16px;
  line-height: 15px;
  color: #000;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .settings {
      max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sidebar-link span {
      display: none;
  }

  .sidebar-title {
      display: none;
  }

  .sidebar-logo {
      margin-right: 9px;
  }
}
