.wth-icon {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 5.5px;
}

.about--title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.about--text {
  display: block;
  margin-bottom: 15px;
}

.graph-title h2,
.graph-title h2 span {
  color: #fff;
  font-size: 25px;
  margin-bottom: 1rem;
}

.graph-block {
  height: 400px;
}

.trust {
  display: inline-flex;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.trust-absent::after {
  content: '-';
}

.trust-green {
  background-color: #00a83e;
}

.trust-yellow {
  background-color: #dbb925;
}

.trust-red {
  background-color: #ff3a33;
}

.trust-white {
  background-color: #cecece;
}

.course {
  padding: 12px 0;
  background: #313745;
}

.course__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course__start {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course__text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}

.course__prefix {
  padding: 6px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 125%;
  border-radius: 6px;
  background: #313745;
  gap: 3px;
}

@media (max-width: 850px) {
  .course__container {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 750px) {
  .course {
    display: none;
  }
}

.logotype {
  height: 45px;
}

.header-logo a,
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xinput {
  position: relative;
  width: 100%;
}

.xinput img {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 24px;
  transform: translate(0, -50%);
}

.xinput:has(img) input[type=tel],
.xinput:has(img) input[type=url],
.xinput:has(img) input[type=text],
.xinput:has(img) input[type=email],
.xinput:has(img) input[type=number],
.xinput:has(img) input[type=password],
.xinput:has(img) input[type=search],
.xinput:has(img) select,
.xinput:has(img) textarea {
  padding-left: 44px;
}

.logotype {
  font-size: 27px;
  font-weight: 600;
  color: #fff;
}

@media(max-width: 1023px) {
  .logotype {
    color: #000;
  }
}

.group.is-sticky .logotype {
  color: #000;
}

.xtable table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.xtable th {
  padding: 12px 16px;
  text-align: left;
  background-color: #f9fafb;
  color: #4a5568;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid #e2e8f0;
  transition: 0.3s;
}

.xtable td {
  padding: 12px 16px;
  color: #4a5568;
  font-size: 0.95rem;
  border-bottom: 1px solid #e2e8f0;
  transition: 0.3s;
}

.xtable tr {
  transition: 0.3s;
}

.xtable tr:last-child td {
  border-bottom: 0;
}

.xtable tr:hover {
  background-color: #f9fafb;
}

.xtable tr:nth-child(even) {
  background-color: #f9fafb;
}

.xtable td:empty {
  background-color: #f1f5f9;
}

.xtable a {
  color: #1a202c;
  text-decoration: none;
  font-weight: 500;
}

.xtable a:hover {
  color: rgb(42 92 235);
  text-decoration: underline;
}

@media (max-width: 768px) {

  .xtable th,
  .xtable td {
    padding: 8px 12px;
    font-size: 0.875rem;
  }
}

.xform {
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.xform input,
.xform select,
.xform textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  background-color: #f9f9f9;
  color: #333;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.xform input:focus,
.xform select:focus,
.xform textarea:focus {
  border-color: #313745;
  background-color: #fff;
  outline: none;
}

.xform label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.xform button {
  background-color: #313745;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.xform button:hover {
  background-color: #362ca3;
}

.xform .error {
  color: #ff4d4f;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.table thead th {
  border: 0;
}

.dt-paging {
  margin-top: 1rem;
}

.dt-paging nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.dt-paging button {
  width: 40px;
  height: 40px;
  box-shadow: none !important;
}

.dt-paging .btn-primary {
  color: #fff;
  background-color: #313745;
  border-color: #313745;
  box-shadow: none !important;
}

.dt-paging .btn-primary:hover {
  color: #fff;
  background-color: #362ca3;
  border-color: #362ca3;
  box-shadow: none !important;
}