@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;700;800;900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
textarea, button, select {
  border-radius: 5px;
  border: 1px grey solid;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Golos Text", sans-serif;
}

.container {
  width: 1720px;
  margin: 0 auto;
  padding: 0 15px;
}

.messages {
  width: 100%;
  z-index: 999;
  margin-bottom: 10px;
  text-align: center;
}
.messages .error {
  background-color: #DC4141;
  color: #ffffff;
  width: 40%;
  gap: 8px;
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.messages .success {
  background-color: #b2ff9e;
  color: #000000;
  width: 100%;
  gap: 8px;
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.button {
  display: flex;
  padding: 9px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 7px;
  border-radius: 9px;
}
.button.blue {
  color: #ffffff;
  background-color: #0072FF;
}
.button.blue__outline {
  color: #0072FF;
  border: 1px solid #0072FF;
}

.admin_reports_body h1 {
  font-size: 24px;
  font-weight: 400;
}
.admin_reports_body .table__space {
  margin-top: 25px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 65px;
}
.admin_reports_body .table__space-table {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.admin_reports_body .table__space-table h2 {
  font-weight: 500;
  margin-bottom: 10px;
}

.report__space {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.report__space h1 {
  font-size: 19px;
}
.report__space-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.report__space .create__report {
  display: flex;
  border: 1px solid #c9c9c9;
  padding: 15px;
  width: 300px;
  align-items: center;
  border-radius: 11px;
  flex-direction: column;
  margin-top: 45px;
}
.report__space .report__element {
  display: flex;
  padding: 15px;
  gap: 25px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 11px;
  border: 1px solid #c9c9c9;
}

thead {
  border-bottom: 1px solid #ccc;
}

.header-table {
  display: flex;
}

.raport__body {
  padding: 34px;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-left {
    align-self: flex-end; /* Выравнивание по правому краю внутри flex-контейнера */
    /* width: 100%; */
}
.raport__body table {
  width: 120%;
  margin-left: -170px;
  /* font-size: 11px !important; */
}
.raport__body table input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
  position: relative;
  cursor: pointer;
}
.raport__body table input[type=checkbox]::before {
  content: "╳";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21px;
  height: 21px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.raport__body table input[type=checkbox]:checked::before {
  opacity: 1;
}
.raport__body table .sm-td {
  width: -moz-min-content;
  width: min-content;
}
.raport__body table .td-description {
  font-weight: 600;
  font-size: 15px;
}
.raport__body h1 {
  font-size: 19px;
  font-weight: 600;
}
.raport__body .save {
  margin-left: auto;
}
.raport__body .raport__title {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.raport__body .raport__title h1 {
  font-weight: 700;
  font-size: 1em;
}
.raport__body .raport__title .left__marg {
  margin-left: auto;
  font-size: 13px;
}
.raport__body .raport__title .right__marg {
  margin-right: auto;
  font-size: 13px;
}
.raport__body .raport__title-row {
  display: flex;
  gap: 15px;
}
.raport__body .raport__title-bg {
  display: flex;
  width: 100%;
}
.raport__body .raport__information {
  margin-left: -170px;
  display: flex;
  flex-direction: column;
}
.raport__body .raport__information p span {
  font-weight: bold;
}
.raport__body .raport__information ul li {
  margin-left: -30px;
  display: flex;
  gap: 8px;
  margin-bottom: 7px;
}
.raport__body .raport__information ul li .lid {
  border-bottom: 1px solid;
  width: 550px;
}
.raport__body .raport__information-border {
  width: 100%;
  padding: 11px;
  border: 1px solid #000000;
}

.right__marg {
  margin-right: auto;
  text-align: left;
  font-size: 11px !important;
}

.nrlb {
  display: flex;
  gap: 35px;
  align-items: center;
  flex-direction: column;
  border-left: 0px !important;
  border-right: 0px !important;
  text-align: center;
}
.nrlb h3 {
  font-size: 14px !important;
}

.one {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.one ul li {
  display: flex;
  gap: 9px;
}
.one ul li .lid {
  border-bottom: 1px solid #000000;
  width: 50%;
}

.threet {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.threet span {
  padding-top: 15px;
  font-size: 11px;
}
.threet span:nth-child(2) {
  font-weight: bold;
}

thead th {
  padding: 10px;
  border: 1px solid grey;
}

tbody tr td {
  padding: 5px;
  text-align: center;
}
tbody tr .td_gray {
  color: #000000;
  background-color: #ccc;
}

tr td {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  border: 1px solid grey;
}

.delete-icon-invest {
  cursor: pointer;
}

.left_vert {
  text-align: center;
}

.users__header {
  display: flex;
  justify-content: space-between;
}
.users__header h1 {
  font-size: 22px;
}

.users__table {
  margin-top: 30px;
}
.users__table table {
  position: relative;
  border: 1px solid #c9c9c9;
  border-collapse: collapse;
  margin: 3px 0 15px;
  width: auto;
  min-width: 100%;
}
.users__table table td {
  border: 1px solid #c9c9c9;
  padding: 5px;
  text-align: center;
  min-width: 100px;
  white-space: normal;
}
.users__table thead {
  background-color: transparent !important;
}
.users__table tbody {
  border-top: 1px solid #c9c9c9;
}

.create__user-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.create__user-body .user__form {
  background-color: #ffffff;
  padding: 35px;
  display: flex;
  flex-direction: column;
  width: 570px;
  gap: 15px;
  border-radius: 11px;
}
.create__user-body .user__form h1 {
  font-size: 21px;
}
.create__user-body .user__form .input__zone {
  display: flex;
  gap: 7px;
  flex-direction: column;
}
.create__user-body .user__form .input__zone input {
  padding: 9px;
  margin-bottom: 19px;
  border-radius: 11px;
  border: 1px solid #c9c9c9;
}
.create__user-body .user__form button {
  width: 100%;
  justify-content: center;
}
.create__user-body .user__form.info-user {
  display: flex;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  padding: 11px;
}
.create__user-body .user__form.info-user ul {
  padding: 7px;
  border-radius: 13px;
  border: 1px solid #000000;
}
.create__user-body.detail {
  width: 100%;
  align-items: flex-start;
  display: flex;
  gap: 25px;
  flex-direction: row;
}
.create__user-body .user__info-full {
  display: flex;
  flex-direction: column;
  gap: 15px;
}/*# sourceMappingURL=main.css.map */

.select-form {
  border-radius: 5px;
  border: 1px solid grey;
}

.investiti__table {
  width: 100%;
}

#tableReports th, td, tr {
  border: 1px solid grey;
}

.raport__buttons {
  display: flex;
  gap: 10px;
}

.raport__buttons button {
  padding: 0px 5px 0px 5px;
  border-radius: 5px;
  color: grey;
  border: 1px solid grey;
}

.td__bold {
  font-weight: bold;
}

.under-table-p {

}

.under-table-span {
  margin-left: 500px;
}

.pronosticul__table {
  margin-top: -40px;
  margin-bottom: 30px;
  margin-left: -10%;
  width: 110%;
}

.pronosticul__table td {
  text-align: left;
}

.raport__title__right {
  margin-left: 1200px
}

#pronosticul-button {
  margin-top: 30px;
  margin-bottom: 30px;
}

.border-all-input {

}

.border-bottom-input {
  border-bottom: 1px solid black;
}

.content p span{
  font-weight: bold;
}

.button-reports {
  box-shadow: 0px 0px 3px black;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
  height: 80px;
  width: 300px;
  border-bottom: 5px solid #105ea8;

}

.button-reports span{
  color: #1d6fc4;
}

@media print {
  section {
    font-size: 10px;
  }
}

.center-button {
  display: flex;
  /* flex-direction: column; */
  justify-content: end;
  align-items: end;
}

